26 lines
454 B
PHP
26 lines
454 B
PHP
<?php
|
|
|
|
|
|
namespace addons\xilufitness\model;
|
|
|
|
|
|
use addons\xilufitness\traits\BaseModel;
|
|
use think\Model;
|
|
|
|
class OrderVerificationRecords extends Model
|
|
{
|
|
|
|
use BaseModel;
|
|
|
|
|
|
// 表名
|
|
protected $name = 'xilufitness_order_verification_records';
|
|
|
|
// 自动写入时间戳字段
|
|
protected $autoWriteTimestamp = 'integer';
|
|
|
|
// 定义时间戳字段名
|
|
protected $createTime = 'createtime';
|
|
protected $deleteTime = 'deletetime';
|
|
|
|
} |