Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
services
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
tencent
services
Commits
5c22f5f7
Commit
5c22f5f7
authored
Sep 04, 2018
by
xmy
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
d322dae0
71868ba5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
104 additions
and
36 deletions
+104
-36
src/Bargain/Enum/BargainEnum.php
+7
-0
src/Bargain/Lib/BargainInterface.php
+24
-12
src/LimitTimeBuy/Lib/LimitTimeBuyInterface.php
+17
-4
src/Notice/Common/WxMiniNotice.php
+33
-0
src/Order/Lib/OrderInterface.php
+23
-20
No files found.
src/Bargain/Enum/BargainEnum.php
View file @
5c22f5f7
...
...
@@ -13,6 +13,12 @@ class BargainEnum
//订单状态
const
STATUS_NORMAL
=
10
;
//待支付
//paystatus
const
HAVE_PAY
=
2
;
const
PAY_EXCEPTION
=
3
;
}
\ No newline at end of file
src/Bargain/Lib/BargainInterface.php
View file @
5c22f5f7
...
...
@@ -10,14 +10,14 @@
namespace
Hdll\Services\Bargain\Lib
;
use
Hdll\Services\Bargain\Enum\BargainEnum
;
use
Swoft\Core\ResultInterface
;
/**
* The interface of demo service
*
* @method ResultInterface deferGetgoodsinfo( int $limit_id)
* @method ResultInterface deferGetBargainInfo( int $limit_id)
* @method ResultInterface deferGetgoodsinfo(int $limit_id)
* @method ResultInterface deferGetBargainInfo(int $limit_id)
*/
interface
BargainInterface
{
...
...
@@ -25,19 +25,18 @@ interface BargainInterface
/**
* 获取砍价商品的 商品信息
* @param int $bargain_id
* @return {
"name" 名称
"image" 图片
"price" 价格
"activityName" 活动名称
* @return {
*
"name" 名称
*
"image" 图片
*
"price" 价格
*
"activityName" 活动名称
* }
*/
public
function
getGoodsInfo
(
int
$stordId
,
int
$bargain_id
int
$stordId
,
int
$bargain_id
);
/**
* 通过商品id 获取是否 有砍价活动
* @param int $storeId
...
...
@@ -45,10 +44,23 @@ interface BargainInterface
* @return bool
*
*/
public
function
getBargainInfo
(
int
$storeId
,
int
$goodsId
public
function
getBargainInfo
(
int
$storeId
,
int
$goodsId
);
/**
* 支付 状态 回馈接口
* @param string $storeId //
* @param int $bargainbranchId // 砍价活动id
* @param int $status // BargainEnum::HAVE_PAY 成功支付 BargainEnum::PAY_EXCEPTION:未支付 (已经过期或者支付异常)
* @return mixed
*/
public
function
payStatus
(
string
$storeId
,
int
$bargainbranchId
,
int
$status
,
//
int
$orderId
);
}
...
...
src/LimitTimeBuy/Lib/LimitTimeBuyInterface.php
View file @
5c22f5f7
...
...
@@ -44,10 +44,10 @@ interface LimitTimeBuyInterface
* 获取限时购商品的 商品信息
* @param int $limit_id
* @return {
"name" 名称
"image" 图片
"price" 价格
"activityName" 活动名称
*
"name" 名称
*
"image" 图片
*
"price" 价格
*
"activityName" 活动名称
* }
*/
public
function
getLimitGoods
(
...
...
@@ -66,4 +66,16 @@ interface LimitTimeBuyInterface
);
// /**
// * 支付 状态 回馈接口
// * @param string $store_id
// * @param int $limit_id
// * @param int $status // status :1 成功支付 2:未支付 (已经过期或者支付异常)
// * @return mixed
// */
// public function paystatus(
// string $store_id,
// int $limit_id,
// int $status,
// int $orderId);
}
\ No newline at end of file
src/Notice/Common/WxMiniNotice.php
0 → 100644
View file @
5c22f5f7
<?php
/**
* Created by PhpStorm.
* User: Administrator
* Date: 2018/9/4
* Time: 10:46
*/
namespace
Hdll\Services\Notice\Common
;
class
WxMiniNotice
{
/**
* 微信小程序page生成
*
* 用法:
* WxMiniNotice::generatePage("pages/orderShow/orderShow",['orderId' => $orderInfo['id'], 'storeId' => $orderInfo['storeId']])
* 生成
* pages/orderShow/orderShow?orderId=1&storeId=7
* @param string $page
* @param array $param
* @return string
*/
public
static
function
generatePage
(
string
$page
,
array
$param
)
{
$param
[
'origin'
]
=
$param
[
'origin'
]
??
'notice'
;
$param
=
http_build_query
(
$param
);
return
$page
.
$param
;
}
}
\ No newline at end of file
src/Order/Lib/OrderInterface.php
View file @
5c22f5f7
...
...
@@ -15,7 +15,7 @@ use Swoft\Core\ResultInterface;
/**
* The interface of demo service
*
* @method ResultInterface deferCreateOrder(
string $token,int $consignee_id,int $activity_id,int $selected_num,int $order_type,float $total,float $goods_price,string $goods_name,string $goods_image,string $activity_name,int $goodsId,string $reservation_time = '')
* @method ResultInterface deferCreateOrder(
int $buyerId,int $storeId,int $consigneeId,int $itemId,int $selectedNum,int $orderType,int $total,int $activityPrice,string $goodsName,string $goodsImage,string $activityName,int $goodsId,int $goodsPrice,string $reservation_time = '');
* @method ResultInterface deferGetOrderInfoBySn(int $storeId, string $orderSn)
* @method ResultInterface deferGetOrderInfo(int $storeId,int $orderId)
* @method ResultInterface deferUpdateInfoById(int $storeId,int $orderId, array $updateInfo)
...
...
@@ -27,34 +27,37 @@ interface OrderInterface
{
/**
* 创建订单
*
* @param int $buyerId
* @param int $storeId
* @param int $consignee_id
* @param int $item_id
* @param int $selected_num
* @param int $order_type
* @param float $total
* @param float $goods_price
* @param string $goods_name
* @param string $goods_image
* @param string $activity_name
* @param int $goodsId,
* @param int $consigneeId
* @param int $itemId
* @param int $selectedNum
* @param int $orderType
* @param int $total
* @param int $activityPrice
* @param string $goodsName
* @param string $goodsImage
* @param string $activityName
* @param int $goodsId
* @param int $goodsPrice
* @param string $reservation_time
* @return mixed
*/
public
function
createOrder
(
int
$buyerId
,
int
$storeId
,
int
$consignee
_i
d
,
int
$item
_i
d
,
int
$selected
_n
um
,
int
$order
_t
ype
,
floa
t
$total
,
float
$goods_p
rice
,
string
$goods
_n
ame
,
string
$goods
_i
mage
,
string
$activity
_n
ame
,
int
$consignee
I
d
,
int
$item
I
d
,
int
$selected
N
um
,
int
$order
T
ype
,
in
t
$total
,
int
$activityP
rice
,
string
$goods
N
ame
,
string
$goods
I
mage
,
string
$activity
N
ame
,
int
$goodsId
,
int
$goodsPrice
,
string
$reservation_time
=
''
);
public
function
getOrderInfo
(
int
$storeId
,
int
$orderId
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment