skyouc
2024-12-21 c635d78b479510ebe2556a420948effcd30a0731
1
2
3
4
5
6
7
8
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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;
 
}