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