提交 | 用户 | 时间
|
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_plan_det") |
|
20 |
@Data |
|
21 |
public class WashPlanDetEntity implements Serializable { |
|
22 |
|
|
23 |
private static final long serialVersionUID = 1L; |
|
24 |
|
|
25 |
/** |
|
26 |
* id |
|
27 |
*/ |
|
28 |
@TableId(type = IdType.ASSIGN_UUID) |
|
29 |
private String id; |
|
30 |
|
|
31 |
/** |
|
32 |
* 计划id |
|
33 |
*/ |
|
34 |
private String jhId; |
|
35 |
|
|
36 |
/** |
|
37 |
* 流水号 |
|
38 |
*/ |
|
39 |
private String lsh; |
|
40 |
|
|
41 |
/** |
|
42 |
* 煤种 |
|
43 |
*/ |
|
44 |
private String mzCode; |
|
45 |
|
|
46 |
/** |
|
47 |
* 单位 |
|
48 |
*/ |
|
49 |
private String dw; |
|
50 |
|
|
51 |
/** |
|
52 |
* 产量 |
|
53 |
*/ |
|
54 |
private BigDecimal cl; |
|
55 |
|
|
56 |
/** |
|
57 |
* 灰分 |
|
58 |
*/ |
|
59 |
@JsonFormat(shape = JsonFormat.Shape.STRING) |
|
60 |
private BigDecimal hf; |
|
61 |
|
|
62 |
/** |
|
63 |
* 硫分 |
|
64 |
*/ |
|
65 |
@JsonFormat(shape = JsonFormat.Shape.STRING) |
|
66 |
private BigDecimal lf; |
|
67 |
|
|
68 |
/** |
|
69 |
* 水分 |
|
70 |
*/ |
|
71 |
@JsonFormat(shape = JsonFormat.Shape.STRING) |
|
72 |
private BigDecimal sf; |
|
73 |
|
|
74 |
/** |
|
75 |
* 目标热值 |
|
76 |
*/ |
|
77 |
private BigDecimal mbrz; |
|
78 |
|
|
79 |
/** |
|
80 |
* 创建人 |
|
81 |
*/ |
|
82 |
private String cjr; |
|
83 |
|
|
84 |
/** |
|
85 |
* 创建时间 |
|
86 |
*/ |
|
87 |
private Date cjsj; |
|
88 |
|
|
89 |
/** |
|
90 |
* 修改人 |
|
91 |
*/ |
|
92 |
private String xgr; |
|
93 |
|
|
94 |
/** |
|
95 |
* 修改时间 |
|
96 |
*/ |
|
97 |
private Date xgsj; |
|
98 |
|
|
99 |
} |