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