提交 | 用户 | 时间
|
8d3ff6
|
1 |
package com.iailab.module.pms.coalquality.modules.plan.dto; |
J |
2 |
|
|
3 |
|
|
4 |
import com.iailab.framework.common.validation.group.AddGroup; |
|
5 |
import com.iailab.framework.common.validation.group.UpdateGroup; |
|
6 |
import io.swagger.v3.oas.annotations.media.Schema; |
|
7 |
import lombok.Data; |
|
8 |
|
|
9 |
import javax.validation.constraints.NotNull; |
|
10 |
import javax.validation.constraints.Null; |
|
11 |
import java.io.Serializable; |
|
12 |
import java.math.BigDecimal; |
|
13 |
|
|
14 |
/** |
|
15 |
* @author PanZhibao |
|
16 |
* @Description |
|
17 |
* @createTime 2023年02月04日 14:53:00 |
|
18 |
*/ |
|
19 |
@Data |
|
20 |
@Schema(description = "质量计划详细表") |
|
21 |
public class QualityPlanDetDTO implements Serializable { |
|
22 |
private static final long serialVersionUID = 1L; |
|
23 |
|
|
24 |
@Schema(description = "id") |
|
25 |
@Null(message="{id.null}", groups = AddGroup.class) |
|
26 |
@NotNull(message="{id.require}", groups = UpdateGroup.class) |
|
27 |
private String id; |
|
28 |
|
|
29 |
@Schema(description = "计划ID") |
|
30 |
private String planId; |
|
31 |
|
|
32 |
@Schema(description = "单位") |
|
33 |
private String dw; |
|
34 |
|
|
35 |
@Schema(description = "煤种") |
|
36 |
private String mz; |
|
37 |
|
|
38 |
@Schema(description = "产品量") |
|
39 |
private BigDecimal cpl; |
|
40 |
|
|
41 |
@Schema(description = "灰分比较符") |
|
42 |
private String hfBjf; |
|
43 |
|
|
44 |
@Schema(description = "灰分Ad%") |
|
45 |
private BigDecimal hf; |
|
46 |
|
|
47 |
@Schema(description = "水分比较符") |
|
48 |
private String sfBjf; |
|
49 |
|
|
50 |
@Schema(description = "水分Mt%") |
|
51 |
private BigDecimal sf; |
|
52 |
|
|
53 |
@Schema(description = "硫份St,d%比较符") |
|
54 |
private String lfBjf; |
|
55 |
|
|
56 |
@Schema(description = "硫份St,d%") |
|
57 |
private BigDecimal lf; |
|
58 |
|
|
59 |
@Schema(description = "挥发分比较符") |
|
60 |
private String hffBjf; |
|
61 |
|
|
62 |
@Schema(description = "挥发分Vdaf%") |
|
63 |
private BigDecimal hff; |
|
64 |
|
|
65 |
@Schema(description = "粘结比较符") |
|
66 |
private String njBjf; |
|
67 |
|
|
68 |
@Schema(description = "粘结GR.I") |
|
69 |
private BigDecimal nj; |
|
70 |
|
|
71 |
@Schema(description = "胶质层比较符") |
|
72 |
private String jzcBjf; |
|
73 |
|
|
74 |
@Schema(description = "胶质层Y(㎜)GR.I") |
|
75 |
private BigDecimal jzc; |
|
76 |
|
|
77 |
@Schema(description = "发热量(cal/g)") |
|
78 |
private BigDecimal frl; |
|
79 |
|
|
80 |
@Schema(description = "发热量偏差") |
|
81 |
private BigDecimal frlPc; |
|
82 |
|
|
83 |
@Schema(description = "中损比较符") |
|
84 |
private String zsBjf; |
|
85 |
|
|
86 |
@Schema(description = "中损") |
|
87 |
private BigDecimal zs; |
|
88 |
|
|
89 |
@Schema(description = "中损采样点") |
|
90 |
private String zsCyd; |
|
91 |
|
|
92 |
@Schema(description = "矸损比较符") |
|
93 |
private String gsBjf; |
|
94 |
|
|
95 |
@Schema(description = "矸损") |
|
96 |
private BigDecimal gs; |
|
97 |
|
|
98 |
@Schema(description = "矸损采样点") |
|
99 |
private String gsCyd; |
|
100 |
|
|
101 |
@Schema(description = "压滤煤泥灰分比较符") |
|
102 |
private String ylmnHfBjf; |
|
103 |
|
|
104 |
@Schema(description = "压滤煤泥灰分Ad%") |
|
105 |
private BigDecimal ylmnHf; |
|
106 |
|
|
107 |
@Schema(description = "压滤煤泥采样点") |
|
108 |
private String ylmnCyd; |
|
109 |
|
|
110 |
@Schema(description = "排序") |
|
111 |
private Integer sort; |
|
112 |
} |