|
@@ -59,9 +59,9 @@ public class AidingStudentsPersonManageController {
|
|
|
return success(true);
|
|
|
}
|
|
|
|
|
|
- @GetMapping("/college-get-page")
|
|
|
+ @GetMapping("/college-get-student-data")
|
|
|
@Operation(summary = "学院信息数据统计")
|
|
|
- @PreAuthorize("@ss.hasPermission('as:aiding-students-person-manage:college-get-page')")
|
|
|
+ @PreAuthorize("@ss.hasPermission('as:aiding-students-person-manage:college-get-student-data')")
|
|
|
public CommonResult<PageResult<AidingStudentPersonManageInfoRespVO>> getAidingStudentsPersonManageCollegeData(@Valid @RequestBody AidingStudentPersonManageInfoPageReqVO pageReqVO) {
|
|
|
return success(aidingStudentsPersonManageService.getAidingStudentsPersonManageCollegeData(pageReqVO));
|
|
|
}
|
|
@@ -74,9 +74,9 @@ public class AidingStudentsPersonManageController {
|
|
|
return success(BeanUtils.toBean(pageResult, AidingStudentPersonManageInfoRespVO.class));
|
|
|
}*/
|
|
|
|
|
|
- @PutMapping("/all-sort")
|
|
|
+ @PutMapping("/sort")
|
|
|
@Operation(summary = "定序")
|
|
|
- @PreAuthorize("@ss.hasPermission('as:aiding-students-person-manage:all-sort')")
|
|
|
+ @PreAuthorize("@ss.hasPermission('as:aiding-students-person-manage:sort')")
|
|
|
public CommonResult<Boolean> allsortAidingStudentsPersonManage(@Valid @RequestBody List<AidingStudentPersonManageSortReqVO> ids){
|
|
|
aidingStudentsPersonManageService.allsortAidingStudentsManage(ids);
|
|
|
return success(true);
|
|
@@ -91,16 +91,16 @@ public class AidingStudentsPersonManageController {
|
|
|
return success(true);
|
|
|
}
|
|
|
|
|
|
- @GetMapping("/school-get-page")
|
|
|
- @Operation(summary = "学校模糊查询获取学生申请名单分页")
|
|
|
- @PreAuthorize("@ss.hasPermission('as:aiding-students-person-manage:school-get-page')")
|
|
|
+ @GetMapping("/page")
|
|
|
+ @Operation(summary = "学生信息分页")
|
|
|
+ @PreAuthorize("@ss.hasPermission('as:aiding-students-person-manage:page')")
|
|
|
public CommonResult<PageResult<AidingStudentPersonManageInfoRespVO>> schoolgetAidingStudentsPersonManagePage(@Valid @RequestBody AidingStudentPersonManageInfoPageReqVO pageReqVO) {
|
|
|
return success(aidingStudentsPersonManageService.schoolgetAidingStudentsPersonManagePage(pageReqVO));
|
|
|
}
|
|
|
|
|
|
- @GetMapping("/school-get-student-info-part")
|
|
|
+ @GetMapping("/school-get-student-data")
|
|
|
@Operation(summary = "学校获取统计数据(部分)")
|
|
|
- @PreAuthorize("@ss.hasPermission('as:aiding-students-person-manage:school-get-student-info-part')")
|
|
|
+ @PreAuthorize("@ss.hasPermission('as:aiding-students-person-manage:school-get-student-data')")
|
|
|
public CommonResult<AidingStudentPersonManageInfoRespVO> schoolgetAidingStudentsPersonManageData(@Valid @RequestParam("manageId")Integer manageId) {
|
|
|
return success(aidingStudentsPersonManageService.schoolgetAidingStudentsPersonManageData(manageId));
|
|
|
}
|
|
@@ -112,8 +112,4 @@ public class AidingStudentsPersonManageController {
|
|
|
return success(aidingStudentsPersonManageService.schoolauditAidingStudentsPersonManageData(id));
|
|
|
}
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
}
|