939a7e0b09d5dadf08c6315761b1562cb03d71c1.svn-base 760 B

12345678910111213141516171819202122
  1. package cn.com.goldenwater.dcproj.service;
  2. import cn.com.goldenwater.core.service.CrudService;
  3. import cn.com.goldenwater.dcproj.model.BisInspCdepRgstr;
  4. import cn.com.goldenwater.dcproj.param.BisInspCdepRgstrParam;
  5. import com.github.pagehelper.Page;
  6. import com.github.pagehelper.PageInfo;
  7. import java.util.List;
  8. import java.util.Map;
  9. /**
  10. * @author lhc
  11. * @date 2020-11-19
  12. */
  13. public interface BisInspCdepRgstrService extends CrudService<BisInspCdepRgstr, BisInspCdepRgstrParam> {
  14. // ------------------------- 自定方法 -------------------------
  15. BisInspCdepRgstr save(BisInspCdepRgstr bisInspCdepRgstr);
  16. PageInfo<BisInspCdepRgstr> findCdepPageInfo(BisInspCdepRgstrParam bisInspCdepRgstrParam);
  17. void updateState(Map<String, Object> map);
  18. }