提交 | 用户 | 时间
|
7e21bc
|
1 |
package com.iailab.module.pms.coalquality.modules.detection.dto; |
J |
2 |
|
|
3 |
import com.fasterxml.jackson.annotation.JsonFormat; |
|
4 |
import io.swagger.v3.oas.annotations.media.Schema; |
|
5 |
import lombok.Data; |
|
6 |
|
|
7 |
import java.io.Serializable; |
|
8 |
import java.math.BigDecimal; |
|
9 |
import java.util.Date; |
|
10 |
|
|
11 |
/** |
|
12 |
* 煤质检测 |
|
13 |
* |
|
14 |
* @author PanZhibao |
|
15 |
* @Description |
|
16 |
* @createTime 2023年02月07日 13:19:00 |
|
17 |
*/ |
|
18 |
@Data |
|
19 |
@Schema(description = "煤质检测") |
|
20 |
public class QualityDetectionDTO implements Serializable { |
|
21 |
private static final long serialVersionUID = 1L; |
|
22 |
|
|
23 |
@Schema(description = "id") |
|
24 |
private String id; |
|
25 |
|
|
26 |
@Schema(description = "关联ID") |
|
27 |
private String rglid; |
|
28 |
|
|
29 |
@Schema(description = "流水号") |
|
30 |
private String code; |
|
31 |
|
|
32 |
@Schema(description = "煤质检测类型") |
|
33 |
private String type; |
|
34 |
|
|
35 |
@Schema(description = "日期") |
|
36 |
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
|
37 |
private java.util.Date rq; |
|
38 |
|
|
39 |
@Schema(description = "班次") |
|
40 |
private String bc; |
|
41 |
|
|
42 |
@Schema(description = "班次") |
|
43 |
private String bcName; |
|
44 |
|
|
45 |
@Schema(description = "采样时间") |
|
46 |
private java.util.Date cysj; |
|
47 |
|
|
48 |
@Schema(description = "采样点") |
|
49 |
private String cyd; |
|
50 |
|
|
51 |
@Schema(description = "采样点") |
|
52 |
private String cydName; |
|
53 |
|
|
54 |
@Schema(description = "产量") |
|
55 |
@JsonFormat(shape = JsonFormat.Shape.STRING) |
|
56 |
private BigDecimal cl; |
|
57 |
|
|
58 |
@Schema(description = "采样数量") |
|
59 |
@JsonFormat(shape = JsonFormat.Shape.STRING) |
|
60 |
private BigDecimal cysl; |
|
61 |
|
|
62 |
@Schema(description = "化验时间") |
|
63 |
private java.util.Date hysj; |
|
64 |
|
|
65 |
@Schema(description = "煤种") |
|
66 |
private String mz; |
|
67 |
|
|
68 |
@Schema(description = "煤种") |
|
69 |
private String mzName; |
|
70 |
|
|
71 |
@Schema(description = "灰分Ad%") |
|
72 |
@JsonFormat(shape = JsonFormat.Shape.STRING) |
|
73 |
private BigDecimal hf; |
|
74 |
|
|
75 |
@Schema(description = "水分Mt%") |
|
76 |
@JsonFormat(shape = JsonFormat.Shape.STRING) |
|
77 |
private BigDecimal sf; |
|
78 |
|
|
79 |
@Schema(description = "硫份St,d%") |
|
80 |
@JsonFormat(shape = JsonFormat.Shape.STRING) |
|
81 |
private BigDecimal lf; |
|
82 |
|
|
83 |
@Schema(description = "挥发分Vdaf%") |
|
84 |
@JsonFormat(shape = JsonFormat.Shape.STRING) |
|
85 |
private BigDecimal hff; |
|
86 |
|
|
87 |
@Schema(description = "粘结GR.I") |
|
88 |
@JsonFormat(shape = JsonFormat.Shape.STRING) |
|
89 |
private BigDecimal nj; |
|
90 |
|
|
91 |
@Schema(description = "胶质层Y(㎜)GR.I") |
|
92 |
@JsonFormat(shape = JsonFormat.Shape.STRING) |
|
93 |
private BigDecimal jzc; |
|
94 |
|
|
95 |
@Schema(description = "发热量(cal/g)") |
|
96 |
@JsonFormat(shape = JsonFormat.Shape.STRING) |
|
97 |
private BigDecimal frl; |
|
98 |
|
|
99 |
@Schema(description = "中损") |
|
100 |
private BigDecimal zs; |
|
101 |
|
|
102 |
@Schema(description = "矸损") |
|
103 |
private BigDecimal gs; |
|
104 |
|
|
105 |
@Schema(description = "压滤煤泥灰分Ad%") |
|
106 |
private BigDecimal ylmnHf; |
|
107 |
|
|
108 |
@Schema(description = "备注") |
|
109 |
private String bz; |
|
110 |
|
|
111 |
@Schema(description = "创建人") |
|
112 |
private String creator; |
|
113 |
|
|
114 |
@Schema(description = "创建时间") |
|
115 |
private Date createDate; |
|
116 |
|
|
117 |
@Schema(description = "修改人") |
|
118 |
private String updater; |
|
119 |
|
|
120 |
@Schema(description = "修改时间") |
|
121 |
private java.util.Date updateDate; |
|
122 |
} |