审查视图

application/api/model/Third.php 231 字节
李忠强 authored
1 2 3 4 5 6 7 8 9 10 11 12
<?php
namespace app\api\model;

use think\Model;

class Third extends Model
{
    // 自动写入时间戳字段
    protected $autoWriteTimestamp = 'int';
    protected $createTime = 'createtime';
    protected $updateTime = '';
}