Files

25 lines
369 B
PHP

<?php
namespace app\common\model;
use think\Model;
class CouponUserModel extends Model
{
// use SoftDelete;
protected $deleteTime = 'deletetime';
protected $name = 'app_coupon';
protected $type = [
// 'use_start_time' => 'timestamp',
// 'use_end_time' => 'timestamp',
];
// 追加属性
protected $append = [
];
}