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

53 lines
1.0 KiB
PHP
Executable File

<?php
namespace common\models;
use Yii;
/**
* This is the model class for table "c_logs".
*
* @property string $username
* @property string $ip
* @property string $data
* @property string $create_time
*/
class Logs extends \yii\db\ActiveRecord
{
/**
* @inheritdoc
*/
public static function tableName()
{
return '{{%c_logs}}';
}
/**
* @inheritdoc
*/
public function rules()
{
return [
[['username', 'create_time'], 'string', 'max' => 32],
[['ip'], 'string', 'max' => 64],
[['uid'], 'string', 'max' => 11],
[['usertype'], 'string', 'max' => 1],
[['file', 'm', 'v', 'c', 'a', 'domain'], 'string', 'max' => 255],
];
}
/**
* @inheritdoc
*/
public function attributeLabels()
{
return [
'username' => Yii::t('common', 'Username'),
'usertype' => Yii::t('common', 'Usertype'),
'ip' => Yii::t('common', 'Ip'),
'data' => Yii::t('common', 'Do Data'),
'create_time' => Yii::t('common', 'Create Time'),
];
}
}