GoodsSkuValue.php 236 B

1234567891011121314151617181920
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. /**
  5. * 商品规格值模型
  6. */
  7. class GoodsSkuValue extends Model
  8. {
  9. // 表名
  10. protected $name = 'goods_sku_value';
  11. // 追加属性
  12. protected $append = [
  13. ];
  14. }