选煤厂生产管理平台后台代码
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
package com.iailab.module.pms.production.work.enity;
 
import com.alibaba.excel.annotation.format.DateTimeFormat;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * @author DongYukun
 * @Description
 * @createTime 2023年02月24日 16:59:20
 */
@Data
@TableName("t_work_prod_accident")
public class ProdAccidentEntity implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * id
     */
    private String id;
 
    /**
     * 日期
     */
    private String rq;
 
    /**
     * 班次
     */
    private String bc;
 
    /**
     * 班次名称
     */
    @TableField(exist = false)
    private String bcName;
 
    /**
     * 流水号
     */
    private String lsh;
 
    /**
     * 影响范围
     */
    private String yxfw;
 
    /**
     * 事故内容
     */
    private String sgnr;
 
    /**
     * 开始时间
     */
    private Date kssj;
 
    /**
     * 结束时间
     */
    private Date jssj;
 
    /**
     * 持续时间
     */
    private Long cxsj;
 
    /**
     * 事故原因
     */
    private String sgyy;
 
    /**
     * 事故后果
     */
    private String sghg;
 
    /**
     * 备注
     */
    private String bz;
 
    /**
     * 创建人
     */
    private String cjr;
 
    /**
     * 创建时间
     */
    private Date cjsj;
 
    /**
     * 修改人
     */
    private String xgr;
 
    /**
     * 修改时间
     */
    private Date xgsj;
 
}