提交 | 用户 | 时间
|
7e21bc
|
1 |
package com.iailab.module.pms.coalquality.modules.detection.dto; |
J |
2 |
|
8d3ff6
|
3 |
import com.fasterxml.jackson.annotation.JsonFormat; |
7e21bc
|
4 |
import io.swagger.v3.oas.annotations.media.Schema; |
J |
5 |
import lombok.Data; |
|
6 |
|
8d3ff6
|
7 |
import java.util.Date; |
7e21bc
|
8 |
import java.util.List; |
J |
9 |
|
|
10 |
/** |
|
11 |
* @author DongYukun |
|
12 |
* @Description |
|
13 |
* @createTime 2023年12月27日 9:53:00 |
|
14 |
*/ |
|
15 |
@Data |
|
16 |
@Schema(description = "快速检查") |
|
17 |
public class QualityQuickDTO { |
|
18 |
private static final long serialVersionUID = 1L; |
|
19 |
|
|
20 |
@Schema(description = "id") |
|
21 |
private String id; |
|
22 |
|
|
23 |
@Schema(description = "流水号") |
|
24 |
private String lsh; |
|
25 |
|
|
26 |
@Schema(description = "采样时间") |
8d3ff6
|
27 |
@JsonFormat(pattern = "yyyy-MM-dd hh:mm:ss", timezone = "GMT+8") |
J |
28 |
private Date datetime; |
7e21bc
|
29 |
|
J |
30 |
@Schema(description = "煤种") |
|
31 |
private String mz; |
|
32 |
|
|
33 |
@Schema(description = "煤种") |
|
34 |
private String mzName; |
|
35 |
|
|
36 |
@Schema(description = "快速检查详情") |
|
37 |
private List<QualityQuickItemDTO> itemList; |
|
38 |
|
|
39 |
} |