go-common/app/job/main/videoup-report/model/data/data.go
2019-04-22 18:49:16 +08:00

14 lines
324 B
Go

package data
// HotArchiveRes hot recheck archive response
type HotArchiveRes struct {
Code int `json:"code"`
Note bool `json:"note"`
SourceDate string `json:"source_date"`
Num int `json:"num"`
List []struct {
Aid int64 `json:"aid"`
Score int `json:"score"`
} `json:"list"`
}