sidebar.go 739 B

12345678910111213141516171819202122232425262728
  1. package sidebar
  2. import (
  3. "go-common/library/time"
  4. )
  5. // SideBar struct
  6. type SideBar struct {
  7. ID int64 `json:"id,omitempty"`
  8. Tip int `json:"tip,omitempty"`
  9. Rank int `json:"rank,omitempty"`
  10. Logo string `json:"logo,omitempty"`
  11. LogoWhite string `json:"logo_white,omitempty"`
  12. Name string `json:"name,omitempty"`
  13. Param string `json:"param,omitempty"`
  14. Module int `json:"module,omitempty"`
  15. Plat int8 `json:"-"`
  16. Build int `json:"-"`
  17. Conditions string `json:"-"`
  18. OnlineTime time.Time `json:"online_time"`
  19. }
  20. // Limit struct
  21. type Limit struct {
  22. ID int64 `json:"-"`
  23. Build int `json:"-"`
  24. Condition string `json:"-"`
  25. }