This commit is contained in:
lims1@hunktimes.com
2023-08-01 16:02:57 +08:00
96 changed files with 4185 additions and 325 deletions

View File

@@ -2,6 +2,8 @@ package com.xboe.module.course.dto;
import lombok.Data;
import java.util.List;
/**
* 课程的全文检索索引
*
@@ -28,7 +30,6 @@ public class CourseFullText {
/**10无目录录播课20 有目录录播课30:面授课40学习项目*/
private Integer type;
/**多个时用到*/
private String types;
@@ -118,5 +119,11 @@ public class CourseFullText {
* 是否公开0表非公开报名1表公开报名-字段需新增,按管理端需求增加
*/
private Integer openEnroll;
/**
* keywords字段分割
*/
private List<String> keywordsList;
}