up_income.go 872 B

12345678910111213141516171819202122232425262728293031323334353637
  1. package income
  2. import (
  3. "go-common/library/time"
  4. )
  5. // UpIncome up income
  6. type UpIncome struct {
  7. ID int64 `json:"id"`
  8. MID int64 `json:"mid"`
  9. AvCount int64 `json:"-"`
  10. ColumnCount int64 `json:"-"`
  11. BgmCount int64 `json:"-"`
  12. Count int64 `json:"count"`
  13. TaxMoney int64 `json:"tax_money"`
  14. Income int64 `json:"income"`
  15. TotalIncome int64 `json:"total_income"`
  16. Date time.Time `json:"-"`
  17. Nickname string `json:"nickname"`
  18. DateFormat string `json:"date_format"`
  19. BaseIncome int64 `json:"base_income"`
  20. Breach int64 `json:"breach"`
  21. ExtraIncome int64 `json:"extra_income"`
  22. }
  23. // UpDailyStatis up daily statis
  24. type UpDailyStatis struct {
  25. Ups int
  26. Income int64
  27. Date time.Time
  28. }
  29. // UpStatisRsp response
  30. type UpStatisRsp struct {
  31. Income int64
  32. Ups int
  33. }