<?php
namespace App\Models\News;
use App\Models\Base;
/**
* @method static get()
* @method static where(string $string, int $int)
*/
class NewsCategory extends Base
{
protected $table = 'gl_news_category';
//连接数据库
protected $connection = 'custom_mysql';
}