29 lines
662 B
Go
29 lines
662 B
Go
package model
|
|
|
|
// AwardSetResp ...
|
|
type AwardSetResp struct {
|
|
ResponseData []any `json:"response_data"`
|
|
ReleaseInfo []any `json:"release_info"`
|
|
StatusCode int `json:"status_code"`
|
|
}
|
|
|
|
// AwardInfo ...
|
|
type AwardInfo struct {
|
|
AwardID int `json:"award_id"`
|
|
IsSet bool `json:"is_set"`
|
|
InsertDate string `json:"insert_date"`
|
|
}
|
|
|
|
// AwardInfoRes ...
|
|
type AwardInfoRes struct {
|
|
AwardInfo []AwardInfo `json:"award_info"`
|
|
}
|
|
|
|
// AwardInfoResp ...
|
|
type AwardInfoResp struct {
|
|
Result AwardInfoRes `json:"result"`
|
|
Status int `json:"status"`
|
|
CommandNum bool `json:"commandNum"`
|
|
TimeStamp int64 `json:"timeStamp"`
|
|
}
|