Ai_GirlFriend/xunifriend_RaeeC/application/common/model/UserLevel.php

32 lines
468 B
PHP
Raw Normal View History

2026-01-31 19:15:41 +08:00
<?php
namespace app\common\model;
use think\Db;
use think\Model;
class UserLevel extends Model
{
// 开启自动写入时间戳字段
protected $autoWriteTimestamp = 'int';
// 定义时间戳字段名
protected $createTime = 'createtime';
protected $updateTime = 'updatetime';
public static function init()
{
}
public function getImageAttr($value)
{
return get_full_image_url($value);
}
}