选煤厂生产管理平台后台代码
dongyukun
2024-12-10 b643c158bc05f2a7f95bb9fed15a1451691eaef4
提交 | 用户 | 时间
532d0b 1 package com.iailab.module.pms.production.warehouse.entity;
D 2
3 import com.baomidou.mybatisplus.annotation.TableField;
4 import com.baomidou.mybatisplus.annotation.TableName;
5 import com.fasterxml.jackson.annotation.JsonFormat;
6 import lombok.Data;
7
8 import java.io.Serializable;
9 import java.math.BigDecimal;
10 import java.util.Date;
11
12 /**
13  * @author DongYukun
14  * @Description
15  * @createTime 2023年02月17日 09:41:00
16  */
17 @Data
18 @TableName("t_warehouse_stock")
19 public class WarehouseStockEntity implements Serializable {
20
21     private static final long serialVersionUID = 1L;
22
23     /**
24      * id
25      */
26     private String id;
27
28     /**
29      * 日期
30      */
31     private String rq;
32
33     /**
34      * 班次
35      */
36     private String bc;
37
38     /**
39      * 流水号
40      */
41     private String lsh;
42
43     /**
44      * 库存煤种
45      */
46     private String kcmz;
47
48     /**
49      * 单价(元/t)
50      */
51     private BigDecimal danj;
52
53     /**
54      * 内报昨日库存
55      */
56     @JsonFormat(shape = JsonFormat.Shape.STRING)
57     private BigDecimal nbzrkc;
58
59     /**
60      * 内报今日入库
61      */
62     @JsonFormat(shape = JsonFormat.Shape.STRING)
63     private BigDecimal nbjrrk;
64
65     /**
66      * 内报今日出库
67      */
68     @JsonFormat(shape = JsonFormat.Shape.STRING)
69     private BigDecimal nbjrck;
70
71     /**
72      * 内报调整量
73      */
74     @JsonFormat(shape = JsonFormat.Shape.STRING)
75     private BigDecimal nbtzl;
76
77     /**
78      * 内报今日库存
79      */
80     @JsonFormat(shape = JsonFormat.Shape.STRING)
81     private BigDecimal nbjrkc;
82
83     /**
84      * 外报昨日库存
85      */
86     @JsonFormat(shape = JsonFormat.Shape.STRING)
87     private BigDecimal wbzrkc;
88
89     /**
90      * 外报今日入库
91      */
92     @JsonFormat(shape = JsonFormat.Shape.STRING)
93     private BigDecimal wbjrrk;
94
95     /**
96      * 外报今日出库
97      */
98     @JsonFormat(shape = JsonFormat.Shape.STRING)
99     private BigDecimal wbjrck;
100
101     /**
102      * 外报调整量
103      */
104     @JsonFormat(shape = JsonFormat.Shape.STRING)
105     private BigDecimal wbtzl;
106
107     /**
108      * 外报今日库存
109      */
110     @JsonFormat(shape = JsonFormat.Shape.STRING)
111     private BigDecimal wbjrkc;
112
113     /**
114      * 灰分Ad%
115      */
116     @JsonFormat(shape = JsonFormat.Shape.STRING)
117     private BigDecimal hf;
118
119     /**
120      * 水分Mt%
121      */
122     @JsonFormat(shape = JsonFormat.Shape.STRING)
123     private BigDecimal sf;
124
125     /**
126      * 硫份St,d%
127      */
128     @JsonFormat(shape = JsonFormat.Shape.STRING)
129     private BigDecimal lf;
130
131     /**
132      * 挥发分Vdaf%
133      */
134     @JsonFormat(shape = JsonFormat.Shape.STRING)
135     private BigDecimal hff;
136
137     /**
138      * 粘结GR.I
139      */
140     private BigDecimal nj;
141
142     /**
143      * 胶质层Y(㎜)GR.I
144      */
145     private BigDecimal jzc;
146
147     /**
148      * 发热量(cal/g)
149      */
150     private BigDecimal frl;
151
152     /**
153      * 中损
154      */
155     private BigDecimal zs;
156
157     /**
158      * 矸损
159      */
160     private BigDecimal gs;
161
162     /**
163      * 压滤煤泥灰分Ad%
164      */
165     @JsonFormat(shape = JsonFormat.Shape.STRING)
166     private BigDecimal ylmnHf;
167
168     /**
169      * 备注
170      */
171     private String bz;
172
173     /**
174      * 创建人
175      */
176     private String cjr;
177
178     /**
179      * 创建时间
180      */
181     private Date cjsj;
182
183     /**
184      * 修改人
185      */
186     private String xgr;
187
188     /**
189      * 修改时间
190      */
191     private Date xgsj;
192
193     /**
194      * 标识(原煤库存、产品库存)
195      */
196     private String bs;
197
198 }