feat: 添加获取登录账户信息的功能,并更新相关数据结构和常量
This commit is contained in:
@@ -45,3 +45,15 @@ type GroupMemberListResponse struct {
|
||||
Wording string `json:"wording"`
|
||||
Echo string `json:"echo"`
|
||||
}
|
||||
|
||||
type LoginAccountInfoResponse struct {
|
||||
Status string `json:"status"`
|
||||
Retcode int `json:"retcode"`
|
||||
Data struct {
|
||||
UserID int `json:"user_id"`
|
||||
Nickname string `json:"nickname"`
|
||||
} `json:"data"`
|
||||
Message string `json:"message"`
|
||||
Wording string `json:"wording"`
|
||||
Echo string `json:"echo"`
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user