Administrator
2025-05-22 85f4c6b7d6df1c67be43fa87b7cc74af3765ccef
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.zy.asrs.entity.wms;
 
import lombok.Data;
 
@Data
public class StorageEscalationParam {
    //托盘码
    private String barcode;
    //站点码
    private Integer stationCode;
    //执行状态   0:成功 1:失败
    private Integer WCSStatus = 0;
    //错误信息   具体的错误信息(超高,超重等)
    private String WCSErrorMessage = "";
}