Files
premium/app/model/admin/login/Log.php
T
2025-05-18 07:29:01 +00:00

35 lines
588 B
PHP
Executable File

<?php
/**
* 后台登录日志模型
*/
namespace app\model\admin\login;
use laytp\BaseModel;
class Log extends BaseModel
{
//模型名
protected $name = 'admin_login_log';
//附加属性
protected $append = [];
//时间戳字段转换
//表名
//关联模型
public function adminUser(){
return $this->belongsTo('app\model\admin\User','admin_id','id');
}
//新增属性的方法
public function getCreateTimeIntAttr($value, $data)
{
return isset($data['create_time']) ? strtotime($data['create_time']) : 0;
}
}