增加 8圈自动登录

This commit is contained in:
2025-07-04 14:28:24 +08:00
parent 9adc43f6e3
commit 37ca5a7462
34 changed files with 497 additions and 314 deletions

View File

@ -28,4 +28,5 @@ type Users struct {
DeletedAt *gtime.Time // 软删除时间
RoleId interface{} // 角色ID
LastLoginStoreId interface{} // 上次登录门店ID
Quan8Uuid interface{} // 8圈使用的 uuid
}

View File

@ -26,4 +26,5 @@ type Users struct {
DeletedAt *gtime.Time `json:"deletedAt" orm:"deleted_at" description:"软删除时间"` // 软删除时间
RoleId int64 `json:"roleId" orm:"role_id" description:"角色ID"` // 角色ID
LastLoginStoreId int64 `json:"lastLoginStoreId" orm:"last_login_store_id" description:"上次登录门店ID"` // 上次登录门店ID
Quan8Uuid string `json:"quan8Uuid" orm:"quan8_uuid" description:"8圈使用的 uuid"` // 8圈使用的 uuid
}

View File

@ -204,3 +204,21 @@ type GamelifePackUrlIn struct {
type GamelifePackUrlOut struct {
Url string
}
type Quan8AutologinIn struct {
UUID string
NetbarAccount string
StoreId int64
}
type Quan8AutologinOut struct {
Token string
}
type GenerateSceneIdIn struct {
StoreId int
UUId string
}
type GenerateSceneIdOut struct {
SceneId string
}