RuleGroupNode.php 1.0 KB

1234567891011121314151617181920212223242526272829
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Builder;
  4. use Illuminate\Database\Eloquent\Model;
  5. /**
  6. * 审计规则分组节点关联
  7. *
  8. * @property int $id
  9. * @property int|null $rule_group_id 规则分组ID
  10. * @property int|null $node_id 节点ID
  11. * @property \Illuminate\Support\Carbon|null $created_at
  12. * @property \Illuminate\Support\Carbon|null $updated_at
  13. * @method static Builder|RuleGroupNode newModelQuery()
  14. * @method static Builder|RuleGroupNode newQuery()
  15. * @method static Builder|RuleGroupNode query()
  16. * @method static Builder|RuleGroupNode whereCreatedAt($value)
  17. * @method static Builder|RuleGroupNode whereId($value)
  18. * @method static Builder|RuleGroupNode whereNodeId($value)
  19. * @method static Builder|RuleGroupNode whereRuleGroupId($value)
  20. * @method static Builder|RuleGroupNode whereUpdatedAt($value)
  21. * @mixin \Eloquent
  22. */
  23. class RuleGroupNode extends Model {
  24. protected $table = 'rule_group_node';
  25. protected $primaryKey = 'id';
  26. }