LocationInfo.java
760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package com.huaheng.pc.general.location.domain;
public class LocationInfo {
private long maxRow;
private long maxLine;
private long maxLayer;
private long maxGrid;
public long getMaxRow() {
return maxRow;
}
public void setMaxRow(long maxRow) {
this.maxRow = maxRow;
}
public long getMaxLine() {
return maxLine;
}
public void setMaxLine(long maxLine) {
this.maxLine = maxLine;
}
public long getMaxLayer() {
return maxLayer;
}
public void setMaxLayer(long maxLayer) {
this.maxLayer = maxLayer;
}
public long getMaxGrid() {
return maxGrid;
}
public void setMaxGrid(long maxGrid) {
this.maxGrid = maxGrid;
}
}