1
This commit is contained in:
parent
7c3e85aa59
commit
ba34ecc95a
@ -15,11 +15,7 @@ type BattleItem struct {
|
||||
ItemNum int32 `json:"item_num"`
|
||||
}
|
||||
|
||||
type LoginRsp struct {
|
||||
Errcode int `json:"errcode"`
|
||||
Errmsg string `json:"errmsg"`
|
||||
Info struct {
|
||||
UserInfo struct {
|
||||
type UserInfo struct {
|
||||
Activated string `json:"activated"`
|
||||
RenameCount string `json:"rename_count"`
|
||||
AccountId string `json:"account_id"`
|
||||
@ -33,8 +29,9 @@ type LoginRsp struct {
|
||||
VipLv interface{} `json:"vip_lv"`
|
||||
VipExp interface{} `json:"vip_exp"`
|
||||
HasVipLucky interface{} `json:"has_vip_lucky"`
|
||||
} `json:"user_info"`
|
||||
HeroInfo struct {
|
||||
}
|
||||
|
||||
type HeroInfo struct {
|
||||
HeroUniId string `json:"hero_uniid"`
|
||||
HeroId string `json:"hero_id"`
|
||||
Quality string `json:"quality"`
|
||||
@ -44,7 +41,14 @@ type LoginRsp struct {
|
||||
CurrentTimes interface{} `json:"current_times"`
|
||||
TotalTimes interface{} `json:"total_times"`
|
||||
SkinId interface{} `json:"skin_id"`
|
||||
} `json:"hero_info"`
|
||||
}
|
||||
|
||||
type LoginRsp struct {
|
||||
Errcode int `json:"errcode"`
|
||||
Errmsg string `json:"errmsg"`
|
||||
Info struct {
|
||||
UserInfo UserInfo `json:"user_info"`
|
||||
HeroInfo HeroInfo `json:"hero_info"`
|
||||
MapInfo *MapInfoRsp `json:"map_info"`
|
||||
} `json:"info"`
|
||||
}
|
||||
@ -53,32 +57,8 @@ type UserRsp struct {
|
||||
Errcode int `json:"errcode"`
|
||||
Errmsg string `json:"errmsg"`
|
||||
Info struct {
|
||||
UserInfo struct {
|
||||
Activated string `json:"activated"`
|
||||
RenameCount string `json:"rename_count"`
|
||||
AccountId string `json:"account_id"`
|
||||
Name string `json:"name"`
|
||||
HeadId string `json:"head_id"`
|
||||
HeroId string `json:"hero_id"`
|
||||
HeadFrame string `json:"head_frame"`
|
||||
TotalLucky interface{} `json:"total_lucky"`
|
||||
AdmissionItemNum interface{} `json:"admission_item_num"`
|
||||
CircuitScore interface{} `json:"circuit_score"`
|
||||
VipLv interface{} `json:"vip_lv"`
|
||||
VipExp interface{} `json:"vip_exp"`
|
||||
HasVipLucky interface{} `json:"has_vip_lucky"`
|
||||
} `json:"user_info"`
|
||||
HeroInfo struct {
|
||||
HeroUniId string `json:"hero_uniid"`
|
||||
HeroId string `json:"hero_id"`
|
||||
Quality string `json:"quality"`
|
||||
SpecSkill string `json:"spec_skill"`
|
||||
Wealth interface{} `json:"wealth"`
|
||||
ValidLefttime interface{} `json:"valid_lefttime"`
|
||||
CurrentTimes interface{} `json:"current_times"`
|
||||
TotalTimes interface{} `json:"total_times"`
|
||||
SkinId interface{} `json:"skin_id"`
|
||||
} `json:"hero_info"`
|
||||
UserInfo UserInfo `json:"user_info"`
|
||||
HeroInfo HeroInfo `json:"hero_info"`
|
||||
} `json:"info"`
|
||||
}
|
||||
|
||||
@ -104,33 +84,8 @@ type UpdateBattleInfoRsp struct {
|
||||
Errcode int `json:"errcode"`
|
||||
Errmsg string `json:"errmsg"`
|
||||
Info struct {
|
||||
UserInfo struct {
|
||||
Activated string `json:"activated"`
|
||||
RenameCount string `json:"rename_count"`
|
||||
AccountId string `json:"account_id"`
|
||||
Name string `json:"name"`
|
||||
HeadId string `json:"head_id"`
|
||||
HeroId string `json:"hero_id"`
|
||||
HeadFrame string `json:"head_frame"`
|
||||
SpecSkill string `json:"spec_skill"`
|
||||
TotalLucky interface{} `json:"total_lucky"`
|
||||
AdmissionItemNum interface{} `json:"admission_item_num"`
|
||||
CircuitScore interface{} `json:"circuit_score"`
|
||||
VipLv interface{} `json:"vip_lv"`
|
||||
VipExp interface{} `json:"vip_exp"`
|
||||
HasVipLucky interface{} `json:"has_vip_lucky"`
|
||||
} `json:"user_info"`
|
||||
HeroInfo struct {
|
||||
HeroUniId string `json:"hero_uniid"`
|
||||
HeroId string `json:"hero_id"`
|
||||
Quality string `json:"quality"`
|
||||
SpecSkill string `json:"spec_skill"`
|
||||
Wealth interface{} `json:"wealth"`
|
||||
ValidLefttime interface{} `json:"valid_lefttime"`
|
||||
CurrentTimes interface{} `json:"current_times"`
|
||||
TotalTimes interface{} `json:"total_times"`
|
||||
SkinId interface{} `json:"skin_id"`
|
||||
} `json:"hero_info"`
|
||||
UserInfo UserInfo `json:"user_info"`
|
||||
HeroInfo HeroInfo `json:"hero_info"`
|
||||
} `json:"info"`
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user