Blame view

src/main/java/com/huaheng/api/wcs/domain/WcsTask.java 1.58 KB
pengcheng authored
1
2
package com.huaheng.api.wcs.domain;
mahuandong authored
3
4
import lombok.Data;
pengcheng authored
5
import java.io.Serializable;
pengcheng authored
6
import java.util.List;
pengcheng authored
7
8
9
10
11
12

/**
 * wcs任务接口实体层
 * @author ricard
 * @date   2019/10/11
 */
mahuandong authored
13
14

@Data
pengcheng authored
15
16
17
18
19
20
public class WcsTask implements Serializable {
    private static final long serialVersionUID = -8855840499538794854L;

    //任务号
    private String taskNo;
pengcheng authored
21
22
23
    //前置任务
    private String preTaskNo;
pengcheng authored
24
    //任务类型
游杰 authored
25
    private Integer taskType;
26
27
28
29
30

    //任务类型
    private Integer taskStatus;
31
    //库位类型
32
    private String locationType;
pengcheng authored
33
34
35
36
37
38
39

    //出库站台编码.默认‘0’
    private String station;

    //平台
    private String platform;
mahuandong authored
40
41
    private String warehouseCode;
pengcheng authored
42
    //容器编码
mahuandong authored
43
44
45
46
47
48
49
    private String containerCode;

    //来源口”,一般用于指定入库口,string (50),默认0,必填
    private String fromPort;

    //目的口”,出库性质的任务必须填写,string (50),默认0,必填
    private String toPort;
pengcheng authored
50
51
52
53
54
55
56
57
58
59

    //源位置库位编码
    private String fromLocationCode;

    //目的位置库位编码
    private String toLocationCode;

    //重入后再次分配的位置编码
    private String locationCode;
mahuandong authored
60
    //优先级,int,默认100 ,数字越小优先级越高",必填
pengcheng authored
61
    private Integer priority;
pengcheng authored
62
63
64
    //巷道
    private String roadWay;
pengcheng authored
65
66
67
68
69
    //区域
    private String area;
pengcheng authored
70
    //长
mahuandong authored
71
    private String length;
pengcheng authored
72
73

    //宽
mahuandong authored
74
    private String width;
pengcheng authored
75
76

    //高
mahuandong authored
77
    private String height;
pengcheng authored
78
79

    //重
mahuandong authored
80
    private String weight;
pengcheng authored
81
mahuandong authored
82
83
84
    //备注
    private String remark;
pengcheng authored
85
    private List<TaskDetails> taskDetails;
pengcheng authored
86
}