自动化立体仓库 - WMS系统
whycq
2024-04-09 51e993132a1c078912942374fef35cc7d880f28e
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
package com.zy.asrs.entity.param;
 
import lombok.Data;
 
import java.util.List;
 
@Data
public class AgvMobileStartPakin {
 
    // 货架码
    private String barcode;
 
    //容器码
    private String containerCode;
    //容器类型
    private Short containerType;
 
    // 站点码
    private String devNo;
 
    private List<CombParam> combParams;
 
//    private List<CombParam> combParam;
 
 
}