fuliqi
2024-07-03 526745df87b382366960df1c765b83a84d493019
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package com.ycl.jxkg.domain.entity;
 
import lombok.Data;
 
import java.util.Date;
 
/**
 * 教育资源
 * @author:flq
 * @date:2024/6/18 10:53
 */
@Data
public class EducationResource {
 
    private Integer id;
 
    /** 文件类型 */
    private String contentType;
 
    /** 文件地址 */
    private String contentUrl;
 
    /** 所属学科 */
    private Integer subjectId;
 
    /** 班级 */
    private Integer classId;
 
    /** 主题简介 */
    private String introduction;
 
    /** 附件 */
    private String attachment;
 
    private Integer createUser;
 
    private Date createTime;
 
    private Date updateTime;
 
    private Integer deleted;
 
}