#
Junjie
2025-11-18 8f2b1fc281755c110faff41b75d0182b44243811
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.zy.core.model.command;
 
import lombok.Data;
 
@Data
public class LiftCommand {
 
    private Integer workNo;
 
    private Integer sourceStaNo;
 
    private Integer targetStaNo;
 
}