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; //空出,int,1:空出 0:正常,必填 private Integer isEmptyOut; //取货错,int,1:取货错 0:正常 必填 private Integer isForkError; //重入的库位编码,string (50),默认0,必填 private String redirectionLocationCode; }