fastadmin/addons/third/model/Third.php

23 lines
365 B
PHP

<?php
namespace addons\third\model;
use think\Model;
/**
* 会员模型
*/
class Third Extends Model
{
// 开启自动写入时间戳字段
protected $autoWriteTimestamp = 'int';
// 定义时间戳字段名
protected $createTime = 'createtime';
protected $updateTime = 'updatetime';
// 追加属性
protected $append = [
];
}