| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- package cn.com.goldenwater.dcproj.service;
- import cn.com.goldenwater.core.service.CrudService;
- import cn.com.goldenwater.dcproj.model.BisInspAll;
- import cn.com.goldenwater.dcproj.param.BisInspAllParam;
- import java.util.List;
- import java.util.Map;
- /**
- * @author lune
- * @date 2019-2-23
- */
- public interface ImportExcelService extends CrudService<BisInspAll, BisInspAllParam> {
- // ------------------------- 自定方法 -------------------------
- List<Map<String, Object>> getUserByOrg(String objType);
- /**
- * 导出模块流域树,根据pid和code过滤节点
- *
- * @param pid 父节点
- * @param code 行政编码
- * @param type 查询类型 水库1 人饮2 水毁3
- * @return 流域树节点列表
- */
- List<Map<String, Object>> getNodeByPidAndCode(String pid, String code, String type);
- String selectMax(BisInspAllParam inspAllParam);
- BisInspAll getOne(BisInspAllParam inspAllParam);
- int selectCount(BisInspAllParam inspAllParam);
- String ProcessData(String mnth);
- List<Map<String, Object>> getOldGroupInfo(Map<String, Object> map);
- }
|