LocationVerify.java
872 Bytes
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
package com.huaheng.pc.tool.verify.domain;
import lombok.Data;
@Data
public class LocationVerify {
/**
*容器编号
*/
private String contrastContain;
/**
*容器上的库位
*/
private String contrastLocation;
/**
*容器状态
*/
private String contrastStatus;
/**
*绑定库位数量
*/
private Integer count=0;;
/**
* 库位上的容器编号
*/
private String localContain;
/**
* 库位编号
*/
private String localLocation;
/**
*库位状态
*/
private String localLocationStatus;
/**
*异常原因
*/
private String reason="正常";
/**
*有没有没完成的任务
*/
private String task="没有任务";
/**
*有没有库存
*/
private String stock="没有库存";
}