You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
301 B
PHTML

3 years ago
<?php
namespace app\admin\model;
use think\Model;
/**
* 日志模型
* @package app\admin\model
*/
class Action extends Model
{
// 设置当前模型对应的完整数据表名称
protected $name = 'admin_action';
// 自动写入时间戳
protected $autoWriteTimestamp = true;
}