NewsCategory.php 442 字节
<?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';

    const STATUS_SHOW = 0;
    const STATUS_HIDE = 1;

    //新闻分类,博客分类列表分页条数
    public static $newsCategoryPagePercent = 10;

}