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
| package com.mindskip.xzs.domain;
|
| import lombok.Data;
|
| import java.util.Date;
|
| /**
| * 在线学习
| *
| * @author:xp
| * @date:2024/5/16 10:42
| */
| @Data
| public class OnlineStudy {
|
| private Integer id;
|
| /** 文件类型 */
| private String contentType;
|
| /** 文件地址 */
| private String contentUrl;
|
| /** 所属分类 */
| private Integer belongType;
|
| /** 主题 */
| private String subject;
|
| /** 附件 */
| private String attachment;
|
| private Date createTime;
|
| private Date updateTime;
|
| private Integer deleted;
|
| }
|
|