选煤厂生产管理平台后台代码
dongyukun
2024-12-10 3f07ab2e03e501ae55d1d1b0d031daf50c8e13e5
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
package com.iailab.module.pms.production.wash.entity;
 
import com.baomidou.mybatisplus.annotation.*;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.iailab.framework.common.annotation.Dict;
import lombok.Data;
 
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * 小时量
 *
 * @author DongYukun
 * @Description
 * @createTime 2024年09月05日
 */
@TableName("t_wash_hour_volume")
@Data
public class HourVolumeEntity implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * id
     */
    @TableId(type = IdType.INPUT)
    private String id;
 
    /**
     * 日期
     */
    private String rq;
 
    /**
     * 班次
     */
    private String bc;
 
    /**
     * 流水号
     */
    private String lsh;
 
    /**
     * 时间
     */
    private Date sj;
 
    /**
     * 入洗量
     */
    @JsonFormat(shape =JsonFormat.Shape.STRING)
    private BigDecimal rxl;
 
    /**
     * 精煤量
     */
    @JsonFormat(shape =JsonFormat.Shape.STRING)
    private BigDecimal jml;
 
    /**
     * 混煤量
     */
    @JsonFormat(shape =JsonFormat.Shape.STRING)
    private BigDecimal hml;
 
    /**
     * 矸石量
     */
    @JsonFormat(shape =JsonFormat.Shape.STRING)
    private BigDecimal gsl;
 
    /**
     * 水洗矸石量
     */
    @JsonFormat(shape =JsonFormat.Shape.STRING)
    private BigDecimal sxgsl;
 
    /**
     * 浮精板数
     */
    private BigDecimal fjbs;
 
    /**
     * 煤泥板数
     */
    private BigDecimal mnbs;
 
    /**
     * 备注
     */
    private String bz;
 
    /**
     * 创建人
     */
    private String cjr;
 
    /**
     * 创建时间
     */
    private Date cjsj;
 
    /**
     * 修改人
     */
    private String xgr;
 
    /**
     * 修改时间
     */
    private Date xgsj;
 
}