From 5e873863bc7324894c89b0a0fc77a6202c91cd64 Mon Sep 17 00:00:00 2001 From: wzp <516075396@qq.com> Date: 星期二, 06 四月 2021 10:35:42 +0800 Subject: [PATCH] 20210406 --- src/main/java/com/ots/project/exam/domain/TExamPaper.java | 122 ++++++++-------------------------------- 1 files changed, 25 insertions(+), 97 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 68babc7..5603a34 100644 --- a/src/main/java/com/ots/project/exam/domain/TExamPaper.java +++ b/src/main/java/com/ots/project/exam/domain/TExamPaper.java @@ -1,5 +1,4 @@ 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; @@ -7,146 +6,75 @@ 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