自动化立体仓库 - WMS系统
zc
8 天以前 b8f03bd597383b31b970e198cc707b40bfab1c02
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.zy.asrs.third;
 
import lombok.Data;
 
import java.io.Serializable;
import java.util.List;
 
@Data
public class CodeParam implements Serializable {
    private List<String> barcodeList;
 
    public CodeParam() {
    }
 
    public CodeParam(List<String> threeCodes) {
        this.barcodeList = threeCodes;
    }
}