| 123456789101112131415161718192021222324252627282930313233 |
- package cn.com.goldenwater.dcproj.service;
- import cn.com.goldenwater.core.service.CrudService;
- import cn.com.goldenwater.dcproj.dto.TacInspYearBatchAreaDto;
- import cn.com.goldenwater.dcproj.model.BisInspAllNode;
- import cn.com.goldenwater.dcproj.model.TacInspYearBatchArea;
- import cn.com.goldenwater.dcproj.param.TacInspYearBatchAreaParam;
- import com.github.pagehelper.PageInfo;
- import java.util.List;
- import java.util.Map;
- /**
- * @author lune
- * @date 2019-9-6
- */
- public interface TacInspYearBatchAreaService extends CrudService<TacInspYearBatchArea, TacInspYearBatchAreaParam> {
- int deleteYearBatchArearByGroupId(String groupId);
- List<TacInspYearBatchArea> getAreaListById(TacInspYearBatchAreaParam tacInspYearBatchAreaParam);
- List<Map<String,String>> areasListByBatch(TacInspYearBatchAreaParam tacInspYearBatchAreaParam);
- TacInspYearBatchAreaDto getAreaListByBatchId(TacInspYearBatchAreaParam tacInspYearBatchAreaParam);
- BisInspAllNode getObjTreeAreaList(TacInspYearBatchAreaParam param);
- PageInfo listByList(Map<String, String> paramMap);
- // ------------------------- 自定方法 -------------------------
- }
|