zjj
2025-04-21 314729da5f6f84a6112344a2210aadfeeb2bac0c
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;
 
}