Files
EasyAdmin8/app/admin/model/SystemLog.php
wolfcode e1c3216904 init
2023-06-15 16:18:27 +08:00

28 lines
497 B
PHP

<?php
namespace app\admin\model;
use app\common\model\TimeModel;
class SystemLog extends TimeModel
{
public function __construct(array $data = [])
{
parent::__construct($data);
$this->name = 'system_log_' . date('Ym');
}
public function setMonth($month)
{
$this->name = 'system_log_' . $month;
return $this;
}
public function admin()
{
return $this->belongsTo('app\admin\model\SystemAdmin', 'admin_id', 'id');
}
}