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 groupNo;
| private Integer qty;
|
| public ReportMesOrderResult(String brand, Integer qty) {
| this.groupNo = brand;
| this.qty = qty;
| }
| }
|
|