选煤厂生产管理平台后台代码
dongyukun
2024-12-10 532d0b7f83815ebeb4be9aa1f7a6683ede831b6a
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
package com.iailab.module.pms.production.warehouse.entity;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
 
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * @author DongYukun
 * @Description
 * @createTime 2023年02月17日 09:41:00
 */
@Data
@TableName("t_warehouse_stock")
public class WarehouseStockEntity implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * id
     */
    private String id;
 
    /**
     * 日期
     */
    private String rq;
 
    /**
     * 班次
     */
    private String bc;
 
    /**
     * 流水号
     */
    private String lsh;
 
    /**
     * 库存煤种
     */
    private String kcmz;
 
    /**
     * 单价(元/t)
     */
    private BigDecimal danj;
 
    /**
     * 内报昨日库存
     */
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private BigDecimal nbzrkc;
 
    /**
     * 内报今日入库
     */
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private BigDecimal nbjrrk;
 
    /**
     * 内报今日出库
     */
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private BigDecimal nbjrck;
 
    /**
     * 内报调整量
     */
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private BigDecimal nbtzl;
 
    /**
     * 内报今日库存
     */
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private BigDecimal nbjrkc;
 
    /**
     * 外报昨日库存
     */
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private BigDecimal wbzrkc;
 
    /**
     * 外报今日入库
     */
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private BigDecimal wbjrrk;
 
    /**
     * 外报今日出库
     */
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private BigDecimal wbjrck;
 
    /**
     * 外报调整量
     */
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private BigDecimal wbtzl;
 
    /**
     * 外报今日库存
     */
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private BigDecimal wbjrkc;
 
    /**
     * 灰分Ad%
     */
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private BigDecimal hf;
 
    /**
     * 水分Mt%
     */
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private BigDecimal sf;
 
    /**
     * 硫份St,d%
     */
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private BigDecimal lf;
 
    /**
     * 挥发分Vdaf%
     */
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private BigDecimal hff;
 
    /**
     * 粘结GR.I
     */
    private BigDecimal nj;
 
    /**
     * 胶质层Y(㎜)GR.I
     */
    private BigDecimal jzc;
 
    /**
     * 发热量(cal/g)
     */
    private BigDecimal frl;
 
    /**
     * 中损
     */
    private BigDecimal zs;
 
    /**
     * 矸损
     */
    private BigDecimal gs;
 
    /**
     * 压滤煤泥灰分Ad%
     */
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private BigDecimal ylmnHf;
 
    /**
     * 备注
     */
    private String bz;
 
    /**
     * 创建人
     */
    private String cjr;
 
    /**
     * 创建时间
     */
    private Date cjsj;
 
    /**
     * 修改人
     */
    private String xgr;
 
    /**
     * 修改时间
     */
    private Date xgsj;
 
    /**
     * 标识(原煤库存、产品库存)
     */
    private String bs;
 
}