package cn.com.goldenwater.dcproj.dao; import cn.com.goldenwater.dcproj.model.TacInspYearBatchGroup; import cn.com.goldenwater.core.persistence.CrudDao; import cn.com.goldenwater.dcproj.param.TacInspYearBatchGroupParam; import org.springframework.stereotype.Repository; import java.util.List; @Repository public interface TacInspYearBatchGroupDao extends CrudDao { String getMaxGourpNum(TacInspYearBatchGroupParam groupParam); List getGroupListByPersId(TacInspYearBatchGroupParam groupParam); List getGroupListApp(TacInspYearBatchGroupParam tacInspYearBatchGroupParam); int updateByBatchId(TacInspYearBatchGroup group); List getCurrentGroupList(TacInspYearBatchGroupParam groupParam); List getGradeGroupList(TacInspYearBatchGroupParam groupParam); }