Commit 2a1d6986 by liwotianname

改id 名字

parent bbd61ecd
...@@ -15,9 +15,8 @@ use Swoft\Core\ResultInterface; ...@@ -15,9 +15,8 @@ use Swoft\Core\ResultInterface;
/** /**
* The interface of demo service * The interface of demo service
* *
* @method ResultInterface deferGetgoodsinfo( int $limit_id) * @method ResultInterface deferGetgoodsinfo(int $limit_id)
* @method ResultInterface deferGetBargainInfo( int $limit_id) * @method ResultInterface deferGetBargainInfo(int $limit_id)
*/ */
interface BargainInterface interface BargainInterface
{ {
...@@ -25,19 +24,18 @@ interface BargainInterface ...@@ -25,19 +24,18 @@ interface BargainInterface
/** /**
* 获取砍价商品的 商品信息 * 获取砍价商品的 商品信息
* @param int $bargain_id * @param int $bargain_id
* @return { * @return {
"name" 名称 * "name" 名称
"image" 图片 * "image" 图片
"price" 价格 * "price" 价格
"activityName" 活动名称 * "activityName" 活动名称
* } * }
*/ */
public function getGoodsInfo( public function getGoodsInfo(
int $stordId,int $bargain_id int $stordId, int $bargain_id
); );
/** /**
* 通过商品id 获取是否 有砍价活动 * 通过商品id 获取是否 有砍价活动
* @param int $storeId * @param int $storeId
...@@ -45,28 +43,21 @@ interface BargainInterface ...@@ -45,28 +43,21 @@ interface BargainInterface
* @return bool * @return bool
* *
*/ */
public function getBargainInfo( public function getBargainInfo(
int $storeId,int $goodsId int $storeId, int $goodsId
); );
/** /**
* 支付 状态 回馈接口 * 支付 状态 回馈接口
* @param string $store_id * @param string $storeId //
* @param int $bargainid * @param int $bargainbranchId // 砍价活动id
* @param int $status * @param int $status // status :1 成功支付 2:未支付 (已经过期或者支付异常)
* @return mixed
*/
/**
* @param string $storeId //
* @param int $bargainId // 砍价活动id
* @param int $status // status :1 成功支付 2:未支付 (已经过期或者支付异常)
* @return mixed * @return mixed
*/ */
public function paystatus( public function paystatus(
string $storeId, string $storeId,
int $bargainId, int $bargainbranchId,
int $status); int $status);
} }
......
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