You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
616 B
37 lines
616 B
<?php
|
|
|
|
namespace app\api\model;
|
|
|
|
use app\common\model\Goods as GoodsModel;
|
|
|
|
/**
|
|
* 商品模型
|
|
* Class Goods
|
|
* @package app\api\model
|
|
*/
|
|
class Goods extends GoodsModel
|
|
{
|
|
/**
|
|
* 隐藏字段
|
|
* @var array
|
|
*/
|
|
protected $hidden = [
|
|
'sales_initial',
|
|
'sales_actual',
|
|
'is_delete',
|
|
'wxapp_id',
|
|
'create_time',
|
|
'update_time'
|
|
];
|
|
|
|
/**
|
|
* 商品详情:HTML实体转换回普通字符
|
|
* @param $value
|
|
* @return string
|
|
*/
|
|
public function getContentAttr($value)
|
|
{
|
|
return htmlspecialchars_decode($value);
|
|
}
|
|
|
|
}
|
|
|