20 lines
496 B
Go
20 lines
496 B
Go
package model
|
|
|
|
// module: costume, action: costumeList
|
|
type CostumeList struct {
|
|
UnitID int `json:"unit_id"`
|
|
IsRankMax bool `json:"is_rank_max"`
|
|
IsSigned bool `json:"is_signed"`
|
|
}
|
|
|
|
type CostumeListResult struct {
|
|
CostumeList []CostumeList `json:"costume_list"`
|
|
}
|
|
|
|
type CostumeListResp struct {
|
|
Result CostumeListResult `json:"result"`
|
|
Status int `json:"status"`
|
|
CommandNum bool `json:"commandNum"`
|
|
TimeStamp int64 `json:"timeStamp"`
|
|
}
|