mirror of
https://gitee.com/ulthon/ulthon_information.git
synced 2026-03-03 16:24:28 +08:00
24 lines
319 B
PHP
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);
|
|
}
|
|
}
|