cl
3 天以前 4abd8cccff6c2379b2cbe2452dd86fae27499557
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;
 
}