SSPOnlineModel.java
2.27 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
package com.huaheng.api.SSP.domain;
public class SSPOnlineModel {
private String cubeCode;
private String cubeName;
private String cubeType;
private int cubeMode;
private int cubeEnable;
private String cubeURL;
private String cDatetime;
private String warehouseCode;
private int locationMax;
public int getLocationMax() {
return locationMax;
}
public void setLocationMax(int locationMax) {
this.locationMax = locationMax;
}
public String getCubeCode() {
return cubeCode;
}
public void setCubeCode(String cubeCode) {
this.cubeCode = cubeCode;
}
public String getCubeName() {
return cubeName;
}
public void setCubeName(String cubeName) {
this.cubeName = cubeName;
}
public String getCubeType() {
return cubeType;
}
public void setCubeType(String cubeType) {
this.cubeType = cubeType;
}
public int getCubeMode() {
return cubeMode;
}
public void setCubeMode(int cubeMode) {
this.cubeMode = cubeMode;
}
public int getCubeEnable() {
return cubeEnable;
}
public void setCubeEnable(int cubeEnable) {
this.cubeEnable = cubeEnable;
}
public String getCubeURL() {
return cubeURL;
}
public void setCubeURL(String cubeURL) {
this.cubeURL = cubeURL;
}
public String getcDatetime() {
return cDatetime;
}
public void setcDatetime(String cDatetime) {
this.cDatetime = cDatetime;
}
public String getWarehouseCode() {
return warehouseCode;
}
public void setWarehouseCode(String warehouseCode) {
this.warehouseCode = warehouseCode;
}
@Override
public String toString() {
return "SSPOnlineModel{" +
"cubeCode='" + cubeCode + '\'' +
", cubeName='" + cubeName + '\'' +
", cubeType='" + cubeType + '\'' +
", cubeMode=" + cubeMode +
", cubeEnable=" + cubeEnable +
", cubeURL='" + cubeURL + '\'' +
", cDatetime='" + cDatetime + '\'' +
", warehouseCode='" + warehouseCode + '\'' +
", locationMax=" + locationMax +
'}';
}
}