选煤厂生产管理平台后台代码
Jay
6 天以前 8d3ff63ab144ad6b48015b01196bc901944a48f9
提交 | 用户 | 时间
7e21bc 1 package com.iailab.module.pms.coalquality.modules.wash.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
10 /**
11  * @author PanZhibao
12  * @Description
13  * @createTime 2023年12月12日 13:29:00
14  */
15 @Data
16 @Schema(description = "入洗原煤指标")
17 public class QualityWashTargetDTO implements Serializable {
18     private static final long serialVersionUID = 1L;
19
20     @Schema(description = "id")
21     private String id;
22
23     @Schema(description = "年月")
24     private String ny;
25
26     @Schema(description = "煤种")
27     private String mz;
28
29     @Schema(description = "煤种")
30     private String mzName;
31
32     @Schema(description = "用煤单位")
33     private String ymdw;
34
35     @JsonFormat(shape = JsonFormat.Shape.STRING)
36     @Schema(description = "产品量")
37     private BigDecimal cpl;
38
39     @JsonFormat(shape = JsonFormat.Shape.STRING)
40     @Schema(description = "原煤水分Mt%")
41     private BigDecimal ymSf;
42
43     @JsonFormat(shape = JsonFormat.Shape.STRING)
44     @Schema(description = "原煤灰分Ad%")
45     private BigDecimal ymHf;
46
47     @JsonFormat(shape = JsonFormat.Shape.STRING)
48     @Schema(description = "原煤硫份St,d%")
49     private BigDecimal ymLf;
50
51     @JsonFormat(shape = JsonFormat.Shape.STRING)
52     @Schema(description = "精煤水分Mt%")
53     private BigDecimal jmSf;
54
55     @JsonFormat(shape = JsonFormat.Shape.STRING)
56     @Schema(description = "精煤灰分Ad%")
57     private BigDecimal jmHf;
58
59     @JsonFormat(shape = JsonFormat.Shape.STRING)
60     @Schema(description = "精煤硫份St,d%")
61     private BigDecimal jmLf;
62
63     @JsonFormat(shape = JsonFormat.Shape.STRING)
64     @Schema(description = "精煤挥发分Vdaf%")
65     private BigDecimal jmHff;
66
67     @JsonFormat(shape = JsonFormat.Shape.STRING)
68     @Schema(description = "精煤粘结GR.I")
69     private BigDecimal jmNj;
70
71     @JsonFormat(shape = JsonFormat.Shape.STRING)
72     @Schema(description = "精煤胶质层Y(㎜)GR.I")
73     private BigDecimal jmJzc;
74
75     @JsonFormat(shape = JsonFormat.Shape.STRING)
76     @Schema(description = "中煤灰分Ad%")
77     private BigDecimal zmHf;
78
79     @JsonFormat(shape = JsonFormat.Shape.STRING)
80     @Schema(description = "中煤硫份St,d%")
81     private BigDecimal zmLf;
82
83     @JsonFormat(shape = JsonFormat.Shape.STRING)
84     @Schema(description = "矸石灰分Ad%")
85     private BigDecimal gsHf;
86
87     @Schema(description = "创建人")
88     private String creator;
89
90     @Schema(description = "创建时间")
91     private java.util.Date createDate;
92
93     @Schema(description = "修改人")
94     private String updater;
95
96     @Schema(description = "修改时间")
97     private java.util.Date updateDate;
98 }