ctms/common/models/CLog.php
fm453 39282ec584 修复登陆日志入库错误,升级部分composer依赖项;
临时修复登陆通知邮件不能多发的问题;
2025-04-10 23:19:15 +08:00

50 lines
861 B
PHP
Executable File

<?php
namespace common\models;
use Yii;
/**
* This is the model class for table "log".
*
* @property string $username
* @property string $ip
* @property string $data
* @property string $create_time
*/
class CLog extends \yii\db\ActiveRecord
{
/**
* @inheritdoc
*/
public static function tableName()
{
return '{{%c_log}}';
}
/**
* @inheritdoc
*/
public function rules()
{
return [
[['username'], 'string', 'max' => 32],
[['ip'], 'string', 'max' => 64],
[['data'], 'string', 'max' => 500],
];
}
/**
* @inheritdoc
*/
public function attributeLabels()
{
return [
'username' => 'Username',
'ip' => 'Ip',
'data' => 'Data',
'create_time' => 'Create Time',
];
}
}