| 123456789101112131415161718192021222324252627282930 |
- 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<BisInspMeetUser, BisInspMeetUserParam> {
- // ------------------------- 自定方法 -------------------------
- int add(List<BisInspMeetUser> bisInspMeetUsers) throws IOException;
- int edit(List<BisInspMeetUser> bisInspMeetUsers) throws IOException;
- int del(List<BisInspMeetUser> bisInspMeetUsers) throws IOException;
- void controlUserByParam(String orgId, String method) throws IOException;
- int queryAllUser(Integer pageIndex, Integer pageSize) throws IOException;
- }
|