自动化立体仓库 - WCS系统
123
ZY
3 天以前 364b9ccc44bc6863280c5cc00aa8512cfff548d4
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
package com.zy.asrs.entity.param;
 
import lombok.Data;
 
@Data
public class TaskOverParam {
    /**
     * 任务号
     */
    private String taskNo;
    /**
     * 完成标识
     */
    private Integer status;
    /**
     * 站点
     */
    private Integer startPoint;
    /**
     * 高度
     */
    private Integer height;
 
    /**
     * 1放。0取
     */
    private int type;
 
}