From 7d2a3da6223ced6f72423931b7f63f27445d63eb Mon Sep 17 00:00:00 2001 From: zf <1603559716@qq.com> Date: 星期二, 26 三月 2024 16:59:59 +0800 Subject: [PATCH] 加前缀 --- exam-system/src/main/java/com/gkhy/exam/noncoalmine/model/vo/ExamApplyVO.java | 64 ++++++++++++++++++++++++++++++++ 1 files changed, 64 insertions(+), 0 deletions(-) diff --git a/exam-system/src/main/java/com/gkhy/exam/noncoalmine/model/vo/ExamApplyVO.java b/exam-system/src/main/java/com/gkhy/exam/noncoalmine/model/vo/ExamApplyVO.java new file mode 100644 index 0000000..165a018 --- /dev/null +++ b/exam-system/src/main/java/com/gkhy/exam/noncoalmine/model/vo/ExamApplyVO.java @@ -0,0 +1,64 @@ +package com.gkhy.exam.noncoalmine.model.vo; + +import com.fasterxml.jackson.annotation.JsonFormat; +import lombok.Data; + +import java.util.Date; + +/** + * @email 1603559716@qq.com + * @author: zf + * @date: 2024/2/4 + * @time: 13:47 + */ +@Data +public class ExamApplyVO { + private Long applyId; + + private String examName; + + private Long institutionId; + + private String institutionName; + + private Long siteId; + + private String siteName; + + private String districtName; + + private Integer examNum; + //是否为煤矿:0为非,1是 + private Byte isCm; + + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") + private Date examStartTime; + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") + private Date examEndTime; + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") + private Date resitStartTime; + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") + private Date resitEndTime; + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") + private Date operationStartTime; + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") + private Date operationEndTime; + + private String siteContacts; + + private String siteContactsPhone; + + private String institutionContacts; + + private String institutionContactsPhone; + + private Integer delFlag; + + private Date createTime; + + private Date updateTime; + + private String createBy; + + private String updateBy; +} -- Gitblit v1.9.2