#1
dubin
2026-01-04 97c788f31a57b4e8c3fc8091dc29aab598adeebb
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;
 
}