932acd26b98c5f8664a958402b66d9c32929f208.svn-base 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. package cn.com.goldenwater.dcproj.service;
  2. import cn.com.goldenwater.core.service.CrudService;
  3. import cn.com.goldenwater.dcproj.dto.BisInspTownsDsuDto;
  4. import cn.com.goldenwater.dcproj.dto.TreeDto;
  5. import cn.com.goldenwater.dcproj.model.BisInspIrrTownsDsu;
  6. import cn.com.goldenwater.dcproj.param.BisInspIrrTownsDsuParam;
  7. import com.github.pagehelper.PageInfo;
  8. import java.util.List;
  9. /**
  10. * @author lune
  11. * @date 2020-4-30
  12. */
  13. public interface BisInspIrrTownsDsuService extends CrudService<BisInspIrrTownsDsu, BisInspIrrTownsDsuParam> {
  14. List<TreeDto> tree(BisInspIrrTownsDsuParam bisInspIrrTownsDsuParam);
  15. List<TreeDto> findCheckTree(String code, String rgstrId);
  16. int addTownList(TreeDto dto, String persId);
  17. int delTown(String id);
  18. List<BisInspTownsDsuDto> findProjectList(BisInspIrrTownsDsuParam bisInspIrrTownsDsuParam);
  19. BisInspTownsDsuDto addProject(BisInspTownsDsuDto dto);
  20. PageInfo<BisInspIrrTownsDsu> findTownList(BisInspIrrTownsDsuParam bisInspIrrTownsDsuParam);
  21. // ------------------------- 自定方法 -------------------------
  22. }