linzhijie
2021-04-12 2f737df6f8e482540a465445bdb003d98103db54
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
package com.ots.project.exam.domain;
import com.ots.framework.aspectj.lang.annotation.Excel;
import com.ots.framework.web.domain.BaseEntity;
import com.ots.project.exam.dto.ExamPaperTitleItem;
import lombok.Getter;
import lombok.Setter;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import java.util.Date;
import java.util.List;
 
@Getter
@Setter
public class TExamPaper extends BaseEntity {
    private static final long serialVersionUID = 1L;
    
    private Long id;
    
    @Excel(name = "产品包名称")
    private String name;
    
    @Excel(name = "维度")
    private Long subjectId;
    private String subjectName;
    
    private Long paperType;
    
    private Long gradeLevel;
    
    private Long score;
    
    private Long questionCount;
    
    private Long suggestTime;
    
    private Date limitStartTime;
    
    private Date limitEndTime;
    
    private Long frameTextContentId;
    
    private Long createUser;
    
    private Long deleted;
    
    private Long taskExamId;
    
    private String questions;
    private String guide;
    private Long levelId;
    private String levelName;
    private String questionTemplateId;
    private String questionTemplateName;
    
    private Long lastId;
    
    private ExamPaperTitleItem examPaperTitleItem;
    
    private String content;
    
    private Long uuid;
    private String langType;
    private String langName;
    private String multilingual;
    private List<String> multilinguals;
    
    private String questionContent;
    
    private String operatingLanguage;
    
    private String version;
    
    private boolean create = false;
    
    private String versionId;
    
    private String reportTemplateId;
    @Override
    public String toString() {
        return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
                .append("id", getId())
                .append("name", getName())
                .append("subjectId", getSubjectId())
                .append("paperType", getPaperType())
                .append("gradeLevel", getGradeLevel())
                .append("score", getScore())
                .append("questionCount", getQuestionCount())
                .append("suggestTime", getSuggestTime())
                .append("limitStartTime", getLimitStartTime())
                .append("limitEndTime", getLimitEndTime())
                .append("frameTextContentId", getFrameTextContentId())
                .append("createUser", getCreateUser())
                .append("createTime", getCreateTime())
                .append("deleted", getDeleted())
                .append("taskExamId", getTaskExamId())
                .toString();
    }
}