| Total Complexity | 3 | 
| Total Lines | 45 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 8 | class OrderCode extends BaseRequest | ||
| 9 | { | ||
| 10 | /** | ||
| 11 | * 下载bic订单码. | ||
| 12 | * | ||
| 13 | * @param array $params | ||
| 14 | * | ||
| 15 | * @throws InvalidArgumentException | ||
| 16 | * @throws RequestException | ||
| 17 | * | ||
| 18 | * @return array | ||
| 19 | */ | ||
| 20 | public function downloadOrderCodeByShop(array $params): array | ||
| 21 |     { | ||
| 22 |         return $this->httpPost('orderCode/downloadOrderCodeByShop', $params); | ||
| 23 | } | ||
| 24 | |||
| 25 | /** | ||
| 26 | * bic流程订单物流发货接口. | ||
| 27 | * | ||
| 28 | * @param array $params | ||
| 29 | * | ||
| 30 | * @throws InvalidArgumentException | ||
| 31 | * @throws RequestException | ||
| 32 | * | ||
| 33 | * @return array | ||
| 34 | */ | ||
| 35 | public function erpShopBindOrderCode(array $params): array | ||
| 36 |     { | ||
| 37 |         return $this->httpPost('orderCode/erpShopBindOrderCode', $params); | ||
| 38 | } | ||
| 39 | |||
| 40 | /** | ||
| 41 | * 批量下载bic订单码. | ||
| 42 | * | ||
| 43 | * @param array $params | ||
| 44 | * | ||
| 45 | * @throws InvalidArgumentException | ||
| 46 | * @throws RequestException | ||
| 47 | * | ||
| 48 | * @return array | ||
| 49 | */ | ||
| 50 | public function batchGetOrderCodeByShop(array $params): array | ||
| 53 | } | ||
| 54 | } | ||
| 55 |