Extend.php
599 字节
<?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';
//产品详情扩展字段类型 1,文本输入框 2,代码块 3,图片列表 4,文件列表
public static $textExtendType = 1;
public static $codeExtendType = 2;
public static $imageExtendType = 3;
public static $fileExtendType = 4;
}