Column.php
332 字节
<?php
/**
* @remark :
* @name :Column.php
* @author :lyh
* @method :post
* @time :2024/11/12 14:14
*/
namespace App\Models\Product;
use App\Models\Base;
class Column extends Base
{
//设置关联表名
protected $table = 'gl_product_column';
//连接数据库
protected $connection = 'custom_mysql';
}