自动化立体仓库 - WMS系统
zyx
2024-01-05 0e46bb0cfc8b59ad5527f0b70c49f95aeac4bbbd
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
package com.zy.asrs.entity;
 
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")
    private String pakinTime;
 
    //批号
    private String batch;
 
    //包装号
    private String packageNo;
 
    //牌号
    private String brand;
 
    //重量
    private Double weight;
 
    //车间
    private String workshop;
 
    //生产线
    private String line;
 
    //包装类型
    private String packageType;
 
    //托盘类型
    private String zpalletType;
 
    //缠膜
    private String filmWrap;
 
    //熔指
    private Double fingerMelting;
 
    //熔点
    private Double fusingPoint;
 
    //挥发份1
    private Double vadf1;
 
    //挥发份2
    private Double vadf2;
 
    //黄度
    private Double yellowness;
 
    //不透明度
    private Double opacity;
 
    //水分
    private Double water;
 
    //L值
    private Double l;
 
    //a值
    private Double a;
 
    //b值
    private Double b;
 
    //填充
    private Double fillIn;
 
    //质量状态
    private String massState;
 
    //质量问题
    private String problem;
 
    //仓库
    private String stash;
 
    //库位
    private String locNo;
 
    //剩余重量
    private Double weightAnfme = 0.0;
    //剩余重量
    private Double qtyAnfme = 0.0;
 
    //状态
    private String status;
 
    //步骤
    private int step;
 
    private Date createTime;
 
    private Date modifyTime;
 
    private String createUser;
 
    private String modifyUser;
}