@@ -55,20 +55,26 @@ public static class Plan {
55
55
56
56
private Integer flow ;
57
57
58
- private Integer memory ;
59
-
60
58
private String planId ;
61
59
62
60
private String diskType ;
63
61
64
- private Double originPrice ;
65
-
66
62
private String currency ;
67
63
68
64
private String supportPlatform ;
69
65
70
66
private String planType ;
71
67
68
+ private String publicIpNum ;
69
+
70
+ private String ispType ;
71
+
72
+ private Float memory ;
73
+
74
+ private String originPrice ;
75
+
76
+ private List <Tag > tags ;
77
+
72
78
public Integer getCore () {
73
79
return this .core ;
74
80
}
@@ -101,14 +107,6 @@ public void setFlow(Integer flow) {
101
107
this .flow = flow ;
102
108
}
103
109
104
- public Integer getMemory () {
105
- return this .memory ;
106
- }
107
-
108
- public void setMemory (Integer memory ) {
109
- this .memory = memory ;
110
- }
111
-
112
110
public String getPlanId () {
113
111
return this .planId ;
114
112
}
@@ -125,14 +123,6 @@ public void setDiskType(String diskType) {
125
123
this .diskType = diskType ;
126
124
}
127
125
128
- public Double getOriginPrice () {
129
- return this .originPrice ;
130
- }
131
-
132
- public void setOriginPrice (Double originPrice ) {
133
- this .originPrice = originPrice ;
134
- }
135
-
136
126
public String getCurrency () {
137
127
return this .currency ;
138
128
}
@@ -156,6 +146,79 @@ public String getPlanType() {
156
146
public void setPlanType (String planType ) {
157
147
this .planType = planType ;
158
148
}
149
+
150
+ public String getPublicIpNum () {
151
+ return this .publicIpNum ;
152
+ }
153
+
154
+ public void setPublicIpNum (String publicIpNum ) {
155
+ this .publicIpNum = publicIpNum ;
156
+ }
157
+
158
+ public String getIspType () {
159
+ return this .ispType ;
160
+ }
161
+
162
+ public void setIspType (String ispType ) {
163
+ this .ispType = ispType ;
164
+ }
165
+
166
+ public Float getMemory () {
167
+ return this .memory ;
168
+ }
169
+
170
+ public void setMemory (Float memory ) {
171
+ this .memory = memory ;
172
+ }
173
+
174
+ public String getOriginPrice () {
175
+ return this .originPrice ;
176
+ }
177
+
178
+ public void setOriginPrice (String originPrice ) {
179
+ this .originPrice = originPrice ;
180
+ }
181
+
182
+ public List <Tag > getTags () {
183
+ return this .tags ;
184
+ }
185
+
186
+ public void setTags (List <Tag > tags ) {
187
+ this .tags = tags ;
188
+ }
189
+
190
+ public static class Tag {
191
+
192
+ private String cnTitle ;
193
+
194
+ private String enTitle ;
195
+
196
+ private String color ;
197
+
198
+ public String getCnTitle () {
199
+ return this .cnTitle ;
200
+ }
201
+
202
+ public void setCnTitle (String cnTitle ) {
203
+ this .cnTitle = cnTitle ;
204
+ }
205
+
206
+ public String getEnTitle () {
207
+ return this .enTitle ;
208
+ }
209
+
210
+ public void setEnTitle (String enTitle ) {
211
+ this .enTitle = enTitle ;
212
+ }
213
+
214
+ public String getColor () {
215
+ return this .color ;
216
+ }
217
+
218
+ public void setColor (String color ) {
219
+ this .color = color ;
220
+ }
221
+ }
159
222
}
160
223
161
224
@ Override
0 commit comments