Commit 32f3b022 by zhufx

买家服务修改

parent 943abd12
...@@ -9,13 +9,13 @@ namespace Hdll\Services\Buyer\Enum; ...@@ -9,13 +9,13 @@ namespace Hdll\Services\Buyer\Enum;
class BuyerError class BuyerError
{ {
const PARAMETER_ERR = ["msg" => "参数错误", "code" => 400, "errorCode" => 24001]; const PARAMETER_ERR = ["msg" => "参数错误", "code" => 400, "errorCode" => 24001, 'rpcCode' => "PARAMETER_ERR"];
const REGISTERED = ["msg" => "用户已存在,无需创建", "code" => 400, "errorCode" => 24101]; const REGISTERED = ["msg" => "用户已存在,无需创建", "code" => 400, "errorCode" => 24101, "rpcCode" => "REGISTERED"];
const DB_ERROR = ["msg" => "数据库操作错误", "code" => 500, "errorCode" => 24102]; const DB_ERROR = ["msg" => "数据库操作错误", "code" => 500, "errorCode" => 24102, "rpcCode" => "DB_ERROR"];
const SCORE_ERR = ["msg" => "你无权创建该用户", "code" => 403, "errorCode" => 24103]; const SCORE_ERR = ["msg" => "你无权创建该用户", "code" => 403, "errorCode" => 24103, "rpcCode" => "SCORE_ERR"];
const NOT_FOUND_COMMISSION = ["msg" => "获取佣金信息失败", "code" => 404, "errorCode" => 24104, "rpcCode" => "NOT_FOUND_COMMISSION"];
const NOT_FOUND_COMMISSION = ["msg" => "获取佣金信息失败", "code" => 404, "errorCode" => 24104]; const INSUFFICIENT_COMMISSION = ["msg" => "可提现金额不足,无法提现", "code" => 400, "errorCode" => 24105, "rpcCode" => "INSUFFICIENT_COMMISSION"];
const INSUFFICIENT_COMMISSION = ["msg" => "可提现金额不足,无法提现", "code" => 400, "errorCode" => 24105]; const NOT_FOUND_BUYER = ["msg" => "获取买家信息失败", "code" => 400, "errorCode" => 24106, "rpcCode" => "NOT_FOUND_BUYER"];
public static function atranslate($message,$param) public static function atranslate($message,$param)
......
...@@ -17,7 +17,7 @@ use Swoft\Core\ResultInterface; ...@@ -17,7 +17,7 @@ use Swoft\Core\ResultInterface;
*/ */
interface BuyerInterface interface BuyerInterface
{ {
public function getUser(string $token); public function getUser(int $stroeId, int $BuyerId);
public function updateProfile(string $token, array $data); public function updateProfile(string $token, array $data);
......
...@@ -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 bool * @return mixed|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