Commit b4c6b5f1 by zhufx

忽略文件上传

parent c43e4a4e
...@@ -10,6 +10,7 @@ namespace Hdll\Services\Order\Enum; ...@@ -10,6 +10,7 @@ namespace Hdll\Services\Order\Enum;
class OrderEnum class OrderEnum
{ {
//订单状态 //订单状态
const STATUS_UNPAID = 10; //待支付 const STATUS_UNPAID = 10; //待支付
const STATUS_PAID = 20; //已支付 const STATUS_PAID = 20; //已支付
...@@ -23,7 +24,8 @@ class OrderEnum ...@@ -23,7 +24,8 @@ class OrderEnum
//订单类型 //订单类型
const TYPE_GOODS = 0; //商品订单 const TYPE_GOODS = 0; //商品订单
const TYPE_ACTIVITY = 1; //活动订单 const TYPE_KANJIA = 1; //砍价订单
const TYPE_LIMIT = 2; //限时购订单
//对账状态 //对账状态
const BALANCE_STATE_FALSE = 0; const BALANCE_STATE_FALSE = 0;
......
...@@ -8,14 +8,14 @@ ...@@ -8,14 +8,14 @@
* @license https://github.com/swoft-cloud/swoft/blob/master/LICENSE * @license https://github.com/swoft-cloud/swoft/blob/master/LICENSE
*/ */
namespace Hdll\Services\Order\Lib; namespace App\Lib;
use Swoft\Core\ResultInterface; use Swoft\Core\ResultInterface;
/** /**
* The interface of demo service * The interface of demo service
* *
* @method ResultInterface deferCreateOrder( string $token,int $consignee_id,int $item_id,int $selected_num,int $order_type,string $reservation_time = '') * @method ResultInterface deferCreateOrder( string $token,int $consignee_id,array $activity_info,int $selected_num,int $order_type,float $total,array $goods_info,string $reservation_time = '')
*/ */
interface OrderInterface interface OrderInterface
{ {
......
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