mask.go 586 B

12345678910111213141516171819202122232425
  1. package model
  2. // all const variable used in mask
  3. const (
  4. MaskPlatWeb int8 = 0
  5. MaskPlatMbl int8 = 1
  6. )
  7. // MaskLists mask lists
  8. type MaskLists struct {
  9. Onoff int64 `json:"onoff"`
  10. Cid int64 `json:"cid,omitempty"`
  11. Fps int64 `json:"fps,omitempty"`
  12. Time int64 `json:"time,omitempty"`
  13. Lists []string `json:"list,omitempty"`
  14. }
  15. // Mask mask info
  16. type Mask struct {
  17. Cid int64 `json:"cid,omitempty"`
  18. Plat int8 `json:"plat,omitempty"`
  19. FPS int32 `json:"fps,omitempty"`
  20. Time int64 `json:"time,omitempty"`
  21. MaskURL string `json:"mask_url,omitempty"`
  22. }