自动化立体仓库 - WMS系统
whycq
2024-09-04 41326b3129ae3e4ef7a45bc16dba64dc9dd27404
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package com.zy.asrs.entity.param;
 
import lombok.Data;
 
import java.util.List;
 
/**
 * MES出库上报参数
 */
@Data
public class MesPakoutReportParam {
    //物料编码
    private String materialCode;
    //备注
    private String remark;
    //仓位编号
    private String storageCode;
    //仓库编号
    private String wareHouseCode;
 
    private List<String> batchNos;
 
    private Amount amount;
 
    @Data
    public static class Amount{
        private Double amount;
        //单位编号(编号和名称必填一个,两者不一致且都有效以编号为准)
        private String unitCode;
        //单位名称(编号和名称必填一个,两者不一致且都有效以编号为准)
        private String unitName;
 
        public Amount(Double amount, String unitName, String unitCode) {
            this.amount = amount;
            this.unitCode = unitCode;
            this.unitName = unitName;
        }
    }
}