| | |
| | |
|
| | | import java.util.List;
|
| | |
|
| | | import org.springframework.cache.annotation.Cacheable;
|
| | |
|
| | | import com.yeshi.fanli.entity.admin.SystemClientParamsAdmin;
|
| | | import com.yeshi.fanli.entity.system.CustomerContent;
|
| | | import com.yeshi.fanli.entity.system.CustomerName;
|
| | |
| | | public interface SystemClientParamsService {
|
| | |
|
| | | public List<SystemClientParams> getSystemClientParamsBySystemId(long id);
|
| | | |
| | | public List<SystemClientParams> getSystemClientParamsBySystemId(long id,int version);
|
| | |
|
| | | public List<SystemClientParamsAdmin> getAdminList(System system, String key);
|
| | |
|
| | |
| | |
|
| | | public List<CustomerContent> contactCustomerService(String title);
|
| | |
|
| | | /**
|
| | | * 新版后台查询
|
| | | * @param start
|
| | | * @param count
|
| | | * @param key
|
| | | * @param systemId
|
| | | * @return
|
| | | */
|
| | | public List<SystemClientParams> listQuery(int start, int count, String key, Long systemId);
|
| | |
|
| | | public long countQuery(String key, Long systemId);
|
| | |
|
| | | /**
|
| | | * 更新
|
| | | * @param systemClientParams
|
| | | */
|
| | | public void update(SystemClientParams systemClientParams);
|
| | |
|
| | | /**
|
| | | * 根据id获取
|
| | | * @param id
|
| | | * @return
|
| | | */
|
| | | public List<SystemClientParams> getById(long id);
|
| | |
|
| | | /**
|
| | | * 根据id批量删除
|
| | | * @param ids
|
| | | */
|
| | | public void deleteBatchByPrimaryKey(List<Long> ids);
|
| | |
|
| | | public void saveAdd(SystemClientParams scp, List<Long> listId) throws Exception;
|
| | |
|
| | | }
|