6fabad0bc4089069712a41e0416ef638572ed2e0.svn-base 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. package cn.com.goldenwater.dcproj.service;
  2. import cn.com.goldenwater.core.service.CrudService;
  3. import cn.com.goldenwater.dcproj.model.BisInspAll;
  4. import cn.com.goldenwater.dcproj.param.BisInspAllParam;
  5. import java.util.List;
  6. import java.util.Map;
  7. /**
  8. * @author lune
  9. * @date 2019-2-23
  10. */
  11. public interface ImportExcelService extends CrudService<BisInspAll, BisInspAllParam> {
  12. // ------------------------- 自定方法 -------------------------
  13. List<Map<String, Object>> getUserByOrg(String objType);
  14. /**
  15. * 导出模块流域树,根据pid和code过滤节点
  16. *
  17. * @param pid 父节点
  18. * @param code 行政编码
  19. * @param type 查询类型 水库1 人饮2 水毁3
  20. * @return 流域树节点列表
  21. */
  22. List<Map<String, Object>> getNodeByPidAndCode(String pid, String code, String type);
  23. String selectMax(BisInspAllParam inspAllParam);
  24. BisInspAll getOne(BisInspAllParam inspAllParam);
  25. int selectCount(BisInspAllParam inspAllParam);
  26. String ProcessData(String mnth);
  27. List<Map<String, Object>> getOldGroupInfo(Map<String, Object> map);
  28. }