作者 lackoxygen

fix:name

@@ -9,7 +9,7 @@ class Buyin extends Passage implements BuyinInterface @@ -9,7 +9,7 @@ class Buyin extends Passage implements BuyinInterface
9 /** 9 /**
10 * @inheritDoc 10 * @inheritDoc
11 */ 11 */
12 - function buyinSimplePlan(array $params) 12 + public function buyinSimplePlan(array $params)
13 { 13 {
14 $this->builder->method('POST') 14 $this->builder->method('POST')
15 ->service('buyin.simplePlan') 15 ->service('buyin.simplePlan')
@@ -20,7 +20,7 @@ class Buyin extends Passage implements BuyinInterface @@ -20,7 +20,7 @@ class Buyin extends Passage implements BuyinInterface
20 /** 20 /**
21 * @inheritDoc 21 * @inheritDoc
22 */ 22 */
23 - function buyinShopActivityList(array $params) 23 + public function buyinShopActivityList(array $params)
24 { 24 {
25 $this->builder->method('POST') 25 $this->builder->method('POST')
26 ->service('buyin.ShopActivityList') 26 ->service('buyin.ShopActivityList')
@@ -31,7 +31,7 @@ class Buyin extends Passage implements BuyinInterface @@ -31,7 +31,7 @@ class Buyin extends Passage implements BuyinInterface
31 /** 31 /**
32 * @inheritDoc 32 * @inheritDoc
33 */ 33 */
34 - function buyinShopActivityDetail(array $params) 34 + public function buyinShopActivityDetail(array $params)
35 { 35 {
36 $this->builder->method('POST') 36 $this->builder->method('POST')
37 ->service('buyin.shopActivityDetail') 37 ->service('buyin.shopActivityDetail')
@@ -42,7 +42,7 @@ class Buyin extends Passage implements BuyinInterface @@ -42,7 +42,7 @@ class Buyin extends Passage implements BuyinInterface
42 /** 42 /**
43 * @inheritDoc 43 * @inheritDoc
44 */ 44 */
45 - function buyinApplyActivities(array $params) 45 + public function buyinApplyActivities(array $params)
46 { 46 {
47 $this->builder->method('POST') 47 $this->builder->method('POST')
48 ->service('buyin.applyActivities') 48 ->service('buyin.applyActivities')
@@ -53,7 +53,7 @@ class Buyin extends Passage implements BuyinInterface @@ -53,7 +53,7 @@ class Buyin extends Passage implements BuyinInterface
53 /** 53 /**
54 * @inheritDoc 54 * @inheritDoc
55 */ 55 */
56 - function buyinActivityProductExtendList(array $params) 56 + public function buyinActivityProductExtendList(array $params)
57 { 57 {
58 $this->builder->method('POST') 58 $this->builder->method('POST')
59 ->service('buyin.activityProductExtendList') 59 ->service('buyin.activityProductExtendList')
@@ -64,7 +64,7 @@ class Buyin extends Passage implements BuyinInterface @@ -64,7 +64,7 @@ class Buyin extends Passage implements BuyinInterface
64 /** 64 /**
65 * @inheritDoc 65 * @inheritDoc
66 */ 66 */
67 - function buyinActivityProductExtendApprove(array $params) 67 + public function buyinActivityProductExtendApprove(array $params)
68 { 68 {
69 $this->builder->method('POST') 69 $this->builder->method('POST')
70 ->service('buyin.activityProductExtendApprove') 70 ->service('buyin.activityProductExtendApprove')
@@ -75,7 +75,7 @@ class Buyin extends Passage implements BuyinInterface @@ -75,7 +75,7 @@ class Buyin extends Passage implements BuyinInterface
75 /** 75 /**
76 * @inheritDoc 76 * @inheritDoc
77 */ 77 */
78 - function buyinCreateOrUpdateOrienPlan(array $params) 78 + public function buyinCreateOrUpdateOrienPlan(array $params)
79 { 79 {
80 $this->builder->method('POST') 80 $this->builder->method('POST')
81 ->service('buyin.createOrUpdateOrienPlan') 81 ->service('buyin.createOrUpdateOrienPlan')
@@ -86,7 +86,7 @@ class Buyin extends Passage implements BuyinInterface @@ -86,7 +86,7 @@ class Buyin extends Passage implements BuyinInterface
86 /** 86 /**
87 * @inheritDoc 87 * @inheritDoc
88 */ 88 */
89 - function buyinOrienPlanList(array $params) 89 + public function buyinOrienPlanList(array $params)
90 { 90 {
91 $this->builder->method('POST') 91 $this->builder->method('POST')
92 ->service('buyin.orienPlanList') 92 ->service('buyin.orienPlanList')
@@ -97,7 +97,7 @@ class Buyin extends Passage implements BuyinInterface @@ -97,7 +97,7 @@ class Buyin extends Passage implements BuyinInterface
97 /** 97 /**
98 * @inheritDoc 98 * @inheritDoc
99 */ 99 */
100 - function buyinOrienPlanCtrl(array $params) 100 + public function buyinOrienPlanCtrl(array $params)
101 { 101 {
102 $this->builder->method('POST') 102 $this->builder->method('POST')
103 ->service('buyin.orienPlanCtrl') 103 ->service('buyin.orienPlanCtrl')
@@ -108,7 +108,7 @@ class Buyin extends Passage implements BuyinInterface @@ -108,7 +108,7 @@ class Buyin extends Passage implements BuyinInterface
108 /** 108 /**
109 * @inheritDoc 109 * @inheritDoc
110 */ 110 */
111 - function buyinOrienPlanAuthors(array $params) 111 + public function buyinOrienPlanAuthors(array $params)
112 { 112 {
113 $this->builder->method('POST') 113 $this->builder->method('POST')
114 ->service('buyin.orienPlanAuthors') 114 ->service('buyin.orienPlanAuthors')
@@ -119,7 +119,7 @@ class Buyin extends Passage implements BuyinInterface @@ -119,7 +119,7 @@ class Buyin extends Passage implements BuyinInterface
119 /** 119 /**
120 * @inheritDoc 120 * @inheritDoc
121 */ 121 */
122 - function buyinOrienPlanAuthorsAdd(array $params) 122 + public function buyinOrienPlanAuthorsAdd(array $params)
123 { 123 {
124 $this->builder->method('POST') 124 $this->builder->method('POST')
125 ->service('buyin.orienPlanAuthorsAdd') 125 ->service('buyin.orienPlanAuthorsAdd')
@@ -130,7 +130,7 @@ class Buyin extends Passage implements BuyinInterface @@ -130,7 +130,7 @@ class Buyin extends Passage implements BuyinInterface
130 /** 130 /**
131 * @inheritDoc 131 * @inheritDoc
132 */ 132 */
133 - function buyinOrienPlanAudit(array $params) 133 + public function buyinOrienPlanAudit(array $params)
134 { 134 {
135 $this->builder->method('POST') 135 $this->builder->method('POST')
136 ->service('buyin.orienPlanAudit') 136 ->service('buyin.orienPlanAudit')
@@ -141,7 +141,7 @@ class Buyin extends Passage implements BuyinInterface @@ -141,7 +141,7 @@ class Buyin extends Passage implements BuyinInterface
141 /** 141 /**
142 * @inheritDoc 142 * @inheritDoc
143 */ 143 */
144 - function buyinExclusivePlan(array $params) 144 + public function buyinExclusivePlan(array $params)
145 { 145 {
146 $this->builder->method('POST') 146 $this->builder->method('POST')
147 ->service('buyin.exclusivePlan') 147 ->service('buyin.exclusivePlan')
@@ -152,7 +152,7 @@ class Buyin extends Passage implements BuyinInterface @@ -152,7 +152,7 @@ class Buyin extends Passage implements BuyinInterface
152 /** 152 /**
153 * @inheritDoc 153 * @inheritDoc
154 */ 154 */
155 - function buyinExclusivePlanAuthorOperate(array $params) 155 + public function buyinExclusivePlanAuthorOperate(array $params)
156 { 156 {
157 $this->builder->method('POST') 157 $this->builder->method('POST')
158 ->service('buyin.exclusivePlanAuthorOperate') 158 ->service('buyin.exclusivePlanAuthorOperate')
@@ -163,7 +163,7 @@ class Buyin extends Passage implements BuyinInterface @@ -163,7 +163,7 @@ class Buyin extends Passage implements BuyinInterface
163 /** 163 /**
164 * @inheritDoc 164 * @inheritDoc
165 */ 165 */
166 - function allianceColonelActivityCreateOrUpdate(array $params) 166 + public function allianceColonelActivityCreateOrUpdate(array $params)
167 { 167 {
168 $this->builder->method('POST') 168 $this->builder->method('POST')
169 ->service('alliance.colonelActivityCreateOrUpdate') 169 ->service('alliance.colonelActivityCreateOrUpdate')
@@ -174,7 +174,7 @@ class Buyin extends Passage implements BuyinInterface @@ -174,7 +174,7 @@ class Buyin extends Passage implements BuyinInterface
174 /** 174 /**
175 * @inheritDoc 175 * @inheritDoc
176 */ 176 */
177 - function allianceActivityProductCategoryList(array $params) 177 + public function allianceActivityProductCategoryList(array $params)
178 { 178 {
179 $this->builder->method('POST') 179 $this->builder->method('POST')
180 ->service('alliance.activityProductCategoryList') 180 ->service('alliance.activityProductCategoryList')
@@ -185,7 +185,7 @@ class Buyin extends Passage implements BuyinInterface @@ -185,7 +185,7 @@ class Buyin extends Passage implements BuyinInterface
185 /** 185 /**
186 * @inheritDoc 186 * @inheritDoc
187 */ 187 */
188 - function allianceInstituteColonelActivityList(array $params) 188 + public function allianceInstituteColonelActivityList(array $params)
189 { 189 {
190 $this->builder->method('POST') 190 $this->builder->method('POST')
191 ->service('alliance.instituteColonelActivityList') 191 ->service('alliance.instituteColonelActivityList')
@@ -196,7 +196,7 @@ class Buyin extends Passage implements BuyinInterface @@ -196,7 +196,7 @@ class Buyin extends Passage implements BuyinInterface
196 /** 196 /**
197 * @inheritDoc 197 * @inheritDoc
198 */ 198 */
199 - function allianceInstituteColonelActivityOperate(array $params) 199 + public function allianceInstituteColonelActivityOperate(array $params)
200 { 200 {
201 $this->builder->method('POST') 201 $this->builder->method('POST')
202 ->service('alliance.instituteColonelActivityOperate') 202 ->service('alliance.instituteColonelActivityOperate')
@@ -207,7 +207,7 @@ class Buyin extends Passage implements BuyinInterface @@ -207,7 +207,7 @@ class Buyin extends Passage implements BuyinInterface
207 /** 207 /**
208 * @inheritDoc 208 * @inheritDoc
209 */ 209 */
210 - function allianceColonelActivityProduct(array $params) 210 + public function allianceColonelActivityProduct(array $params)
211 { 211 {
212 $this->builder->method('POST') 212 $this->builder->method('POST')
213 ->service('alliance.colonelActivityProduct') 213 ->service('alliance.colonelActivityProduct')
@@ -218,7 +218,7 @@ class Buyin extends Passage implements BuyinInterface @@ -218,7 +218,7 @@ class Buyin extends Passage implements BuyinInterface
218 /** 218 /**
219 * @inheritDoc 219 * @inheritDoc
220 */ 220 */
221 - function allianceColonelActivityProductAudit(array $params) 221 + public function allianceColonelActivityProductAudit(array $params)
222 { 222 {
223 $this->builder->method('POST') 223 $this->builder->method('POST')
224 ->service('alliance.colonelActivityProductAudit') 224 ->service('alliance.colonelActivityProductAudit')
@@ -229,7 +229,7 @@ class Buyin extends Passage implements BuyinInterface @@ -229,7 +229,7 @@ class Buyin extends Passage implements BuyinInterface
229 /** 229 /**
230 * @inheritDoc 230 * @inheritDoc
231 */ 231 */
232 - function buyinColonel/specialApplyList(array $params) 232 + public function buyinColonelspecialApplyList(array $params)
233 { 233 {
234 $this->builder->method('POST') 234 $this->builder->method('POST')
235 ->service('buyin.colonel/specialApplyList') 235 ->service('buyin.colonel/specialApplyList')
@@ -240,7 +240,7 @@ class Buyin extends Passage implements BuyinInterface @@ -240,7 +240,7 @@ class Buyin extends Passage implements BuyinInterface
240 /** 240 /**
241 * @inheritDoc 241 * @inheritDoc
242 */ 242 */
243 - function allianceColonelActivityProductExtension(array $params) 243 + public function allianceColonelActivityProductExtension(array $params)
244 { 244 {
245 $this->builder->method('POST') 245 $this->builder->method('POST')
246 ->service('alliance.colonelActivityProductExtension') 246 ->service('alliance.colonelActivityProductExtension')
@@ -251,7 +251,7 @@ class Buyin extends Passage implements BuyinInterface @@ -251,7 +251,7 @@ class Buyin extends Passage implements BuyinInterface
251 /** 251 /**
252 * @inheritDoc 252 * @inheritDoc
253 */ 253 */
254 - function buyinColonel/specialApplyDeal(array $params) 254 + public function buyinColonelspecialApplyDeal(array $params)
255 { 255 {
256 $this->builder->method('POST') 256 $this->builder->method('POST')
257 ->service('buyin.colonel/specialApplyDeal') 257 ->service('buyin.colonel/specialApplyDeal')
@@ -262,7 +262,7 @@ class Buyin extends Passage implements BuyinInterface @@ -262,7 +262,7 @@ class Buyin extends Passage implements BuyinInterface
262 /** 262 /**
263 * @inheritDoc 263 * @inheritDoc
264 */ 264 */
265 - function buyinOriginColonelEnrollableActivityList(array $params) 265 + public function buyinOriginColonelEnrollableActivityList(array $params)
266 { 266 {
267 $this->builder->method('POST') 267 $this->builder->method('POST')
268 ->service('buyin.originColonelEnrollableActivityList') 268 ->service('buyin.originColonelEnrollableActivityList')
@@ -273,7 +273,7 @@ class Buyin extends Passage implements BuyinInterface @@ -273,7 +273,7 @@ class Buyin extends Passage implements BuyinInterface
273 /** 273 /**
274 * @inheritDoc 274 * @inheritDoc
275 */ 275 */
276 - function buyinColonelActivityDetail(array $params) 276 + public function buyinColonelActivityDetail(array $params)
277 { 277 {
278 $this->builder->method('POST') 278 $this->builder->method('POST')
279 ->service('buyin.colonelActivityDetail') 279 ->service('buyin.colonelActivityDetail')
@@ -284,7 +284,7 @@ class Buyin extends Passage implements BuyinInterface @@ -284,7 +284,7 @@ class Buyin extends Passage implements BuyinInterface
284 /** 284 /**
285 * @inheritDoc 285 * @inheritDoc
286 */ 286 */
287 - function buyinOriginColonelUnappliedProductList(array $params) 287 + public function buyinOriginColonelUnappliedProductList(array $params)
288 { 288 {
289 $this->builder->method('POST') 289 $this->builder->method('POST')
290 ->service('buyin.originColonelUnappliedProductList') 290 ->service('buyin.originColonelUnappliedProductList')
@@ -295,7 +295,7 @@ class Buyin extends Passage implements BuyinInterface @@ -295,7 +295,7 @@ class Buyin extends Passage implements BuyinInterface
295 /** 295 /**
296 * @inheritDoc 296 * @inheritDoc
297 */ 297 */
298 - function buyinOriginColonelApplyActivities(array $params) 298 + public function buyinOriginColonelApplyActivities(array $params)
299 { 299 {
300 $this->builder->method('POST') 300 $this->builder->method('POST')
301 ->service('buyin.originColonelApplyActivities') 301 ->service('buyin.originColonelApplyActivities')
@@ -306,7 +306,7 @@ class Buyin extends Passage implements BuyinInterface @@ -306,7 +306,7 @@ class Buyin extends Passage implements BuyinInterface
306 /** 306 /**
307 * @inheritDoc 307 * @inheritDoc
308 */ 308 */
309 - function buyinActivityProductList(array $params) 309 + public function buyinActivityProductList(array $params)
310 { 310 {
311 $this->builder->method('POST') 311 $this->builder->method('POST')
312 ->service('buyin.activityProductList') 312 ->service('buyin.activityProductList')
@@ -317,7 +317,7 @@ class Buyin extends Passage implements BuyinInterface @@ -317,7 +317,7 @@ class Buyin extends Passage implements BuyinInterface
317 /** 317 /**
318 * @inheritDoc 318 * @inheritDoc
319 */ 319 */
320 - function buyinActivityProductCancel(array $params) 320 + public function buyinActivityProductCancel(array $params)
321 { 321 {
322 $this->builder->method('POST') 322 $this->builder->method('POST')
323 ->service('buyin.activityProductCancel') 323 ->service('buyin.activityProductCancel')
@@ -328,7 +328,7 @@ class Buyin extends Passage implements BuyinInterface @@ -328,7 +328,7 @@ class Buyin extends Passage implements BuyinInterface
328 /** 328 /**
329 * @inheritDoc 329 * @inheritDoc
330 */ 330 */
331 - function allianceMaterialsProductsSearch(array $params) 331 + public function allianceMaterialsProductsSearch(array $params)
332 { 332 {
333 $this->builder->method('POST') 333 $this->builder->method('POST')
334 ->service('alliance.materialsProductsSearch') 334 ->service('alliance.materialsProductsSearch')
@@ -339,7 +339,7 @@ class Buyin extends Passage implements BuyinInterface @@ -339,7 +339,7 @@ class Buyin extends Passage implements BuyinInterface
339 /** 339 /**
340 * @inheritDoc 340 * @inheritDoc
341 */ 341 */
342 - function buyinSimplePlanList(array $params) 342 + public function buyinSimplePlanList(array $params)
343 { 343 {
344 $this->builder->method('POST') 344 $this->builder->method('POST')
345 ->service('buyin.simplePlanList') 345 ->service('buyin.simplePlanList')
@@ -350,7 +350,7 @@ class Buyin extends Passage implements BuyinInterface @@ -350,7 +350,7 @@ class Buyin extends Passage implements BuyinInterface
350 /** 350 /**
351 * @inheritDoc 351 * @inheritDoc
352 */ 352 */
353 - function allianceMaterialsProductsDetails(array $params) 353 + public function allianceMaterialsProductsDetails(array $params)
354 { 354 {
355 $this->builder->method('POST') 355 $this->builder->method('POST')
356 ->service('alliance.materialsProductsDetails') 356 ->service('alliance.materialsProductsDetails')
@@ -361,7 +361,7 @@ class Buyin extends Passage implements BuyinInterface @@ -361,7 +361,7 @@ class Buyin extends Passage implements BuyinInterface
361 /** 361 /**
362 * @inheritDoc 362 * @inheritDoc
363 */ 363 */
364 - function buyinProductSkus(array $params) 364 + public function buyinProductSkus(array $params)
365 { 365 {
366 $this->builder->method('POST') 366 $this->builder->method('POST')
367 ->service('buyin.productSkus') 367 ->service('buyin.productSkus')
@@ -372,7 +372,7 @@ class Buyin extends Passage implements BuyinInterface @@ -372,7 +372,7 @@ class Buyin extends Passage implements BuyinInterface
372 /** 372 /**
373 * @inheritDoc 373 * @inheritDoc
374 */ 374 */
375 - function allianceMaterialsProductCategory(array $params) 375 + public function allianceMaterialsProductCategory(array $params)
376 { 376 {
377 $this->builder->method('POST') 377 $this->builder->method('POST')
378 ->service('alliance.materialsProductCategory') 378 ->service('alliance.materialsProductCategory')
@@ -383,7 +383,7 @@ class Buyin extends Passage implements BuyinInterface @@ -383,7 +383,7 @@ class Buyin extends Passage implements BuyinInterface
383 /** 383 /**
384 * @inheritDoc 384 * @inheritDoc
385 */ 385 */
386 - function buyinMaterialsProductStatus(array $params) 386 + public function buyinMaterialsProductStatus(array $params)
387 { 387 {
388 $this->builder->method('POST') 388 $this->builder->method('POST')
389 ->service('buyin.materialsProductStatus') 389 ->service('buyin.materialsProductStatus')
@@ -394,7 +394,7 @@ class Buyin extends Passage implements BuyinInterface @@ -394,7 +394,7 @@ class Buyin extends Passage implements BuyinInterface
394 /** 394 /**
395 * @inheritDoc 395 * @inheritDoc
396 */ 396 */
397 - function buyinKolMaterialsProductsSearch(array $params) 397 + public function buyinKolMaterialsProductsSearch(array $params)
398 { 398 {
399 $this->builder->method('POST') 399 $this->builder->method('POST')
400 ->service('buyin.kolMaterialsProductsSearch') 400 ->service('buyin.kolMaterialsProductsSearch')
@@ -405,7 +405,7 @@ class Buyin extends Passage implements BuyinInterface @@ -405,7 +405,7 @@ class Buyin extends Passage implements BuyinInterface
405 /** 405 /**
406 * @inheritDoc 406 * @inheritDoc
407 */ 407 */
408 - function buyinKolMaterialsProductsDetails(array $params) 408 + public function buyinKolMaterialsProductsDetails(array $params)
409 { 409 {
410 $this->builder->method('POST') 410 $this->builder->method('POST')
411 ->service('buyin.kolMaterialsProductsDetails') 411 ->service('buyin.kolMaterialsProductsDetails')
@@ -416,7 +416,7 @@ class Buyin extends Passage implements BuyinInterface @@ -416,7 +416,7 @@ class Buyin extends Passage implements BuyinInterface
416 /** 416 /**
417 * @inheritDoc 417 * @inheritDoc
418 */ 418 */
419 - function buyinQueryInstituteOrders(array $params) 419 + public function buyinQueryInstituteOrders(array $params)
420 { 420 {
421 $this->builder->method('POST') 421 $this->builder->method('POST')
422 ->service('buyin.queryInstituteOrders') 422 ->service('buyin.queryInstituteOrders')
@@ -427,7 +427,7 @@ class Buyin extends Passage implements BuyinInterface @@ -427,7 +427,7 @@ class Buyin extends Passage implements BuyinInterface
427 /** 427 /**
428 * @inheritDoc 428 * @inheritDoc
429 */ 429 */
430 - function buyinInstituteOrderMCN(array $params) 430 + public function buyinInstituteOrderMCN(array $params)
431 { 431 {
432 $this->builder->method('POST') 432 $this->builder->method('POST')
433 ->service('buyin.instituteOrderMCN') 433 ->service('buyin.instituteOrderMCN')
@@ -438,7 +438,7 @@ class Buyin extends Passage implements BuyinInterface @@ -438,7 +438,7 @@ class Buyin extends Passage implements BuyinInterface
438 /** 438 /**
439 * @inheritDoc 439 * @inheritDoc
440 */ 440 */
441 - function buyinInstituteOrderColonel(array $params) 441 + public function buyinInstituteOrderColonel(array $params)
442 { 442 {
443 $this->builder->method('POST') 443 $this->builder->method('POST')
444 ->service('buyin.instituteOrderColonel') 444 ->service('buyin.instituteOrderColonel')
@@ -449,7 +449,7 @@ class Buyin extends Passage implements BuyinInterface @@ -449,7 +449,7 @@ class Buyin extends Passage implements BuyinInterface
449 /** 449 /**
450 * @inheritDoc 450 * @inheritDoc
451 */ 451 */
452 - function buyinInstPickSourceConvert(array $params) 452 + public function buyinInstPickSourceConvert(array $params)
453 { 453 {
454 $this->builder->method('POST') 454 $this->builder->method('POST')
455 ->service('buyin.instPickSourceConvert') 455 ->service('buyin.instPickSourceConvert')
@@ -460,7 +460,7 @@ class Buyin extends Passage implements BuyinInterface @@ -460,7 +460,7 @@ class Buyin extends Passage implements BuyinInterface
460 /** 460 /**
461 * @inheritDoc 461 * @inheritDoc
462 */ 462 */
463 - function buyinInstGmv(array $params) 463 + public function buyinInstGmv(array $params)
464 { 464 {
465 $this->builder->method('POST') 465 $this->builder->method('POST')
466 ->service('buyin.instGmv') 466 ->service('buyin.instGmv')
@@ -471,7 +471,7 @@ class Buyin extends Passage implements BuyinInterface @@ -471,7 +471,7 @@ class Buyin extends Passage implements BuyinInterface
471 /** 471 /**
472 * @inheritDoc 472 * @inheritDoc
473 */ 473 */
474 - function buyinInstGmvDetail(array $params) 474 + public function buyinInstGmvDetail(array $params)
475 { 475 {
476 $this->builder->method('POST') 476 $this->builder->method('POST')
477 ->service('buyin.instGmvDetail') 477 ->service('buyin.instGmvDetail')
@@ -482,7 +482,7 @@ class Buyin extends Passage implements BuyinInterface @@ -482,7 +482,7 @@ class Buyin extends Passage implements BuyinInterface
482 /** 482 /**
483 * @inheritDoc 483 * @inheritDoc
484 */ 484 */
485 - function buyinKolPidCreate(array $params) 485 + public function buyinKolPidCreate(array $params)
486 { 486 {
487 $this->builder->method('POST') 487 $this->builder->method('POST')
488 ->service('buyin.kolPidCreate') 488 ->service('buyin.kolPidCreate')
@@ -493,7 +493,7 @@ class Buyin extends Passage implements BuyinInterface @@ -493,7 +493,7 @@ class Buyin extends Passage implements BuyinInterface
493 /** 493 /**
494 * @inheritDoc 494 * @inheritDoc
495 */ 495 */
496 - function buyinKolPidList(array $params) 496 + public function buyinKolPidList(array $params)
497 { 497 {
498 $this->builder->method('POST') 498 $this->builder->method('POST')
499 ->service('buyin.kolPidList') 499 ->service('buyin.kolPidList')
@@ -504,7 +504,7 @@ class Buyin extends Passage implements BuyinInterface @@ -504,7 +504,7 @@ class Buyin extends Passage implements BuyinInterface
504 /** 504 /**
505 * @inheritDoc 505 * @inheritDoc
506 */ 506 */
507 - function buyinKolPidEdit(array $params) 507 + public function buyinKolPidEdit(array $params)
508 { 508 {
509 $this->builder->method('POST') 509 $this->builder->method('POST')
510 ->service('buyin.kolPidEdit') 510 ->service('buyin.kolPidEdit')
@@ -515,7 +515,7 @@ class Buyin extends Passage implements BuyinInterface @@ -515,7 +515,7 @@ class Buyin extends Passage implements BuyinInterface
515 /** 515 /**
516 * @inheritDoc 516 * @inheritDoc
517 */ 517 */
518 - function buyinKolPidDel(array $params) 518 + public function buyinKolPidDel(array $params)
519 { 519 {
520 $this->builder->method('POST') 520 $this->builder->method('POST')
521 ->service('buyin.kolPidDel') 521 ->service('buyin.kolPidDel')
@@ -526,7 +526,7 @@ class Buyin extends Passage implements BuyinInterface @@ -526,7 +526,7 @@ class Buyin extends Passage implements BuyinInterface
526 /** 526 /**
527 * @inheritDoc 527 * @inheritDoc
528 */ 528 */
529 - function buyinShareCommandParse(array $params) 529 + public function buyinShareCommandParse(array $params)
530 { 530 {
531 $this->builder->method('POST') 531 $this->builder->method('POST')
532 ->service('buyin.shareCommandParse') 532 ->service('buyin.shareCommandParse')
@@ -537,7 +537,7 @@ class Buyin extends Passage implements BuyinInterface @@ -537,7 +537,7 @@ class Buyin extends Passage implements BuyinInterface
537 /** 537 /**
538 * @inheritDoc 538 * @inheritDoc
539 */ 539 */
540 - function buyinKolProductShare(array $params) 540 + public function buyinKolProductShare(array $params)
541 { 541 {
542 $this->builder->method('POST') 542 $this->builder->method('POST')
543 ->service('buyin.kolProductShare') 543 ->service('buyin.kolProductShare')
@@ -548,7 +548,7 @@ class Buyin extends Passage implements BuyinInterface @@ -548,7 +548,7 @@ class Buyin extends Passage implements BuyinInterface
548 /** 548 /**
549 * @inheritDoc 549 * @inheritDoc
550 */ 550 */
551 - function buyinInstitutePidCreate(array $params) 551 + public function buyinInstitutePidCreate(array $params)
552 { 552 {
553 $this->builder->method('POST') 553 $this->builder->method('POST')
554 ->service('buyin.institutePidCreate') 554 ->service('buyin.institutePidCreate')
@@ -559,7 +559,7 @@ class Buyin extends Passage implements BuyinInterface @@ -559,7 +559,7 @@ class Buyin extends Passage implements BuyinInterface
559 /** 559 /**
560 * @inheritDoc 560 * @inheritDoc
561 */ 561 */
562 - function buyinInstitutePidList(array $params) 562 + public function buyinInstitutePidList(array $params)
563 { 563 {
564 $this->builder->method('POST') 564 $this->builder->method('POST')
565 ->service('buyin.institutePidList') 565 ->service('buyin.institutePidList')
@@ -570,7 +570,7 @@ class Buyin extends Passage implements BuyinInterface @@ -570,7 +570,7 @@ class Buyin extends Passage implements BuyinInterface
570 /** 570 /**
571 * @inheritDoc 571 * @inheritDoc
572 */ 572 */
573 - function buyinInstitutePidEdit(array $params) 573 + public function buyinInstitutePidEdit(array $params)
574 { 574 {
575 $this->builder->method('POST') 575 $this->builder->method('POST')
576 ->service('buyin.institutePidEdit') 576 ->service('buyin.institutePidEdit')
@@ -581,7 +581,7 @@ class Buyin extends Passage implements BuyinInterface @@ -581,7 +581,7 @@ class Buyin extends Passage implements BuyinInterface
581 /** 581 /**
582 * @inheritDoc 582 * @inheritDoc
583 */ 583 */
584 - function buyinInstitutePidDel(array $params) 584 + public function buyinInstitutePidDel(array $params)
585 { 585 {
586 $this->builder->method('POST') 586 $this->builder->method('POST')
587 ->service('buyin.institutePidDel') 587 ->service('buyin.institutePidDel')
@@ -592,7 +592,7 @@ class Buyin extends Passage implements BuyinInterface @@ -592,7 +592,7 @@ class Buyin extends Passage implements BuyinInterface
592 /** 592 /**
593 * @inheritDoc 593 * @inheritDoc
594 */ 594 */
595 - function buyinLiveShareMaterial(array $params) 595 + public function buyinLiveShareMaterial(array $params)
596 { 596 {
597 $this->builder->method('POST') 597 $this->builder->method('POST')
598 ->service('buyin.liveShareMaterial') 598 ->service('buyin.liveShareMaterial')
@@ -603,7 +603,7 @@ class Buyin extends Passage implements BuyinInterface @@ -603,7 +603,7 @@ class Buyin extends Passage implements BuyinInterface
603 /** 603 /**
604 * @inheritDoc 604 * @inheritDoc
605 */ 605 */
606 - function buyinDistributionLiveProductList(array $params) 606 + public function buyinDistributionLiveProductList(array $params)
607 { 607 {
608 $this->builder->method('POST') 608 $this->builder->method('POST')
609 ->service('buyin.distributionLiveProductList') 609 ->service('buyin.distributionLiveProductList')
@@ -614,7 +614,7 @@ class Buyin extends Passage implements BuyinInterface @@ -614,7 +614,7 @@ class Buyin extends Passage implements BuyinInterface
614 /** 614 /**
615 * @inheritDoc 615 * @inheritDoc
616 */ 616 */
617 - function buyinInstituteLiveShare(array $params) 617 + public function buyinInstituteLiveShare(array $params)
618 { 618 {
619 $this->builder->method('POST') 619 $this->builder->method('POST')
620 ->service('buyin.instituteLiveShare') 620 ->service('buyin.instituteLiveShare')
@@ -625,7 +625,7 @@ class Buyin extends Passage implements BuyinInterface @@ -625,7 +625,7 @@ class Buyin extends Passage implements BuyinInterface
625 /** 625 /**
626 * @inheritDoc 626 * @inheritDoc
627 */ 627 */
628 - function buyinInstituteOrderAds(array $params) 628 + public function buyinInstituteOrderAds(array $params)
629 { 629 {
630 $this->builder->method('POST') 630 $this->builder->method('POST')
631 ->service('buyin.instituteOrderAds') 631 ->service('buyin.instituteOrderAds')
@@ -636,7 +636,7 @@ class Buyin extends Passage implements BuyinInterface @@ -636,7 +636,7 @@ class Buyin extends Passage implements BuyinInterface
636 /** 636 /**
637 * @inheritDoc 637 * @inheritDoc
638 */ 638 */
639 - function buyinKolOrderAds(array $params) 639 + public function buyinKolOrderAds(array $params)
640 { 640 {
641 $this->builder->method('POST') 641 $this->builder->method('POST')
642 ->service('buyin.kolOrderAds') 642 ->service('buyin.kolOrderAds')
@@ -647,7 +647,7 @@ class Buyin extends Passage implements BuyinInterface @@ -647,7 +647,7 @@ class Buyin extends Passage implements BuyinInterface
647 /** 647 /**
648 * @inheritDoc 648 * @inheritDoc
649 */ 649 */
650 - function buyinShopPidMemberCreate(array $params) 650 + public function buyinShopPidMemberCreate(array $params)
651 { 651 {
652 $this->builder->method('POST') 652 $this->builder->method('POST')
653 ->service('buyin.shopPidMemberCreate') 653 ->service('buyin.shopPidMemberCreate')
@@ -658,7 +658,7 @@ class Buyin extends Passage implements BuyinInterface @@ -658,7 +658,7 @@ class Buyin extends Passage implements BuyinInterface
658 /** 658 /**
659 * @inheritDoc 659 * @inheritDoc
660 */ 660 */
661 - function buyinKolLiveShare(array $params) 661 + public function buyinKolLiveShare(array $params)
662 { 662 {
663 $this->builder->method('POST') 663 $this->builder->method('POST')
664 ->service('buyin.kolLiveShare') 664 ->service('buyin.kolLiveShare')
@@ -669,7 +669,7 @@ class Buyin extends Passage implements BuyinInterface @@ -669,7 +669,7 @@ class Buyin extends Passage implements BuyinInterface
669 /** 669 /**
670 * @inheritDoc 670 * @inheritDoc
671 */ 671 */
672 - function buyinMHandleTrusteeshipApply(array $params) 672 + public function buyinMHandleTrusteeshipApply(array $params)
673 { 673 {
674 $this->builder->method('POST') 674 $this->builder->method('POST')
675 ->service('buyin.mHandleTrusteeshipApply') 675 ->service('buyin.mHandleTrusteeshipApply')
@@ -680,7 +680,7 @@ class Buyin extends Passage implements BuyinInterface @@ -680,7 +680,7 @@ class Buyin extends Passage implements BuyinInterface
680 /** 680 /**
681 * @inheritDoc 681 * @inheritDoc
682 */ 682 */
683 - function buyinColonel/trusteeshipList(array $params) 683 + public function buyinColoneltrusteeshipList(array $params)
684 { 684 {
685 $this->builder->method('POST') 685 $this->builder->method('POST')
686 ->service('buyin.colonel/trusteeshipList') 686 ->service('buyin.colonel/trusteeshipList')
@@ -691,7 +691,7 @@ class Buyin extends Passage implements BuyinInterface @@ -691,7 +691,7 @@ class Buyin extends Passage implements BuyinInterface
691 /** 691 /**
692 * @inheritDoc 692 * @inheritDoc
693 */ 693 */
694 - function buyinInstituteOrderPick(array $params) 694 + public function buyinInstituteOrderPick(array $params)
695 { 695 {
696 $this->builder->method('POST') 696 $this->builder->method('POST')
697 ->service('buyin.instituteOrderPick') 697 ->service('buyin.instituteOrderPick')
@@ -702,7 +702,7 @@ class Buyin extends Passage implements BuyinInterface @@ -702,7 +702,7 @@ class Buyin extends Passage implements BuyinInterface
702 /** 702 /**
703 * @inheritDoc 703 * @inheritDoc
704 */ 704 */
705 - function buyinInstituteLivePreviewShare(array $params) 705 + public function buyinInstituteLivePreviewShare(array $params)
706 { 706 {
707 $this->builder->method('POST') 707 $this->builder->method('POST')
708 ->service('buyin.instituteLivePreviewShare') 708 ->service('buyin.instituteLivePreviewShare')
@@ -713,7 +713,7 @@ class Buyin extends Passage implements BuyinInterface @@ -713,7 +713,7 @@ class Buyin extends Passage implements BuyinInterface
713 /** 713 /**
714 * @inheritDoc 714 * @inheritDoc
715 */ 715 */
716 - function buyinKolLivePreviewShare(array $params) 716 + public function buyinKolLivePreviewShare(array $params)
717 { 717 {
718 $this->builder->method('POST') 718 $this->builder->method('POST')
719 ->service('buyin.kolLivePreviewShare') 719 ->service('buyin.kolLivePreviewShare')
@@ -724,7 +724,7 @@ class Buyin extends Passage implements BuyinInterface @@ -724,7 +724,7 @@ class Buyin extends Passage implements BuyinInterface
724 /** 724 /**
725 * @inheritDoc 725 * @inheritDoc
726 */ 726 */
727 - function buyinActivityShareConvert(array $params) 727 + public function buyinActivityShareConvert(array $params)
728 { 728 {
729 $this->builder->method('POST') 729 $this->builder->method('POST')
730 ->service('buyin.activityShareConvert') 730 ->service('buyin.activityShareConvert')
1 <?php 1 <?php
  2 +
2 namespace Lackoxygen\TiktokShop\Passage\Buyin; 3 namespace Lackoxygen\TiktokShop\Passage\Buyin;
3 4
4 use Lackoxygen\TiktokShop\Passage\ResultSet; 5 use Lackoxygen\TiktokShop\Passage\ResultSet;
@@ -14,7 +15,7 @@ interface BuyinInterface @@ -14,7 +15,7 @@ interface BuyinInterface
14 * @param array $params 15 * @param array $params
15 * @return ResultSet 16 * @return ResultSet
16 */ 17 */
17 - function buyinSimplePlan(array $params); 18 + public function buyinSimplePlan(array $params);
18 19
19 /** 20 /**
20 * 商家可参与的团长活动查询接口 21 * 商家可参与的团长活动查询接口
@@ -22,7 +23,7 @@ interface BuyinInterface @@ -22,7 +23,7 @@ interface BuyinInterface
22 * @param array $params 23 * @param array $params
23 * @return ResultSet 24 * @return ResultSet
24 */ 25 */
25 - function buyinShopActivityList(array $params); 26 + public function buyinShopActivityList(array $params);
26 27
27 /** 28 /**
28 * 商家侧获取团长活动详情 29 * 商家侧获取团长活动详情
@@ -30,7 +31,7 @@ interface BuyinInterface @@ -30,7 +31,7 @@ interface BuyinInterface
30 * @param array $params 31 * @param array $params
31 * @return ResultSet 32 * @return ResultSet
32 */ 33 */
33 - function buyinShopActivityDetail(array $params); 34 + public function buyinShopActivityDetail(array $params);
34 35
35 /** 36 /**
36 * 商品团长活动提报接口 37 * 商品团长活动提报接口
@@ -38,7 +39,7 @@ interface BuyinInterface @@ -38,7 +39,7 @@ interface BuyinInterface
38 * @param array $params 39 * @param array $params
39 * @return ResultSet 40 * @return ResultSet
40 */ 41 */
41 - function buyinApplyActivities(array $params); 42 + public function buyinApplyActivities(array $params);
42 43
43 /** 44 /**
44 * 延长推广待处理/已处理记录查询 45 * 延长推广待处理/已处理记录查询
@@ -46,7 +47,7 @@ interface BuyinInterface @@ -46,7 +47,7 @@ interface BuyinInterface
46 * @param array $params 47 * @param array $params
47 * @return ResultSet 48 * @return ResultSet
48 */ 49 */
49 - function buyinActivityProductExtendList(array $params); 50 + public function buyinActivityProductExtendList(array $params);
50 51
51 /** 52 /**
52 * 商家处理团长活动商品的推广延期申请 53 * 商家处理团长活动商品的推广延期申请
@@ -54,7 +55,7 @@ interface BuyinInterface @@ -54,7 +55,7 @@ interface BuyinInterface
54 * @param array $params 55 * @param array $params
55 * @return ResultSet 56 * @return ResultSet
56 */ 57 */
57 - function buyinActivityProductExtendApprove(array $params); 58 + public function buyinActivityProductExtendApprove(array $params);
58 59
59 /** 60 /**
60 * 创建/修改商品定向计划 61 * 创建/修改商品定向计划
@@ -62,7 +63,7 @@ interface BuyinInterface @@ -62,7 +63,7 @@ interface BuyinInterface
62 * @param array $params 63 * @param array $params
63 * @return ResultSet 64 * @return ResultSet
64 */ 65 */
65 - function buyinCreateOrUpdateOrienPlan(array $params); 66 + public function buyinCreateOrUpdateOrienPlan(array $params);
66 67
67 /** 68 /**
68 * 商品定向计划查询 69 * 商品定向计划查询
@@ -70,7 +71,7 @@ interface BuyinInterface @@ -70,7 +71,7 @@ interface BuyinInterface
70 * @param array $params 71 * @param array $params
71 * @return ResultSet 72 * @return ResultSet
72 */ 73 */
73 - function buyinOrienPlanList(array $params); 74 + public function buyinOrienPlanList(array $params);
74 75
75 /** 76 /**
76 * 商品定向计划管理 77 * 商品定向计划管理
@@ -78,7 +79,7 @@ interface BuyinInterface @@ -78,7 +79,7 @@ interface BuyinInterface
78 * @param array $params 79 * @param array $params
79 * @return ResultSet 80 * @return ResultSet
80 */ 81 */
81 - function buyinOrienPlanCtrl(array $params); 82 + public function buyinOrienPlanCtrl(array $params);
82 83
83 /** 84 /**
84 * 查询定向计划作者列表 85 * 查询定向计划作者列表
@@ -86,7 +87,7 @@ interface BuyinInterface @@ -86,7 +87,7 @@ interface BuyinInterface
86 * @param array $params 87 * @param array $params
87 * @return ResultSet 88 * @return ResultSet
88 */ 89 */
89 - function buyinOrienPlanAuthors(array $params); 90 + public function buyinOrienPlanAuthors(array $params);
90 91
91 /** 92 /**
92 * 向指定定向计划中添加达人 93 * 向指定定向计划中添加达人
@@ -94,7 +95,7 @@ interface BuyinInterface @@ -94,7 +95,7 @@ interface BuyinInterface
94 * @param array $params 95 * @param array $params
95 * @return ResultSet 96 * @return ResultSet
96 */ 97 */
97 - function buyinOrienPlanAuthorsAdd(array $params); 98 + public function buyinOrienPlanAuthorsAdd(array $params);
98 99
99 /** 100 /**
100 * 定向计划达人申请审核 101 * 定向计划达人申请审核
@@ -102,7 +103,7 @@ interface BuyinInterface @@ -102,7 +103,7 @@ interface BuyinInterface
102 * @param array $params 103 * @param array $params
103 * @return ResultSet 104 * @return ResultSet
104 */ 105 */
105 - function buyinOrienPlanAudit(array $params); 106 + public function buyinOrienPlanAudit(array $params);
106 107
107 /** 108 /**
108 * 创建/修改商品专属推广计划 109 * 创建/修改商品专属推广计划
@@ -110,7 +111,7 @@ interface BuyinInterface @@ -110,7 +111,7 @@ interface BuyinInterface
110 * @param array $params 111 * @param array $params
111 * @return ResultSet 112 * @return ResultSet
112 */ 113 */
113 - function buyinExclusivePlan(array $params); 114 + public function buyinExclusivePlan(array $params);
114 115
115 /** 116 /**
116 * 店铺专属达人管理 117 * 店铺专属达人管理
@@ -118,7 +119,7 @@ interface BuyinInterface @@ -118,7 +119,7 @@ interface BuyinInterface
118 * @param array $params 119 * @param array $params
119 * @return ResultSet 120 * @return ResultSet
120 */ 121 */
121 - function buyinExclusivePlanAuthorOperate(array $params); 122 + public function buyinExclusivePlanAuthorOperate(array $params);
122 123
123 /** 124 /**
124 * 团长活动创建/编辑接口 125 * 团长活动创建/编辑接口
@@ -126,7 +127,7 @@ interface BuyinInterface @@ -126,7 +127,7 @@ interface BuyinInterface
126 * @param array $params 127 * @param array $params
127 * @return ResultSet 128 * @return ResultSet
128 */ 129 */
129 - function allianceColonelActivityCreateOrUpdate(array $params); 130 + public function allianceColonelActivityCreateOrUpdate(array $params);
130 131
131 /** 132 /**
132 * 创建活动时候可选择的类目接口 133 * 创建活动时候可选择的类目接口
@@ -134,7 +135,7 @@ interface BuyinInterface @@ -134,7 +135,7 @@ interface BuyinInterface
134 * @param array $params 135 * @param array $params
135 * @return ResultSet 136 * @return ResultSet
136 */ 137 */
137 - function allianceActivityProductCategoryList(array $params); 138 + public function allianceActivityProductCategoryList(array $params);
138 139
139 /** 140 /**
140 * 团长活动查询接口 141 * 团长活动查询接口
@@ -142,7 +143,7 @@ interface BuyinInterface @@ -142,7 +143,7 @@ interface BuyinInterface
142 * @param array $params 143 * @param array $params
143 * @return ResultSet 144 * @return ResultSet
144 */ 145 */
145 - function allianceInstituteColonelActivityList(array $params); 146 + public function allianceInstituteColonelActivityList(array $params);
146 147
147 /** 148 /**
148 * 专属团长活动删除接口(下线+删除) 149 * 专属团长活动删除接口(下线+删除)
@@ -150,7 +151,7 @@ interface BuyinInterface @@ -150,7 +151,7 @@ interface BuyinInterface
150 * @param array $params 151 * @param array $params
151 * @return ResultSet 152 * @return ResultSet
152 */ 153 */
153 - function allianceInstituteColonelActivityOperate(array $params); 154 + public function allianceInstituteColonelActivityOperate(array $params);
154 155
155 /** 156 /**
156 * 活动商品查询接口 157 * 活动商品查询接口
@@ -158,7 +159,7 @@ interface BuyinInterface @@ -158,7 +159,7 @@ interface BuyinInterface
158 * @param array $params 159 * @param array $params
159 * @return ResultSet 160 * @return ResultSet
160 */ 161 */
161 - function allianceColonelActivityProduct(array $params); 162 + public function allianceColonelActivityProduct(array $params);
162 163
163 /** 164 /**
164 * 专属团长活动商品审核接口 165 * 专属团长活动商品审核接口
@@ -166,7 +167,7 @@ interface BuyinInterface @@ -166,7 +167,7 @@ interface BuyinInterface
166 * @param array $params 167 * @param array $params
167 * @return ResultSet 168 * @return ResultSet
168 */ 169 */
169 - function allianceColonelActivityProductAudit(array $params); 170 + public function allianceColonelActivityProductAudit(array $params);
170 171
171 /** 172 /**
172 * 查询团长活动特殊申请 173 * 查询团长活动特殊申请
@@ -174,7 +175,7 @@ interface BuyinInterface @@ -174,7 +175,7 @@ interface BuyinInterface
174 * @param array $params 175 * @param array $params
175 * @return ResultSet 176 * @return ResultSet
176 */ 177 */
177 - function buyinColonel/specialApplyList(array $params); 178 + public function buyinColonelspecialApplyList(array $params);
178 179
179 /** 180 /**
180 * 专属团长活动商品延时接口 181 * 专属团长活动商品延时接口
@@ -182,7 +183,7 @@ interface BuyinInterface @@ -182,7 +183,7 @@ interface BuyinInterface
182 * @param array $params 183 * @param array $params
183 * @return ResultSet 184 * @return ResultSet
184 */ 185 */
185 - function allianceColonelActivityProductExtension(array $params); 186 + public function allianceColonelActivityProductExtension(array $params);
186 187
187 /** 188 /**
188 * 团长活动特殊申请审核 189 * 团长活动特殊申请审核
@@ -190,7 +191,7 @@ interface BuyinInterface @@ -190,7 +191,7 @@ interface BuyinInterface
190 * @param array $params 191 * @param array $params
191 * @return ResultSet 192 * @return ResultSet
192 */ 193 */
193 - function buyinColonel/specialApplyDeal(array $params); 194 + public function buyinColonelspecialApplyDeal(array $params);
194 195
195 /** 196 /**
196 * 团长可参与的二级团长活动查询接口 197 * 团长可参与的二级团长活动查询接口
@@ -198,7 +199,7 @@ interface BuyinInterface @@ -198,7 +199,7 @@ interface BuyinInterface
198 * @param array $params 199 * @param array $params
199 * @return ResultSet 200 * @return ResultSet
200 */ 201 */
201 - function buyinOriginColonelEnrollableActivityList(array $params); 202 + public function buyinOriginColonelEnrollableActivityList(array $params);
202 203
203 /** 204 /**
204 * 获取团长活动详情 205 * 获取团长活动详情
@@ -206,7 +207,7 @@ interface BuyinInterface @@ -206,7 +207,7 @@ interface BuyinInterface
206 * @param array $params 207 * @param array $params
207 * @return ResultSet 208 * @return ResultSet
208 */ 209 */
209 - function buyinColonelActivityDetail(array $params); 210 + public function buyinColonelActivityDetail(array $params);
210 211
211 /** 212 /**
212 * 团长获取可提报二级团长活动的商品列表 213 * 团长获取可提报二级团长活动的商品列表
@@ -214,7 +215,7 @@ interface BuyinInterface @@ -214,7 +215,7 @@ interface BuyinInterface
214 * @param array $params 215 * @param array $params
215 * @return ResultSet 216 * @return ResultSet
216 */ 217 */
217 - function buyinOriginColonelUnappliedProductList(array $params); 218 + public function buyinOriginColonelUnappliedProductList(array $params);
218 219
219 /** 220 /**
220 * 团长报名二级团长活动 221 * 团长报名二级团长活动
@@ -222,7 +223,7 @@ interface BuyinInterface @@ -222,7 +223,7 @@ interface BuyinInterface
222 * @param array $params 223 * @param array $params
223 * @return ResultSet 224 * @return ResultSet
224 */ 225 */
225 - function buyinOriginColonelApplyActivities(array $params); 226 + public function buyinOriginColonelApplyActivities(array $params);
226 227
227 /** 228 /**
228 * 一级团长查询提报活动商品 229 * 一级团长查询提报活动商品
@@ -230,7 +231,7 @@ interface BuyinInterface @@ -230,7 +231,7 @@ interface BuyinInterface
230 * @param array $params 231 * @param array $params
231 * @return ResultSet 232 * @return ResultSet
232 */ 233 */
233 - function buyinActivityProductList(array $params); 234 + public function buyinActivityProductList(array $params);
234 235
235 /** 236 /**
236 * 一级团长取消活动提报申请接口 237 * 一级团长取消活动提报申请接口
@@ -238,7 +239,7 @@ interface BuyinInterface @@ -238,7 +239,7 @@ interface BuyinInterface
238 * @param array $params 239 * @param array $params
239 * @return ResultSet 240 * @return ResultSet
240 */ 241 */
241 - function buyinActivityProductCancel(array $params); 242 + public function buyinActivityProductCancel(array $params);
242 243
243 /** 244 /**
244 * 检索精选联盟商品 245 * 检索精选联盟商品
@@ -246,7 +247,7 @@ interface BuyinInterface @@ -246,7 +247,7 @@ interface BuyinInterface
246 * @param array $params 247 * @param array $params
247 * @return ResultSet 248 * @return ResultSet
248 */ 249 */
249 - function allianceMaterialsProductsSearch(array $params); 250 + public function allianceMaterialsProductsSearch(array $params);
250 251
251 /** 252 /**
252 * 商品推广 普通计划查询 253 * 商品推广 普通计划查询
@@ -254,7 +255,7 @@ interface BuyinInterface @@ -254,7 +255,7 @@ interface BuyinInterface
254 * @param array $params 255 * @param array $params
255 * @return ResultSet 256 * @return ResultSet
256 */ 257 */
257 - function buyinSimplePlanList(array $params); 258 + public function buyinSimplePlanList(array $params);
258 259
259 /** 260 /**
260 * 批量查询推广商品详情 261 * 批量查询推广商品详情
@@ -262,7 +263,7 @@ interface BuyinInterface @@ -262,7 +263,7 @@ interface BuyinInterface
262 * @param array $params 263 * @param array $params
263 * @return ResultSet 264 * @return ResultSet
264 */ 265 */
265 - function allianceMaterialsProductsDetails(array $params); 266 + public function allianceMaterialsProductsDetails(array $params);
266 267
267 /** 268 /**
268 * 查询商品 SKU 269 * 查询商品 SKU
@@ -270,7 +271,7 @@ interface BuyinInterface @@ -270,7 +271,7 @@ interface BuyinInterface
270 * @param array $params 271 * @param array $params
271 * @return ResultSet 272 * @return ResultSet
272 */ 273 */
273 - function buyinProductSkus(array $params); 274 + public function buyinProductSkus(array $params);
274 275
275 /** 276 /**
276 * 类目查询 277 * 类目查询
@@ -278,7 +279,7 @@ interface BuyinInterface @@ -278,7 +279,7 @@ interface BuyinInterface
278 * @param array $params 279 * @param array $params
279 * @return ResultSet 280 * @return ResultSet
280 */ 281 */
281 - function allianceMaterialsProductCategory(array $params); 282 + public function allianceMaterialsProductCategory(array $params);
282 283
283 /** 284 /**
284 * 商品状态查询 285 * 商品状态查询
@@ -286,7 +287,7 @@ interface BuyinInterface @@ -286,7 +287,7 @@ interface BuyinInterface
286 * @param array $params 287 * @param array $params
287 * @return ResultSet 288 * @return ResultSet
288 */ 289 */
289 - function buyinMaterialsProductStatus(array $params); 290 + public function buyinMaterialsProductStatus(array $params);
290 291
291 /** 292 /**
292 * 检索精选联盟商品,需达人授权 293 * 检索精选联盟商品,需达人授权
@@ -294,7 +295,7 @@ interface BuyinInterface @@ -294,7 +295,7 @@ interface BuyinInterface
294 * @param array $params 295 * @param array $params
295 * @return ResultSet 296 * @return ResultSet
296 */ 297 */
297 - function buyinKolMaterialsProductsSearch(array $params); 298 + public function buyinKolMaterialsProductsSearch(array $params);
298 299
299 /** 300 /**
300 * 查询达人视角商品详情 301 * 查询达人视角商品详情
@@ -302,7 +303,7 @@ interface BuyinInterface @@ -302,7 +303,7 @@ interface BuyinInterface
302 * @param array $params 303 * @param array $params
303 * @return ResultSet 304 * @return ResultSet
304 */ 305 */
305 - function buyinKolMaterialsProductsDetails(array $params); 306 + public function buyinKolMaterialsProductsDetails(array $params);
306 307
307 /** 308 /**
308 * 【即将下线】查询机构联盟订单 309 * 【即将下线】查询机构联盟订单
@@ -310,7 +311,7 @@ interface BuyinInterface @@ -310,7 +311,7 @@ interface BuyinInterface
310 * @param array $params 311 * @param array $params
311 * @return ResultSet 312 * @return ResultSet
312 */ 313 */
313 - function buyinQueryInstituteOrders(array $params); 314 + public function buyinQueryInstituteOrders(array $params);
314 315
315 /** 316 /**
316 * 查询MCN机构订单 317 * 查询MCN机构订单
@@ -318,7 +319,7 @@ interface BuyinInterface @@ -318,7 +319,7 @@ interface BuyinInterface
318 * @param array $params 319 * @param array $params
319 * @return ResultSet 320 * @return ResultSet
320 */ 321 */
321 - function buyinInstituteOrderMCN(array $params); 322 + public function buyinInstituteOrderMCN(array $params);
322 323
323 /** 324 /**
324 * 机构查询团长订单 325 * 机构查询团长订单
@@ -326,7 +327,7 @@ interface BuyinInterface @@ -326,7 +327,7 @@ interface BuyinInterface
326 * @param array $params 327 * @param array $params
327 * @return ResultSet 328 * @return ResultSet
328 */ 329 */
329 - function buyinInstituteOrderColonel(array $params); 330 + public function buyinInstituteOrderColonel(array $params);
330 331
331 /** 332 /**
332 * 商品选品来源转链 333 * 商品选品来源转链
@@ -334,7 +335,7 @@ interface BuyinInterface @@ -334,7 +335,7 @@ interface BuyinInterface
334 * @param array $params 335 * @param array $params
335 * @return ResultSet 336 * @return ResultSet
336 */ 337 */
337 - function buyinInstPickSourceConvert(array $params); 338 + public function buyinInstPickSourceConvert(array $params);
338 339
339 /** 340 /**
340 * 机构选品GMV查询接口 341 * 机构选品GMV查询接口
@@ -342,7 +343,7 @@ interface BuyinInterface @@ -342,7 +343,7 @@ interface BuyinInterface
342 * @param array $params 343 * @param array $params
343 * @return ResultSet 344 * @return ResultSet
344 */ 345 */
345 - function buyinInstGmv(array $params); 346 + public function buyinInstGmv(array $params);
346 347
347 /** 348 /**
348 * 机构选品GMV明细查询接口 349 * 机构选品GMV明细查询接口
@@ -350,7 +351,7 @@ interface BuyinInterface @@ -350,7 +351,7 @@ interface BuyinInterface
350 * @param array $params 351 * @param array $params
351 * @return ResultSet 352 * @return ResultSet
352 */ 353 */
353 - function buyinInstGmvDetail(array $params); 354 + public function buyinInstGmvDetail(array $params);
354 355
355 /** 356 /**
356 * 达人PID创建 357 * 达人PID创建
@@ -358,7 +359,7 @@ interface BuyinInterface @@ -358,7 +359,7 @@ interface BuyinInterface
358 * @param array $params 359 * @param array $params
359 * @return ResultSet 360 * @return ResultSet
360 */ 361 */
361 - function buyinKolPidCreate(array $params); 362 + public function buyinKolPidCreate(array $params);
362 363
363 /** 364 /**
364 * 达人PID查询接口 365 * 达人PID查询接口
@@ -366,7 +367,7 @@ interface BuyinInterface @@ -366,7 +367,7 @@ interface BuyinInterface
366 * @param array $params 367 * @param array $params
367 * @return ResultSet 368 * @return ResultSet
368 */ 369 */
369 - function buyinKolPidList(array $params); 370 + public function buyinKolPidList(array $params);
370 371
371 /** 372 /**
372 * 达人PID 编辑 373 * 达人PID 编辑
@@ -374,7 +375,7 @@ interface BuyinInterface @@ -374,7 +375,7 @@ interface BuyinInterface
374 * @param array $params 375 * @param array $params
375 * @return ResultSet 376 * @return ResultSet
376 */ 377 */
377 - function buyinKolPidEdit(array $params); 378 + public function buyinKolPidEdit(array $params);
378 379
379 /** 380 /**
380 * 达人PID删除 381 * 达人PID删除
@@ -382,7 +383,7 @@ interface BuyinInterface @@ -382,7 +383,7 @@ interface BuyinInterface
382 * @param array $params 383 * @param array $params
383 * @return ResultSet 384 * @return ResultSet
384 */ 385 */
385 - function buyinKolPidDel(array $params); 386 + public function buyinKolPidDel(array $params);
386 387
387 /** 388 /**
388 * 商品口令转商品解析 389 * 商品口令转商品解析
@@ -390,7 +391,7 @@ interface BuyinInterface @@ -390,7 +391,7 @@ interface BuyinInterface
390 * @param array $params 391 * @param array $params
391 * @return ResultSet 392 * @return ResultSet
392 */ 393 */
393 - function buyinShareCommandParse(array $params); 394 + public function buyinShareCommandParse(array $params);
394 395
395 /** 396 /**
396 * 达人商品分销转链 397 * 达人商品分销转链
@@ -398,7 +399,7 @@ interface BuyinInterface @@ -398,7 +399,7 @@ interface BuyinInterface
398 * @param array $params 399 * @param array $params
399 * @return ResultSet 400 * @return ResultSet
400 */ 401 */
401 - function buyinKolProductShare(array $params); 402 + public function buyinKolProductShare(array $params);
402 403
403 /** 404 /**
404 * 机构PID创建 405 * 机构PID创建
@@ -406,7 +407,7 @@ interface BuyinInterface @@ -406,7 +407,7 @@ interface BuyinInterface
406 * @param array $params 407 * @param array $params
407 * @return ResultSet 408 * @return ResultSet
408 */ 409 */
409 - function buyinInstitutePidCreate(array $params); 410 + public function buyinInstitutePidCreate(array $params);
410 411
411 /** 412 /**
412 * 机构PID查询接口 413 * 机构PID查询接口
@@ -414,7 +415,7 @@ interface BuyinInterface @@ -414,7 +415,7 @@ interface BuyinInterface
414 * @param array $params 415 * @param array $params
415 * @return ResultSet 416 * @return ResultSet
416 */ 417 */
417 - function buyinInstitutePidList(array $params); 418 + public function buyinInstitutePidList(array $params);
418 419
419 /** 420 /**
420 * 机构PID 编辑 421 * 机构PID 编辑
@@ -422,7 +423,7 @@ interface BuyinInterface @@ -422,7 +423,7 @@ interface BuyinInterface
422 * @param array $params 423 * @param array $params
423 * @return ResultSet 424 * @return ResultSet
424 */ 425 */
425 - function buyinInstitutePidEdit(array $params); 426 + public function buyinInstitutePidEdit(array $params);
426 427
427 /** 428 /**
428 * 机构PID删除 429 * 机构PID删除
@@ -430,7 +431,7 @@ interface BuyinInterface @@ -430,7 +431,7 @@ interface BuyinInterface
430 * @param array $params 431 * @param array $params
431 * @return ResultSet 432 * @return ResultSet
432 */ 433 */
433 - function buyinInstitutePidDel(array $params); 434 + public function buyinInstitutePidDel(array $params);
434 435
435 /** 436 /**
436 * 直播间分销物料查询 437 * 直播间分销物料查询
@@ -438,7 +439,7 @@ interface BuyinInterface @@ -438,7 +439,7 @@ interface BuyinInterface
438 * @param array $params 439 * @param array $params
439 * @return ResultSet 440 * @return ResultSet
440 */ 441 */
441 - function buyinLiveShareMaterial(array $params); 442 + public function buyinLiveShareMaterial(array $params);
442 443
443 /** 444 /**
444 * 分销直播间商品列表 445 * 分销直播间商品列表
@@ -446,7 +447,7 @@ interface BuyinInterface @@ -446,7 +447,7 @@ interface BuyinInterface
446 * @param array $params 447 * @param array $params
447 * @return ResultSet 448 * @return ResultSet
448 */ 449 */
449 - function buyinDistributionLiveProductList(array $params); 450 + public function buyinDistributionLiveProductList(array $params);
450 451
451 /** 452 /**
452 * 机构获取达人直播间分享链接 453 * 机构获取达人直播间分享链接
@@ -454,7 +455,7 @@ interface BuyinInterface @@ -454,7 +455,7 @@ interface BuyinInterface
454 * @param array $params 455 * @param array $params
455 * @return ResultSet 456 * @return ResultSet
456 */ 457 */
457 - function buyinInstituteLiveShare(array $params); 458 + public function buyinInstituteLiveShare(array $params);
458 459
459 /** 460 /**
460 * 查询抖客直播间分销订单 461 * 查询抖客直播间分销订单
@@ -462,7 +463,7 @@ interface BuyinInterface @@ -462,7 +463,7 @@ interface BuyinInterface
462 * @param array $params 463 * @param array $params
463 * @return ResultSet 464 * @return ResultSet
464 */ 465 */
465 - function buyinInstituteOrderAds(array $params); 466 + public function buyinInstituteOrderAds(array $params);
466 467
467 /** 468 /**
468 * 查询达人的直播间分销、商品分销、活动页分销订单 469 * 查询达人的直播间分销、商品分销、活动页分销订单
@@ -470,7 +471,7 @@ interface BuyinInterface @@ -470,7 +471,7 @@ interface BuyinInterface
470 * @param array $params 471 * @param array $params
471 * @return ResultSet 472 * @return ResultSet
472 */ 473 */
473 - function buyinKolOrderAds(array $params); 474 + public function buyinKolOrderAds(array $params);
474 475
475 /** 476 /**
476 * 店铺会员绑定渠道关系创建 477 * 店铺会员绑定渠道关系创建
@@ -478,7 +479,7 @@ interface BuyinInterface @@ -478,7 +479,7 @@ interface BuyinInterface
478 * @param array $params 479 * @param array $params
479 * @return ResultSet 480 * @return ResultSet
480 */ 481 */
481 - function buyinShopPidMemberCreate(array $params); 482 + public function buyinShopPidMemberCreate(array $params);
482 483
483 /** 484 /**
484 * 获取达人直播间分享链接 485 * 获取达人直播间分享链接
@@ -486,7 +487,7 @@ interface BuyinInterface @@ -486,7 +487,7 @@ interface BuyinInterface
486 * @param array $params 487 * @param array $params
487 * @return ResultSet 488 * @return ResultSet
488 */ 489 */
489 - function buyinKolLiveShare(array $params); 490 + public function buyinKolLiveShare(array $params);
490 491
491 /** 492 /**
492 * 团长托管商品审核 493 * 团长托管商品审核
@@ -494,7 +495,7 @@ interface BuyinInterface @@ -494,7 +495,7 @@ interface BuyinInterface
494 * @param array $params 495 * @param array $params
495 * @return ResultSet 496 * @return ResultSet
496 */ 497 */
497 - function buyinMHandleTrusteeshipApply(array $params); 498 + public function buyinMHandleTrusteeshipApply(array $params);
498 499
499 /** 500 /**
500 * 团长托管商品查询 501 * 团长托管商品查询
@@ -502,7 +503,7 @@ interface BuyinInterface @@ -502,7 +503,7 @@ interface BuyinInterface
502 * @param array $params 503 * @param array $params
503 * @return ResultSet 504 * @return ResultSet
504 */ 505 */
505 - function buyinColonel/trusteeshipList(array $params); 506 + public function buyinColoneltrusteeshipList(array $params);
506 507
507 /** 508 /**
508 * 选品订单明细查询接口 509 * 选品订单明细查询接口
@@ -510,7 +511,7 @@ interface BuyinInterface @@ -510,7 +511,7 @@ interface BuyinInterface
510 * @param array $params 511 * @param array $params
511 * @return ResultSet 512 * @return ResultSet
512 */ 513 */
513 - function buyinInstituteOrderPick(array $params); 514 + public function buyinInstituteOrderPick(array $params);
514 515
515 /** 516 /**
516 * 机构直播预告转链 517 * 机构直播预告转链
@@ -518,7 +519,7 @@ interface BuyinInterface @@ -518,7 +519,7 @@ interface BuyinInterface
518 * @param array $params 519 * @param array $params
519 * @return ResultSet 520 * @return ResultSet
520 */ 521 */
521 - function buyinInstituteLivePreviewShare(array $params); 522 + public function buyinInstituteLivePreviewShare(array $params);
522 523
523 /** 524 /**
524 * 达人直播预告转链 525 * 达人直播预告转链
@@ -526,7 +527,7 @@ interface BuyinInterface @@ -526,7 +527,7 @@ interface BuyinInterface
526 * @param array $params 527 * @param array $params
527 * @return ResultSet 528 * @return ResultSet
528 */ 529 */
529 - function buyinKolLivePreviewShare(array $params); 530 + public function buyinKolLivePreviewShare(array $params);
530 531
531 /** 532 /**
532 * 活动页转链接口 533 * 活动页转链接口
@@ -534,5 +535,5 @@ interface BuyinInterface @@ -534,5 +535,5 @@ interface BuyinInterface
534 * @param array $params 535 * @param array $params
535 * @return ResultSet 536 * @return ResultSet
536 */ 537 */
537 - function buyinActivityShareConvert(array $params); 538 + public function buyinActivityShareConvert(array $params);
538 } 539 }
@@ -9,7 +9,7 @@ class Sms extends Passage implements SmsInterface @@ -9,7 +9,7 @@ class Sms extends Passage implements SmsInterface
9 /** 9 /**
10 * @inheritDoc 10 * @inheritDoc
11 */ 11 */
12 - function smsTemplate/apply(array $params) 12 + public function smsTemplateapply(array $params)
13 { 13 {
14 $this->builder->method('POST') 14 $this->builder->method('POST')
15 ->service('sms.template/apply') 15 ->service('sms.template/apply')
@@ -20,7 +20,7 @@ class Sms extends Passage implements SmsInterface @@ -20,7 +20,7 @@ class Sms extends Passage implements SmsInterface
20 /** 20 /**
21 * @inheritDoc 21 * @inheritDoc
22 */ 22 */
23 - function smsPublic/template(array $params) 23 + public function smsPublictemplate(array $params)
24 { 24 {
25 $this->builder->method('POST') 25 $this->builder->method('POST')
26 ->service('sms.public/template') 26 ->service('sms.public/template')
@@ -31,7 +31,7 @@ class Sms extends Passage implements SmsInterface @@ -31,7 +31,7 @@ class Sms extends Passage implements SmsInterface
31 /** 31 /**
32 * @inheritDoc 32 * @inheritDoc
33 */ 33 */
34 - function smsSign/apply(array $params) 34 + public function smsSignapply(array $params)
35 { 35 {
36 $this->builder->method('POST') 36 $this->builder->method('POST')
37 ->service('sms.sign/apply') 37 ->service('sms.sign/apply')
@@ -42,7 +42,7 @@ class Sms extends Passage implements SmsInterface @@ -42,7 +42,7 @@ class Sms extends Passage implements SmsInterface
42 /** 42 /**
43 * @inheritDoc 43 * @inheritDoc
44 */ 44 */
45 - function smsTemplate/revoke(array $params) 45 + public function smsTemplaterevoke(array $params)
46 { 46 {
47 $this->builder->method('POST') 47 $this->builder->method('POST')
48 ->service('sms.template/revoke') 48 ->service('sms.template/revoke')
@@ -53,7 +53,7 @@ class Sms extends Passage implements SmsInterface @@ -53,7 +53,7 @@ class Sms extends Passage implements SmsInterface
53 /** 53 /**
54 * @inheritDoc 54 * @inheritDoc
55 */ 55 */
56 - function smsSign/apply/list(array $params) 56 + public function smsSignapplylist(array $params)
57 { 57 {
58 $this->builder->method('POST') 58 $this->builder->method('POST')
59 ->service('sms.sign/apply/list') 59 ->service('sms.sign/apply/list')
@@ -64,7 +64,7 @@ class Sms extends Passage implements SmsInterface @@ -64,7 +64,7 @@ class Sms extends Passage implements SmsInterface
64 /** 64 /**
65 * @inheritDoc 65 * @inheritDoc
66 */ 66 */
67 - function smsSend(array $params) 67 + public function smsSend(array $params)
68 { 68 {
69 $this->builder->method('POST') 69 $this->builder->method('POST')
70 ->service('sms.send') 70 ->service('sms.send')
@@ -75,7 +75,7 @@ class Sms extends Passage implements SmsInterface @@ -75,7 +75,7 @@ class Sms extends Passage implements SmsInterface
75 /** 75 /**
76 * @inheritDoc 76 * @inheritDoc
77 */ 77 */
78 - function smsBatchSend(array $params) 78 + public function smsBatchSend(array $params)
79 { 79 {
80 $this->builder->method('POST') 80 $this->builder->method('POST')
81 ->service('sms.batchSend') 81 ->service('sms.batchSend')
@@ -86,7 +86,7 @@ class Sms extends Passage implements SmsInterface @@ -86,7 +86,7 @@ class Sms extends Passage implements SmsInterface
86 /** 86 /**
87 * @inheritDoc 87 * @inheritDoc
88 */ 88 */
89 - function smsSign/delete(array $params) 89 + public function smsSigndelete(array $params)
90 { 90 {
91 $this->builder->method('POST') 91 $this->builder->method('POST')
92 ->service('sms.sign/delete') 92 ->service('sms.sign/delete')
@@ -97,7 +97,7 @@ class Sms extends Passage implements SmsInterface @@ -97,7 +97,7 @@ class Sms extends Passage implements SmsInterface
97 /** 97 /**
98 * @inheritDoc 98 * @inheritDoc
99 */ 99 */
100 - function smsSign/apply/revoke(array $params) 100 + public function smsSignapplyrevoke(array $params)
101 { 101 {
102 $this->builder->method('POST') 102 $this->builder->method('POST')
103 ->service('sms.sign/apply/revoke') 103 ->service('sms.sign/apply/revoke')
@@ -108,7 +108,7 @@ class Sms extends Passage implements SmsInterface @@ -108,7 +108,7 @@ class Sms extends Passage implements SmsInterface
108 /** 108 /**
109 * @inheritDoc 109 * @inheritDoc
110 */ 110 */
111 - function smsTemplate/delete(array $params) 111 + public function smsTemplatedelete(array $params)
112 { 112 {
113 $this->builder->method('POST') 113 $this->builder->method('POST')
114 ->service('sms.template/delete') 114 ->service('sms.template/delete')
@@ -119,7 +119,7 @@ class Sms extends Passage implements SmsInterface @@ -119,7 +119,7 @@ class Sms extends Passage implements SmsInterface
119 /** 119 /**
120 * @inheritDoc 120 * @inheritDoc
121 */ 121 */
122 - function smsSendResult(array $params) 122 + public function smsSendResult(array $params)
123 { 123 {
124 $this->builder->method('POST') 124 $this->builder->method('POST')
125 ->service('sms.sendResult') 125 ->service('sms.sendResult')
@@ -130,7 +130,7 @@ class Sms extends Passage implements SmsInterface @@ -130,7 +130,7 @@ class Sms extends Passage implements SmsInterface
130 /** 130 /**
131 * @inheritDoc 131 * @inheritDoc
132 */ 132 */
133 - function smsTemplate/apply/list(array $params) 133 + public function smsTemplateapplylist(array $params)
134 { 134 {
135 $this->builder->method('POST') 135 $this->builder->method('POST')
136 ->service('sms.template/apply/list') 136 ->service('sms.template/apply/list')
@@ -141,7 +141,7 @@ class Sms extends Passage implements SmsInterface @@ -141,7 +141,7 @@ class Sms extends Passage implements SmsInterface
141 /** 141 /**
142 * @inheritDoc 142 * @inheritDoc
143 */ 143 */
144 - function smsSign/search(array $params) 144 + public function smsSignsearch(array $params)
145 { 145 {
146 $this->builder->method('POST') 146 $this->builder->method('POST')
147 ->service('sms.sign/search') 147 ->service('sms.sign/search')
@@ -152,7 +152,7 @@ class Sms extends Passage implements SmsInterface @@ -152,7 +152,7 @@ class Sms extends Passage implements SmsInterface
152 /** 152 /**
153 * @inheritDoc 153 * @inheritDoc
154 */ 154 */
155 - function smsTemplate/search(array $params) 155 + public function smsTemplatesearch(array $params)
156 { 156 {
157 $this->builder->method('POST') 157 $this->builder->method('POST')
158 ->service('sms.template/search') 158 ->service('sms.template/search')
1 <?php 1 <?php
  2 +
2 namespace Lackoxygen\TiktokShop\Passage\Sms; 3 namespace Lackoxygen\TiktokShop\Passage\Sms;
3 4
4 use Lackoxygen\TiktokShop\Passage\ResultSet; 5 use Lackoxygen\TiktokShop\Passage\ResultSet;
@@ -14,7 +15,7 @@ interface SmsInterface @@ -14,7 +15,7 @@ interface SmsInterface
14 * @param array $params 15 * @param array $params
15 * @return ResultSet 16 * @return ResultSet
16 */ 17 */
17 - function smsTemplate/apply(array $params); 18 + public function smsTemplateapply(array $params);
18 19
19 /** 20 /**
20 * 公共模版查询接口 21 * 公共模版查询接口
@@ -22,7 +23,7 @@ interface SmsInterface @@ -22,7 +23,7 @@ interface SmsInterface
22 * @param array $params 23 * @param array $params
23 * @return ResultSet 24 * @return ResultSet
24 */ 25 */
25 - function smsPublic/template(array $params); 26 + public function smsPublictemplate(array $params);
26 27
27 /** 28 /**
28 * 提交短信签名申请单 29 * 提交短信签名申请单
@@ -30,7 +31,7 @@ interface SmsInterface @@ -30,7 +31,7 @@ interface SmsInterface
30 * @param array $params 31 * @param array $params
31 * @return ResultSet 32 * @return ResultSet
32 */ 33 */
33 - function smsSign/apply(array $params); 34 + public function smsSignapply(array $params);
34 35
35 /** 36 /**
36 * 撤销短信模板申请单 37 * 撤销短信模板申请单
@@ -38,7 +39,7 @@ interface SmsInterface @@ -38,7 +39,7 @@ interface SmsInterface
38 * @param array $params 39 * @param array $params
39 * @return ResultSet 40 * @return ResultSet
40 */ 41 */
41 - function smsTemplate/revoke(array $params); 42 + public function smsTemplaterevoke(array $params);
42 43
43 /** 44 /**
44 * 查看短信签名申请单 45 * 查看短信签名申请单
@@ -46,7 +47,7 @@ interface SmsInterface @@ -46,7 +47,7 @@ interface SmsInterface
46 * @param array $params 47 * @param array $params
47 * @return ResultSet 48 * @return ResultSet
48 */ 49 */
49 - function smsSign/apply/list(array $params); 50 + public function smsSignapplylist(array $params);
50 51
51 /** 52 /**
52 * 短信发送 53 * 短信发送
@@ -54,7 +55,7 @@ interface SmsInterface @@ -54,7 +55,7 @@ interface SmsInterface
54 * @param array $params 55 * @param array $params
55 * @return ResultSet 56 * @return ResultSet
56 */ 57 */
57 - function smsSend(array $params); 58 + public function smsSend(array $params);
58 59
59 /** 60 /**
60 * 批量短信发送 61 * 批量短信发送
@@ -62,7 +63,7 @@ interface SmsInterface @@ -62,7 +63,7 @@ interface SmsInterface
62 * @param array $params 63 * @param array $params
63 * @return ResultSet 64 * @return ResultSet
64 */ 65 */
65 - function smsBatchSend(array $params); 66 + public function smsBatchSend(array $params);
66 67
67 /** 68 /**
68 * 删除短信签名 69 * 删除短信签名
@@ -70,7 +71,7 @@ interface SmsInterface @@ -70,7 +71,7 @@ interface SmsInterface
70 * @param array $params 71 * @param array $params
71 * @return ResultSet 72 * @return ResultSet
72 */ 73 */
73 - function smsSign/delete(array $params); 74 + public function smsSigndelete(array $params);
74 75
75 /** 76 /**
76 * 撤销短信签名申请单 77 * 撤销短信签名申请单
@@ -78,7 +79,7 @@ interface SmsInterface @@ -78,7 +79,7 @@ interface SmsInterface
78 * @param array $params 79 * @param array $params
79 * @return ResultSet 80 * @return ResultSet
80 */ 81 */
81 - function smsSign/apply/revoke(array $params); 82 + public function smsSignapplyrevoke(array $params);
82 83
83 /** 84 /**
84 * 删除短信模板 85 * 删除短信模板
@@ -86,7 +87,7 @@ interface SmsInterface @@ -86,7 +87,7 @@ interface SmsInterface
86 * @param array $params 87 * @param array $params
87 * @return ResultSet 88 * @return ResultSet
88 */ 89 */
89 - function smsTemplate/delete(array $params); 90 + public function smsTemplatedelete(array $params);
90 91
91 /** 92 /**
92 * 查询短信发送结果 93 * 查询短信发送结果
@@ -94,7 +95,7 @@ interface SmsInterface @@ -94,7 +95,7 @@ interface SmsInterface
94 * @param array $params 95 * @param array $params
95 * @return ResultSet 96 * @return ResultSet
96 */ 97 */
97 - function smsSendResult(array $params); 98 + public function smsSendResult(array $params);
98 99
99 /** 100 /**
100 * 查询短信模板申请单 101 * 查询短信模板申请单
@@ -102,7 +103,7 @@ interface SmsInterface @@ -102,7 +103,7 @@ interface SmsInterface
102 * @param array $params 103 * @param array $params
103 * @return ResultSet 104 * @return ResultSet
104 */ 105 */
105 - function smsTemplate/apply/list(array $params); 106 + public function smsTemplateapplylist(array $params);
106 107
107 /** 108 /**
108 * 查看短信签名 109 * 查看短信签名
@@ -110,7 +111,7 @@ interface SmsInterface @@ -110,7 +111,7 @@ interface SmsInterface
110 * @param array $params 111 * @param array $params
111 * @return ResultSet 112 * @return ResultSet
112 */ 113 */
113 - function smsSign/search(array $params); 114 + public function smsSignsearch(array $params);
114 115
115 /** 116 /**
116 * 查询短信模板 117 * 查询短信模板
@@ -118,5 +119,5 @@ interface SmsInterface @@ -118,5 +119,5 @@ interface SmsInterface
118 * @param array $params 119 * @param array $params
119 * @return ResultSet 120 * @return ResultSet
120 */ 121 */
121 - function smsTemplate/search(array $params); 122 + public function smsTemplatesearch(array $params);
122 } 123 }
@@ -9,7 +9,7 @@ class Warehouse extends Passage implements WarehouseInterface @@ -9,7 +9,7 @@ class Warehouse extends Passage implements WarehouseInterface
9 /** 9 /**
10 * @inheritDoc 10 * @inheritDoc
11 */ 11 */
12 - function skuStockNum(array $params) 12 + public function skuStockNum(array $params)
13 { 13 {
14 $this->builder->method('POST') 14 $this->builder->method('POST')
15 ->service('sku.stockNum') 15 ->service('sku.stockNum')
@@ -20,7 +20,7 @@ class Warehouse extends Passage implements WarehouseInterface @@ -20,7 +20,7 @@ class Warehouse extends Passage implements WarehouseInterface
20 /** 20 /**
21 * @inheritDoc 21 * @inheritDoc
22 */ 22 */
23 - function skuSyncStock(array $params) 23 + public function skuSyncStock(array $params)
24 { 24 {
25 $this->builder->method('POST') 25 $this->builder->method('POST')
26 ->service('sku.syncStock') 26 ->service('sku.syncStock')
@@ -31,7 +31,7 @@ class Warehouse extends Passage implements WarehouseInterface @@ -31,7 +31,7 @@ class Warehouse extends Passage implements WarehouseInterface
31 /** 31 /**
32 * @inheritDoc 32 * @inheritDoc
33 */ 33 */
34 - function /warehouse/adjustInventory(array $params) 34 + public function warehouseadjustInventory(array $params)
35 { 35 {
36 $this->builder->method('POST') 36 $this->builder->method('POST')
37 ->service('/warehouse/adjustInventory') 37 ->service('/warehouse/adjustInventory')
@@ -42,7 +42,7 @@ class Warehouse extends Passage implements WarehouseInterface @@ -42,7 +42,7 @@ class Warehouse extends Passage implements WarehouseInterface
42 /** 42 /**
43 * @inheritDoc 43 * @inheritDoc
44 */ 44 */
45 - function skuSyncStockBatch(array $params) 45 + public function skuSyncStockBatch(array $params)
46 { 46 {
47 $this->builder->method('POST') 47 $this->builder->method('POST')
48 ->service('sku.syncStockBatch') 48 ->service('sku.syncStockBatch')
@@ -53,7 +53,7 @@ class Warehouse extends Passage implements WarehouseInterface @@ -53,7 +53,7 @@ class Warehouse extends Passage implements WarehouseInterface
53 /** 53 /**
54 * @inheritDoc 54 * @inheritDoc
55 */ 55 */
56 - function warehouseSetFence(array $params) 56 + public function warehouseSetFence(array $params)
57 { 57 {
58 $this->builder->method('POST') 58 $this->builder->method('POST')
59 ->service('warehouse.setFence') 59 ->service('warehouse.setFence')
@@ -64,7 +64,7 @@ class Warehouse extends Passage implements WarehouseInterface @@ -64,7 +64,7 @@ class Warehouse extends Passage implements WarehouseInterface
64 /** 64 /**
65 * @inheritDoc 65 * @inheritDoc
66 */ 66 */
67 - function warehouseGetFences(array $params) 67 + public function warehouseGetFences(array $params)
68 { 68 {
69 $this->builder->method('POST') 69 $this->builder->method('POST')
70 ->service('warehouse.getFences') 70 ->service('warehouse.getFences')
@@ -75,7 +75,7 @@ class Warehouse extends Passage implements WarehouseInterface @@ -75,7 +75,7 @@ class Warehouse extends Passage implements WarehouseInterface
75 /** 75 /**
76 * @inheritDoc 76 * @inheritDoc
77 */ 77 */
78 - function warehouseCreateFence(array $params) 78 + public function warehouseCreateFence(array $params)
79 { 79 {
80 $this->builder->method('POST') 80 $this->builder->method('POST')
81 ->service('warehouse.createFence') 81 ->service('warehouse.createFence')
@@ -86,7 +86,7 @@ class Warehouse extends Passage implements WarehouseInterface @@ -86,7 +86,7 @@ class Warehouse extends Passage implements WarehouseInterface
86 /** 86 /**
87 * @inheritDoc 87 * @inheritDoc
88 */ 88 */
89 - function warehouseUnbindFences(array $params) 89 + public function warehouseUnbindFences(array $params)
90 { 90 {
91 $this->builder->method('POST') 91 $this->builder->method('POST')
92 ->service('warehouse.unbindFences') 92 ->service('warehouse.unbindFences')
@@ -97,7 +97,7 @@ class Warehouse extends Passage implements WarehouseInterface @@ -97,7 +97,7 @@ class Warehouse extends Passage implements WarehouseInterface
97 /** 97 /**
98 * @inheritDoc 98 * @inheritDoc
99 */ 99 */
100 - function warehouseRemoveAddr(array $params) 100 + public function warehouseRemoveAddr(array $params)
101 { 101 {
102 $this->builder->method('POST') 102 $this->builder->method('POST')
103 ->service('warehouse.removeAddr') 103 ->service('warehouse.removeAddr')
@@ -108,7 +108,7 @@ class Warehouse extends Passage implements WarehouseInterface @@ -108,7 +108,7 @@ class Warehouse extends Passage implements WarehouseInterface
108 /** 108 /**
109 * @inheritDoc 109 * @inheritDoc
110 */ 110 */
111 - function promiseSetSkuShipTime(array $params) 111 + public function promiseSetSkuShipTime(array $params)
112 { 112 {
113 $this->builder->method('POST') 113 $this->builder->method('POST')
114 ->service('promise.setSkuShipTime') 114 ->service('promise.setSkuShipTime')
@@ -119,7 +119,7 @@ class Warehouse extends Passage implements WarehouseInterface @@ -119,7 +119,7 @@ class Warehouse extends Passage implements WarehouseInterface
119 /** 119 /**
120 * @inheritDoc 120 * @inheritDoc
121 */ 121 */
122 - function warehouseInfo(array $params) 122 + public function warehouseInfo(array $params)
123 { 123 {
124 $this->builder->method('POST') 124 $this->builder->method('POST')
125 ->service('warehouse.info') 125 ->service('warehouse.info')
@@ -130,7 +130,7 @@ class Warehouse extends Passage implements WarehouseInterface @@ -130,7 +130,7 @@ class Warehouse extends Passage implements WarehouseInterface
130 /** 130 /**
131 * @inheritDoc 131 * @inheritDoc
132 */ 132 */
133 - function warehouseEdit(array $params) 133 + public function warehouseEdit(array $params)
134 { 134 {
135 $this->builder->method('POST') 135 $this->builder->method('POST')
136 ->service('warehouse.edit') 136 ->service('warehouse.edit')
@@ -141,7 +141,7 @@ class Warehouse extends Passage implements WarehouseInterface @@ -141,7 +141,7 @@ class Warehouse extends Passage implements WarehouseInterface
141 /** 141 /**
142 * @inheritDoc 142 * @inheritDoc
143 */ 143 */
144 - function warehouseCreate(array $params) 144 + public function warehouseCreate(array $params)
145 { 145 {
146 $this->builder->method('POST') 146 $this->builder->method('POST')
147 ->service('warehouse.create') 147 ->service('warehouse.create')
@@ -152,7 +152,7 @@ class Warehouse extends Passage implements WarehouseInterface @@ -152,7 +152,7 @@ class Warehouse extends Passage implements WarehouseInterface
152 /** 152 /**
153 * @inheritDoc 153 * @inheritDoc
154 */ 154 */
155 - function warehouseSetAddr(array $params) 155 + public function warehouseSetAddr(array $params)
156 { 156 {
157 $this->builder->method('POST') 157 $this->builder->method('POST')
158 ->service('warehouse.setAddr') 158 ->service('warehouse.setAddr')
@@ -163,7 +163,7 @@ class Warehouse extends Passage implements WarehouseInterface @@ -163,7 +163,7 @@ class Warehouse extends Passage implements WarehouseInterface
163 /** 163 /**
164 * @inheritDoc 164 * @inheritDoc
165 */ 165 */
166 - function warehouseList(array $params) 166 + public function warehouseList(array $params)
167 { 167 {
168 $this->builder->method('POST') 168 $this->builder->method('POST')
169 ->service('warehouse.list') 169 ->service('warehouse.list')
@@ -174,7 +174,7 @@ class Warehouse extends Passage implements WarehouseInterface @@ -174,7 +174,7 @@ class Warehouse extends Passage implements WarehouseInterface
174 /** 174 /**
175 * @inheritDoc 175 * @inheritDoc
176 */ 176 */
177 - function warehouseSetAddrBatch(array $params) 177 + public function warehouseSetAddrBatch(array $params)
178 { 178 {
179 $this->builder->method('POST') 179 $this->builder->method('POST')
180 ->service('warehouse.setAddrBatch') 180 ->service('warehouse.setAddrBatch')
@@ -185,7 +185,7 @@ class Warehouse extends Passage implements WarehouseInterface @@ -185,7 +185,7 @@ class Warehouse extends Passage implements WarehouseInterface
185 /** 185 /**
186 * @inheritDoc 186 * @inheritDoc
187 */ 187 */
188 - function warehouseCreateBatch(array $params) 188 + public function warehouseCreateBatch(array $params)
189 { 189 {
190 $this->builder->method('POST') 190 $this->builder->method('POST')
191 ->service('warehouse.createBatch') 191 ->service('warehouse.createBatch')
@@ -196,7 +196,7 @@ class Warehouse extends Passage implements WarehouseInterface @@ -196,7 +196,7 @@ class Warehouse extends Passage implements WarehouseInterface
196 /** 196 /**
197 * @inheritDoc 197 * @inheritDoc
198 */ 198 */
199 - function warehouseSetPriority(array $params) 199 + public function warehouseSetPriority(array $params)
200 { 200 {
201 $this->builder->method('POST') 201 $this->builder->method('POST')
202 ->service('warehouse.setPriority') 202 ->service('warehouse.setPriority')
@@ -207,7 +207,7 @@ class Warehouse extends Passage implements WarehouseInterface @@ -207,7 +207,7 @@ class Warehouse extends Passage implements WarehouseInterface
207 /** 207 /**
208 * @inheritDoc 208 * @inheritDoc
209 */ 209 */
210 - function warehouseDelFence(array $params) 210 + public function warehouseDelFence(array $params)
211 { 211 {
212 $this->builder->method('POST') 212 $this->builder->method('POST')
213 ->service('warehouse.delFence') 213 ->service('warehouse.delFence')
@@ -218,7 +218,7 @@ class Warehouse extends Passage implements WarehouseInterface @@ -218,7 +218,7 @@ class Warehouse extends Passage implements WarehouseInterface
218 /** 218 /**
219 * @inheritDoc 219 * @inheritDoc
220 */ 220 */
221 - function warehouseBindFences(array $params) 221 + public function warehouseBindFences(array $params)
222 { 222 {
223 $this->builder->method('POST') 223 $this->builder->method('POST')
224 ->service('warehouse.bindFences') 224 ->service('warehouse.bindFences')
1 <?php 1 <?php
  2 +
2 namespace Lackoxygen\TiktokShop\Passage\Warehouse; 3 namespace Lackoxygen\TiktokShop\Passage\Warehouse;
3 4
4 use Lackoxygen\TiktokShop\Passage\ResultSet; 5 use Lackoxygen\TiktokShop\Passage\ResultSet;
@@ -14,7 +15,7 @@ interface WarehouseInterface @@ -14,7 +15,7 @@ interface WarehouseInterface
14 * @param array $params 15 * @param array $params
15 * @return ResultSet 16 * @return ResultSet
16 */ 17 */
17 - function skuStockNum(array $params); 18 + public function skuStockNum(array $params);
18 19
19 /** 20 /**
20 * 修改sku库存 21 * 修改sku库存
@@ -22,7 +23,7 @@ interface WarehouseInterface @@ -22,7 +23,7 @@ interface WarehouseInterface
22 * @param array $params 23 * @param array $params
23 * @return ResultSet 24 * @return ResultSet
24 */ 25 */
25 - function skuSyncStock(array $params); 26 + public function skuSyncStock(array $params);
26 27
27 /** 28 /**
28 * 库存调整(盘点和转移) 29 * 库存调整(盘点和转移)
@@ -30,7 +31,7 @@ interface WarehouseInterface @@ -30,7 +31,7 @@ interface WarehouseInterface
30 * @param array $params 31 * @param array $params
31 * @return ResultSet 32 * @return ResultSet
32 */ 33 */
33 - function /warehouse/adjustInventory(array $params); 34 + public function warehouseadjustInventory(array $params);
34 35
35 /** 36 /**
36 * 批量同步接口 37 * 批量同步接口
@@ -38,7 +39,7 @@ interface WarehouseInterface @@ -38,7 +39,7 @@ interface WarehouseInterface
38 * @param array $params 39 * @param array $params
39 * @return ResultSet 40 * @return ResultSet
40 */ 41 */
41 - function skuSyncStockBatch(array $params); 42 + public function skuSyncStockBatch(array $params);
42 43
43 /** 44 /**
44 * 修改围栏信息 45 * 修改围栏信息
@@ -46,7 +47,7 @@ interface WarehouseInterface @@ -46,7 +47,7 @@ interface WarehouseInterface
46 * @param array $params 47 * @param array $params
47 * @return ResultSet 48 * @return ResultSet
48 */ 49 */
49 - function warehouseSetFence(array $params); 50 + public function warehouseSetFence(array $params);
50 51
51 /** 52 /**
52 * 获取电子围栏信息/列表 53 * 获取电子围栏信息/列表
@@ -54,7 +55,7 @@ interface WarehouseInterface @@ -54,7 +55,7 @@ interface WarehouseInterface
54 * @param array $params 55 * @param array $params
55 * @return ResultSet 56 * @return ResultSet
56 */ 57 */
57 - function warehouseGetFences(array $params); 58 + public function warehouseGetFences(array $params);
58 59
59 /** 60 /**
60 * 创建电子围栏 61 * 创建电子围栏
@@ -62,7 +63,7 @@ interface WarehouseInterface @@ -62,7 +63,7 @@ interface WarehouseInterface
62 * @param array $params 63 * @param array $params
63 * @return ResultSet 64 * @return ResultSet
64 */ 65 */
65 - function warehouseCreateFence(array $params); 66 + public function warehouseCreateFence(array $params);
66 67
67 /** 68 /**
68 * 接绑电子围栏 69 * 接绑电子围栏
@@ -70,7 +71,7 @@ interface WarehouseInterface @@ -70,7 +71,7 @@ interface WarehouseInterface
70 * @param array $params 71 * @param array $params
71 * @return ResultSet 72 * @return ResultSet
72 */ 73 */
73 - function warehouseUnbindFences(array $params); 74 + public function warehouseUnbindFences(array $params);
74 75
75 /** 76 /**
76 * 地址与区域仓解绑 77 * 地址与区域仓解绑
@@ -78,7 +79,7 @@ interface WarehouseInterface @@ -78,7 +79,7 @@ interface WarehouseInterface
78 * @param array $params 79 * @param array $params
79 * @return ResultSet 80 * @return ResultSet
80 */ 81 */
81 - function warehouseRemoveAddr(array $params); 82 + public function warehouseRemoveAddr(array $params);
82 83
83 /** 84 /**
84 * 设置sku发货时效 85 * 设置sku发货时效
@@ -86,7 +87,7 @@ interface WarehouseInterface @@ -86,7 +87,7 @@ interface WarehouseInterface
86 * @param array $params 87 * @param array $params
87 * @return ResultSet 88 * @return ResultSet
88 */ 89 */
89 - function promiseSetSkuShipTime(array $params); 90 + public function promiseSetSkuShipTime(array $params);
90 91
91 /** 92 /**
92 * 查询区域仓 93 * 查询区域仓
@@ -94,7 +95,7 @@ interface WarehouseInterface @@ -94,7 +95,7 @@ interface WarehouseInterface
94 * @param array $params 95 * @param array $params
95 * @return ResultSet 96 * @return ResultSet
96 */ 97 */
97 - function warehouseInfo(array $params); 98 + public function warehouseInfo(array $params);
98 99
99 /** 100 /**
100 * 编辑区域仓 101 * 编辑区域仓
@@ -102,7 +103,7 @@ interface WarehouseInterface @@ -102,7 +103,7 @@ interface WarehouseInterface
102 * @param array $params 103 * @param array $params
103 * @return ResultSet 104 * @return ResultSet
104 */ 105 */
105 - function warehouseEdit(array $params); 106 + public function warehouseEdit(array $params);
106 107
107 /** 108 /**
108 * 创建单个区域仓 109 * 创建单个区域仓
@@ -110,7 +111,7 @@ interface WarehouseInterface @@ -110,7 +111,7 @@ interface WarehouseInterface
110 * @param array $params 111 * @param array $params
111 * @return ResultSet 112 * @return ResultSet
112 */ 113 */
113 - function warehouseCreate(array $params); 114 + public function warehouseCreate(array $params);
114 115
115 /** 116 /**
116 * 绑定单个地址到区域仓 117 * 绑定单个地址到区域仓
@@ -118,7 +119,7 @@ interface WarehouseInterface @@ -118,7 +119,7 @@ interface WarehouseInterface
118 * @param array $params 119 * @param array $params
119 * @return ResultSet 120 * @return ResultSet
120 */ 121 */
121 - function warehouseSetAddr(array $params); 122 + public function warehouseSetAddr(array $params);
122 123
123 /** 124 /**
124 * 批量查询区域仓 125 * 批量查询区域仓
@@ -126,7 +127,7 @@ interface WarehouseInterface @@ -126,7 +127,7 @@ interface WarehouseInterface
126 * @param array $params 127 * @param array $params
127 * @return ResultSet 128 * @return ResultSet
128 */ 129 */
129 - function warehouseList(array $params); 130 + public function warehouseList(array $params);
130 131
131 /** 132 /**
132 * 批量绑定地址与区域仓 133 * 批量绑定地址与区域仓
@@ -134,7 +135,7 @@ interface WarehouseInterface @@ -134,7 +135,7 @@ interface WarehouseInterface
134 * @param array $params 135 * @param array $params
135 * @return ResultSet 136 * @return ResultSet
136 */ 137 */
137 - function warehouseSetAddrBatch(array $params); 138 + public function warehouseSetAddrBatch(array $params);
138 139
139 /** 140 /**
140 * 批量创建区域仓 141 * 批量创建区域仓
@@ -142,7 +143,7 @@ interface WarehouseInterface @@ -142,7 +143,7 @@ interface WarehouseInterface
142 * @param array $params 143 * @param array $params
143 * @return ResultSet 144 * @return ResultSet
144 */ 145 */
145 - function warehouseCreateBatch(array $params); 146 + public function warehouseCreateBatch(array $params);
146 147
147 /** 148 /**
148 * 设置指定地址下的仓的优先级 149 * 设置指定地址下的仓的优先级
@@ -150,7 +151,7 @@ interface WarehouseInterface @@ -150,7 +151,7 @@ interface WarehouseInterface
150 * @param array $params 151 * @param array $params
151 * @return ResultSet 152 * @return ResultSet
152 */ 153 */
153 - function warehouseSetPriority(array $params); 154 + public function warehouseSetPriority(array $params);
154 155
155 /** 156 /**
156 * 删除电子围栏 157 * 删除电子围栏
@@ -158,7 +159,7 @@ interface WarehouseInterface @@ -158,7 +159,7 @@ interface WarehouseInterface
158 * @param array $params 159 * @param array $params
159 * @return ResultSet 160 * @return ResultSet
160 */ 161 */
161 - function warehouseDelFence(array $params); 162 + public function warehouseDelFence(array $params);
162 163
163 /** 164 /**
164 * 仓绑定电子围栏 165 * 仓绑定电子围栏
@@ -166,5 +167,5 @@ interface WarehouseInterface @@ -166,5 +167,5 @@ interface WarehouseInterface
166 * @param array $params 167 * @param array $params
167 * @return ResultSet 168 * @return ResultSet
168 */ 169 */
169 - function warehouseBindFences(array $params); 170 + public function warehouseBindFences(array $params);
170 } 171 }