选煤厂生产管理平台后台代码
dongyukun
2024-12-10 b643c158bc05f2a7f95bb9fed15a1451691eaef4
提交 | 用户 | 时间
532d0b 1 package com.iailab.module.pms.production.wash.entity;
D 2
3 import com.baomidou.mybatisplus.annotation.*;
4 import com.fasterxml.jackson.annotation.JsonFormat;
5 import com.iailab.framework.common.annotation.Dict;
6 import lombok.Data;
7
8 import java.io.Serializable;
9 import java.math.BigDecimal;
10 import java.util.Date;
11
12 /**
13  * 小时量
14  *
15  * @author DongYukun
16  * @Description
17  * @createTime 2024年09月05日
18  */
19 @TableName("t_wash_hour_volume")
20 @Data
21 public class HourVolumeEntity implements Serializable {
22
23     private static final long serialVersionUID = 1L;
24
25     /**
26      * id
27      */
28     @TableId(type = IdType.INPUT)
29     private String id;
30
31     /**
32      * 日期
33      */
34     private String rq;
35
36     /**
37      * 班次
38      */
39     private String bc;
40
41     /**
42      * 流水号
43      */
44     private String lsh;
45
46     /**
47      * 时间
48      */
49     private Date sj;
50
51     /**
52      * 入洗量
53      */
54     @JsonFormat(shape =JsonFormat.Shape.STRING)
55     private BigDecimal rxl;
56
57     /**
58      * 精煤量
59      */
60     @JsonFormat(shape =JsonFormat.Shape.STRING)
61     private BigDecimal jml;
62
63     /**
64      * 混煤量
65      */
66     @JsonFormat(shape =JsonFormat.Shape.STRING)
67     private BigDecimal hml;
68
69     /**
70      * 矸石量
71      */
72     @JsonFormat(shape =JsonFormat.Shape.STRING)
73     private BigDecimal gsl;
74
75     /**
76      * 水洗矸石量
77      */
78     @JsonFormat(shape =JsonFormat.Shape.STRING)
79     private BigDecimal sxgsl;
80
81     /**
82      * 浮精板数
83      */
84     private BigDecimal fjbs;
85
86     /**
87      * 煤泥板数
88      */
89     private BigDecimal mnbs;
90
91     /**
92      * 备注
93      */
94     private String bz;
95
96     /**
97      * 创建人
98      */
99     private String cjr;
100
101     /**
102      * 创建时间
103      */
104     private Date cjsj;
105
106     /**
107      * 修改人
108      */
109     private String xgr;
110
111     /**
112      * 修改时间
113      */
114     private Date xgsj;
115
116 }