vip_welfare.go 752 B

1234567891011121314151617181920212223242526
  1. package model
  2. import "go-common/library/time"
  3. // WelfareRes welfare list info
  4. type WelfareRes struct {
  5. ID int `json:"id"`
  6. Name string `json:"name"`
  7. HomepageUri string `json:"homepage_uri"`
  8. BackdropUri string `json:"backdrop_uri"`
  9. Tid int `json:"tid"`
  10. Rank int `json:"rank"`
  11. }
  12. // WelfareInfo welfare info
  13. type WelfareInfo struct {
  14. ID int `json:"id"`
  15. Name string `json:"name"`
  16. Desc string `json:"desc"`
  17. HomepageUri string `json:"homepage_uri"`
  18. BackdropUri string `json:"backdrop_uri"`
  19. SurplusCount int `json:"surplus_count"`
  20. Received bool `json:"received"`
  21. Stime time.Time `json:"stime"`
  22. Etime time.Time `json:"etime"`
  23. }