Files
ul-file-share/app/model/WxPublicAccount.php
2021-06-19 13:09:45 +08:00

24 lines
319 B
PHP

<?php
namespace app\model;
use think\Model;
/**
* @mixin think\Model
*/
class WxPublicAccount extends Model
{
//
public function getHeadImgAttr($value)
{
return get_source_link($value);
}
public function getQrcodeUrlAttr($value)
{
return \get_source_link($value);
}
}