parent
c9d9ffecb6
commit
847639f5a5
6 changed files with 132 additions and 23 deletions
@ -0,0 +1,38 @@ |
|||||||
|
package com.teaching.backend.model.dto.KnowGraph; |
||||||
|
|
||||||
|
import lombok.Data; |
||||||
|
import org.springframework.data.neo4j.core.schema.Property; |
||||||
|
|
||||||
|
import java.io.Serializable; |
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
@Data |
||||||
|
public class KnowCourseCreateRequest implements Serializable { |
||||||
|
|
||||||
|
/** |
||||||
|
* 知识点名称 |
||||||
|
*/ |
||||||
|
private String courseId; |
||||||
|
|
||||||
|
/** |
||||||
|
* 知识点名称 |
||||||
|
*/ |
||||||
|
private String name; |
||||||
|
|
||||||
|
/** |
||||||
|
* 信息 |
||||||
|
*/ |
||||||
|
|
||||||
|
private String info; |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 知识点所关联的资源 |
||||||
|
*/ |
||||||
|
@Property |
||||||
|
private List<Integer> resourceList; |
||||||
|
|
||||||
|
|
||||||
|
} |
||||||
|
|
@ -0,0 +1,50 @@ |
|||||||
|
package com.teaching.backend.model.entity.KnowGraph; |
||||||
|
|
||||||
|
import lombok.Data; |
||||||
|
import org.springframework.data.neo4j.core.schema.GeneratedValue; |
||||||
|
import org.springframework.data.neo4j.core.schema.Id; |
||||||
|
import org.springframework.data.neo4j.core.schema.Node; |
||||||
|
import org.springframework.data.neo4j.core.schema.Property; |
||||||
|
|
||||||
|
import java.io.Serializable; |
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
@Node |
||||||
|
@Data |
||||||
|
public class KnowCourse implements Serializable { |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* id |
||||||
|
*/ |
||||||
|
@Id |
||||||
|
@GeneratedValue |
||||||
|
private Long id; |
||||||
|
|
||||||
|
/** |
||||||
|
* 知识点名称 |
||||||
|
*/ |
||||||
|
private String courseId; |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 知识点名称 |
||||||
|
*/ |
||||||
|
@Property |
||||||
|
private String name; |
||||||
|
|
||||||
|
/** |
||||||
|
* 信息 |
||||||
|
*/ |
||||||
|
@Property |
||||||
|
private String info; |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 知识点所关联的资源 |
||||||
|
*/ |
||||||
|
@Property |
||||||
|
private List<Integer> resourceList; |
||||||
|
|
||||||
|
} |
||||||
|
|
Loading…
Reference in new issue