Total Complexity | 3 |
Total Lines | 47 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
14 | class QueryLogistics extends Rpc |
||
15 | { |
||
16 | public $product = 'linkedmall'; |
||
17 | |||
18 | public $version = '2018-01-16'; |
||
19 | |||
20 | public $method = 'POST'; |
||
21 | |||
22 | public $serviceCode = 'linkedmall'; |
||
23 | |||
24 | /** |
||
25 | * @param string $lmOrderId |
||
26 | * |
||
27 | * @return $this |
||
28 | */ |
||
29 | public function withLmOrderId($lmOrderId) |
||
30 | { |
||
31 | $this->data['LmOrderId'] = $lmOrderId; |
||
32 | $this->options['query']['LmOrderId'] = $lmOrderId; |
||
33 | |||
34 | return $this; |
||
35 | } |
||
36 | |||
37 | /** |
||
38 | * @param string $bizUid |
||
39 | * |
||
40 | * @return $this |
||
41 | */ |
||
42 | public function withBizUid($bizUid) |
||
43 | { |
||
44 | $this->data['BizUid'] = $bizUid; |
||
45 | $this->options['query']['BizUid'] = $bizUid; |
||
46 | |||
47 | return $this; |
||
48 | } |
||
49 | |||
50 | /** |
||
51 | * @param string $bizId |
||
52 | * |
||
53 | * @return $this |
||
54 | */ |
||
55 | public function withBizId($bizId) |
||
61 | } |
||
62 | } |
||
63 |