income.go 868 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. package model
  2. import (
  3. "go-common/library/time"
  4. )
  5. // AvIncome av income
  6. type AvIncome struct {
  7. ID int64
  8. AvID int64
  9. MID int64
  10. Income int64
  11. TotalIncome int64
  12. TagID int64
  13. Date time.Time
  14. IsDeleted int
  15. }
  16. // UpAccount up_account
  17. type UpAccount struct {
  18. ID int64
  19. MID int64
  20. TotalIncome int64
  21. TotalUnwithdrawIncome int64
  22. WithdrawDateVersion string
  23. AvCount int64
  24. MonthIncome int64
  25. Nickname string
  26. }
  27. // UpIncome up_income(weekly, monthly)
  28. type UpIncome struct {
  29. ID int64
  30. MID int64
  31. AvCount int64
  32. AvIncome int64
  33. ColumnCount int64
  34. ColumnIncome int64
  35. BgmCount int64
  36. BgmIncome int64
  37. Income int64
  38. TaxMoney int64
  39. BaseIncome int64
  40. TotalIncome int64
  41. Date time.Time
  42. }