自动化立体仓库 - WMS系统
#
LSH
2023-04-23 3edce29be0469ac174df5ebc475293aee1b556a5
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package com.zy.asrs.entity.param;
 
import lombok.Data;
 
import java.util.List;
 
/**
 * Created by vincent on 2020/6/13
 */
@Data
public class EmptyPlateOutParam {
 
    // 出站口
    private Integer outSite;
 
    // 商品id
    private Integer matId;
 
    // 库位号集合
    private List<String> locNos;
 
    // 物料编号集合
    private List<EmptyPlateOutParam.LocDetl> locDetls;
 
    @Data
    public static class LocDetl {
 
        // 商品id
        private Integer matId;
 
        // 商品编号
        private String matnr;
 
        // 商品编号
        private String maktx;
 
        // 商品编号
        private String specs;
 
        // 序列码
        private String batch;
 
        // 数量
        private Double count;
 
        // 订单
        private String orderNo;
 
        // 翻包
        private String memo;
 
    }
 
    public Integer getOutSite() {
        return outSite;
    }
 
    public void setOutSite(Integer outSite) {
        this.outSite = outSite;
    }
 
    public List<String> getLocNos() {
        return locNos;
    }
 
    public void setLocNos(List<String> locNos) {
        this.locNos = locNos;
    }
}