103 lines
3.5 KiB
PHP
103 lines
3.5 KiB
PHP
<?php
|
||
|
||
declare (strict_types=1);
|
||
namespace App\System\Model;
|
||
|
||
use Hyperf\Database\Model\SoftDeletes;
|
||
use Builder\BaseModel;
|
||
/**
|
||
* @property int $id 用户ID,主键
|
||
* @property string $username 用户名
|
||
* @property string $user_type 用户类型:(100系统用户)
|
||
* @property string $nickname 用户昵称
|
||
* @property string $phone 手机
|
||
* @property string $email 用户邮箱
|
||
* @property string $avatar 用户头像
|
||
* @property string $signed 个人签名
|
||
* @property string $dashboard 后台首页类型
|
||
* @property int $status 状态 (1正常 2停用)
|
||
* @property string $login_ip 最后登陆IP
|
||
* @property string $login_time 最后登陆时间
|
||
* @property string $backend_setting 后台设置数据
|
||
* @property int $created_by 创建者
|
||
* @property int $updated_by 更新者
|
||
* @property \Carbon\Carbon $created_at 创建时间
|
||
* @property \Carbon\Carbon $updated_at 更新时间
|
||
* @property string $deleted_at 删除时间
|
||
* @property string $remark 备注
|
||
* @property-read SystemDept $dept
|
||
* @property-read \Hyperf\Database\Model\Collection|SystemPost[] $posts
|
||
* @property-read \Hyperf\Database\Model\Collection|SystemRole[] $roles
|
||
* @property-write mixed $password 密码
|
||
*/
|
||
class SystemUser extends BaseModel
|
||
{
|
||
use SoftDeletes;
|
||
public const USER_NORMAL = 1;
|
||
public const USER_BAN = 2;
|
||
/**
|
||
* 系统用户
|
||
*/
|
||
public const TYPE_SYS_USER = '100';
|
||
/**
|
||
* The table associated with the model.
|
||
*
|
||
* @var string
|
||
*/
|
||
protected ?string $table = 'system_user';
|
||
/**
|
||
* The attributes that are mass assignable.
|
||
*
|
||
* @var array
|
||
*/
|
||
protected array $fillable = ['id', 'username', 'password', 'user_type', 'nickname', 'phone', 'email', 'avatar', 'signed', 'dashboard', 'status', 'login_ip', 'login_time', 'backend_setting', 'created_by', 'updated_by', 'created_at', 'updated_at', 'deleted_at', 'remark'];
|
||
/**
|
||
* The attributes that should be cast to native types.
|
||
*
|
||
* @var array
|
||
*/
|
||
protected array $casts = ['id' => 'integer', 'status' => 'integer', 'created_by' => 'integer', 'updated_by' => 'integer', 'created_at' => 'datetime', 'updated_at' => 'datetime', 'backend_setting' => 'array'];
|
||
/**
|
||
* 通过中间表关联角色
|
||
* @return \Hyperf\Database\Model\Relations\BelongsToMany
|
||
*/
|
||
public function roles() : \Hyperf\Database\Model\Relations\BelongsToMany
|
||
{
|
||
return $this->belongsToMany(SystemRole::class, 'system_user_role', 'user_id', 'role_id');
|
||
}
|
||
/**
|
||
* 通过中间表关联岗位
|
||
* @return \Hyperf\Database\Model\Relations\BelongsToMany
|
||
*/
|
||
public function posts() : \Hyperf\Database\Model\Relations\BelongsToMany
|
||
{
|
||
return $this->belongsToMany(SystemPost::class, 'system_user_post', 'user_id', 'post_id');
|
||
}
|
||
/**
|
||
* 通过中间表关联部门
|
||
* @return \Hyperf\Database\Model\Relations\BelongsToMany
|
||
*/
|
||
public function depts() : \Hyperf\Database\Model\Relations\BelongsToMany
|
||
{
|
||
return $this->belongsToMany(SystemDept::class, 'system_user_dept', 'user_id', 'dept_id');
|
||
}
|
||
/**
|
||
* 密码加密
|
||
* @param $value
|
||
* @return void
|
||
*/
|
||
public function setPasswordAttribute($value) : void
|
||
{
|
||
$this->attributes['password'] = password_hash($value, PASSWORD_DEFAULT);
|
||
}
|
||
/**
|
||
* 验证密码
|
||
* @param $password
|
||
* @param $hash
|
||
* @return bool
|
||
*/
|
||
public static function passwordVerify($password, $hash) : bool
|
||
{
|
||
return password_verify($password, $hash);
|
||
}
|
||
} |