Files
chain33-dtalk/service/auth/model/response.go
2022-03-17 15:59:24 +08:00

19 lines
386 B
Go

package model
type GeneralResponse struct {
Code int `json:"code"`
Message int `json:"message"`
Data interface{} `json:"data"`
}
type SignInResponse struct {
AppId string `json:"appId"`
Key string `json:"key"`
CreateTime int64 `json:"createTime"`
UpdateTime int64 `json:"updateTime"`
}
type AuthResponse struct {
Uid string `json:"uid"`
}