puzhibing
2023-11-25 53e7558400dcacecdce70e39ebfe1727740f9296
cloud-server-account/src/main/java/com/dsh/account/controller/ClassDetailsController.java
@@ -63,7 +63,6 @@
    private TAppGiftService appGiftService;
    @ResponseBody
    @PostMapping("/api/startCource/queryStudentData")
    @ApiOperation(value = "上课首页", tags = {"APP-开始上课"})
@@ -107,6 +106,7 @@
        }
    }
    @ResponseBody
    @PostMapping("/api/startCource/weeksOfCourseDetailsList")
    @ApiOperation(value = "上课首页-课程列表2.0", tags = {"APP-开始上课"})
@@ -300,7 +300,6 @@
    }
    /**
     * 编辑学员详情
     */
@@ -334,7 +333,6 @@
    }
    /**
     * 提交编辑学员
     */
@@ -362,8 +360,6 @@
            TStudent tStudent = new TStudent();
            tStudent.setId(stu.getStuId());
            tStudent.setBirthday(format.parse(stu.getBirthday()));
            tStudent.setHeadImg(stu.getHeadImg());
@@ -389,7 +385,6 @@
            return ResultUtil.runErr();
        }
    }
    /**
@@ -428,8 +423,6 @@
    }
    /**
     * 课时详情
     */
@@ -454,7 +447,6 @@
        }
    }
    /**
@@ -527,7 +519,6 @@
    }
    /**
     * 课时详情-支付
     */
@@ -585,7 +576,6 @@
        try {
            Integer appUserId = tokenUtil.getUserIdFormRedis();
            if(null == appUserId){
                return ResultUtil.tokenErr();
@@ -633,17 +623,12 @@
            @ApiImplicitParam(value = "课程名称", name = "appointStatus", required = false, dataType = "string"),
    })
    public ResultUtil<List<RecordAppoint>> cgeClassAppointmentRecordList(Integer stuId, Integer appointStatus, Integer timeType, String search,Integer pageNum){
//        try {
            Integer appUserId = tokenUtil.getUserIdFormRedis();
            if(null == appUserId){
                return ResultUtil.tokenErr();
            }
            return ResultUtil.success(istuService.getAppointmentRecords(stuId,appUserId,appointStatus,timeType,search,pageNum));
//        }catch (Exception e){
//            return ResultUtil.runErr();
//        }
    }
    /**