<?php
/**
* 后台管理员操作日志数据模型
* @author yupoxiong<i@yufuping.com>
*/
namespace app\admin\model;
class AdminLogDatas extends Admin
{
protected $name = 'admin_log_datas';
protected $autoWriteTimestamp = true;
public function adminLog()
{
return $this->belongsTo('AdminLogs','log_id','id');
}
}