<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

/**
 * App\Models\ArticleCategoryRole
 *
 * @property int $role_id 角色ID
 * @property int $article_category_id 新闻分类ID
 * @property \Illuminate\Support\Carbon|null $created_at
 * @property \Illuminate\Support\Carbon|null $updated_at
 * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ArticleCategoryRole newModelQuery()
 * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ArticleCategoryRole newQuery()
 * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ArticleCategoryRole query()
 * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ArticleCategoryRole whereArticleCategoryId($value)
 * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ArticleCategoryRole whereCreatedAt($value)
 * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ArticleCategoryRole whereRoleId($value)
 * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ArticleCategoryRole whereUpdatedAt($value)
 * @mixin \Eloquent
 */
class ArticleCategoryRole extends Model
{
    protected $table = 'article_category_roles';
}