TaskFinishDomain.java
728 Bytes
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;
//重入,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;
}