自动化立体仓库 - WMS系统
Administrator
2 天以前 eb9f657ffcf402bab8d9b3413ec7ede45d8e21d4
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;
    }
}