d0551d1a2a8fa8a4ce738106ee86cc60b97cf31c.svn-base 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. package cn.com.goldenwater.dcproj.service;
  2. import cn.com.goldenwater.core.service.CrudService;
  3. import cn.com.goldenwater.dcproj.dto.TacInspYearBatchAreaDto;
  4. import cn.com.goldenwater.dcproj.model.BisInspAllNode;
  5. import cn.com.goldenwater.dcproj.model.TacInspYearBatchArea;
  6. import cn.com.goldenwater.dcproj.param.TacInspYearBatchAreaParam;
  7. import com.github.pagehelper.PageInfo;
  8. import java.util.List;
  9. import java.util.Map;
  10. /**
  11. * @author lune
  12. * @date 2019-9-6
  13. */
  14. public interface TacInspYearBatchAreaService extends CrudService<TacInspYearBatchArea, TacInspYearBatchAreaParam> {
  15. int deleteYearBatchArearByGroupId(String groupId);
  16. List<TacInspYearBatchArea> getAreaListById(TacInspYearBatchAreaParam tacInspYearBatchAreaParam);
  17. List<Map<String,String>> areasListByBatch(TacInspYearBatchAreaParam tacInspYearBatchAreaParam);
  18. TacInspYearBatchAreaDto getAreaListByBatchId(TacInspYearBatchAreaParam tacInspYearBatchAreaParam);
  19. BisInspAllNode getObjTreeAreaList(TacInspYearBatchAreaParam param);
  20. PageInfo listByList(Map<String, String> paramMap);
  21. // ------------------------- 自定方法 -------------------------
  22. }