增加导入平安结算订单
This commit is contained in:
@@ -22,6 +22,13 @@ class Coupon extends Model
|
||||
self::TYPE_YSD => '自有券',
|
||||
];
|
||||
|
||||
const SETTLE_YES = 1;
|
||||
const SETTLE_NO = 0;
|
||||
const SETTLES = [
|
||||
self::SETTLE_YES => '是',
|
||||
self::SETTLE_NO => '否',
|
||||
];
|
||||
|
||||
//状态
|
||||
public function getStatusTextAttribute()
|
||||
{
|
||||
|
||||
11
app/Models/CouponPaCheck.php
Normal file
11
app/Models/CouponPaCheck.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
|
||||
class CouponPaCheck extends Model
|
||||
{
|
||||
protected $casts = [
|
||||
'pa_order_ids' => 'json'
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user