Browse Source

1、新生分班添加班级是自动生成班级代码
2、学生退学规则添加禁用账号逻辑

dzx 8 months ago
parent
commit
3809f0d0cf

+ 0 - 1
src/main/java/com/xjrsoft/module/student/controller/BaseNewStudentController.java

@@ -99,7 +99,6 @@ public class BaseNewStudentController {
     @ApiOperation(value="新生维护信息列表(分页)")
     @SaCheckPermission("basenewstudent:detail")
     public RT<PageOutput<BaseNewStudentPageVo>> page(@Valid BaseNewStudentPageDto dto){
-
         Page<BaseNewStudentPageVo> page = baseNewStudentService.getPage(new Page<>(dto.getLimit(), dto.getSize()), dto);
         PageOutput<BaseNewStudentPageVo> pageOutput = ConventPage.getPageOutput(page, BaseNewStudentPageVo.class);
         return RT.ok(pageOutput);