自动化立体仓库 - WMS系统
zhangchao
2024-11-02 68de8850d0c2fb4e5efef77ad92275ff05686708
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package com.zy.asrs.entity.param;
 
import lombok.Data;
 
import java.util.List;
 
/**
 * 采购入库上报参数
 */
@Data
public class MesBuyPakinReportParam {
    //采购订单编码
    private String code;
    private List<Iteam> iteam;
 
    @Data
    public static class Iteam{
        //物料编号
        private String materialCode;
        //批次号
        private String batchNo;
        //⼆维码
        private String qrCode;
        //采购订单⾏号
        private String lineNo;
        //⼊库数量
        private Double amount;
        //备注
        private String remark;
        //单位名称
        private String unit;
        //供应商编号
        private String supplierCode;
        //⼊库位置
        private String storageLocationCode;
 
        public Iteam(String materialCode, String batchNo, String qrCode, String lineNo, Double amount, String remark, String supplierCode, String storageLocationCode) {
            this.materialCode = materialCode;
            this.batchNo = batchNo;
            this.qrCode = qrCode;
            this.lineNo = lineNo;
            this.amount = amount;
            this.remark = remark;
            this.supplierCode = supplierCode;
            this.storageLocationCode = storageLocationCode;
        }
 
        public Iteam(){
 
        }
    }
 
}