You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
372 B
20 lines
372 B
<?php
|
|
|
|
namespace app\project\model;
|
|
|
|
use think\model\concern\SoftDelete;
|
|
|
|
class ProjectConfigUser extends Base
|
|
{
|
|
use SoftDelete;
|
|
|
|
/**
|
|
* 获取默认头像昵称
|
|
* @date 2022-12-28
|
|
*/
|
|
public function getDefaultInfo(){
|
|
return $this->getOneData([
|
|
['uid', '=', $this->mid]
|
|
],'head_img_default,nick_name_default');
|
|
}
|
|
} |