Commit 4c24aa1d by 王召彬

Merge branch 'master' of http://git.2b3.cn/tencent/services

parents 6c1cad5b 2c1b1934
<?php
namespace Hdll\Services\LimitTimeBuy\Enum;
class LimitTimeOrderEnum
{
//订单状态
const STATUS_NORMAL = 1; //待支付 1未支付2已经支付3异常
const STATUS_HAVE_PAY =2;
const STATUS_PAY_EXCEPTION =3;
}
\ No newline at end of file
...@@ -66,16 +66,18 @@ interface LimitTimeBuyInterface ...@@ -66,16 +66,18 @@ interface LimitTimeBuyInterface
); );
// /** /**
// * 支付 状态 回馈接口 * 支付 状态 回馈接口
// * @param string $store_id * @param string $store_id
// * @param int $limit_id * @param int $limit_id
// * @param int $status // status :1 成功支付 2:未支付 (已经过期或者支付异常) * @param int $status // status :1 成功支付 2:未支付 (已经过期或者支付异常)
// * @return mixed * @param int $orderId
// */ * @return bool|mixed
// public function paystatus( * @throws ConException
// string $store_id, */
// int $limit_id, public function payStatus(
// int $status, string $store_id,
// int $orderId); int $limit_id,
int $status,
int $orderId);
} }
\ No newline at end of file
...@@ -10,6 +10,5 @@ namespace Hdll\Services\Order\Enum; ...@@ -10,6 +10,5 @@ namespace Hdll\Services\Order\Enum;
class OrderCate class OrderCate
{ {
const TYPE_BUYER = 1; const TYPE_BUYER = 1;
const TYPE_SELLER = 2; const TYPE_SELLER = 2;
} }
\ 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