CommentImage.php 376 B

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