Merge branch 'yx1101-teacher-l' into dev1107

This commit is contained in:
Wangxxz
2024-12-12 11:27:05 +08:00
2 changed files with 3 additions and 2 deletions

View File

@@ -47,7 +47,8 @@ public class CourseGradeApi extends ApiBaseController {
ScoreParam param = new ScoreParam();
param.setCourseId(Long.parseLong(courseId));
param.setScore(score);
thirdApi.syncOnLineScore(param,token);
// 同步在线课评分
// thirdApi.syncOnLineScore(param,token);
return success(aFloat);
}catch(Exception e) {
log.error("评分保存错误",e);

View File

@@ -209,7 +209,7 @@ public class Teacher extends BaseEntity {
private String expertise;
@Column(name = "user_no",length = 1)
private Integer userNo;
private String userNo;
// @ApiModelProperty(value = "讲师类型 1 内部讲师 2外部讲师")
@Column(name = "teacher_type")