package cn.com.goldenwater.dcproj.service; import cn.com.goldenwater.core.service.CrudService; import cn.com.goldenwater.dcproj.model.BisInspAllRlationPers; import cn.com.goldenwater.dcproj.model.BisInspMeetUser; import cn.com.goldenwater.dcproj.param.BisInspAllRlationPersParam; import cn.com.goldenwater.dcproj.param.BisInspMeetUserParam; import java.io.IOException; import java.util.List; /** * @author lhc * @date 2019-5-27 */ public interface BisInspMeetUserService extends CrudService { // ------------------------- 自定方法 ------------------------- int add(List bisInspMeetUsers) throws IOException; int edit(List bisInspMeetUsers) throws IOException; int del(List bisInspMeetUsers) throws IOException; void controlUserByParam(String orgId, String method) throws IOException; int queryAllUser(Integer pageIndex, Integer pageSize) throws IOException; }