146 lines
5.5 KiB
Go
146 lines
5.5 KiB
Go
package model
|
|
|
|
type UnitAccessoryAllResult struct {
|
|
AccessoryList []interface{} `json:"accessory_list"`
|
|
WearingInfo []interface{} `json:"wearing_info"`
|
|
EspecialCreateFlag bool `json:"especial_create_flag"`
|
|
}
|
|
|
|
type UnitAccessoryAllResp struct {
|
|
Result UnitAccessoryAllResult `json:"result"`
|
|
Status int `json:"status"`
|
|
CommandNum bool `json:"commandNum"`
|
|
TimeStamp int64 `json:"timeStamp"`
|
|
}
|
|
|
|
// module: unit, action: unitAll
|
|
type Costume struct {
|
|
UnitID int `json:"unit_id"`
|
|
IsRankMax bool `json:"is_rank_max"`
|
|
IsSigned bool `json:"is_signed"`
|
|
}
|
|
|
|
type Active struct {
|
|
UnitOwningUserID int `json:"unit_owning_user_id"`
|
|
UnitID int `json:"unit_id"`
|
|
Exp int `json:"exp"`
|
|
NextExp int `json:"next_exp"`
|
|
Level int `json:"level"`
|
|
MaxLevel int `json:"max_level"`
|
|
LevelLimitID int `json:"level_limit_id"`
|
|
Rank int `json:"rank"`
|
|
MaxRank int `json:"max_rank"`
|
|
Love int `json:"love"`
|
|
MaxLove int `json:"max_love"`
|
|
UnitSkillExp int `json:"unit_skill_exp"`
|
|
UnitSkillLevel int `json:"unit_skill_level"`
|
|
MaxHp int `json:"max_hp"`
|
|
UnitRemovableSkillCapacity int `json:"unit_removable_skill_capacity"`
|
|
FavoriteFlag bool `json:"favorite_flag"`
|
|
DisplayRank int `json:"display_rank"`
|
|
IsRankMax bool `json:"is_rank_max"`
|
|
IsLoveMax bool `json:"is_love_max"`
|
|
IsLevelMax bool `json:"is_level_max"`
|
|
IsSigned bool `json:"is_signed"`
|
|
IsSkillLevelMax bool `json:"is_skill_level_max"`
|
|
IsRemovableSkillCapacityMax bool `json:"is_removable_skill_capacity_max"`
|
|
InsertDate string `json:"insert_date"`
|
|
// Costume Costume `json:"costume,omitempty"`
|
|
}
|
|
|
|
type Waiting struct {
|
|
UnitOwningUserID int64 `json:"unit_owning_user_id"`
|
|
UnitID int `json:"unit_id"`
|
|
Exp int `json:"exp"`
|
|
NextExp int `json:"next_exp"`
|
|
Level int `json:"level"`
|
|
MaxLevel int `json:"max_level"`
|
|
LevelLimitID int `json:"level_limit_id"`
|
|
Rank int `json:"rank"`
|
|
MaxRank int `json:"max_rank"`
|
|
Love int `json:"love"`
|
|
MaxLove int `json:"max_love"`
|
|
UnitSkillExp int `json:"unit_skill_exp"`
|
|
UnitSkillLevel int `json:"unit_skill_level"`
|
|
MaxHp int `json:"max_hp"`
|
|
UnitRemovableSkillCapacity int `json:"unit_removable_skill_capacity"`
|
|
FavoriteFlag bool `json:"favorite_flag"`
|
|
DisplayRank int `json:"display_rank"`
|
|
IsRankMax bool `json:"is_rank_max"`
|
|
IsLoveMax bool `json:"is_love_max"`
|
|
IsLevelMax bool `json:"is_level_max"`
|
|
IsSigned bool `json:"is_signed"`
|
|
IsSkillLevelMax bool `json:"is_skill_level_max"`
|
|
IsRemovableSkillCapacityMax bool `json:"is_removable_skill_capacity_max"`
|
|
InsertDate string `json:"insert_date"`
|
|
}
|
|
|
|
type UnitAllResult struct {
|
|
Active []Active `json:"active"`
|
|
Waiting []Waiting `json:"waiting"`
|
|
}
|
|
|
|
type UnitAllResp struct {
|
|
Result UnitAllResult `json:"result"`
|
|
Status int `json:"status"`
|
|
CommandNum bool `json:"commandNum"`
|
|
TimeStamp int64 `json:"timeStamp"`
|
|
}
|
|
|
|
// module: unit, action: deckInfo
|
|
type UnitOwningUserIds struct {
|
|
Position int `json:"position"`
|
|
UnitOwningUserID int `json:"unit_owning_user_id"`
|
|
}
|
|
|
|
type UnitDeckInfo struct {
|
|
UnitDeckID int `json:"unit_deck_id"`
|
|
MainFlag bool `json:"main_flag"`
|
|
DeckName string `json:"deck_name"`
|
|
UnitOwningUserIds []UnitOwningUserIds `json:"unit_owning_user_ids"`
|
|
}
|
|
|
|
type UnitDeckInfoResp struct {
|
|
Result []UnitDeckInfo `json:"result"`
|
|
Status int `json:"status"`
|
|
CommandNum bool `json:"commandNum"`
|
|
TimeStamp int64 `json:"timeStamp"`
|
|
}
|
|
|
|
// module: unit, action: supporterAll
|
|
type UnitSupportList struct {
|
|
UnitID int `json:"unit_id"`
|
|
Amount int `json:"amount"`
|
|
}
|
|
|
|
type UnitSupportResult struct {
|
|
UnitSupportList []UnitSupportList `json:"unit_support_list"`
|
|
}
|
|
|
|
type UnitSupportResp struct {
|
|
Result UnitSupportResult `json:"result"`
|
|
Status int `json:"status"`
|
|
CommandNum bool `json:"commandNum"`
|
|
TimeStamp int64 `json:"timeStamp"`
|
|
}
|
|
|
|
// module: unit, action: removableSkillInfo
|
|
type OwningInfo struct {
|
|
UnitRemovableSkillID int `json:"unit_removable_skill_id"`
|
|
TotalAmount int `json:"total_amount"`
|
|
EquippedAmount int `json:"equipped_amount"`
|
|
InsertDate string `json:"insert_date"`
|
|
}
|
|
|
|
type RemovableSkillResult struct {
|
|
OwningInfo []OwningInfo `json:"owning_info"`
|
|
EquipmentInfo []interface{} `json:"equipment_info"`
|
|
}
|
|
|
|
type RemovableSkillResp struct {
|
|
Result RemovableSkillResult `json:"result"`
|
|
Status int `json:"status"`
|
|
CommandNum bool `json:"commandNum"`
|
|
TimeStamp int64 `json:"timeStamp"`
|
|
}
|