From 93af1c6ffb9ae0e894689ad3a37b548e57d54cff Mon Sep 17 00:00:00 2001 From: linzhijie <19970921lzj> Date: 星期四, 11 三月 2021 19:10:07 +0800 Subject: [PATCH] 有注释的测评系统业务代码 --- src/main/java/com/ots/project/exam/dto/RelatedParty.java | 88 ++++++++++++++++++++++++++++++++++++------- 1 files changed, 73 insertions(+), 15 deletions(-) diff --git a/src/main/java/com/ots/project/exam/dto/RelatedParty.java b/src/main/java/com/ots/project/exam/dto/RelatedParty.java index 8ed2ff2..fd80ef8 100644 --- a/src/main/java/com/ots/project/exam/dto/RelatedParty.java +++ b/src/main/java/com/ots/project/exam/dto/RelatedParty.java @@ -1,43 +1,101 @@ package com.ots.project.exam.dto; + import lombok.Getter; import lombok.Setter; + import java.util.Date; +/** + * 涓棿灞傦紝鏍规嵁TOKEN杩斿洖鐩稿叧鑱斿弬鏁� + */ @Getter @Setter public class RelatedParty { - + + /** + * 娴嬭瘯鍖呯紪鐮� + */ private Long testId; - + + /** + * 娴嬭瘯鍖呭悕绉� + */ private String testName; - + + /** + * 浜у搧缂栫爜 + */ private Long prodId; - + + + /** + * 浜у搧鍚嶇О + */ private String prodName; - + + /** + * 璇勬祴鐢ㄦ埛缂栫爜 + */ private Long memberId; - + + /** + * 璇勬祴鐢ㄦ埛鍚嶇О + */ private String memberName; - + + /** + * 浼佷笟缂栫爜 + */ private Long user_id; - + + /** + * 浼佷笟鍚嶇О + */ + private String userName; - + + /** + * 鍒嗛攢鍟嗙紪鐮� + */ private Long user_parent_id; - + + /** + * 闂嵎妯$増ID + */ private String questionTemplateId; - + + /** + * 鎶ュ憡妯℃澘缂栫爜锛屼粠EntTestPackage鐨剅eportTemplateId杩囨潵锛岀敤閫楀彿闅斿紑 + */ private String reportTemplateId; - + + /** + * 鏄惁鑷姩鍙戦�佹姤鍛� + */ + private boolean autoSendReport; - + + /** + * 娴嬭瘯鍖呯姸鎬� + */ private String status; + private String position; + private String professionalCategory; + private String superiorPosition; + private Date startTime; - + + /** + * 鎵嬫満鍙风爜 + */ private String memberPhone; - + + /** + * 閮ㄩ棬鍚嶇О + */ private String memberDept; + } -- Gitblit v1.9.1