mirror of
https://gitee.com/wonderful-code/buildadmin
synced 2024-11-22 15:24:09 +00:00
53 lines
1.6 KiB
PHP
53 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace app\common\model;
|
|
|
|
use ba\Random;
|
|
use think\Model;
|
|
|
|
/**
|
|
* 会员公共模型
|
|
* @property int $id 会员ID
|
|
* @property string $password 密码密文
|
|
* @property string $salt 密码盐
|
|
* @property int $login_failure 登录失败次数
|
|
* @property string $last_login_time 上次登录时间
|
|
* @property string $last_login_ip 上次登录IP
|
|
* @property string $email 会员邮箱
|
|
* @property string $mobile 会员手机号
|
|
*/
|
|
class User extends Model
|
|
{
|
|
protected $autoWriteTimestamp = true;
|
|
|
|
public function getAvatarAttr($value): string
|
|
{
|
|
return full_url($value, false, config('buildadmin.default_avatar'));
|
|
}
|
|
|
|
public function setAvatarAttr($value): string
|
|
{
|
|
return $value == full_url('', false, config('buildadmin.default_avatar')) ? '' : $value;
|
|
}
|
|
|
|
public function resetPassword($uid, $newPassword): int|User
|
|
{
|
|
$salt = Random::build('alnum', 16);
|
|
$passwd = encrypt_password($newPassword, $salt);
|
|
return $this->where(['id' => $uid])->update(['password' => $passwd, 'salt' => $salt]);
|
|
}
|
|
|
|
public function getMoneyAttr($value): string
|
|
{
|
|
return bcdiv($value, 100, 2);
|
|
}
|
|
|
|
/**
|
|
* 用户的余额是不可以直接进行修改的,请通过 UserMoneyLog 模型插入记录来实现自动修改余额
|
|
* 此处定义上 money 的修改器仅为防止直接对余额的修改造成数据错乱
|
|
*/
|
|
public function setMoneyAttr($value): string
|
|
{
|
|
return bcmul($value, 100, 2);
|
|
}
|
|
} |