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;
@@ -16,56 +19,58 @@
public interface SystemConfigService {
   /**
    * @author hxh
    * @description 获取缓存值
    * @date 11:50 2021/11/16
    * @param: system
    * @param: key
    * @return java.lang.String
    **/
   public String getValueCache(SystemEnum system, SystemConfigKey key);
    /**
     * @return java.lang.String
     * @author hxh
     * @description 获取缓存值
     * @date 11:50 2021/11/16
     * @param: system
     * @param: key
     **/
    public String getValueCache(SystemEnum system, SystemConfigKey key);
    /**
    * 获取列表
    * @param systemConfigQuery
    * @param page
    * @param pageSize
    * @return
    */
    public List<SystemConfig> list(SystemConfigQuery systemConfigQuery, int page, int pageSize) ;
     * 获取列表
     *
     * @param systemConfigQuery
     * @param page
     * @param pageSize
     * @return
     */
    public List<SystemConfig> list(SystemConfigQuery systemConfigQuery, int page, int pageSize);
    /**
    *
    */
    public long count(SystemConfigQuery systemConfigQuery) ;
     *
     */
    public long count(SystemConfigQuery systemConfigQuery);
    public List<SystemConfig> listByType(SystemConfigType type);
    /**
    *
    */
    public SystemConfig get(String id) ;
     *
     */
    public SystemConfig get(String id);
    /**
    *
    */
    public void add(SystemConfig systemConfig)  throws Exception;
     *
     */
    public void add(SystemConfig systemConfig) throws Exception;
   public void save(SystemConfig config);
    public void save(SystemConfig config);
    /**
    *
    */
    public void update(SystemConfig systemConfig) ;
     *
     */
    public void update(SystemConfig systemConfig);
    /**
    *
    */
    public void delete(List<String> idList) ;
     *
     */
    public void delete(List<String> idList);
}