archive.go 231 B

1234567891011121314
  1. package model
  2. //Archive for db.
  3. type Archive struct {
  4. AID int64 `json:"aid"`
  5. MID int64 `json:"mid"`
  6. State int `json:"state"`
  7. UpFrom int8 `json:"up_from"`
  8. }
  9. // ArcVideo str
  10. type ArcVideo struct {
  11. Archive *Archive
  12. }