Blame view

src/main/java/com/huaheng/api/wcs/domain/TaskFinishDomain.java 864 Bytes
mahuandong authored
1
2
3
package com.huaheng.api.wcs.domain;
游杰 authored
4
import com.huaheng.framework.aspectj.lang.annotation.Excel;
mahuandong authored
5
6
import lombok.Data;
7
8
import java.util.List;
mahuandong authored
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
/**
 * 任务完成和重入实体类
 * Created by Enzo Cotter on 2019/10/15.
 */
@Data
public class TaskFinishDomain {

    //任务号
    private String TaskNo;

    //重入,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;
34
35
    private String warehouseCode;
游杰 authored
36
    private boolean foldFlag;
37
38
39
40
41

    /**
     * 不可用库位
     */
    private List<String> invalidLocation;
mahuandong authored
42
}