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