自动化立体仓库 - WMS系统
#1
lsh
2024-05-31 37f97c17a695aacd4f658eb86483558ba62374cd
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;
 
 
}