From 8f781f3cb17187a7ee58f41632c25fbb2aa81cc7 Mon Sep 17 00:00:00 2001 From: linzhijie <19970921lzj> Date: 星期二, 16 三月 2021 19:57:24 +0800 Subject: [PATCH] 补充环境配置 --- src/main/java/com/ots/project/exam/domain/TExamPaper.java | 122 ++++++++++++++++++++++++++++++++-------- 1 files changed, 97 insertions(+), 25 deletions(-) diff --git a/src/main/java/com/ots/project/exam/domain/TExamPaper.java b/src/main/java/com/ots/project/exam/domain/TExamPaper.java index 5603a34..68babc7 100644 --- a/src/main/java/com/ots/project/exam/domain/TExamPaper.java +++ b/src/main/java/com/ots/project/exam/domain/TExamPaper.java @@ -1,4 +1,5 @@ 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; @@ -6,75 +7,146 @@ 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; +/** + * 浜у搧鍖呭垪琛ㄥ璞� t_exam_paper + * + * @author ots + * @date 2019-11-20 + */ @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; - + + /** + * 璇曞嵎绫诲瀷( 1鍥哄畾璇曞嵎 2涓存椂璇曞嵎 3鐝骇璇曞嵎 4.鏃舵璇曞嵎 5.鎺ㄩ�佽瘯鍗�) + */ private Long paperType; - + + /** + * 绾у埆 + */ private Long gradeLevel; - + + /** + * 璇曞嵎鎬诲垎(鍗冨垎鍒�) + */ private Long score; - + + /** + * 棰樼洰鏁伴噺 + */ private Long questionCount; - + + /** + * 寤鸿鏃堕暱(鍒嗛挓) + */ private Long suggestTime; - + + /** + * 鏃舵璇曞嵎 寮�濮嬫椂闂� + */ private Date limitStartTime; - + + /** + * 鏃舵璇曞嵎 缁撴潫鏃堕棿 + */ private Date limitEndTime; - + + /** + * 璇曞嵎妗嗘灦 鍐呭涓篔SON + */ private Long frameTextContentId; - + + /** + * null + */ private Long createUser; - + + /** + * null + */ private Long deleted; - + + /** + * null + */ private Long taskExamId; - + + /*鏍囬閲岄潰鐨勯鐩紝鐜板湪鍦ㄥ墠鍙版嫾鎴恓son*/ 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; - + + // 淇敼鐨勬椂鍊欎竴涓増鏈彿锛孷1,V2 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) -- Gitblit v1.9.1