自动化立体仓库 - WMS系统
zyx
2024-01-08 71d838e032d13a46a07917f5606862496220ea74
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
package com.zy.asrs.entity;
 
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.annotations.TableId;
import com.baomidou.mybatisplus.annotations.TableName;
import com.baomidou.mybatisplus.enums.IdType;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.util.Date;
 
@Data
@TableName("asr_pla_detl")
public class Pla {
    @ApiModelProperty(value= "ID")
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    //入库时间
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @TableField("pakin_time")
    private String pakinTime;
 
    //批号
    @TableField("batch")
    private String batch;
 
    //包装号
    @TableField("package_no")
    private String packageNo;
 
    //牌号
    @TableField("brand")
    private String brand;
 
    //重量
    @TableField("weight")
    private Double weight;
 
    //车间
    @TableField("workshop")
    private String workshop;
 
    //生产线
    @TableField("line")
    private String line;
 
    //包装类型
    @TableField("package_type")
    private String packageType;
 
    //托盘类型
    @TableField("zpallet_type")
    private String zpalletType;
 
    //缠膜
    @TableField("film_wrap")
    private String filmWrap;
 
    //熔指
    @TableField("finger_melting")
    private Double fingerMelting;
 
    //熔点
    @TableField("fusing_point")
    private Double fusingPoint;
 
    //挥发份1
    @TableField("vadf1")
    private Double vadf1;
 
    //挥发份2
    @TableField("vadf2")
    private Double vadf2;
 
    //黄度
    @TableField("yellowness")
    private Double yellowness;
 
    //不透明度
    @TableField("opacity")
    private Double opacity;
 
    //水分
    @TableField("water")
    private Double water;
 
    //L值
    @TableField("l")
    private Double l;
 
    //a值
    @TableField("a")
    private Double a;
 
    //b值
    @TableField("b")
    private Double b;
 
    //填充
    @TableField("fill_in")
    private Double fillIn;
 
    //质量状态
    @TableField("mass_state")
    private String massState;
 
    //质量问题
    @TableField("problem")
    private String problem;
 
    //仓库
    @TableField("stash")
    private String stash;
 
    //库位
    @TableField("loc_no")
    private String locNo;
 
    //剩余重量
    @TableField("weight_anfme")
    private Double weightAnfme = 0.0;
    //待出库数量
    @TableField("qty_anfme")
    private Double qtyAnfme = 0.0;
 
    //状态
    @TableField("status")
    private String status;
 
    //步骤
    @TableField("step")
    private int step;
 
    @TableField("create_time")
    private Date createTime;
 
    @TableField("modify_time")
    private Date modifyTime;
 
    @TableField("create_user")
    private String createUser;
 
    @TableField("modify_user")
    private String modifyUser;
 
    @TableField("order_no")
    private String orderNo;
 
    @TableField("pakout_time")
    private String pakoutTime;
 
    @TableField("order_weight")
    private Double orderWeight;
 
    @TableField("handler_by")
    private String handlerBy;
 
    @TableField("transfer")
    private String transfer;
 
    @TableField("customer")
    private String customer;
 
    @TableField("allocate")
    private String allocate;
 
    @TableField("memo")
    private String memo;
}