#
zjj
2 天以前 c9c80ecde06d151f4f2f3ccf46d3f4c0e65cd8a1
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 siteId;
 
    // 排
    private Integer row;
 
    // 列
    private Integer bay;
 
    // 层
    private Integer lev;
 
}