Blame view

src/main/java/com/huaheng/api/wcs/domain/WcsTask.java 1.41 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
25
26
27
28
29
30
31
32
33
    //任务类型
    private String taskType;

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

    //平台
    private String platform;

    //容器编码
mahuandong authored
34
35
36
37
38
39
40
    private String containerCode;

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

    //目的口”,出库性质的任务必须填写,string (50),默认0,必填
    private String toPort;
pengcheng authored
41
42
43
44
45
46
47
48
49
50

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

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

    //重入后再次分配的位置编码
    private String locationCode;
mahuandong authored
51
    //优先级,int,默认100 ,数字越小优先级越高",必填
pengcheng authored
52
    private Integer priority;
pengcheng authored
53
pengcheng authored
54
55
56
    //巷道
    private String roadWay;
pengcheng authored
57
    //长
mahuandong authored
58
    private String length;
pengcheng authored
59
60

    //宽
mahuandong authored
61
    private String width;
pengcheng authored
62
63

    //高
mahuandong authored
64
    private String height;
pengcheng authored
65
66

    //重
mahuandong authored
67
    private String weight;
pengcheng authored
68
mahuandong authored
69
70
71
    //备注
    private String remark;
pengcheng authored
72
    private List<TaskDetails> taskDetails;
pengcheng authored
73
}