Blame view

src/main/java/com/huaheng/api/wcs/domain/TaskFinishDomain.java 597 Bytes
mahuandong authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.huaheng.api.wcs.domain;

import lombok.Data;

/**
 * 任务完成和重入实体类
 * Created by Enzo Cotter on 2019/10/15.
 */
@Data
public class TaskFinishDomain {

    //任务号
    private String taskNo;

    //重入,int,1:重入  0:正常,必填
    private Integer isDoubleIn;
pengcheng authored
18
    //空出,int,1:空出  0:正常,必填
mahuandong authored
19
20
21
22
23
24
25
26
    private Integer isEmptyOut;

    //重入的库位编码,string (50),默认0,必填
    private String redirectionLocationCode;

    //目的位置编码,string (50),默认0 ",必填
    private String toLocationCode;
}