Commit eaa8052b by 王召彬
parents aac704bd b90fb854
......@@ -43,7 +43,7 @@ interface AgencyInterface{
* @return mixed
* @author Administrator
*/
public function getTeam(string $token,int $pid,int $page);
// public function getTeam(string $token,int $pid,int $page);
/**
* 保存分销账单
......@@ -61,4 +61,43 @@ interface AgencyInterface{
* @author Administrator
*/
public function addSellerFreezeMoney(string $token,int $money);
/**
* 获取买家佣金数据
* @param string $token
* @return mixed
* @author Administrator
*/
public function getBuyerCommission(string $token);
/**
* 获取卖家资金数据
* @param string $token
* @return mixed
* @author Administrator
*/
public function getSellerFund(string $token);
/**
* 保存账单数据
* @param string $token
* @param int $order_id
* @param int $buyer_id
* @param int $store_id
* @param string $order_sn
* @param int $money
* @return mixed
* @author Administrator
*/
public function saveBill(
string $token,
int $order_id,
int $buyer_id,
int $store_id,
string $order_sn,
int $money
);
public function getBillList(string $token,array $condition, int $page, int $limit = 15);
}
\ 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