package com.jsh.erp.service.configSecurity; import com.github.pagehelper.PageInfo; import com.jsh.erp.datasource.entities.ConfigSecurity; import com.jsh.erp.dto.ConfigSecurityQuery; import java.util.List; public interface ConfigSecurityService { Long findListCount(ConfigSecurityQuery configSecurityQuery); List findList(ConfigSecurityQuery configSecurityQuery); int add(ConfigSecurity configSecurity); int update(ConfigSecurity configSecurity); int deleteById(Long id); int deleteBatch(String ids); int batchSetStatus(Integer status, String ids) throws Exception; PageInfo findPageInfo(ConfigSecurityQuery configSecurityQuery); }