Commit 0e2401d5 by xmy

修改

parent 8017aa78
...@@ -9,8 +9,7 @@ namespace Hdll\Services\SellerDistribution\Lib; ...@@ -9,8 +9,7 @@ namespace Hdll\Services\SellerDistribution\Lib;
use Swoft\Core\ResultInterface; use Swoft\Core\ResultInterface;
/** /**
* @method ResultInterface deferSaveBill($orderId, $sellerId, $money, $level, $memo = '') * @method ResultInterface deferSaveBill($orderId, $sellerId, $money)
* @method ResultInterface deferSaveCommission($sellerId, $orderId, $money)
* Interface SellerDistributionInterface * Interface SellerDistributionInterface
* @package App\Lib * @package App\Lib
*/ */
...@@ -27,15 +26,6 @@ interface SellerDistributionInterface{ ...@@ -27,15 +26,6 @@ interface SellerDistributionInterface{
* @return mixed * @return mixed
* @author Administrator * @author Administrator
*/ */
public function saveBill($orderId, $sellerId, $money, $level, $memo = ''); public function saveBill($orderId, $sellerId, $money);
/**
* 保存佣金记录
* @param $sellerId
* @param $orderId
* @param $money
* @return mixed
* @author Administrator
*/
public function saveCommission($sellerId, $orderId, $money);
} }
\ No newline at end of file
...@@ -11,17 +11,17 @@ namespace Hdll\Services\Vip\Lib; ...@@ -11,17 +11,17 @@ namespace Hdll\Services\Vip\Lib;
use Swoft\Core\ResultInterface; use Swoft\Core\ResultInterface;
/** /**
* @method ResultInterface deferOpenVip($token,$orderId,$money) * @method ResultInterface deferOpenVip($storeId,$orderId,$money)
* @method ResultInterface deferUpdate($token,$condition, $data) * @method ResultInterface deferUpdate($storeId,$condition, $data)
* Interface SellerInterface * Interface SellerInterface
* @package App\Lib * @package App\Lib
*/ */
interface VipInterface interface VipInterface
{ {
public function openVip($token,$orderId,$money); public function openVip($storeId,$orderId,$money);
public function update($token,$condition, $data); public function update($storeId,$condition, $data);
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment