up_bill.go 895 B

12345678910111213141516171819202122232425262728
  1. package model
  2. import (
  3. "go-common/library/time"
  4. )
  5. // UpBill up_bill
  6. type UpBill struct {
  7. MID int64 `json:"mid"`
  8. Nickname string `json:"nickname"`
  9. Face string `json:"face"`
  10. FirstIncome int64 `json:"first_income"`
  11. MaxIncome int64 `json:"max_income"`
  12. TotalIncome int64 `json:"total_income"`
  13. AvCount int64 `json:"av_count"`
  14. AvMaxIncome int64 `json:"av_max_income"`
  15. AvID int64 `json:"-"`
  16. AvTitle string `json:"av_title"`
  17. QualityValue int64 `json:"quality_value"`
  18. DefeatNum int `json:"defeat_num"`
  19. Title string `json:"title"`
  20. ShareItems string `json:"share_items"`
  21. FirstTime time.Time `json:"first_time"`
  22. MaxTime time.Time `json:"max_time"`
  23. SignedAt time.Time `json:"signed_at"`
  24. EndAt time.Time `json:"end_at"`
  25. Join bool `json:"join"`
  26. }