Преглед на файлове

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

dzx преди 8 месеца
родител
ревизия
3809f0d0cf
променени са 1 файла, в които са добавени 0 реда и са изтрити 1 реда
  1. 0 1
      src/main/java/com/xjrsoft/module/student/controller/BaseNewStudentController.java

+ 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);