24 lines
376 B
PHP
24 lines
376 B
PHP
<?php
|
|
|
|
namespace app\api\model\sharing;
|
|
|
|
use app\common\model\sharing\CommentImage as CommentImageModel;
|
|
|
|
/**
|
|
* 拼团商品图片模型
|
|
* Class GoodsImage
|
|
* @package app\api\model\sharing
|
|
*/
|
|
class CommentImage extends CommentImageModel
|
|
{
|
|
/**
|
|
* 隐藏字段
|
|
* @var array
|
|
*/
|
|
protected $hidden = [
|
|
'wxapp_id',
|
|
'create_time',
|
|
];
|
|
|
|
}
|