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
| package com.gkhy.exam.coalmine.model.dto.resp;
|
| 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 GetTrainDataRespDTO 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;
| }
|
|