-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ae0a568
commit 5a3928b
Showing
11 changed files
with
274 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
78 changes: 78 additions & 0 deletions
78
src/main/java/com/search/domain/mindspore/vo/MindSporeCourseVo.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
/* Copyright (c) 2024 openEuler Community | ||
EasySoftware is licensed under the Mulan PSL v2. | ||
You can use this software according to the terms and conditions of the Mulan PSL v2. | ||
You may obtain a copy of Mulan PSL v2 at: | ||
http://license.coscl.org.cn/MulanPSL2 | ||
THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, | ||
EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, | ||
MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE. | ||
See the Mulan PSL v2 for more details. | ||
*/ | ||
package com.search.domain.mindspore.vo; | ||
|
||
import lombok.Getter; | ||
import lombok.Setter; | ||
|
||
@Getter | ||
@Setter | ||
public class MindSporeCourseVo { | ||
/** | ||
* 课程目录名称. | ||
*/ | ||
private String courseCatalogName; | ||
|
||
/** | ||
* 二级子课程id. | ||
*/ | ||
private String courseListId; | ||
|
||
/** | ||
* 视频路径. | ||
*/ | ||
private String path; | ||
|
||
/** | ||
* 语言. | ||
*/ | ||
private String lang; | ||
|
||
/** | ||
* 课程目录. | ||
*/ | ||
private String courseCatalog; | ||
|
||
/** | ||
* 文本内容. | ||
*/ | ||
private String textContent; | ||
|
||
/** | ||
* 标题. | ||
*/ | ||
private String title; | ||
|
||
/** | ||
* 类型. | ||
*/ | ||
private String type; | ||
|
||
/** | ||
* 课程描述. | ||
*/ | ||
private String courseDescription; | ||
|
||
/** | ||
* 一级课程id. | ||
*/ | ||
private String childrenId; | ||
|
||
/** | ||
* 课程类别. | ||
*/ | ||
private String courseClasses; | ||
|
||
/** | ||
* 二级课程封面. | ||
*/ | ||
private String courseCover; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
80 changes: 80 additions & 0 deletions
80
src/main/java/com/search/infrastructure/search/mindspore/dataobject/MindsporeCourseDo.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
/* Copyright (c) 2024 openEuler Community | ||
EasySoftware is licensed under the Mulan PSL v2. | ||
You can use this software according to the terms and conditions of the Mulan PSL v2. | ||
You may obtain a copy of Mulan PSL v2 at: | ||
http://license.coscl.org.cn/MulanPSL2 | ||
THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, | ||
EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, | ||
MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE. | ||
See the Mulan PSL v2 for more details. | ||
*/ | ||
package com.search.infrastructure.search.mindspore.dataobject; | ||
|
||
import lombok.Getter; | ||
import lombok.Setter; | ||
|
||
@Getter | ||
@Setter | ||
public class MindsporeCourseDo { | ||
|
||
/** | ||
* 课程目录名称. | ||
*/ | ||
private String courseCatalogName; | ||
|
||
/** | ||
* 二级子课程id. | ||
*/ | ||
private String courseListId; | ||
|
||
/** | ||
* 视频路径. | ||
*/ | ||
private String path; | ||
|
||
/** | ||
* 语言. | ||
*/ | ||
private String lang; | ||
|
||
/** | ||
* 课程目录. | ||
*/ | ||
private String courseCatalog; | ||
|
||
/** | ||
* 文本内容. | ||
*/ | ||
private String textContent; | ||
|
||
/** | ||
* 标题. | ||
*/ | ||
private String title; | ||
|
||
/** | ||
* 类型. | ||
*/ | ||
private String type; | ||
|
||
/** | ||
* 课程描述. | ||
*/ | ||
private String courseDescription; | ||
|
||
/** | ||
* 一级课程id. | ||
*/ | ||
private String childrenId; | ||
|
||
/** | ||
* 课程类别. | ||
*/ | ||
private String courseClasses; | ||
|
||
/** | ||
* 二级课程封面. | ||
*/ | ||
private String courseCover; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.