package cn.com.goldenwater.dcproj.service; import cn.com.goldenwater.core.service.CrudService; import cn.com.goldenwater.dcproj.model.TacInspBatch; import cn.com.goldenwater.dcproj.param.TacInspBatchParam; import com.github.pagehelper.PageInfo; import java.util.List; /** * @author lune * @date 2019-9-6 */ public interface TacInspBatchService extends CrudService { List getBatchListByYear(TacInspBatchParam tacInspBatchParam); List getBatchListAuditByYear(TacInspBatchParam tacInspBatchParam); // ------------------------- 自定方法 ------------------------- }