作者 lyh

gx

  1 +<?php
  2 +/**
  3 + * @remark :
  4 + * @name :AggregationSetting.php
  5 + * @author :lyh
  6 + * @method :post
  7 + * @time :2023/10/23 10:45
  8 + */
  9 +
  10 +namespace App\Models\Product;
  11 +
  12 +use App\Models\Base;
  13 +
  14 +/**
  15 + * @remark :产品关键字聚合页设置
  16 + * @name :AggregationSetting
  17 + * @author :lyh
  18 + * @method :post
  19 + * @time :2023/10/23 10:48
  20 + */
  21 +class AggregationSetting extends Base
  22 +{
  23 + //设置关联表名
  24 + protected $table = 'gl_product_attr';
  25 +}