ClassSubjectTaskDO.java
1021 Bytes
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
package com.meishu.model;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import java.util.Date;
import java.util.List;
/**
* @author: tuyp
* @create: 2020-06-03 14:28
*/
@Data
@TableName("class_subject_task")
public class ClassSubjectTaskDO {
@TableId(type = IdType.AUTO)
private Integer id;
private Integer subjectId;
private String treeId;
private String treeName;
private Date taskDate;
private Integer teacherId;
/**
* 作业类型 0:预习作业 1课后作业
*/
private Integer taskType;
private String subjectEn;
private Integer classId;
private String grade;
private String classes;
private String session;
private String subjectType;
private String className;
private String semester;
private Date createDate;
private Date updateDate;
private Date deleteDate;
}