Junjie
2 天以前 7e129b703408f5d2f1409f8c5a3af9c4cb3d86f6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.zy.asrs.wcs.core.model.command;
 
import lombok.Data;
 
import java.io.Serializable;
 
@Data
public class LiftRedisCommand implements Serializable {
 
    //提升机号
    private Integer liftNo;
 
    //工作号
    private Integer wrkNo;
 
    //命令执行步序
    private Integer commandStep;
 
    //命令
    private LiftAssignCommand assignCommand;
 
}