NorecyclegoodsModel.php
431 字节
<?php
/**
* Created by PhpStorm.
* User: Administrator
* Date: 2019/11/8
* Time: 14:51
*/
namespace app\index\model;
use think\Model;
class NorecyclegoodsModel extends Model
{
public function getThumbnailAttr($value){
return cmf_get_image_preview_url($value);
}
public function selectData($where){
$data = $this
->where($where)
->select();
return $data;
}
}