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