自动化立体仓库 - 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
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;
    }
}