修正模型外键的数据类型为 uint

This commit is contained in:
GeekMaster
2025-05-05 17:27:55 +08:00
parent 7bc55f3ed1
commit 5e59b3a708
9 changed files with 30 additions and 31 deletions

View File

@@ -2,9 +2,8 @@ package vo
type AdminUser struct {
BaseVo
Username string `json:"username"`
Status bool `json:"status"` // 当前状态
LastLoginAt int64 `json:"last_login_at"` // 最后登录时间
LastLoginIp string `json:"last_login_ip"` // 最后登录 IP
RoleIds interface{} `json:"role_ids"` //角色ids
Username string `json:"username"`
Status bool `json:"status"` // 当前状态
LastLoginAt int64 `json:"last_login_at"` // 最后登录时间
LastLoginIp string `json:"last_login_ip"` // 最后登录 IP
}