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