自动化立体仓库 - WCS系统
#
Junjie
6 天以前 d65679fefe52fc2bf2435825c65aec3a329e3b9e
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
package com.zy.asrs.entity;
 
import io.swagger.models.auth.In;
import lombok.Data;
 
import java.util.List;
 
@Data
public class ToWmsDTO {
    private String warehouseId;
    private String containerCode;
    private String applyType;
    private String wharfSource;
 
    private Integer taskTunnel;
    private List<Integer> canInboundTunnels;
 
    // 容器编码
    private String BoxNo;
    //容器类型
    private String ioType;
    //入库站编号
    private Integer stationCode;
    //库位类型
    private Integer locType;
 
    public ToWmsDTO(String barcode, Integer stationCode, Integer locType){
        this.BoxNo = barcode;
        this.stationCode = stationCode;
        this.locType = locType;
    }
 
    public ToWmsDTO(){
 
    }
}