@@ -208,83 +208,83 @@ SamiOrder::asJsonObject() {
208
208
209
209
210
210
JsonString *pIdKey = new JsonString (L" id" );
211
- pJsonObject->Add (pIdKey, toJson (getpId (), " Long" , " " ));
211
+ pJsonObject->Add (pIdKey, toJson (getPId (), " Long" , " " ));
212
212
213
213
214
214
JsonString *pPetIdKey = new JsonString (L" petId" );
215
- pJsonObject->Add (pPetIdKey, toJson (getpPetId (), " Long" , " " ));
215
+ pJsonObject->Add (pPetIdKey, toJson (getPPetId (), " Long" , " " ));
216
216
217
217
218
218
JsonString *pQuantityKey = new JsonString (L" quantity" );
219
- pJsonObject->Add (pQuantityKey, toJson (getpQuantity (), " Integer" , " " ));
219
+ pJsonObject->Add (pQuantityKey, toJson (getPQuantity (), " Integer" , " " ));
220
220
221
221
222
222
JsonString *pShipDateKey = new JsonString (L" shipDate" );
223
- pJsonObject->Add (pShipDateKey, toJson (getpShipDate (), " DateTime" , " " ));
223
+ pJsonObject->Add (pShipDateKey, toJson (getPShipDate (), " DateTime" , " " ));
224
224
225
225
226
226
JsonString *pStatusKey = new JsonString (L" status" );
227
- pJsonObject->Add (pStatusKey, toJson (getpStatus (), " String" , " " ));
227
+ pJsonObject->Add (pStatusKey, toJson (getPStatus (), " String" , " " ));
228
228
229
229
230
230
JsonString *pCompleteKey = new JsonString (L" complete" );
231
- pJsonObject->Add (pCompleteKey, toJson (getpComplete (), " Boolean" , " " ));
231
+ pJsonObject->Add (pCompleteKey, toJson (getPComplete (), " Boolean" , " " ));
232
232
233
233
234
234
return pJsonObject;
235
235
}
236
236
237
237
Long*
238
- SamiOrder::getpId () {
238
+ SamiOrder::getPId () {
239
239
return pId;
240
240
}
241
241
void
242
- SamiOrder::setpId (Long* pId) {
242
+ SamiOrder::setPId (Long* pId) {
243
243
this ->pId = pId;
244
244
}
245
245
246
246
Long*
247
- SamiOrder::getpPetId () {
247
+ SamiOrder::getPPetId () {
248
248
return pPetId;
249
249
}
250
250
void
251
- SamiOrder::setpPetId (Long* pPetId) {
251
+ SamiOrder::setPPetId (Long* pPetId) {
252
252
this ->pPetId = pPetId;
253
253
}
254
254
255
255
Integer*
256
- SamiOrder::getpQuantity () {
256
+ SamiOrder::getPQuantity () {
257
257
return pQuantity;
258
258
}
259
259
void
260
- SamiOrder::setpQuantity (Integer* pQuantity) {
260
+ SamiOrder::setPQuantity (Integer* pQuantity) {
261
261
this ->pQuantity = pQuantity;
262
262
}
263
263
264
264
DateTime*
265
- SamiOrder::getpShipDate () {
265
+ SamiOrder::getPShipDate () {
266
266
return pShipDate;
267
267
}
268
268
void
269
- SamiOrder::setpShipDate (DateTime* pShipDate) {
269
+ SamiOrder::setPShipDate (DateTime* pShipDate) {
270
270
this ->pShipDate = pShipDate;
271
271
}
272
272
273
273
String*
274
- SamiOrder::getpStatus () {
274
+ SamiOrder::getPStatus () {
275
275
return pStatus;
276
276
}
277
277
void
278
- SamiOrder::setpStatus (String* pStatus) {
278
+ SamiOrder::setPStatus (String* pStatus) {
279
279
this ->pStatus = pStatus;
280
280
}
281
281
282
282
Boolean*
283
- SamiOrder::getpComplete () {
283
+ SamiOrder::getPComplete () {
284
284
return pComplete;
285
285
}
286
286
void
287
- SamiOrder::setpComplete (Boolean* pComplete) {
287
+ SamiOrder::setPComplete (Boolean* pComplete) {
288
288
this ->pComplete = pComplete;
289
289
}
290
290
0 commit comments