This commit is contained in:
邹宗楠
2022-08-11 13:49:12 +08:00
parent 8a118b092f
commit 7d874eca22
13 changed files with 537 additions and 224 deletions

View File

@@ -265,3 +265,40 @@ type CallBack struct {
Code string `json:"code"`
Desc string `json:"desc"`
}
type AutoGenerated struct {
Code string `json:"code"`
Desc string `json:"desc"`
Data struct {
UserID string `json:"userID"`
UserID2 string `json:"userID2"`
Mobile string `json:"mobile"`
Email string `json:"email"`
Name string `json:"name"`
Avatar string `json:"avatar"`
AuthBindInfo struct {
ID int `json:"id"`
CreatedAt time.Time `json:"createdAt"`
UpdatedAt time.Time `json:"updatedAt"`
LastOperator string `json:"lastOperator"`
DeletedAt time.Time `json:"deletedAt"`
AuthID string `json:"authID"`
BindType int `json:"bindType"`
Type string `json:"type"`
TypeID string `json:"typeID"`
UserID string `json:"userID"`
Status int `json:"status"`
AuthID2 string `json:"authID2"`
Remark string `json:"remark"`
DetailData string `json:"detailData"`
UserData interface{} `json:"userData"`
UserHint interface{} `json:"userHint"`
} `json:"authBindInfo"`
LoginTime time.Time `json:"loginTime"`
ExpiresAt int `json:"expiresAt"`
Token string `json:"token"`
TokenType int `json:"tokenType"`
IsExistOpenID bool `json:"isExistOpenID"`
AppID string `json:"appId"`
} `json:"data"`
}