up.go 358 B

12345678910111213141516
  1. package up
  2. //Switch for up switch controll.
  3. type Switch struct {
  4. State int32 `json:"state"`
  5. Show int `json:"show"`
  6. Face string `json:"face"`
  7. }
  8. // SpecialGroup UP主分组关联关系
  9. type SpecialGroup struct {
  10. ID int64 `json:"id"`
  11. MID int64 `json:"mid"`
  12. GroupID int64 `json:"group_id"`
  13. GroupName string `json:"group_name"`
  14. }