#
Junjie
2 天以前 3c45d4f9f3aba5bc85a9577e43c0dffc71b93a22
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
37
38
39
40
41
42
43
44
45
46
47
package com.zy.core.model.command;
 
import lombok.Data;
 
 
/**
 * 货叉提升机命令报文
 */
@Data
public class ForkLiftCommand {
 
    /**
     * 提升机号
     */
    private Integer liftNo;
 
    /**
     * 任务号
     */
    private Integer taskNo;
 
    /**
     * 任务模式
     */
    private Integer mode;
 
    /**
     * 取货数据
     */
    private Integer pick;
 
    /**
     * 放货数据
     */
    private Integer put;
 
    /**
     * 任务确认
     */
    private Integer confirm;
 
    /**
     * 命令是否完成,默认false未完成
     */
    private Boolean complete = false;
 
}