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;
|
}
|