自动化立体仓库 - WMS系统
pang.jiabao
2024-09-19 80cd1569120416b096d28ebbe9a8e6e1d867f6e0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.zy.asrs.entity;
 
import lombok.Data;
 
/**
 * @author pang.jiabao
 * @description 上报单据出库结果给MES
 * @createDate 2024/8/27 16:48
 */
@Data
public class ReportMesOrderResult {
    private String packageNo;
    private Integer status;
 
    public ReportMesOrderResult(String brand, Integer qty) {
        this.packageNo = brand;
        this.status = qty;
    }
}