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.
29 lines
660 B
29 lines
660 B
<?php
|
|
|
|
namespace App\Service\v3\Interfaces;
|
|
|
|
interface SeparateAccountsServiceInterface
|
|
{
|
|
/**
|
|
* (线上)订单支付完成分账
|
|
* @param $orderMainId
|
|
* @return mixed
|
|
*/
|
|
public function orderOnlinePaid($orderMainId);
|
|
|
|
/**
|
|
* (线上)订单确认完成分账
|
|
* 用户确认或服务商(服务站确认)
|
|
* @param $orderMainId
|
|
* @param $userId
|
|
* @return mixed
|
|
*/
|
|
public function orderOnlineCompleted($orderMainId, $userId);
|
|
|
|
/**
|
|
* (线下)订单支付完成分账
|
|
* @param $orderMainId
|
|
* @return mixed
|
|
*/
|
|
public function orderOfflinePaid($orderMainId);
|
|
}
|