Passed
Push — v6 ( fe03e1...0ec70f )
by 光春
04:11
created
service/pinduoduo/bin/src/Api/Request/PddTrainCallbackReserveRequest.php 1 patch
Indentation   +333 added lines, -333 removed lines patch added patch discarded remove patch
@@ -7,344 +7,344 @@
 block discarded – undo
7 7
 class PddTrainCallbackReserveRequest extends PopBaseHttpRequest
8 8
 {
9 9
     public function __construct()
10
-	{
11
-
12
-	}
13
-	/**
14
-	* @JsonProperty(String, "arrive_date")
15
-	*/
16
-	private $arriveDate;
17
-
18
-	/**
19
-	* @JsonProperty(String, "arrive_station")
20
-	*/
21
-	private $arriveStation;
22
-
23
-	/**
24
-	* @JsonProperty(String, "arrive_time")
25
-	*/
26
-	private $arriveTime;
27
-
28
-	/**
29
-	* @JsonProperty(Long, "code")
30
-	*/
31
-	private $code;
32
-
33
-	/**
34
-	* @JsonProperty(String, "crh_order")
35
-	*/
36
-	private $crhOrder;
37
-
38
-	/**
39
-	* @JsonProperty(String, "depart_date")
40
-	*/
41
-	private $departDate;
42
-
43
-	/**
44
-	* @JsonProperty(String, "depart_station")
45
-	*/
46
-	private $departStation;
47
-
48
-	/**
49
-	* @JsonProperty(String, "depart_time")
50
-	*/
51
-	private $departTime;
52
-
53
-	/**
54
-	* @JsonProperty(String, "msg")
55
-	*/
56
-	private $msg;
57
-
58
-	/**
59
-	* @JsonProperty(String, "order_id")
60
-	*/
61
-	private $orderId;
62
-
63
-	/**
64
-	* @JsonProperty(List<\Com\Pdd\Pop\Sdk\Api\Request\PddTrainCallbackReserveRequest_PassengersItem>, "passengers")
65
-	*/
66
-	private $passengers;
67
-
68
-	/**
69
-	* @JsonProperty(String, "pay_limit_time")
70
-	*/
71
-	private $payLimitTime;
72
-
73
-	/**
74
-	* @JsonProperty(String, "pdd_order_id")
75
-	*/
76
-	private $pddOrderId;
77
-
78
-	/**
79
-	* @JsonProperty(String, "request_id")
80
-	*/
81
-	private $requestId;
82
-
83
-	/**
84
-	* @JsonProperty(String, "train_no")
85
-	*/
86
-	private $trainNo;
87
-
88
-	/**
89
-	* @JsonProperty(Integer, "use_id_card_in")
90
-	*/
91
-	private $useIdCardIn;
92
-
93
-	/**
94
-	* @JsonProperty(String, "vendor_time")
95
-	*/
96
-	private $vendorTime;
97
-
98
-	protected function setUserParams(&$params)
99
-	{
100
-		$this->setUserParam($params, "arrive_date", $this->arriveDate);
101
-		$this->setUserParam($params, "arrive_station", $this->arriveStation);
102
-		$this->setUserParam($params, "arrive_time", $this->arriveTime);
103
-		$this->setUserParam($params, "code", $this->code);
104
-		$this->setUserParam($params, "crh_order", $this->crhOrder);
105
-		$this->setUserParam($params, "depart_date", $this->departDate);
106
-		$this->setUserParam($params, "depart_station", $this->departStation);
107
-		$this->setUserParam($params, "depart_time", $this->departTime);
108
-		$this->setUserParam($params, "msg", $this->msg);
109
-		$this->setUserParam($params, "order_id", $this->orderId);
110
-		$this->setUserParam($params, "passengers", $this->passengers);
111
-		$this->setUserParam($params, "pay_limit_time", $this->payLimitTime);
112
-		$this->setUserParam($params, "pdd_order_id", $this->pddOrderId);
113
-		$this->setUserParam($params, "request_id", $this->requestId);
114
-		$this->setUserParam($params, "train_no", $this->trainNo);
115
-		$this->setUserParam($params, "use_id_card_in", $this->useIdCardIn);
116
-		$this->setUserParam($params, "vendor_time", $this->vendorTime);
117
-
118
-	}
119
-
120
-	public function getVersion()
121
-	{
122
-		return "V1";
123
-	}
124
-
125
-	public function getDataType()
126
-	{
127
-		return "JSON";
128
-	}
129
-
130
-	public function getType()
131
-	{
132
-		return "pdd.train.callback.reserve";
133
-	}
134
-
135
-	public function setArriveDate($arriveDate)
136
-	{
137
-		$this->arriveDate = $arriveDate;
138
-	}
139
-
140
-	public function setArriveStation($arriveStation)
141
-	{
142
-		$this->arriveStation = $arriveStation;
143
-	}
144
-
145
-	public function setArriveTime($arriveTime)
146
-	{
147
-		$this->arriveTime = $arriveTime;
148
-	}
149
-
150
-	public function setCode($code)
151
-	{
152
-		$this->code = $code;
153
-	}
154
-
155
-	public function setCrhOrder($crhOrder)
156
-	{
157
-		$this->crhOrder = $crhOrder;
158
-	}
159
-
160
-	public function setDepartDate($departDate)
161
-	{
162
-		$this->departDate = $departDate;
163
-	}
164
-
165
-	public function setDepartStation($departStation)
166
-	{
167
-		$this->departStation = $departStation;
168
-	}
169
-
170
-	public function setDepartTime($departTime)
171
-	{
172
-		$this->departTime = $departTime;
173
-	}
174
-
175
-	public function setMsg($msg)
176
-	{
177
-		$this->msg = $msg;
178
-	}
179
-
180
-	public function setOrderId($orderId)
181
-	{
182
-		$this->orderId = $orderId;
183
-	}
184
-
185
-	public function setPassengers($passengers)
186
-	{
187
-		$this->passengers = $passengers;
188
-	}
189
-
190
-	public function setPayLimitTime($payLimitTime)
191
-	{
192
-		$this->payLimitTime = $payLimitTime;
193
-	}
194
-
195
-	public function setPddOrderId($pddOrderId)
196
-	{
197
-		$this->pddOrderId = $pddOrderId;
198
-	}
199
-
200
-	public function setRequestId($requestId)
201
-	{
202
-		$this->requestId = $requestId;
203
-	}
204
-
205
-	public function setTrainNo($trainNo)
206
-	{
207
-		$this->trainNo = $trainNo;
208
-	}
209
-
210
-	public function setUseIdCardIn($useIdCardIn)
211
-	{
212
-		$this->useIdCardIn = $useIdCardIn;
213
-	}
214
-
215
-	public function setVendorTime($vendorTime)
216
-	{
217
-		$this->vendorTime = $vendorTime;
218
-	}
10
+    {
11
+
12
+    }
13
+    /**
14
+     * @JsonProperty(String, "arrive_date")
15
+     */
16
+    private $arriveDate;
17
+
18
+    /**
19
+     * @JsonProperty(String, "arrive_station")
20
+     */
21
+    private $arriveStation;
22
+
23
+    /**
24
+     * @JsonProperty(String, "arrive_time")
25
+     */
26
+    private $arriveTime;
27
+
28
+    /**
29
+     * @JsonProperty(Long, "code")
30
+     */
31
+    private $code;
32
+
33
+    /**
34
+     * @JsonProperty(String, "crh_order")
35
+     */
36
+    private $crhOrder;
37
+
38
+    /**
39
+     * @JsonProperty(String, "depart_date")
40
+     */
41
+    private $departDate;
42
+
43
+    /**
44
+     * @JsonProperty(String, "depart_station")
45
+     */
46
+    private $departStation;
47
+
48
+    /**
49
+     * @JsonProperty(String, "depart_time")
50
+     */
51
+    private $departTime;
52
+
53
+    /**
54
+     * @JsonProperty(String, "msg")
55
+     */
56
+    private $msg;
57
+
58
+    /**
59
+     * @JsonProperty(String, "order_id")
60
+     */
61
+    private $orderId;
62
+
63
+    /**
64
+     * @JsonProperty(List<\Com\Pdd\Pop\Sdk\Api\Request\PddTrainCallbackReserveRequest_PassengersItem>, "passengers")
65
+     */
66
+    private $passengers;
67
+
68
+    /**
69
+     * @JsonProperty(String, "pay_limit_time")
70
+     */
71
+    private $payLimitTime;
72
+
73
+    /**
74
+     * @JsonProperty(String, "pdd_order_id")
75
+     */
76
+    private $pddOrderId;
77
+
78
+    /**
79
+     * @JsonProperty(String, "request_id")
80
+     */
81
+    private $requestId;
82
+
83
+    /**
84
+     * @JsonProperty(String, "train_no")
85
+     */
86
+    private $trainNo;
87
+
88
+    /**
89
+     * @JsonProperty(Integer, "use_id_card_in")
90
+     */
91
+    private $useIdCardIn;
92
+
93
+    /**
94
+     * @JsonProperty(String, "vendor_time")
95
+     */
96
+    private $vendorTime;
97
+
98
+    protected function setUserParams(&$params)
99
+    {
100
+        $this->setUserParam($params, "arrive_date", $this->arriveDate);
101
+        $this->setUserParam($params, "arrive_station", $this->arriveStation);
102
+        $this->setUserParam($params, "arrive_time", $this->arriveTime);
103
+        $this->setUserParam($params, "code", $this->code);
104
+        $this->setUserParam($params, "crh_order", $this->crhOrder);
105
+        $this->setUserParam($params, "depart_date", $this->departDate);
106
+        $this->setUserParam($params, "depart_station", $this->departStation);
107
+        $this->setUserParam($params, "depart_time", $this->departTime);
108
+        $this->setUserParam($params, "msg", $this->msg);
109
+        $this->setUserParam($params, "order_id", $this->orderId);
110
+        $this->setUserParam($params, "passengers", $this->passengers);
111
+        $this->setUserParam($params, "pay_limit_time", $this->payLimitTime);
112
+        $this->setUserParam($params, "pdd_order_id", $this->pddOrderId);
113
+        $this->setUserParam($params, "request_id", $this->requestId);
114
+        $this->setUserParam($params, "train_no", $this->trainNo);
115
+        $this->setUserParam($params, "use_id_card_in", $this->useIdCardIn);
116
+        $this->setUserParam($params, "vendor_time", $this->vendorTime);
117
+
118
+    }
119
+
120
+    public function getVersion()
121
+    {
122
+        return "V1";
123
+    }
124
+
125
+    public function getDataType()
126
+    {
127
+        return "JSON";
128
+    }
129
+
130
+    public function getType()
131
+    {
132
+        return "pdd.train.callback.reserve";
133
+    }
134
+
135
+    public function setArriveDate($arriveDate)
136
+    {
137
+        $this->arriveDate = $arriveDate;
138
+    }
139
+
140
+    public function setArriveStation($arriveStation)
141
+    {
142
+        $this->arriveStation = $arriveStation;
143
+    }
144
+
145
+    public function setArriveTime($arriveTime)
146
+    {
147
+        $this->arriveTime = $arriveTime;
148
+    }
149
+
150
+    public function setCode($code)
151
+    {
152
+        $this->code = $code;
153
+    }
154
+
155
+    public function setCrhOrder($crhOrder)
156
+    {
157
+        $this->crhOrder = $crhOrder;
158
+    }
159
+
160
+    public function setDepartDate($departDate)
161
+    {
162
+        $this->departDate = $departDate;
163
+    }
164
+
165
+    public function setDepartStation($departStation)
166
+    {
167
+        $this->departStation = $departStation;
168
+    }
169
+
170
+    public function setDepartTime($departTime)
171
+    {
172
+        $this->departTime = $departTime;
173
+    }
174
+
175
+    public function setMsg($msg)
176
+    {
177
+        $this->msg = $msg;
178
+    }
179
+
180
+    public function setOrderId($orderId)
181
+    {
182
+        $this->orderId = $orderId;
183
+    }
184
+
185
+    public function setPassengers($passengers)
186
+    {
187
+        $this->passengers = $passengers;
188
+    }
189
+
190
+    public function setPayLimitTime($payLimitTime)
191
+    {
192
+        $this->payLimitTime = $payLimitTime;
193
+    }
194
+
195
+    public function setPddOrderId($pddOrderId)
196
+    {
197
+        $this->pddOrderId = $pddOrderId;
198
+    }
199
+
200
+    public function setRequestId($requestId)
201
+    {
202
+        $this->requestId = $requestId;
203
+    }
204
+
205
+    public function setTrainNo($trainNo)
206
+    {
207
+        $this->trainNo = $trainNo;
208
+    }
209
+
210
+    public function setUseIdCardIn($useIdCardIn)
211
+    {
212
+        $this->useIdCardIn = $useIdCardIn;
213
+    }
214
+
215
+    public function setVendorTime($vendorTime)
216
+    {
217
+        $this->vendorTime = $vendorTime;
218
+    }
219 219
 
220 220
 }
221 221
 
222 222
 class PddTrainCallbackReserveRequest_PassengersItem extends PopBaseJsonEntity
223 223
 {
224 224
 
225
-	public function __construct()
226
-	{
227
-
228
-	}
229
-
230
-	/**
231
-	* @JsonProperty(String, "card_no")
232
-	*/
233
-	private $cardNo;
234
-
235
-	/**
236
-	* @JsonProperty(String, "card_type")
237
-	*/
238
-	private $cardType;
239
-
240
-	/**
241
-	* @JsonProperty(String, "coach_name")
242
-	*/
243
-	private $coachName;
244
-
245
-	/**
246
-	* @JsonProperty(String, "name")
247
-	*/
248
-	private $name;
249
-
250
-	/**
251
-	* @JsonProperty(String, "seat_name")
252
-	*/
253
-	private $seatName;
254
-
255
-	/**
256
-	* @JsonProperty(Integer, "seat_type")
257
-	*/
258
-	private $seatType;
259
-
260
-	/**
261
-	* @JsonProperty(String, "sub_crh_order")
262
-	*/
263
-	private $subCrhOrder;
264
-
265
-	/**
266
-	* @JsonProperty(String, "sub_order_id")
267
-	*/
268
-	private $subOrderId;
269
-
270
-	/**
271
-	* @JsonProperty(String, "sub_pdd_order_id")
272
-	*/
273
-	private $subPddOrderId;
274
-
275
-	/**
276
-	* @JsonProperty(Long, "ticket_price")
277
-	*/
278
-	private $ticketPrice;
279
-
280
-	/**
281
-	* @JsonProperty(Integer, "ticket_type")
282
-	*/
283
-	private $ticketType;
284
-
285
-	/**
286
-	* @JsonProperty(Integer, "is_choose_seat")
287
-	*/
288
-	private $isChooseSeat;
289
-
290
-	public function setCardNo($cardNo)
291
-	{
292
-		$this->cardNo = $cardNo;
293
-	}
294
-
295
-	public function setCardType($cardType)
296
-	{
297
-		$this->cardType = $cardType;
298
-	}
299
-
300
-	public function setCoachName($coachName)
301
-	{
302
-		$this->coachName = $coachName;
303
-	}
304
-
305
-	public function setName($name)
306
-	{
307
-		$this->name = $name;
308
-	}
309
-
310
-	public function setSeatName($seatName)
311
-	{
312
-		$this->seatName = $seatName;
313
-	}
314
-
315
-	public function setSeatType($seatType)
316
-	{
317
-		$this->seatType = $seatType;
318
-	}
319
-
320
-	public function setSubCrhOrder($subCrhOrder)
321
-	{
322
-		$this->subCrhOrder = $subCrhOrder;
323
-	}
324
-
325
-	public function setSubOrderId($subOrderId)
326
-	{
327
-		$this->subOrderId = $subOrderId;
328
-	}
329
-
330
-	public function setSubPddOrderId($subPddOrderId)
331
-	{
332
-		$this->subPddOrderId = $subPddOrderId;
333
-	}
334
-
335
-	public function setTicketPrice($ticketPrice)
336
-	{
337
-		$this->ticketPrice = $ticketPrice;
338
-	}
339
-
340
-	public function setTicketType($ticketType)
341
-	{
342
-		$this->ticketType = $ticketType;
343
-	}
344
-
345
-	public function setIsChooseSeat($isChooseSeat)
346
-	{
347
-		$this->isChooseSeat = $isChooseSeat;
348
-	}
225
+    public function __construct()
226
+    {
227
+
228
+    }
229
+
230
+    /**
231
+     * @JsonProperty(String, "card_no")
232
+     */
233
+    private $cardNo;
234
+
235
+    /**
236
+     * @JsonProperty(String, "card_type")
237
+     */
238
+    private $cardType;
239
+
240
+    /**
241
+     * @JsonProperty(String, "coach_name")
242
+     */
243
+    private $coachName;
244
+
245
+    /**
246
+     * @JsonProperty(String, "name")
247
+     */
248
+    private $name;
249
+
250
+    /**
251
+     * @JsonProperty(String, "seat_name")
252
+     */
253
+    private $seatName;
254
+
255
+    /**
256
+     * @JsonProperty(Integer, "seat_type")
257
+     */
258
+    private $seatType;
259
+
260
+    /**
261
+     * @JsonProperty(String, "sub_crh_order")
262
+     */
263
+    private $subCrhOrder;
264
+
265
+    /**
266
+     * @JsonProperty(String, "sub_order_id")
267
+     */
268
+    private $subOrderId;
269
+
270
+    /**
271
+     * @JsonProperty(String, "sub_pdd_order_id")
272
+     */
273
+    private $subPddOrderId;
274
+
275
+    /**
276
+     * @JsonProperty(Long, "ticket_price")
277
+     */
278
+    private $ticketPrice;
279
+
280
+    /**
281
+     * @JsonProperty(Integer, "ticket_type")
282
+     */
283
+    private $ticketType;
284
+
285
+    /**
286
+     * @JsonProperty(Integer, "is_choose_seat")
287
+     */
288
+    private $isChooseSeat;
289
+
290
+    public function setCardNo($cardNo)
291
+    {
292
+        $this->cardNo = $cardNo;
293
+    }
294
+
295
+    public function setCardType($cardType)
296
+    {
297
+        $this->cardType = $cardType;
298
+    }
299
+
300
+    public function setCoachName($coachName)
301
+    {
302
+        $this->coachName = $coachName;
303
+    }
304
+
305
+    public function setName($name)
306
+    {
307
+        $this->name = $name;
308
+    }
309
+
310
+    public function setSeatName($seatName)
311
+    {
312
+        $this->seatName = $seatName;
313
+    }
314
+
315
+    public function setSeatType($seatType)
316
+    {
317
+        $this->seatType = $seatType;
318
+    }
319
+
320
+    public function setSubCrhOrder($subCrhOrder)
321
+    {
322
+        $this->subCrhOrder = $subCrhOrder;
323
+    }
324
+
325
+    public function setSubOrderId($subOrderId)
326
+    {
327
+        $this->subOrderId = $subOrderId;
328
+    }
329
+
330
+    public function setSubPddOrderId($subPddOrderId)
331
+    {
332
+        $this->subPddOrderId = $subPddOrderId;
333
+    }
334
+
335
+    public function setTicketPrice($ticketPrice)
336
+    {
337
+        $this->ticketPrice = $ticketPrice;
338
+    }
339
+
340
+    public function setTicketType($ticketType)
341
+    {
342
+        $this->ticketType = $ticketType;
343
+    }
344
+
345
+    public function setIsChooseSeat($isChooseSeat)
346
+    {
347
+        $this->isChooseSeat = $isChooseSeat;
348
+    }
349 349
 
350 350
 }
Please login to merge, or discard this patch.
src/service/pinduoduo/bin/src/Api/Request/PddTrainTicketRefundRequest.php 1 patch
Indentation   +33 added lines, -33 removed lines patch added patch discarded remove patch
@@ -7,38 +7,38 @@
 block discarded – undo
7 7
 class PddTrainTicketRefundRequest extends PopBaseHttpRequest
8 8
 {
9 9
     public function __construct()
10
-	{
11
-
12
-	}
13
-	/**
14
-	* @JsonProperty(String, "sub_order_id")
15
-	*/
16
-	private $subOrderId;
17
-
18
-	protected function setUserParams(&$params)
19
-	{
20
-		$this->setUserParam($params, "sub_order_id", $this->subOrderId);
21
-
22
-	}
23
-
24
-	public function getVersion()
25
-	{
26
-		return "V1";
27
-	}
28
-
29
-	public function getDataType()
30
-	{
31
-		return "JSON";
32
-	}
33
-
34
-	public function getType()
35
-	{
36
-		return "pdd.train.ticket.refund";
37
-	}
38
-
39
-	public function setSubOrderId($subOrderId)
40
-	{
41
-		$this->subOrderId = $subOrderId;
42
-	}
10
+    {
11
+
12
+    }
13
+    /**
14
+     * @JsonProperty(String, "sub_order_id")
15
+     */
16
+    private $subOrderId;
17
+
18
+    protected function setUserParams(&$params)
19
+    {
20
+        $this->setUserParam($params, "sub_order_id", $this->subOrderId);
21
+
22
+    }
23
+
24
+    public function getVersion()
25
+    {
26
+        return "V1";
27
+    }
28
+
29
+    public function getDataType()
30
+    {
31
+        return "JSON";
32
+    }
33
+
34
+    public function getType()
35
+    {
36
+        return "pdd.train.ticket.refund";
37
+    }
38
+
39
+    public function setSubOrderId($subOrderId)
40
+    {
41
+        $this->subOrderId = $subOrderId;
42
+    }
43 43
 
44 44
 }
Please login to merge, or discard this patch.
src/service/pinduoduo/bin/src/Api/Request/PddWaybillCancelRequest.php 1 patch
Indentation   +44 added lines, -44 removed lines patch added patch discarded remove patch
@@ -7,49 +7,49 @@
 block discarded – undo
7 7
 class PddWaybillCancelRequest extends PopBaseHttpRequest
8 8
 {
9 9
     public function __construct()
10
-	{
11
-
12
-	}
13
-	/**
14
-	* @JsonProperty(String, "waybill_code")
15
-	*/
16
-	private $waybillCode;
17
-
18
-	/**
19
-	* @JsonProperty(String, "wp_code")
20
-	*/
21
-	private $wpCode;
22
-
23
-	protected function setUserParams(&$params)
24
-	{
25
-		$this->setUserParam($params, "waybill_code", $this->waybillCode);
26
-		$this->setUserParam($params, "wp_code", $this->wpCode);
27
-
28
-	}
29
-
30
-	public function getVersion()
31
-	{
32
-		return "V1";
33
-	}
34
-
35
-	public function getDataType()
36
-	{
37
-		return "JSON";
38
-	}
39
-
40
-	public function getType()
41
-	{
42
-		return "pdd.waybill.cancel";
43
-	}
44
-
45
-	public function setWaybillCode($waybillCode)
46
-	{
47
-		$this->waybillCode = $waybillCode;
48
-	}
49
-
50
-	public function setWpCode($wpCode)
51
-	{
52
-		$this->wpCode = $wpCode;
53
-	}
10
+    {
11
+
12
+    }
13
+    /**
14
+     * @JsonProperty(String, "waybill_code")
15
+     */
16
+    private $waybillCode;
17
+
18
+    /**
19
+     * @JsonProperty(String, "wp_code")
20
+     */
21
+    private $wpCode;
22
+
23
+    protected function setUserParams(&$params)
24
+    {
25
+        $this->setUserParam($params, "waybill_code", $this->waybillCode);
26
+        $this->setUserParam($params, "wp_code", $this->wpCode);
27
+
28
+    }
29
+
30
+    public function getVersion()
31
+    {
32
+        return "V1";
33
+    }
34
+
35
+    public function getDataType()
36
+    {
37
+        return "JSON";
38
+    }
39
+
40
+    public function getType()
41
+    {
42
+        return "pdd.waybill.cancel";
43
+    }
44
+
45
+    public function setWaybillCode($waybillCode)
46
+    {
47
+        $this->waybillCode = $waybillCode;
48
+    }
49
+
50
+    public function setWpCode($wpCode)
51
+    {
52
+        $this->wpCode = $wpCode;
53
+    }
54 54
 
55 55
 }
Please login to merge, or discard this patch.
src/service/pinduoduo/bin/src/Api/Request/PddWmsWareinformSendRequest.php 1 patch
Indentation   +139 added lines, -139 removed lines patch added patch discarded remove patch
@@ -7,168 +7,168 @@
 block discarded – undo
7 7
 class PddWmsWareinformSendRequest extends PopBaseHttpRequest
8 8
 {
9 9
     public function __construct()
10
-	{
10
+    {
11 11
 
12
-	}
13
-	/**
14
-	* @JsonProperty(\Com\Pdd\Pop\Sdk\Api\Request\PddWmsWareinformSendRequest_Request, "request")
15
-	*/
16
-	private $request;
12
+    }
13
+    /**
14
+     * @JsonProperty(\Com\Pdd\Pop\Sdk\Api\Request\PddWmsWareinformSendRequest_Request, "request")
15
+     */
16
+    private $request;
17 17
 
18
-	protected function setUserParams(&$params)
19
-	{
20
-		$this->setUserParam($params, "request", $this->request);
18
+    protected function setUserParams(&$params)
19
+    {
20
+        $this->setUserParam($params, "request", $this->request);
21 21
 
22
-	}
22
+    }
23 23
 
24
-	public function getVersion()
25
-	{
26
-		return "V1";
27
-	}
24
+    public function getVersion()
25
+    {
26
+        return "V1";
27
+    }
28 28
 
29
-	public function getDataType()
30
-	{
31
-		return "JSON";
32
-	}
29
+    public function getDataType()
30
+    {
31
+        return "JSON";
32
+    }
33 33
 
34
-	public function getType()
35
-	{
36
-		return "pdd.wms.wareinform.send";
37
-	}
34
+    public function getType()
35
+    {
36
+        return "pdd.wms.wareinform.send";
37
+    }
38 38
 
39
-	public function setRequest($request)
40
-	{
41
-		$this->request = $request;
42
-	}
39
+    public function setRequest($request)
40
+    {
41
+        $this->request = $request;
42
+    }
43 43
 
44 44
 }
45 45
 
46 46
 class PddWmsWareinformSendRequest_Request extends PopBaseJsonEntity
47 47
 {
48 48
 
49
-	public function __construct()
50
-	{
49
+    public function __construct()
50
+    {
51 51
 
52
-	}
52
+    }
53 53
 
54
-	/**
55
-	* @JsonProperty(String, "ownerCode")
56
-	*/
57
-	private $ownerCode;
54
+    /**
55
+     * @JsonProperty(String, "ownerCode")
56
+     */
57
+    private $ownerCode;
58 58
 
59
-	/**
60
-	* @JsonProperty(\Com\Pdd\Pop\Sdk\Api\Request\PddWmsWareinformSendRequest_RequestWare, "ware")
61
-	*/
62
-	private $ware;
59
+    /**
60
+     * @JsonProperty(\Com\Pdd\Pop\Sdk\Api\Request\PddWmsWareinformSendRequest_RequestWare, "ware")
61
+     */
62
+    private $ware;
63 63
 
64
-	public function setOwnerCode($ownerCode)
65
-	{
66
-		$this->ownerCode = $ownerCode;
67
-	}
64
+    public function setOwnerCode($ownerCode)
65
+    {
66
+        $this->ownerCode = $ownerCode;
67
+    }
68 68
 
69
-	public function setWare($ware)
70
-	{
71
-		$this->ware = $ware;
72
-	}
69
+    public function setWare($ware)
70
+    {
71
+        $this->ware = $ware;
72
+    }
73 73
 
74 74
 }
75 75
 
76 76
 class PddWmsWareinformSendRequest_RequestWare extends PopBaseJsonEntity
77 77
 {
78 78
 
79
-	public function __construct()
80
-	{
81
-
82
-	}
83
-
84
-	/**
85
-	* @JsonProperty(String, "color")
86
-	*/
87
-	private $color;
88
-
89
-	/**
90
-	* @JsonProperty(String, "height")
91
-	*/
92
-	private $height;
93
-
94
-	/**
95
-	* @JsonProperty(String, "length")
96
-	*/
97
-	private $length;
98
-
99
-	/**
100
-	* @JsonProperty(String, "size")
101
-	*/
102
-	private $size;
103
-
104
-	/**
105
-	* @JsonProperty(String, "volume")
106
-	*/
107
-	private $volume;
108
-
109
-	/**
110
-	* @JsonProperty(String, "wareName")
111
-	*/
112
-	private $wareName;
113
-
114
-	/**
115
-	* @JsonProperty(String, "wareSn")
116
-	*/
117
-	private $wareSn;
118
-
119
-	/**
120
-	* @JsonProperty(String, "weight")
121
-	*/
122
-	private $weight;
123
-
124
-	/**
125
-	* @JsonProperty(String, "width")
126
-	*/
127
-	private $width;
128
-
129
-	public function setColor($color)
130
-	{
131
-		$this->color = $color;
132
-	}
133
-
134
-	public function setHeight($height)
135
-	{
136
-		$this->height = $height;
137
-	}
138
-
139
-	public function setLength($length)
140
-	{
141
-		$this->length = $length;
142
-	}
143
-
144
-	public function setSize($size)
145
-	{
146
-		$this->size = $size;
147
-	}
148
-
149
-	public function setVolume($volume)
150
-	{
151
-		$this->volume = $volume;
152
-	}
153
-
154
-	public function setWareName($wareName)
155
-	{
156
-		$this->wareName = $wareName;
157
-	}
158
-
159
-	public function setWareSn($wareSn)
160
-	{
161
-		$this->wareSn = $wareSn;
162
-	}
163
-
164
-	public function setWeight($weight)
165
-	{
166
-		$this->weight = $weight;
167
-	}
168
-
169
-	public function setWidth($width)
170
-	{
171
-		$this->width = $width;
172
-	}
79
+    public function __construct()
80
+    {
81
+
82
+    }
83
+
84
+    /**
85
+     * @JsonProperty(String, "color")
86
+     */
87
+    private $color;
88
+
89
+    /**
90
+     * @JsonProperty(String, "height")
91
+     */
92
+    private $height;
93
+
94
+    /**
95
+     * @JsonProperty(String, "length")
96
+     */
97
+    private $length;
98
+
99
+    /**
100
+     * @JsonProperty(String, "size")
101
+     */
102
+    private $size;
103
+
104
+    /**
105
+     * @JsonProperty(String, "volume")
106
+     */
107
+    private $volume;
108
+
109
+    /**
110
+     * @JsonProperty(String, "wareName")
111
+     */
112
+    private $wareName;
113
+
114
+    /**
115
+     * @JsonProperty(String, "wareSn")
116
+     */
117
+    private $wareSn;
118
+
119
+    /**
120
+     * @JsonProperty(String, "weight")
121
+     */
122
+    private $weight;
123
+
124
+    /**
125
+     * @JsonProperty(String, "width")
126
+     */
127
+    private $width;
128
+
129
+    public function setColor($color)
130
+    {
131
+        $this->color = $color;
132
+    }
133
+
134
+    public function setHeight($height)
135
+    {
136
+        $this->height = $height;
137
+    }
138
+
139
+    public function setLength($length)
140
+    {
141
+        $this->length = $length;
142
+    }
143
+
144
+    public function setSize($size)
145
+    {
146
+        $this->size = $size;
147
+    }
148
+
149
+    public function setVolume($volume)
150
+    {
151
+        $this->volume = $volume;
152
+    }
153
+
154
+    public function setWareName($wareName)
155
+    {
156
+        $this->wareName = $wareName;
157
+    }
158
+
159
+    public function setWareSn($wareSn)
160
+    {
161
+        $this->wareSn = $wareSn;
162
+    }
163
+
164
+    public function setWeight($weight)
165
+    {
166
+        $this->weight = $weight;
167
+    }
168
+
169
+    public function setWidth($width)
170
+    {
171
+        $this->width = $width;
172
+    }
173 173
 
174 174
 }
Please login to merge, or discard this patch.
src/service/pinduoduo/bin/src/Api/Request/PddTrainGrabOrderQueryRequest.php 1 patch
Indentation   +44 added lines, -44 removed lines patch added patch discarded remove patch
@@ -7,49 +7,49 @@
 block discarded – undo
7 7
 class PddTrainGrabOrderQueryRequest extends PopBaseHttpRequest
8 8
 {
9 9
     public function __construct()
10
-	{
11
-
12
-	}
13
-	/**
14
-	* @JsonProperty(String, "order_id")
15
-	*/
16
-	private $orderId;
17
-
18
-	/**
19
-	* @JsonProperty(String, "pdd_order_id")
20
-	*/
21
-	private $pddOrderId;
22
-
23
-	protected function setUserParams(&$params)
24
-	{
25
-		$this->setUserParam($params, "order_id", $this->orderId);
26
-		$this->setUserParam($params, "pdd_order_id", $this->pddOrderId);
27
-
28
-	}
29
-
30
-	public function getVersion()
31
-	{
32
-		return "V1";
33
-	}
34
-
35
-	public function getDataType()
36
-	{
37
-		return "JSON";
38
-	}
39
-
40
-	public function getType()
41
-	{
42
-		return "pdd.train.grab.order.query";
43
-	}
44
-
45
-	public function setOrderId($orderId)
46
-	{
47
-		$this->orderId = $orderId;
48
-	}
49
-
50
-	public function setPddOrderId($pddOrderId)
51
-	{
52
-		$this->pddOrderId = $pddOrderId;
53
-	}
10
+    {
11
+
12
+    }
13
+    /**
14
+     * @JsonProperty(String, "order_id")
15
+     */
16
+    private $orderId;
17
+
18
+    /**
19
+     * @JsonProperty(String, "pdd_order_id")
20
+     */
21
+    private $pddOrderId;
22
+
23
+    protected function setUserParams(&$params)
24
+    {
25
+        $this->setUserParam($params, "order_id", $this->orderId);
26
+        $this->setUserParam($params, "pdd_order_id", $this->pddOrderId);
27
+
28
+    }
29
+
30
+    public function getVersion()
31
+    {
32
+        return "V1";
33
+    }
34
+
35
+    public function getDataType()
36
+    {
37
+        return "JSON";
38
+    }
39
+
40
+    public function getType()
41
+    {
42
+        return "pdd.train.grab.order.query";
43
+    }
44
+
45
+    public function setOrderId($orderId)
46
+    {
47
+        $this->orderId = $orderId;
48
+    }
49
+
50
+    public function setPddOrderId($pddOrderId)
51
+    {
52
+        $this->pddOrderId = $pddOrderId;
53
+    }
54 54
 
55 55
 }
Please login to merge, or discard this patch.
src/service/pinduoduo/bin/src/Api/Request/PddWmsInborderConfirmRequest.php 1 patch
Indentation   +151 added lines, -151 removed lines patch added patch discarded remove patch
@@ -7,188 +7,188 @@
 block discarded – undo
7 7
 class PddWmsInborderConfirmRequest extends PopBaseHttpRequest
8 8
 {
9 9
     public function __construct()
10
-	{
10
+    {
11 11
 
12
-	}
13
-	/**
14
-	* @JsonProperty(\Com\Pdd\Pop\Sdk\Api\Request\PddWmsInborderConfirmRequest_Request, "request")
15
-	*/
16
-	private $request;
12
+    }
13
+    /**
14
+     * @JsonProperty(\Com\Pdd\Pop\Sdk\Api\Request\PddWmsInborderConfirmRequest_Request, "request")
15
+     */
16
+    private $request;
17 17
 
18
-	protected function setUserParams(&$params)
19
-	{
20
-		$this->setUserParam($params, "request", $this->request);
18
+    protected function setUserParams(&$params)
19
+    {
20
+        $this->setUserParam($params, "request", $this->request);
21 21
 
22
-	}
22
+    }
23 23
 
24
-	public function getVersion()
25
-	{
26
-		return "V1";
27
-	}
24
+    public function getVersion()
25
+    {
26
+        return "V1";
27
+    }
28 28
 
29
-	public function getDataType()
30
-	{
31
-		return "JSON";
32
-	}
29
+    public function getDataType()
30
+    {
31
+        return "JSON";
32
+    }
33 33
 
34
-	public function getType()
35
-	{
36
-		return "pdd.wms.inborder.confirm";
37
-	}
34
+    public function getType()
35
+    {
36
+        return "pdd.wms.inborder.confirm";
37
+    }
38 38
 
39
-	public function setRequest($request)
40
-	{
41
-		$this->request = $request;
42
-	}
39
+    public function setRequest($request)
40
+    {
41
+        $this->request = $request;
42
+    }
43 43
 
44 44
 }
45 45
 
46 46
 class PddWmsInborderConfirmRequest_Request extends PopBaseJsonEntity
47 47
 {
48 48
 
49
-	public function __construct()
50
-	{
49
+    public function __construct()
50
+    {
51 51
 
52
-	}
52
+    }
53 53
 
54
-	/**
55
-	* @JsonProperty(\Com\Pdd\Pop\Sdk\Api\Request\PddWmsInborderConfirmRequest_RequestInbOrder, "inbOrder")
56
-	*/
57
-	private $inbOrder;
54
+    /**
55
+     * @JsonProperty(\Com\Pdd\Pop\Sdk\Api\Request\PddWmsInborderConfirmRequest_RequestInbOrder, "inbOrder")
56
+     */
57
+    private $inbOrder;
58 58
 
59
-	/**
60
-	* @JsonProperty(List<\Com\Pdd\Pop\Sdk\Api\Request\PddWmsInborderConfirmRequest_RequestOrderLinesItem>, "orderLines")
61
-	*/
62
-	private $orderLines;
59
+    /**
60
+     * @JsonProperty(List<\Com\Pdd\Pop\Sdk\Api\Request\PddWmsInborderConfirmRequest_RequestOrderLinesItem>, "orderLines")
61
+     */
62
+    private $orderLines;
63 63
 
64
-	/**
65
-	* @JsonProperty(String, "ownerCode")
66
-	*/
67
-	private $ownerCode;
64
+    /**
65
+     * @JsonProperty(String, "ownerCode")
66
+     */
67
+    private $ownerCode;
68 68
 
69
-	public function setInbOrder($inbOrder)
70
-	{
71
-		$this->inbOrder = $inbOrder;
72
-	}
69
+    public function setInbOrder($inbOrder)
70
+    {
71
+        $this->inbOrder = $inbOrder;
72
+    }
73 73
 
74
-	public function setOrderLines($orderLines)
75
-	{
76
-		$this->orderLines = $orderLines;
77
-	}
74
+    public function setOrderLines($orderLines)
75
+    {
76
+        $this->orderLines = $orderLines;
77
+    }
78 78
 
79
-	public function setOwnerCode($ownerCode)
80
-	{
81
-		$this->ownerCode = $ownerCode;
82
-	}
79
+    public function setOwnerCode($ownerCode)
80
+    {
81
+        $this->ownerCode = $ownerCode;
82
+    }
83 83
 
84 84
 }
85 85
 
86 86
 class PddWmsInborderConfirmRequest_RequestInbOrder extends PopBaseJsonEntity
87 87
 {
88 88
 
89
-	public function __construct()
90
-	{
91
-
92
-	}
93
-
94
-	/**
95
-	* @JsonProperty(String, "inbOrderCode")
96
-	*/
97
-	private $inbOrderCode;
98
-
99
-	/**
100
-	* @JsonProperty(String, "orderType")
101
-	*/
102
-	private $orderType;
103
-
104
-	/**
105
-	* @JsonProperty(String, "outBizCode")
106
-	*/
107
-	private $outBizCode;
108
-
109
-	/**
110
-	* @JsonProperty(String, "status")
111
-	*/
112
-	private $status;
113
-
114
-	/**
115
-	* @JsonProperty(String, "warehouseCode")
116
-	*/
117
-	private $warehouseCode;
118
-
119
-	/**
120
-	* @JsonProperty(Long, "warehouseId")
121
-	*/
122
-	private $warehouseId;
123
-
124
-	public function setInbOrderCode($inbOrderCode)
125
-	{
126
-		$this->inbOrderCode = $inbOrderCode;
127
-	}
128
-
129
-	public function setOrderType($orderType)
130
-	{
131
-		$this->orderType = $orderType;
132
-	}
133
-
134
-	public function setOutBizCode($outBizCode)
135
-	{
136
-		$this->outBizCode = $outBizCode;
137
-	}
138
-
139
-	public function setStatus($status)
140
-	{
141
-		$this->status = $status;
142
-	}
143
-
144
-	public function setWarehouseCode($warehouseCode)
145
-	{
146
-		$this->warehouseCode = $warehouseCode;
147
-	}
148
-
149
-	public function setWarehouseId($warehouseId)
150
-	{
151
-		$this->warehouseId = $warehouseId;
152
-	}
89
+    public function __construct()
90
+    {
91
+
92
+    }
93
+
94
+    /**
95
+     * @JsonProperty(String, "inbOrderCode")
96
+     */
97
+    private $inbOrderCode;
98
+
99
+    /**
100
+     * @JsonProperty(String, "orderType")
101
+     */
102
+    private $orderType;
103
+
104
+    /**
105
+     * @JsonProperty(String, "outBizCode")
106
+     */
107
+    private $outBizCode;
108
+
109
+    /**
110
+     * @JsonProperty(String, "status")
111
+     */
112
+    private $status;
113
+
114
+    /**
115
+     * @JsonProperty(String, "warehouseCode")
116
+     */
117
+    private $warehouseCode;
118
+
119
+    /**
120
+     * @JsonProperty(Long, "warehouseId")
121
+     */
122
+    private $warehouseId;
123
+
124
+    public function setInbOrderCode($inbOrderCode)
125
+    {
126
+        $this->inbOrderCode = $inbOrderCode;
127
+    }
128
+
129
+    public function setOrderType($orderType)
130
+    {
131
+        $this->orderType = $orderType;
132
+    }
133
+
134
+    public function setOutBizCode($outBizCode)
135
+    {
136
+        $this->outBizCode = $outBizCode;
137
+    }
138
+
139
+    public function setStatus($status)
140
+    {
141
+        $this->status = $status;
142
+    }
143
+
144
+    public function setWarehouseCode($warehouseCode)
145
+    {
146
+        $this->warehouseCode = $warehouseCode;
147
+    }
148
+
149
+    public function setWarehouseId($warehouseId)
150
+    {
151
+        $this->warehouseId = $warehouseId;
152
+    }
153 153
 
154 154
 }
155 155
 
156 156
 class PddWmsInborderConfirmRequest_RequestOrderLinesItem extends PopBaseJsonEntity
157 157
 {
158 158
 
159
-	public function __construct()
160
-	{
161
-
162
-	}
163
-
164
-	/**
165
-	* @JsonProperty(Long, "actualReceiveQuantity")
166
-	*/
167
-	private $actualReceiveQuantity;
168
-
169
-	/**
170
-	* @JsonProperty(String, "inventoryType")
171
-	*/
172
-	private $inventoryType;
173
-
174
-	/**
175
-	* @JsonProperty(String, "wareSn")
176
-	*/
177
-	private $wareSn;
178
-
179
-	public function setActualReceiveQuantity($actualReceiveQuantity)
180
-	{
181
-		$this->actualReceiveQuantity = $actualReceiveQuantity;
182
-	}
183
-
184
-	public function setInventoryType($inventoryType)
185
-	{
186
-		$this->inventoryType = $inventoryType;
187
-	}
188
-
189
-	public function setWareSn($wareSn)
190
-	{
191
-		$this->wareSn = $wareSn;
192
-	}
159
+    public function __construct()
160
+    {
161
+
162
+    }
163
+
164
+    /**
165
+     * @JsonProperty(Long, "actualReceiveQuantity")
166
+     */
167
+    private $actualReceiveQuantity;
168
+
169
+    /**
170
+     * @JsonProperty(String, "inventoryType")
171
+     */
172
+    private $inventoryType;
173
+
174
+    /**
175
+     * @JsonProperty(String, "wareSn")
176
+     */
177
+    private $wareSn;
178
+
179
+    public function setActualReceiveQuantity($actualReceiveQuantity)
180
+    {
181
+        $this->actualReceiveQuantity = $actualReceiveQuantity;
182
+    }
183
+
184
+    public function setInventoryType($inventoryType)
185
+    {
186
+        $this->inventoryType = $inventoryType;
187
+    }
188
+
189
+    public function setWareSn($wareSn)
190
+    {
191
+        $this->wareSn = $wareSn;
192
+    }
193 193
 
194 194
 }
Please login to merge, or discard this patch.
service/pinduoduo/bin/src/Api/Request/PddWmsDeliveryorderConfirmRequest.php 1 patch
Indentation   +174 added lines, -174 removed lines patch added patch discarded remove patch
@@ -7,198 +7,198 @@
 block discarded – undo
7 7
 class PddWmsDeliveryorderConfirmRequest extends PopBaseHttpRequest
8 8
 {
9 9
     public function __construct()
10
-	{
10
+    {
11 11
 
12
-	}
13
-	/**
14
-	* @JsonProperty(\Com\Pdd\Pop\Sdk\Api\Request\PddWmsDeliveryorderConfirmRequest_Request, "request")
15
-	*/
16
-	private $request;
12
+    }
13
+    /**
14
+     * @JsonProperty(\Com\Pdd\Pop\Sdk\Api\Request\PddWmsDeliveryorderConfirmRequest_Request, "request")
15
+     */
16
+    private $request;
17 17
 
18
-	protected function setUserParams(&$params)
19
-	{
20
-		$this->setUserParam($params, "request", $this->request);
18
+    protected function setUserParams(&$params)
19
+    {
20
+        $this->setUserParam($params, "request", $this->request);
21 21
 
22
-	}
22
+    }
23 23
 
24
-	public function getVersion()
25
-	{
26
-		return "V1";
27
-	}
24
+    public function getVersion()
25
+    {
26
+        return "V1";
27
+    }
28 28
 
29
-	public function getDataType()
30
-	{
31
-		return "JSON";
32
-	}
29
+    public function getDataType()
30
+    {
31
+        return "JSON";
32
+    }
33 33
 
34
-	public function getType()
35
-	{
36
-		return "pdd.wms.deliveryorder.confirm";
37
-	}
34
+    public function getType()
35
+    {
36
+        return "pdd.wms.deliveryorder.confirm";
37
+    }
38 38
 
39
-	public function setRequest($request)
40
-	{
41
-		$this->request = $request;
42
-	}
39
+    public function setRequest($request)
40
+    {
41
+        $this->request = $request;
42
+    }
43 43
 
44 44
 }
45 45
 
46 46
 class PddWmsDeliveryorderConfirmRequest_Request extends PopBaseJsonEntity
47 47
 {
48 48
 
49
-	public function __construct()
50
-	{
51
-
52
-	}
53
-
54
-	/**
55
-	* @JsonProperty(String, "deliveryOrderCode")
56
-	*/
57
-	private $deliveryOrderCode;
58
-
59
-	/**
60
-	* @JsonProperty(String, "expressCode")
61
-	*/
62
-	private $expressCode;
63
-
64
-	/**
65
-	* @JsonProperty(String, "logisticsCode")
66
-	*/
67
-	private $logisticsCode;
68
-
69
-	/**
70
-	* @JsonProperty(String, "logisticsName")
71
-	*/
72
-	private $logisticsName;
73
-
74
-	/**
75
-	* @JsonProperty(List<\Com\Pdd\Pop\Sdk\Api\Request\PddWmsDeliveryorderConfirmRequest_RequestOrderLinesItem>, "orderLines")
76
-	*/
77
-	private $orderLines;
78
-
79
-	/**
80
-	* @JsonProperty(String, "orderType")
81
-	*/
82
-	private $orderType;
83
-
84
-	/**
85
-	* @JsonProperty(String, "outBizCode")
86
-	*/
87
-	private $outBizCode;
88
-
89
-	/**
90
-	* @JsonProperty(String, "ownerCode")
91
-	*/
92
-	private $ownerCode;
93
-
94
-	/**
95
-	* @JsonProperty(String, "status")
96
-	*/
97
-	private $status;
98
-
99
-	/**
100
-	* @JsonProperty(String, "warehouseCode")
101
-	*/
102
-	private $warehouseCode;
103
-
104
-	public function setDeliveryOrderCode($deliveryOrderCode)
105
-	{
106
-		$this->deliveryOrderCode = $deliveryOrderCode;
107
-	}
108
-
109
-	public function setExpressCode($expressCode)
110
-	{
111
-		$this->expressCode = $expressCode;
112
-	}
113
-
114
-	public function setLogisticsCode($logisticsCode)
115
-	{
116
-		$this->logisticsCode = $logisticsCode;
117
-	}
118
-
119
-	public function setLogisticsName($logisticsName)
120
-	{
121
-		$this->logisticsName = $logisticsName;
122
-	}
123
-
124
-	public function setOrderLines($orderLines)
125
-	{
126
-		$this->orderLines = $orderLines;
127
-	}
128
-
129
-	public function setOrderType($orderType)
130
-	{
131
-		$this->orderType = $orderType;
132
-	}
133
-
134
-	public function setOutBizCode($outBizCode)
135
-	{
136
-		$this->outBizCode = $outBizCode;
137
-	}
138
-
139
-	public function setOwnerCode($ownerCode)
140
-	{
141
-		$this->ownerCode = $ownerCode;
142
-	}
143
-
144
-	public function setStatus($status)
145
-	{
146
-		$this->status = $status;
147
-	}
148
-
149
-	public function setWarehouseCode($warehouseCode)
150
-	{
151
-		$this->warehouseCode = $warehouseCode;
152
-	}
49
+    public function __construct()
50
+    {
51
+
52
+    }
53
+
54
+    /**
55
+     * @JsonProperty(String, "deliveryOrderCode")
56
+     */
57
+    private $deliveryOrderCode;
58
+
59
+    /**
60
+     * @JsonProperty(String, "expressCode")
61
+     */
62
+    private $expressCode;
63
+
64
+    /**
65
+     * @JsonProperty(String, "logisticsCode")
66
+     */
67
+    private $logisticsCode;
68
+
69
+    /**
70
+     * @JsonProperty(String, "logisticsName")
71
+     */
72
+    private $logisticsName;
73
+
74
+    /**
75
+     * @JsonProperty(List<\Com\Pdd\Pop\Sdk\Api\Request\PddWmsDeliveryorderConfirmRequest_RequestOrderLinesItem>, "orderLines")
76
+     */
77
+    private $orderLines;
78
+
79
+    /**
80
+     * @JsonProperty(String, "orderType")
81
+     */
82
+    private $orderType;
83
+
84
+    /**
85
+     * @JsonProperty(String, "outBizCode")
86
+     */
87
+    private $outBizCode;
88
+
89
+    /**
90
+     * @JsonProperty(String, "ownerCode")
91
+     */
92
+    private $ownerCode;
93
+
94
+    /**
95
+     * @JsonProperty(String, "status")
96
+     */
97
+    private $status;
98
+
99
+    /**
100
+     * @JsonProperty(String, "warehouseCode")
101
+     */
102
+    private $warehouseCode;
103
+
104
+    public function setDeliveryOrderCode($deliveryOrderCode)
105
+    {
106
+        $this->deliveryOrderCode = $deliveryOrderCode;
107
+    }
108
+
109
+    public function setExpressCode($expressCode)
110
+    {
111
+        $this->expressCode = $expressCode;
112
+    }
113
+
114
+    public function setLogisticsCode($logisticsCode)
115
+    {
116
+        $this->logisticsCode = $logisticsCode;
117
+    }
118
+
119
+    public function setLogisticsName($logisticsName)
120
+    {
121
+        $this->logisticsName = $logisticsName;
122
+    }
123
+
124
+    public function setOrderLines($orderLines)
125
+    {
126
+        $this->orderLines = $orderLines;
127
+    }
128
+
129
+    public function setOrderType($orderType)
130
+    {
131
+        $this->orderType = $orderType;
132
+    }
133
+
134
+    public function setOutBizCode($outBizCode)
135
+    {
136
+        $this->outBizCode = $outBizCode;
137
+    }
138
+
139
+    public function setOwnerCode($ownerCode)
140
+    {
141
+        $this->ownerCode = $ownerCode;
142
+    }
143
+
144
+    public function setStatus($status)
145
+    {
146
+        $this->status = $status;
147
+    }
148
+
149
+    public function setWarehouseCode($warehouseCode)
150
+    {
151
+        $this->warehouseCode = $warehouseCode;
152
+    }
153 153
 
154 154
 }
155 155
 
156 156
 class PddWmsDeliveryorderConfirmRequest_RequestOrderLinesItem extends PopBaseJsonEntity
157 157
 {
158 158
 
159
-	public function __construct()
160
-	{
161
-
162
-	}
163
-
164
-	/**
165
-	* @JsonProperty(String, "inventoryType")
166
-	*/
167
-	private $inventoryType;
168
-
169
-	/**
170
-	* @JsonProperty(String, "parentWareSn")
171
-	*/
172
-	private $parentWareSn;
173
-
174
-	/**
175
-	* @JsonProperty(String, "quantity")
176
-	*/
177
-	private $quantity;
178
-
179
-	/**
180
-	* @JsonProperty(String, "wareSn")
181
-	*/
182
-	private $wareSn;
183
-
184
-	public function setInventoryType($inventoryType)
185
-	{
186
-		$this->inventoryType = $inventoryType;
187
-	}
188
-
189
-	public function setParentWareSn($parentWareSn)
190
-	{
191
-		$this->parentWareSn = $parentWareSn;
192
-	}
193
-
194
-	public function setQuantity($quantity)
195
-	{
196
-		$this->quantity = $quantity;
197
-	}
198
-
199
-	public function setWareSn($wareSn)
200
-	{
201
-		$this->wareSn = $wareSn;
202
-	}
159
+    public function __construct()
160
+    {
161
+
162
+    }
163
+
164
+    /**
165
+     * @JsonProperty(String, "inventoryType")
166
+     */
167
+    private $inventoryType;
168
+
169
+    /**
170
+     * @JsonProperty(String, "parentWareSn")
171
+     */
172
+    private $parentWareSn;
173
+
174
+    /**
175
+     * @JsonProperty(String, "quantity")
176
+     */
177
+    private $quantity;
178
+
179
+    /**
180
+     * @JsonProperty(String, "wareSn")
181
+     */
182
+    private $wareSn;
183
+
184
+    public function setInventoryType($inventoryType)
185
+    {
186
+        $this->inventoryType = $inventoryType;
187
+    }
188
+
189
+    public function setParentWareSn($parentWareSn)
190
+    {
191
+        $this->parentWareSn = $parentWareSn;
192
+    }
193
+
194
+    public function setQuantity($quantity)
195
+    {
196
+        $this->quantity = $quantity;
197
+    }
198
+
199
+    public function setWareSn($wareSn)
200
+    {
201
+        $this->wareSn = $wareSn;
202
+    }
203 203
 
204 204
 }
Please login to merge, or discard this patch.
service/pinduoduo/bin/src/Api/Request/PddWmsDepotTicketNotifyRequest.php 1 patch
Indentation   +96 added lines, -96 removed lines patch added patch discarded remove patch
@@ -7,112 +7,112 @@
 block discarded – undo
7 7
 class PddWmsDepotTicketNotifyRequest extends PopBaseHttpRequest
8 8
 {
9 9
     public function __construct()
10
-	{
11
-
12
-	}
13
-	/**
14
-	* @JsonProperty(Long, "ticketId")
15
-	*/
16
-	private $ticketId;
17
-
18
-	/**
19
-	* @JsonProperty(String, "content")
20
-	*/
21
-	private $content;
22
-
23
-	/**
24
-	* @JsonProperty(List<\Com\Pdd\Pop\Sdk\Api\Request\PddWmsDepotTicketNotifyRequest_AttachUrlItem>, "attachUrl")
25
-	*/
26
-	private $attachUrl;
27
-
28
-	/**
29
-	* @JsonProperty(Integer, "serviceStatus")
30
-	*/
31
-	private $serviceStatus;
32
-
33
-	/**
34
-	* @JsonProperty(Integer, "compensateAmount")
35
-	*/
36
-	private $compensateAmount;
37
-
38
-	protected function setUserParams(&$params)
39
-	{
40
-		$this->setUserParam($params, "ticketId", $this->ticketId);
41
-		$this->setUserParam($params, "content", $this->content);
42
-		$this->setUserParam($params, "attachUrl", $this->attachUrl);
43
-		$this->setUserParam($params, "serviceStatus", $this->serviceStatus);
44
-		$this->setUserParam($params, "compensateAmount", $this->compensateAmount);
45
-
46
-	}
47
-
48
-	public function getVersion()
49
-	{
50
-		return "V1";
51
-	}
52
-
53
-	public function getDataType()
54
-	{
55
-		return "JSON";
56
-	}
57
-
58
-	public function getType()
59
-	{
60
-		return "pdd.wms.depot.ticket.notify";
61
-	}
62
-
63
-	public function setTicketId($ticketId)
64
-	{
65
-		$this->ticketId = $ticketId;
66
-	}
67
-
68
-	public function setContent($content)
69
-	{
70
-		$this->content = $content;
71
-	}
72
-
73
-	public function setAttachUrl($attachUrl)
74
-	{
75
-		$this->attachUrl = $attachUrl;
76
-	}
77
-
78
-	public function setServiceStatus($serviceStatus)
79
-	{
80
-		$this->serviceStatus = $serviceStatus;
81
-	}
82
-
83
-	public function setCompensateAmount($compensateAmount)
84
-	{
85
-		$this->compensateAmount = $compensateAmount;
86
-	}
10
+    {
11
+
12
+    }
13
+    /**
14
+     * @JsonProperty(Long, "ticketId")
15
+     */
16
+    private $ticketId;
17
+
18
+    /**
19
+     * @JsonProperty(String, "content")
20
+     */
21
+    private $content;
22
+
23
+    /**
24
+     * @JsonProperty(List<\Com\Pdd\Pop\Sdk\Api\Request\PddWmsDepotTicketNotifyRequest_AttachUrlItem>, "attachUrl")
25
+     */
26
+    private $attachUrl;
27
+
28
+    /**
29
+     * @JsonProperty(Integer, "serviceStatus")
30
+     */
31
+    private $serviceStatus;
32
+
33
+    /**
34
+     * @JsonProperty(Integer, "compensateAmount")
35
+     */
36
+    private $compensateAmount;
37
+
38
+    protected function setUserParams(&$params)
39
+    {
40
+        $this->setUserParam($params, "ticketId", $this->ticketId);
41
+        $this->setUserParam($params, "content", $this->content);
42
+        $this->setUserParam($params, "attachUrl", $this->attachUrl);
43
+        $this->setUserParam($params, "serviceStatus", $this->serviceStatus);
44
+        $this->setUserParam($params, "compensateAmount", $this->compensateAmount);
45
+
46
+    }
47
+
48
+    public function getVersion()
49
+    {
50
+        return "V1";
51
+    }
52
+
53
+    public function getDataType()
54
+    {
55
+        return "JSON";
56
+    }
57
+
58
+    public function getType()
59
+    {
60
+        return "pdd.wms.depot.ticket.notify";
61
+    }
62
+
63
+    public function setTicketId($ticketId)
64
+    {
65
+        $this->ticketId = $ticketId;
66
+    }
67
+
68
+    public function setContent($content)
69
+    {
70
+        $this->content = $content;
71
+    }
72
+
73
+    public function setAttachUrl($attachUrl)
74
+    {
75
+        $this->attachUrl = $attachUrl;
76
+    }
77
+
78
+    public function setServiceStatus($serviceStatus)
79
+    {
80
+        $this->serviceStatus = $serviceStatus;
81
+    }
82
+
83
+    public function setCompensateAmount($compensateAmount)
84
+    {
85
+        $this->compensateAmount = $compensateAmount;
86
+    }
87 87
 
88 88
 }
89 89
 
90 90
 class PddWmsDepotTicketNotifyRequest_AttachUrlItem extends PopBaseJsonEntity
91 91
 {
92 92
 
93
-	public function __construct()
94
-	{
93
+    public function __construct()
94
+    {
95 95
 
96
-	}
96
+    }
97 97
 
98
-	/**
99
-	* @JsonProperty(String, "name")
100
-	*/
101
-	private $name;
98
+    /**
99
+     * @JsonProperty(String, "name")
100
+     */
101
+    private $name;
102 102
 
103
-	/**
104
-	* @JsonProperty(String, "url")
105
-	*/
106
-	private $url;
103
+    /**
104
+     * @JsonProperty(String, "url")
105
+     */
106
+    private $url;
107 107
 
108
-	public function setName($name)
109
-	{
110
-		$this->name = $name;
111
-	}
108
+    public function setName($name)
109
+    {
110
+        $this->name = $name;
111
+    }
112 112
 
113
-	public function setUrl($url)
114
-	{
115
-		$this->url = $url;
116
-	}
113
+    public function setUrl($url)
114
+    {
115
+        $this->url = $url;
116
+    }
117 117
 
118 118
 }
Please login to merge, or discard this patch.
src/service/pinduoduo/bin/src/Api/Request/PddTrainConfirmPayRequest.php 1 patch
Indentation   +89 added lines, -89 removed lines patch added patch discarded remove patch
@@ -7,100 +7,100 @@
 block discarded – undo
7 7
 class PddTrainConfirmPayRequest extends PopBaseHttpRequest
8 8
 {
9 9
     public function __construct()
10
-	{
11
-
12
-	}
13
-	/**
14
-	* @JsonProperty(String, "order_id")
15
-	*/
16
-	private $orderId;
17
-
18
-	/**
19
-	* @JsonProperty(String, "pdd_order_id")
20
-	*/
21
-	private $pddOrderId;
22
-
23
-	/**
24
-	* @JsonProperty(List<\Com\Pdd\Pop\Sdk\Api\Request\PddTrainConfirmPayRequest_OrderInfosItem>, "order_infos")
25
-	*/
26
-	private $orderInfos;
27
-
28
-	protected function setUserParams(&$params)
29
-	{
30
-		$this->setUserParam($params, "order_id", $this->orderId);
31
-		$this->setUserParam($params, "pdd_order_id", $this->pddOrderId);
32
-		$this->setUserParam($params, "order_infos", $this->orderInfos);
33
-
34
-	}
35
-
36
-	public function getVersion()
37
-	{
38
-		return "V1";
39
-	}
40
-
41
-	public function getDataType()
42
-	{
43
-		return "JSON";
44
-	}
45
-
46
-	public function getType()
47
-	{
48
-		return "pdd.train.confirm.pay";
49
-	}
50
-
51
-	public function setOrderId($orderId)
52
-	{
53
-		$this->orderId = $orderId;
54
-	}
55
-
56
-	public function setPddOrderId($pddOrderId)
57
-	{
58
-		$this->pddOrderId = $pddOrderId;
59
-	}
60
-
61
-	public function setOrderInfos($orderInfos)
62
-	{
63
-		$this->orderInfos = $orderInfos;
64
-	}
10
+    {
11
+
12
+    }
13
+    /**
14
+     * @JsonProperty(String, "order_id")
15
+     */
16
+    private $orderId;
17
+
18
+    /**
19
+     * @JsonProperty(String, "pdd_order_id")
20
+     */
21
+    private $pddOrderId;
22
+
23
+    /**
24
+     * @JsonProperty(List<\Com\Pdd\Pop\Sdk\Api\Request\PddTrainConfirmPayRequest_OrderInfosItem>, "order_infos")
25
+     */
26
+    private $orderInfos;
27
+
28
+    protected function setUserParams(&$params)
29
+    {
30
+        $this->setUserParam($params, "order_id", $this->orderId);
31
+        $this->setUserParam($params, "pdd_order_id", $this->pddOrderId);
32
+        $this->setUserParam($params, "order_infos", $this->orderInfos);
33
+
34
+    }
35
+
36
+    public function getVersion()
37
+    {
38
+        return "V1";
39
+    }
40
+
41
+    public function getDataType()
42
+    {
43
+        return "JSON";
44
+    }
45
+
46
+    public function getType()
47
+    {
48
+        return "pdd.train.confirm.pay";
49
+    }
50
+
51
+    public function setOrderId($orderId)
52
+    {
53
+        $this->orderId = $orderId;
54
+    }
55
+
56
+    public function setPddOrderId($pddOrderId)
57
+    {
58
+        $this->pddOrderId = $pddOrderId;
59
+    }
60
+
61
+    public function setOrderInfos($orderInfos)
62
+    {
63
+        $this->orderInfos = $orderInfos;
64
+    }
65 65
 
66 66
 }
67 67
 
68 68
 class PddTrainConfirmPayRequest_OrderInfosItem extends PopBaseJsonEntity
69 69
 {
70 70
 
71
-	public function __construct()
72
-	{
73
-
74
-	}
75
-
76
-	/**
77
-	* @JsonProperty(String, "travel_sn")
78
-	*/
79
-	private $travelSn;
80
-
81
-	/**
82
-	* @JsonProperty(String, "mall_order")
83
-	*/
84
-	private $mallOrder;
85
-
86
-	/**
87
-	* @JsonProperty(String, "order_sn")
88
-	*/
89
-	private $orderSn;
90
-
91
-	public function setTravelSn($travelSn)
92
-	{
93
-		$this->travelSn = $travelSn;
94
-	}
95
-
96
-	public function setMallOrder($mallOrder)
97
-	{
98
-		$this->mallOrder = $mallOrder;
99
-	}
100
-
101
-	public function setOrderSn($orderSn)
102
-	{
103
-		$this->orderSn = $orderSn;
104
-	}
71
+    public function __construct()
72
+    {
73
+
74
+    }
75
+
76
+    /**
77
+     * @JsonProperty(String, "travel_sn")
78
+     */
79
+    private $travelSn;
80
+
81
+    /**
82
+     * @JsonProperty(String, "mall_order")
83
+     */
84
+    private $mallOrder;
85
+
86
+    /**
87
+     * @JsonProperty(String, "order_sn")
88
+     */
89
+    private $orderSn;
90
+
91
+    public function setTravelSn($travelSn)
92
+    {
93
+        $this->travelSn = $travelSn;
94
+    }
95
+
96
+    public function setMallOrder($mallOrder)
97
+    {
98
+        $this->mallOrder = $mallOrder;
99
+    }
100
+
101
+    public function setOrderSn($orderSn)
102
+    {
103
+        $this->orderSn = $orderSn;
104
+    }
105 105
 
106 106
 }
Please login to merge, or discard this patch.