自动化立体仓库 - WCS系统
*
lsh
5 天以前 ccd6309576bfa66ddf40b8a48202ced37c05333a
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
package com.zy.asrs.entity;
 
import lombok.Data;
 
@Data
public class GetWmsDto {
 
    private String warehouseId;         //仓库标识
    private String warehouseCode;
    //wms出库任务下发接口
    private String taskType;            //任务类型             CK、YK、RK、PD
    private String taskNo;              //任务号
    private String taskPriority;           //优先级
    private String containerCode;       //容器编码
    private String containerTypeCode;   //容器类型
    private String emptyContainer;      //是否空托盘            Y:是 N:否
    private Integer taskTunnel;             //任务巷道
    private String createTime;          //创建时间             YYYY-MM-DD HH24:MI:SS
    private String targetLocationCode;  //目标货位
 
    //任务号
    private String wrkNo;
    //站点编号
    private Integer staNo;
    //目标库位
    private String locNo;
 
}