houzhongjian
2024-07-23 a6de490948278991e47952e90671ddba4555e9a2
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
package com.iailab.module.cons.dto;
 
import io.swagger.v3.oas.annotations.media.Schema;
 
import lombok.Data;
 
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2024年05月27日
 */
@Data
@Schema(name = "日煤质趋势")
public class ConsDayDataDTO implements Serializable {
    private static final long serialVersionUID = 1L;
 
    @Schema(name = "id")
    private String id;
 
    @Schema(name = "月份")
    private String monthstr;
 
    @Schema(name = "日期")
    private String type;
 
    @Schema(name = "日期")
    private String date;
 
    @Schema(name = "阴离子kg")
    private BigDecimal anion;
 
    @Schema(name = "阴离子费用")
    private BigDecimal anionFee;
 
    @Schema(name = "阴离子吨耗")
    private BigDecimal anionPerCoal;
 
    @Schema(name = "阳离子kg")
    private BigDecimal cation;
 
    @Schema(name = "阳离子费用")
    private BigDecimal cationFee;
 
    @Schema(name = "阳离子吨耗")
    private BigDecimal cationPerCoal;
 
    @Schema(name = "入洗原煤量吨")
    private BigDecimal coalWeight;
 
    @Schema(name = "电耗kWh")
    private BigDecimal elec;
 
    @Schema(name = "电耗费用")
    private BigDecimal elecFee;
 
    @Schema(name = "电吨耗")
    private BigDecimal elecPerCoal;
 
    @Schema(name = "介质kg")
    private BigDecimal medium;
 
    @Schema(name = "介质费用")
    private BigDecimal mediumFee;
 
    @Schema(name = "介质吨耗")
    private BigDecimal mediumPerCoal;
 
    @Schema(name = "水耗m3")
    private BigDecimal water;
 
    @Schema(name = "水费用")
    private BigDecimal waterFee;
 
    @Schema(name = "水吨耗")
    private BigDecimal waterPerCoal;
 
    @Schema(name = "创建日期")
    private Date createDate;
}