a050bb41924217273182c2e652fe1d7136f52d9c.svn-base 990 B

123456789101112131415161718192021222324252627282930
  1. package cn.com.goldenwater.dcproj.service;
  2. import cn.com.goldenwater.core.service.CrudService;
  3. import cn.com.goldenwater.dcproj.model.BisInspAllRlationPers;
  4. import cn.com.goldenwater.dcproj.model.BisInspMeetUser;
  5. import cn.com.goldenwater.dcproj.param.BisInspAllRlationPersParam;
  6. import cn.com.goldenwater.dcproj.param.BisInspMeetUserParam;
  7. import java.io.IOException;
  8. import java.util.List;
  9. /**
  10. * @author lhc
  11. * @date 2019-5-27
  12. */
  13. public interface BisInspMeetUserService extends CrudService<BisInspMeetUser, BisInspMeetUserParam> {
  14. // ------------------------- 自定方法 -------------------------
  15. int add(List<BisInspMeetUser> bisInspMeetUsers) throws IOException;
  16. int edit(List<BisInspMeetUser> bisInspMeetUsers) throws IOException;
  17. int del(List<BisInspMeetUser> bisInspMeetUsers) throws IOException;
  18. void controlUserByParam(String orgId, String method) throws IOException;
  19. int queryAllUser(Integer pageIndex, Integer pageSize) throws IOException;
  20. }