| 1234567891011121314151617181920212223242526 |
- package cn.com.goldenwater.dcproj.dao;
- import cn.com.goldenwater.dcproj.dto.TacCountDto;
- import cn.com.goldenwater.dcproj.model.TacInspYearBatchArea;
- import cn.com.goldenwater.core.persistence.CrudDao;
- import cn.com.goldenwater.dcproj.param.TacInspYearBatchAreaParam;
- import org.springframework.stereotype.Repository;
- import java.util.List;
- import java.util.Map;
- @Repository
- public interface TacInspYearBatchAreaDao extends CrudDao<TacInspYearBatchArea, TacInspYearBatchAreaParam> {
- List<TacInspYearBatchArea> getAreaListById(TacInspYearBatchAreaParam tacInspYearBatchAreaParam);
- List<Map<String,String>> areasListByBatch(TacInspYearBatchAreaParam tacInspYearBatchAreaParam);
- List<TacInspYearBatchArea> getObjTreeAreaList(TacInspYearBatchAreaParam tacInspYearBatchAreaParam);
- List<TacCountDto> countAdcodeAuditByYear(TacInspYearBatchAreaParam areaParam);
- List<TacCountDto> getAdNameList(TacInspYearBatchAreaParam areaParam);
- List<TacInspYearBatchArea> listByMap(Map<String, String> paramMap);
- }
|