1、新增教学大纲,报专业名称重复,其实是code重复,修复;
2、已经限制教员排课的,教员仍然可以排课的问题修复
This commit is contained in:
+3
-1
@@ -108,7 +108,8 @@ public class TrainingProgramController {
|
||||
@RequestParam(required = false) String zymc,
|
||||
@RequestParam(required = false) String zydm,
|
||||
@RequestParam(required = false) String pxlx,
|
||||
@RequestParam(required = false) String pxcc) {
|
||||
@RequestParam(required = false) String pxcc,
|
||||
@RequestParam(required = false) Boolean ty) {
|
||||
PageQuery query = new PageQuery();
|
||||
query.setPageNum(pageNum);
|
||||
query.setPageSize(pageSize);
|
||||
@@ -117,6 +118,7 @@ public class TrainingProgramController {
|
||||
cond.setZydm(zydm);
|
||||
cond.setPxlx(pxlx);
|
||||
cond.setPxcc(pxcc);
|
||||
cond.setTy(ty);
|
||||
PageResult<ZYB> pageResult = trainingProgramService.pageList(query, cond);
|
||||
return Result.success(pageResult);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user