| 123456789101112131415161718192021222324252627282930313233 | <?php/** * Created by PhpStorm. * User: zhengmingwei * Date: 2020/3/16 * Time: 5:03 PM */namespace addons\unishop\model;use think\Model;class Category extends Model{    // 表名    protected $name = 'unishop_category';    // 开启自动写入时间戳字段    protected $autoWriteTimestamp = 'int';    // 定义时间戳字段名    protected $createTime = 'createtime';    protected $updateTime = 'updatetime';    /**     * 处理图片     * @param $value     * @return string     */    public function getImageAttr($value) {        return Config::getImagesFullUrl($value);    }}
 |