提交 | 用户 | 时间
|
8d3ff6
|
1 |
package com.iailab.module.pms.coalquality.modules.plan.entity; |
J |
2 |
|
|
3 |
import com.baomidou.mybatisplus.annotation.IdType; |
|
4 |
import com.baomidou.mybatisplus.annotation.TableId; |
|
5 |
import com.baomidou.mybatisplus.annotation.TableName; |
|
6 |
import lombok.Data; |
|
7 |
import lombok.EqualsAndHashCode; |
|
8 |
|
|
9 |
import java.io.Serializable; |
|
10 |
|
|
11 |
/** |
|
12 |
* 质量计划 |
|
13 |
*/ |
|
14 |
@Data |
|
15 |
@EqualsAndHashCode(callSuper=false) |
|
16 |
@TableName("t_quality_plan") |
|
17 |
public class QualityPlanEntity implements Serializable { |
|
18 |
private static final long serialVersionUID = 1L; |
|
19 |
|
|
20 |
/** |
|
21 |
* ID |
|
22 |
*/ |
|
23 |
@TableId(type = IdType.ASSIGN_UUID) |
|
24 |
private String id; |
|
25 |
|
|
26 |
/** |
|
27 |
* 编号 |
|
28 |
*/ |
|
29 |
private String code; |
|
30 |
|
|
31 |
/** |
|
32 |
* 名称 |
|
33 |
*/ |
|
34 |
private String name; |
|
35 |
|
|
36 |
/** |
|
37 |
* 计划类型 |
|
38 |
*/ |
|
39 |
private String planType; |
|
40 |
|
|
41 |
/** |
|
42 |
* 煤类型 |
|
43 |
*/ |
|
44 |
private String coalType; |
|
45 |
|
|
46 |
/** |
|
47 |
* 时间 |
|
48 |
*/ |
|
49 |
private String sj; |
|
50 |
|
|
51 |
/** |
|
52 |
* 备注 |
|
53 |
*/ |
|
54 |
private String bz; |
|
55 |
|
|
56 |
/** |
|
57 |
* 创建人 |
|
58 |
*/ |
|
59 |
private String creator; |
|
60 |
|
|
61 |
/** |
|
62 |
* 创建时间 |
|
63 |
*/ |
|
64 |
private java.util.Date createDate; |
|
65 |
|
|
66 |
/** |
|
67 |
* 修改人 |
|
68 |
*/ |
|
69 |
private String updater; |
|
70 |
|
|
71 |
/** |
|
72 |
* 修改时间 |
|
73 |
*/ |
|
74 |
private java.util.Date updateDate; |
|
75 |
|
|
76 |
} |