group info set

This commit is contained in:
skiffer-git
2022-06-06 20:39:45 +08:00
parent 1aacd3cb23
commit 797e2fea1e
7 changed files with 254 additions and 33 deletions
+11
View File
@@ -38,6 +38,17 @@ type UserTokenResp struct {
UserToken UserTokenInfo `json:"data"`
}
type ForceLogoutReq struct {
Secret string `json:"secret" binding:"required,max=32"`
Platform int32 `json:"platform" binding:"required,min=1,max=8"`
UserID string `json:"userID" binding:"required,min=1,max=64"`
OperationID string `json:"operationID" binding:"required"`
}
type ForceLogoutResp struct {
CommResp
}
type ParseTokenReq struct {
OperationID string `json:"operationID" binding:"required"`
}