Files
water_new/modules/Cms/Models/ArticleCategory.php
2023-03-08 09:16:04 +08:00

14 lines
215 B
PHP

<?php
namespace Modules\Cms\Models;
use Illuminate\Database\Eloquent\Relations\Pivot;
class ArticleCategory extends Pivot
{
public $incrementing = true;
public $table = 'cms_article_category';
}