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