ES增加字段

This commit is contained in:
daihh
2023-02-08 10:26:56 +08:00
parent 3815b17ed0
commit b92a6d879c
2 changed files with 10 additions and 0 deletions

View File

@@ -112,5 +112,10 @@ public class CourseFullText {
* 是否公开课0表非公开课1表公开课
*/
private Integer openCourse;
/**
* 是否公开0表非公开报名1表公开报名-字段需新增,按管理端需求增加
*/
private Integer openEnroll;
}

View File

@@ -40,4 +40,9 @@ public class CourseStudyDto {
/**学习进度0-100的值*/
private Integer progress;
/**
* 10-报名未审核 20-报名被拒绝 30-报名审核通过-字段新,应管理端需求增加
*/
private Integer applyStatus;
}