You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
498 B
29 lines
498 B
<?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');
|
|
}
|
|
|
|
|
|
}
|