Commit a37cbcb6 by feixiang

买家接口注释

parent 0edcce8a
...@@ -20,19 +20,19 @@ interface BillInterface{ ...@@ -20,19 +20,19 @@ interface BillInterface{
/** /**
* 保存账单数据 * 保存账单数据
* @param int $order_id * @param int $orderId //订单id
* @param int $buyer_id * @param int $buyerId // 买家id
* @param int $store_id * @param int $storeId // 店铺id
* @param string $order_sn * @param string $orderSn //订单号
* @param int $money * @param int $money //订单金额
* @return mixed * @return mixed
* @author Administrator * @author Administrator
*/ */
public function saveBill( public function saveBill(
int $order_id, int $orderId,
int $buyer_id, int $buyerId,
int $store_id, int $storeId,
string $order_sn, string $orderSn,
int $money int $money
); );
......
...@@ -19,7 +19,7 @@ interface CommissionInterface ...@@ -19,7 +19,7 @@ interface CommissionInterface
* @param $storeId * @param $storeId
* @param $buyerId * @param $buyerId
* @param $money * @param $money
* @return mixed|bool * @return bool
*/ */
public function reduceBalanceCommission($storeId, $buyerId, $money); public function reduceBalanceCommission($storeId, $buyerId, $money);
......
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