#
zwl
2025-07-19 6193eddf242c4b879402367704b8b5b2e8df84a4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.zy.asrs.entity.param;
 
import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;
 
@Data
public class StorageEscalationParam {
    private Integer taskNo;
    //托盘码
    private String boxNo;
    //执行状态   0:成功 1:失败
    private Integer WCSStatus=0;
    //错误信息   具体的错误信息(超高,超重等)
    private String WCSErrorMessage="";
 
    //源站点
    private Integer wcsSourceStaNo;
 
    //空板满板 1.满板 2.空板
    private Integer wcsIoType;
}