package com.gkhy.exam.coalmine.model.dto.resp;
|
|
import com.ruoyi.file.entity.AttachmentInfo;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.time.LocalDateTime;
|
import java.util.List;
|
|
/**
|
* @author Mr.huang
|
* @decription
|
* @date 2023/9/13 14:23
|
*/
|
@Data
|
public class GetExamDataRespDTO implements Serializable {
|
|
private Long id;
|
|
private LocalDateTime reportTime;
|
|
private Long districtId;
|
|
private String examCenter;
|
|
private String excType;
|
|
//是否为煤矿:0为非,1是
|
private Byte isCm;
|
|
private List<AttachmentInfoRespDTO> attachmentInfos;
|
}
|