income.go 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. package model
  2. import (
  3. "go-common/library/time"
  4. )
  5. // ArchiveIncome av income
  6. type ArchiveIncome struct {
  7. ID int64 `json:"id"`
  8. ArchiveID int64 `json:"archive_id"`
  9. Avs []int64 `json:"avs,omitempty"`
  10. MID int64 `json:"mid"`
  11. Income int64 `json:"income"`
  12. MonthIncome int64 `json:"month_income"`
  13. TotalIncome int64 `json:"total_income"`
  14. Breach *AvBreach `json:"breach"`
  15. Title string `json:"title"`
  16. Icon string `json:"icon"`
  17. Date time.Time `json:"date"`
  18. CTime time.Time `json:"ctime"`
  19. MTime time.Time `json:"mtime"`
  20. IsDeleted int `json:"-"`
  21. }
  22. // Blacklist black list
  23. type Blacklist struct {
  24. ID int64 `json:"id" gorm:"column:id"`
  25. AvID int64 `json:"av_id" gorm:"column:av_id"`
  26. MID int64 `json:"mid" gorm:"column:mid"`
  27. Reason int `json:"reason" gorm:"column:reason"`
  28. CType int `json:"ctype" gorm:"column:ctype"`
  29. HasSigned int `json:"has_signed" gorm:"column:has_signed"`
  30. Nickname string `json:"nickname" gorm:"column:nickname"`
  31. CTime time.Time `json:"ctime" gorm:"column:ctime"`
  32. MTime time.Time `json:"mtime" gorm:"column:mtime"`
  33. IsDeleted int `json:"-"`
  34. }
  35. // ArchiveRes archive response
  36. type ArchiveRes struct {
  37. Code int `json:"code"`
  38. Data map[string]*Archive `json:"data"`
  39. Message string `json:"message"`
  40. }
  41. // Archive archive
  42. type Archive struct {
  43. AID int64 `json:"aid"`
  44. Title string `json:"title"`
  45. }
  46. // TagInfo tag_info
  47. type TagInfo struct {
  48. ID int64
  49. Radio int64
  50. Icon string
  51. }
  52. // UpIncome up_income
  53. type UpIncome struct {
  54. ID int64
  55. MID int64
  56. Income int64
  57. AvIncome int64
  58. ColumnIncome int64
  59. BgmIncome int64
  60. BaseIncome int64
  61. AvBaseIncome int64
  62. ColumnBaseIncome int64
  63. BgmBaseIncome int64
  64. TotalIncome int64
  65. Date time.Time
  66. }
  67. // UpIncomeStat for up daily income analytics
  68. type UpIncomeStat struct {
  69. MID int64 `json:"-"`
  70. Income int64 `json:"income"`
  71. BaseIncome int64 `json:"base_income"`
  72. ExtraIncome int64 `json:"extra_income"`
  73. Breach int64 `json:"breach"`
  74. Date time.Time `json:"date"`
  75. }