admin
2022-04-02 87532065ba0c304817c31628ebb1000f4e308f12
app/src/main/java/com/yeshi/makemoney/app/service/inter/config/SystemConfigService.java
@@ -6,8 +6,11 @@
import com.yeshi.makemoney.app.entity.SystemEnum;
import com.yeshi.makemoney.app.entity.config.SystemConfigKey;
import com.yeshi.makemoney.app.entity.config.SystemConfigType;
import org.yeshi.utils.bean.BeanUtil;
import java.util.List;
import com.yeshi.makemoney.app.entity.config.SystemConfig;
import com.yeshi.makemoney.app.service.inter.config.SystemConfigService;
import com.yeshi.makemoney.app.service.query.config.SystemConfigQuery;
@@ -17,20 +20,19 @@
   /**
     * @return java.lang.String
    * @author hxh
    * @description 获取缓存值
    * @date 11:50 2021/11/16
    * @param: system
    * @param: key
    * @return java.lang.String
    **/
   public String getValueCache(SystemEnum system, SystemConfigKey key);
    /**
    * 获取列表
     *
    * @param systemConfigQuery
    * @param page
    * @param pageSize
@@ -38,10 +40,15 @@
    */
    public List<SystemConfig> list(SystemConfigQuery systemConfigQuery, int page, int pageSize) ;
    /**
    * 
    */
    public long count(SystemConfigQuery systemConfigQuery) ;
    public List<SystemConfig> listByType(SystemConfigType type);
    /**
    * 
@@ -64,8 +71,6 @@
    * 
    */
    public void delete(List<String> idList) ;
}