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