package cn.com.goldenwater.dcproj.dao; import cn.com.goldenwater.dcproj.model.TacInspBatch; import cn.com.goldenwater.core.persistence.CrudDao; import cn.com.goldenwater.dcproj.param.TacInspBatchParam; import org.springframework.stereotype.Repository; import java.util.List; @Repository public interface TacInspBatchDao extends CrudDao { List getBatchListByYear(TacInspBatchParam tacInspBatchParam); List getBatchListAuditByYear(TacInspBatchParam tacInspBatchParam); }