You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
543 B
21 lines
543 B
package archive |
|
|
|
// ViewPointRow video highlight viewpoint |
|
type ViewPointRow struct { |
|
ID int64 `json:"id"` |
|
AID int64 `json:"aid"` |
|
CID int64 `json:"cid"` |
|
Points []*ViewPoint `json:"points"` |
|
State int32 `json:"state"` |
|
CTime string `json:"ctime"` |
|
MTime string `json:"mtime"` |
|
} |
|
|
|
// ViewPoint viewpoint struct |
|
type ViewPoint struct { |
|
Type int8 `json:"type"` |
|
From int `json:"from"` |
|
To int `json:"to"` |
|
Content string `json:"content"` |
|
State int8 `json:"state"` |
|
}
|
|
|