Verification.java
467 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
package com.huaheng.pc.tool.verify.domain;
import lombok.Data;
/**
* @author lty
*/
@Data
public class Verification {
/**
*本地库位
*/
private String locationCode;
/**
*本地容器
*/
private String containerCode;
/**
*WCS库位
*/
private String wcsLocationCode;
/**
*WCS容器
*/
private String wcsContainerCode;
/**
*异常原因
*/
private String reason;
}