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

30 lines
1.0 KiB
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\Model;
/**
* 审计规则分组节点关联
*
* @property int $id
* @property int|null $rule_group_id 规则分组ID
* @property int|null $node_id 节点ID
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @method static Builder|RuleGroupNode newModelQuery()
* @method static Builder|RuleGroupNode newQuery()
* @method static Builder|RuleGroupNode query()
* @method static Builder|RuleGroupNode whereCreatedAt($value)
* @method static Builder|RuleGroupNode whereId($value)
* @method static Builder|RuleGroupNode whereNodeId($value)
* @method static Builder|RuleGroupNode whereRuleGroupId($value)
* @method static Builder|RuleGroupNode whereUpdatedAt($value)
* @mixin \Eloquent
*/
class RuleGroupNode extends Model {
protected $table = 'rule_group_node';
protected $primaryKey = 'id';
}