|
|
@@ -129,4 +129,16 @@ public class StudentRegistrationController extends BaseController {
|
|
|
return succeed(studentRegistrationService.findMusicGroupStuNoClassType(musicGroupId, type,actualSubjectId));
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation(value = "获取学生报名缴费详情")
|
|
|
+ @GetMapping("/getApplyDetail")
|
|
|
+ @PreAuthorize("@pcs.hasPermissions('studentRegistration/getApplyDetail')")
|
|
|
+ @ApiImplicitParams({@ApiImplicitParam(name = "studentId", value = "学生编号", required = true, dataType = "Integer"),
|
|
|
+ @ApiImplicitParam(name = "musicGroupId", value = "乐团编号", required = true, dataType = "String")})
|
|
|
+ public HttpResponseResult getApplyDetail(String studentId, String musicGroupId) {
|
|
|
+ if (StringUtils.isEmpty(studentId) || StringUtils.isEmpty(musicGroupId)) {
|
|
|
+ return failed("参数校验异常");
|
|
|
+ }
|
|
|
+ return succeed(studentRegistrationService.queryFeeDetail(Integer.parseInt(studentId), musicGroupId));
|
|
|
+ }
|
|
|
+
|
|
|
}
|