GoodsSku.php 380 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace app\api\model\sharing;
  3. use app\common\model\sharing\GoodsSku as GoodsSkuModel;
  4. /**
  5. * 拼团商品规格模型
  6. * Class GoodsSku
  7. * @package app\api\model\sharing
  8. */
  9. class GoodsSku extends GoodsSkuModel
  10. {
  11. /**
  12. * 隐藏字段
  13. * @var array
  14. */
  15. protected $hidden = [
  16. 'wxapp_id',
  17. 'create_time',
  18. 'update_time'
  19. ];
  20. }