| | |
| | | import com.gkhy.exam.institutionalaccess.entity.ThBatch; |
| | | import com.gkhy.exam.institutionalaccess.model.query.ThBatchQuery; |
| | | import com.gkhy.exam.institutionalaccess.model.vo.ThBatchVO; |
| | | import org.springframework.scheduling.annotation.Async; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | List<ThBatch> listByInstitutionId(Long institutionId); |
| | | |
| | | List<ThBatchVO> listByPage(ThBatchQuery query); |
| | | |
| | | List<ThBatch> getByUuids(List<String> batchUuids); |
| | | |
| | | //@Async("SocketTaskExecutor") |
| | | Integer insertBatch(List<ThBatch> batchList); |
| | | //@Async("SocketTaskExecutor") |
| | | Integer updateBatch(List<ThBatch> batchList); |
| | | |
| | | List<ThBatch> getBatchNameByUuids(List<String> batchUuids); |
| | | } |