3ea75f08f6cb75b7a0b545d9d600d190f20113d0.svn-base 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. package cn.com.goldenwater.dcproj.service;
  2. import cn.com.goldenwater.core.service.CrudService;
  3. import cn.com.goldenwater.dcproj.dto.BisInspVillRgstrDto;
  4. import cn.com.goldenwater.dcproj.model.BisInspRsvrRgstr;
  5. import cn.com.goldenwater.dcproj.model.BisInspRsvrRgstrDto;
  6. import cn.com.goldenwater.dcproj.model.BisInspVillRgstr;
  7. import cn.com.goldenwater.dcproj.param.BisInspVillRgstrParam;
  8. import cn.com.goldenwater.dcproj.param.TypeParam;
  9. import com.github.pagehelper.PageInfo;
  10. import java.util.List;
  11. /**
  12. * @author lune
  13. * @date 2019-2-19
  14. */
  15. public interface BisInspVillRgstrService extends CrudService<BisInspVillRgstr, BisInspVillRgstrParam> {
  16. // ------------------------- 自定方法 -------------------------
  17. public String add(BisInspVillRgstr bisInspVillRgstr) throws Exception;
  18. public String modify(BisInspVillRgstr bisInspVillRgstr) throws Exception;
  19. public PageInfo<BisInspVillRgstr> queryListByPage(BisInspVillRgstrParam p) throws Exception;
  20. public List<BisInspVillRgstr> queryList(BisInspVillRgstrParam p) throws Exception;
  21. public List<BisInspVillRgstr> findListByPersId(String param,String orgId) throws Exception;
  22. PageInfo<BisInspVillRgstrDto> findPageByType(TypeParam typeParam);
  23. List<BisInspVillRgstrDto> findTree(TypeParam typeParam);
  24. List<BisInspVillRgstrDto> findListByType(TypeParam typeParam);
  25. String getEngId(String objId,String persId) throws Exception;
  26. }