Commit 144d340e by 王洁

Merge branch 'coupon-membercard' into test

parents 8f356ee1 1beee62e
<?php
namespace Hdll\Services\MemberCard\Enum;
class CardType {
const member_card = 0;
const cash = 100;
const gift = 200;
const CARD_TYPE = [
self::member_card =>'member_card',
self::cash => 'cash',
self::gift => 'gift'
];
}
\ No newline at end of file
<?php
namespace Hdll\Services\MemberCard\Enum;
class CouponOrderStatus
{
//订单状态
const STATUS_NORMAL = 1; //待支付
const STATUS_HAVE_PAY =2; // 已经支付 //=已下单
const STATUS_PAY_EXCEPTION =3; // 支付异常或过期未付 //=关闭订单
const STATUS_PAY_REFUND =4 ; // 退款 //=已过期
}
\ 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