Files
ulthon_information/app/model/WxPublicAccount.php
2020-08-07 23:49:50 +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);
}
}