身份认证新增医生邮箱

This commit is contained in:
2024-03-05 17:29:07 +08:00
parent 6e7692489b
commit 2e1834fda2
5 changed files with 66 additions and 7 deletions
+2 -1
View File
@@ -22,6 +22,7 @@ use Hyperf\Snowflake\Concern\Snowflake;
* @property int $register_method 注册方式(1:微信小程序 2:后台添加 )
* @property int $age 年龄
* @property int $sex 性别(0:未知 1:男 2:女)
* @property string $email 邮箱
* @property string $avatar 头像
* @property int $is_online 是否在线(0:不在线 1:在线)
* @property string $login_at 小程序登陆时间
@@ -43,7 +44,7 @@ class User extends Model
/**
* The attributes that are mass assignable.
*/
protected array $fillable = ['user_id', 'user_name', 'user_account', 'mobile', 'wx_mobile', 'user_password', 'salt', 'user_type', 'user_status', 'register_method', 'age', 'sex', 'avatar', 'is_online', 'login_at', 'im_login_at', 'login_ip', 'created_by', 'created_at', 'updated_at'];
protected array $fillable = ['user_id', 'user_name', 'user_account', 'mobile', 'wx_mobile', 'user_password', 'salt', 'user_type', 'user_status', 'register_method', 'age', 'sex', 'email', 'avatar', 'is_online', 'login_at', 'im_login_at', 'login_ip', 'created_by', 'created_at', 'updated_at'];
protected string $primaryKey = "user_id";