选煤厂生产管理平台后台代码
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
package com.iailab.module.pms.production.wash.entity;
 
import com.baomidou.mybatisplus.annotation.*;
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_transfer_in")
@Data
public class TransferInEntity 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 String drly;
 
    private BigDecimal nbdrl;
 
    private String bz;
 
    private String cjr;
 
    private Date cjsj;
 
    private String xgr;
 
    private Date xgsj;
 
}