教育训练处考试制证系统后端
zf
2024-02-19 1936cef71ca4ef95d52c951b4af5948c7885b893
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
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;
}