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.
28 lines
730 B
28 lines
730 B
<?php
|
|
|
|
|
|
namespace App\JsonRpc;
|
|
|
|
use Hyperf\RpcServer\Annotation\RpcService;
|
|
|
|
use Hyperf\Di\Annotation\Inject;
|
|
/**
|
|
* @RpcService(name="SeparateaccountsService", protocol="jsonrpc-http", server="jsonrpc-http", publishTo="")
|
|
* Class SeparateAccountsService
|
|
* @package App\JsonRpc
|
|
*/
|
|
class SeparateaccountsService implements SeparateAccountsServiceInterface
|
|
{
|
|
/**
|
|
* @Inject
|
|
* @var \App\Service\v3\Interfaces\SeparateAccountsServiceInterface
|
|
*/
|
|
private $separateaccountsService;
|
|
|
|
public function orderOnlineCompleted($orderMainId, $userId)
|
|
{
|
|
// TODO: Implement orderOnlineCompleted() method.
|
|
return $this->separateaccountsService->orderOnlineCompleted($orderMainId, $userId);
|
|
|
|
}
|
|
}
|