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 { List getAreaListById(TacInspYearBatchAreaParam tacInspYearBatchAreaParam); List> areasListByBatch(TacInspYearBatchAreaParam tacInspYearBatchAreaParam); List getObjTreeAreaList(TacInspYearBatchAreaParam tacInspYearBatchAreaParam); List countAdcodeAuditByYear(TacInspYearBatchAreaParam areaParam); List getAdNameList(TacInspYearBatchAreaParam areaParam); List listByMap(Map paramMap); }