AssociationCate.php 515 字节
<?php
/**
 * @remark :
 * @name   :AssociationCate.php
 * @author :lyh
 * @method :post
 * @time   :2023/10/18 15:47
 */

namespace App\Models\Com;

use App\Models\Base;

/**
 * @remark :分类关联表
 * @name   :AssociationCate
 * @author :lyh
 * @method :post
 * @time   :2023/10/18 15:48
 */
class AssociationCate extends Base
{
    const BLOG_CATE = 1;//博客
    const NEWS_CATE = 2;//博客

    protected $table = 'gl_association_cate';
    //连接数据库
    protected $connection = 'custom_mysql';
}