分割关键字返回

This commit is contained in:
lims1@hunktimes.com
2023-07-17 09:44:59 +08:00
parent b4f5e3ab4a
commit cbf97e0f83
2 changed files with 21 additions and 1 deletions

View File

@@ -2,6 +2,8 @@ package com.xboe.module.course.dto;
import lombok.Data;
import java.util.List;
/**
* 课程的全文检索索引
*
@@ -117,5 +119,10 @@ public class CourseFullText {
* 是否公开0表非公开报名1表公开报名-字段需新增,按管理端需求增加
*/
private Integer openEnroll;
/**
* keywords字段分割
*/
private List<String> keywordsList;
}