TaskFinishDomain.java
844 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
package com.huaheng.api.wcs.domain;
import com.huaheng.framework.aspectj.lang.annotation.Excel;
import lombok.Data;
/**
* 任务完成和重入实体类
* Created by Enzo Cotter on 2019/10/15.
*/
@Data
public class TaskFinishDomain {
//任务号
private String TaskNo;
//任务详情号
private String TaskDetailNo;
//重入,int,1:重入 0:正常,必填
private Integer IsDoubleIn;
//空出,int,1:空出 0:正常,必填
private Integer IsEmptyOut;
//取货错,int,1:取货错 0:正常 必填
private Integer IsForkError;
//重入的库位编码,string (50),默认0,必填
private String RedirectionLocationCode;
//重量
private String Weight;
private String warehouseCode;
private String location;
private boolean foldFlag;
}