You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
730 B

  1. <?php
  2. namespace App\JsonRpc;
  3. use Hyperf\RpcServer\Annotation\RpcService;
  4. use Hyperf\Di\Annotation\Inject;
  5. /**
  6. * @RpcService(name="SeparateaccountsService", protocol="jsonrpc-http", server="jsonrpc-http", publishTo="")
  7. * Class SeparateAccountsService
  8. * @package App\JsonRpc
  9. */
  10. class SeparateaccountsService implements SeparateAccountsServiceInterface
  11. {
  12. /**
  13. * @Inject
  14. * @var \App\Service\v3\Interfaces\SeparateAccountsServiceInterface
  15. */
  16. private $separateaccountsService;
  17. public function orderOnlineCompleted($orderMainId, $userId)
  18. {
  19. // TODO: Implement orderOnlineCompleted() method.
  20. return $this->separateaccountsService->orderOnlineCompleted($orderMainId, $userId);
  21. }
  22. }