自动化立体仓库 - WMS系统
13
zhang
2025-05-24 954799493a5d4a63a8844fd53e8a14c8ea9f6cea
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
package com.zy.common.model;
 
import lombok.Data;
 
import java.util.ArrayList;
import java.util.List;
 
/**
 * Created by vincent on 2022/4/21
 */
@Data
public class MesPakinParam {
 
    // 入库时间
    private String receiptNumber;
 
    //
    private String receiptType;
 
    //
    private String completeInd;
 
    private List<Detl> barcodeList = new ArrayList<>();
 
    @Data
    public static class Detl {
 
        //
        private String barcode;
 
        //
        private String productionCode;
 
        private Double qty;
 
        private String palletBarcode;
 
 
    }
 
}