修正了登录

This commit is contained in:
2024-08-19 17:17:40 +08:00
parent d41f2399ad
commit 85b01f9002
7 changed files with 190 additions and 181 deletions
+7
View File
@@ -28,6 +28,13 @@ type UserDto struct {
UpdatedAt model.LocalTime `json:"updated_at"` // 更新时间
}
// UserCheckDto 检测用户
type UserCheckDto struct {
WxStatus int `json:"wx_status"` // 微信绑定状态(0:否 1:是)
MobileStatus int `json:"mobile_status"` // 手机号绑定状态(0:否 1:是)
NameStatus int `json:"name_status"` // 昵称填写状态(0:否 1:是)
}
// GetUserDto 详情-问题
func GetUserDto(m *model.User) *UserDto {
return &UserDto{