Files
ProxyPanel/app/Models/RuleLog.php
兔姬桑 71828a0ac5 数据库改版 +Rule 编辑相关 (Rule未实际应用)
1. 规范化数据库数据;
2. 添加Rule相关页面
为未来加入web api做准备
2020-08-05 03:20:33 +08:00

49 lines
1.6 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\Model;
/**
* 触发审计规则日志
*
* @property int $id
* @property int $user_id 用户ID
* @property int $node_id 节点ID
* @property int $rule_id 规则ID0表示白名单模式下访问访问了非规则允许的网址
* @property string $reason 触发原因
* @property \Illuminate\Support\Carbon $created_at
* @property \Illuminate\Support\Carbon $updated_at
* @property-read \App\Models\SsNode|null $node
* @property-read \App\Models\Rule|null $rule
* @property-read \App\Models\User|null $user
* @method static Builder|RuleLog newModelQuery()
* @method static Builder|RuleLog newQuery()
* @method static Builder|RuleLog query()
* @method static Builder|RuleLog whereCreatedAt($value)
* @method static Builder|RuleLog whereId($value)
* @method static Builder|RuleLog whereNodeId($value)
* @method static Builder|RuleLog whereReason($value)
* @method static Builder|RuleLog whereRuleId($value)
* @method static Builder|RuleLog whereUpdatedAt($value)
* @method static Builder|RuleLog whereUserId($value)
* @mixin \Eloquent
*/
class RuleLog extends Model {
protected $table = 'rule_log';
protected $primaryKey = 'id';
function user() {
return $this->hasOne(User::class, 'id', 'user_id');
}
function node() {
return $this->hasOne(SsNode::class, 'id', 'node_id');
}
function rule() {
return $this->hasOne(Rule::class, 'id', 'rule_id');
}
}