admin
2020-06-10 271ae63c20fcbe28d29c47f1881138ff6551a2a1
fanli/src/main/java/com/yeshi/fanli/service/inter/config/SystemConfigService.java
@@ -1,31 +1,9 @@
package com.yeshi.fanli.service.inter.config;
import java.util.List;
import org.springframework.cache.annotation.CacheEvict;
import com.yeshi.fanli.entity.system.BusinessSystem;
import com.yeshi.fanli.entity.system.SystemConfig;
import com.yeshi.fanli.exception.NotExistObjectException;
public interface SystemConfigService {
   public int getCount(BusinessSystem system,String key);
   public List<SystemConfig> getSystemConfigList(int index,BusinessSystem system, String key);
   public void addSystemConfig(SystemConfig sc);
   @CacheEvict(value="childSystemCache",allEntries=true)
   public void deleteSystem(long id, BusinessSystem system) throws NotExistObjectException;
   @CacheEvict(value="childSystemCache",allEntries=true)
   public void addSystem(long id, BusinessSystem system)  throws NotExistObjectException;
   public SystemConfig getSystemConfig(long id);
   public void updateSystemConfig(SystemConfig sc) throws NotExistObjectException;
   public void deleteSystemConfig(long id);
   
   public String get(String key) throws NotExistObjectException;