Browse Source

预报名地区列表查询添加方法

小么熊🐻 1 year ago
parent
commit
fdd436e127

+ 3 - 3
jsjp-admin/src/main/java/com/miaxis/app/controller/tms/TmsStudentInfoController.java

@@ -125,7 +125,7 @@ public class TmsStudentInfoController extends BaseController {
     /**
      * 查询我的学员预报名列表
      */
-    @GetMapping("/myStudenTempList")
+    @GetMapping("/myStudentTempList")
     @ApiOperation("预报地区-查询我的学员预报名列表")
     @ApiImplicitParams({
             @ApiImplicitParam(name = "pageNum", value = "当前页码", dataType = "int", paramType = "query", required = false),
@@ -140,13 +140,13 @@ public class TmsStudentInfoController extends BaseController {
     /**
      * 查询学员预报名列表
      */
-    @GetMapping("/studenTempList")
+    @GetMapping("/studentTempList")
     @ApiOperation("预报地区-查询学员预报名列表")
     @ApiImplicitParams({
             @ApiImplicitParam(name = "pageNum", value = "当前页码", dataType = "int", paramType = "query", required = false),
             @ApiImplicitParam(name = "pageSize", value = "每页数据量", dataType = "int", paramType = "query", required = false),
     })
-    public ResponsePageInfo<TmsStudentInfoTempVo> studenTempList(@ModelAttribute TmsStudentInfoTempDTO studentInfoTempDTO) {
+    public ResponsePageInfo<TmsStudentInfoTempVo> studentTempList(@ModelAttribute TmsStudentInfoTempDTO studentInfoTempDTO) {
         if(studentInfoTempDTO.getCoachId()!=null) {
             CoachManySchool coachManySchool = coachManySchoolService.getById(studentInfoTempDTO.getCoachId());
             if(coachManySchool!=null) {