#
cl
2 天以前 97e704d52a980844af0268f41b09b177e4aa7268
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;
 
}