07459441b6b4a52737db8e68280b6f8daf993601.svn-base 1.0 KB

1234567891011121314151617181920212223242526
  1. package cn.com.goldenwater.dcproj.dao;
  2. import cn.com.goldenwater.dcproj.dto.TacCountDto;
  3. import cn.com.goldenwater.dcproj.model.TacInspYearBatchArea;
  4. import cn.com.goldenwater.core.persistence.CrudDao;
  5. import cn.com.goldenwater.dcproj.param.TacInspYearBatchAreaParam;
  6. import org.springframework.stereotype.Repository;
  7. import java.util.List;
  8. import java.util.Map;
  9. @Repository
  10. public interface TacInspYearBatchAreaDao extends CrudDao<TacInspYearBatchArea, TacInspYearBatchAreaParam> {
  11. List<TacInspYearBatchArea> getAreaListById(TacInspYearBatchAreaParam tacInspYearBatchAreaParam);
  12. List<Map<String,String>> areasListByBatch(TacInspYearBatchAreaParam tacInspYearBatchAreaParam);
  13. List<TacInspYearBatchArea> getObjTreeAreaList(TacInspYearBatchAreaParam tacInspYearBatchAreaParam);
  14. List<TacCountDto> countAdcodeAuditByYear(TacInspYearBatchAreaParam areaParam);
  15. List<TacCountDto> getAdNameList(TacInspYearBatchAreaParam areaParam);
  16. List<TacInspYearBatchArea> listByMap(Map<String, String> paramMap);
  17. }