package com.zy.asrs.wms.apis.wcs.entity.request;
|
|
import lombok.Data;
|
import lombok.experimental.Accessors;
|
|
import java.io.Serializable;
|
|
|
/**
|
* 容器到达通知参数
|
*/
|
@Data
|
@Accessors(chain = true)
|
public class ContainerArrivedParam implements Serializable {
|
|
/**输送线节点编码。*/
|
private String slotCode;
|
/**容器编码,输送线有读码器可以识别或已知容器身份时,该字段传容器编码,否则为空。*/
|
private String containerCode;
|
/**容器属性。*/
|
private ContainerAttribute containerAttribute;
|
}
|
|
|
class ContainerAttribute {
|
/**容器高度,例如:300(mm)。*/
|
private Long height;
|
/**容器宽度,例如:400(mm)。*/
|
private Long width;
|
/**容器长度,例如:650(mm)。*/
|
private Long length;
|
/**容器重量。*/
|
private Long weight;
|
/**容器材料:
|
1:料箱。
|
2:纸箱。*/
|
private String material;
|
/**容器朝向,单位为“°”,例如:0、90、180、270。*/
|
private String orientation;
|
/**料箱二维码。*/
|
private String qrCode;
|
/**sku信息。*/
|
private String skuInfo;
|
/**异常原因。*/
|
private String abnormalReason;
|
|
}
|