#
Junjie
2 天以前 f653130e5df936041f7a5ae005e10c91415b64b1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.zy.core.model;
 
import lombok.Data;
 
@Data
public class LiftStation {
 
    // 提升机号
    private Integer liftNo;
 
    // 提升机站点号
    private Integer staNo;
 
    // 排
    private Integer row;
 
    // 列
    private Integer bay;
 
    // 层
    private Integer lev;
 
}