growup.go 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. package growup
  2. import "go-common/library/time"
  3. //UpInfo get up state info
  4. type UpInfo struct {
  5. MID int64 `json:"mid"`
  6. Fans int64 `json:"fans"` //粉丝数量
  7. NickName string `json:"nickname"` //用户昵称
  8. OriginalArcCount int `json:"original_archive_count"` //UP主原创投稿数
  9. MainCategory int `json:"main_category"` //UP主主要投稿区ID
  10. AccountState int `json:"account_state"` //账号状态; 1: 未申请; 2: 待审核; 3: 已签约; 4.已驳回; 5.主动退出; 6:被动退出; 7:封禁
  11. SignType int8 `json:"sign_type"` //签约类型; 0: 基础, 1: 首发
  12. QuitType int `json:"quit_type"` //退出类型: 0: 主动退出 1: 封禁; 2: 平台清退
  13. ApplyAt time.Time `json:"apply_at"` //申请时间
  14. CTime time.Time `json:"ctime"`
  15. MTime time.Time `json:"mtime"`
  16. }
  17. //UpStatus get up status info
  18. type UpStatus struct {
  19. Blocked bool `json:"blocked"`
  20. AccountType int `json:"account_type"` //账号类型 1-UGC 2- PGC
  21. AccountState int `json:"account_state"` //账号状态; 1: 未申请; 2: 待审核; 3: 已签约; 4.已驳回; 5.主动退出; 6:被动退出; 7:封禁
  22. ExpiredIn int64 `json:"expired_in"` //冷却过期天数
  23. Reason string `json:"reason"` //封禁/驳回/清退(被动退出)理由
  24. InWhiteList bool `json:"in_white_list"` //是否在白名单中,blocked字段在第一期中被忽略,第二期会去掉该字段
  25. ArchiveType []int `json:"archive_type"` //投稿类型,1:视频,2:音频,3:专栏
  26. ShowPanel bool `json:"show_panel"`
  27. ShowPanelMsg string `json:"show_panel_msg"`
  28. }
  29. //Summary get summary income.
  30. type Summary struct {
  31. BreachMoney float64 `json:"breachMoney"` //违反金额
  32. Income float64 `json:"income"` //当月收入
  33. TotalIncome float64 `json:"totalIncome"` //累计收入
  34. WaitWithdraw float64 `json:"waitWithdraw"` //带提现
  35. Date string `json:"date"`
  36. DayIncome float64 `json:"dayIncome"`
  37. }
  38. //Stat get statistic income.
  39. type Stat struct {
  40. ProportionDraw map[string]float64 `json:"proportionDraw"` //比例图
  41. LineDraw []*LineDraw `json:"lineDraw"`
  42. Tops []*TopArc `json:"tops"`
  43. Desc string `json:"desc"`
  44. }
  45. //LineDraw for income data.
  46. type LineDraw struct {
  47. DateKey int64 `json:"dateKey"`
  48. Income float64 `json:"income"`
  49. }
  50. //TopArc get top archive.
  51. type TopArc struct {
  52. AID int64 `json:"aid"`
  53. Title string `json:"title"`
  54. TypeName string `json:"typeName"` //type类型
  55. TotalIncome float64 `json:"totalIncome"` //累计收入
  56. }
  57. //IncomeList get income list.
  58. type IncomeList struct {
  59. Page int `json:"page"`
  60. TotalCount int `json:"total_count"`
  61. Data []*struct {
  62. AID int64 `json:"aid"`
  63. Title string `json:"title"`
  64. Income float64 `json:"income"` //当月收入
  65. TotalIncome float64 `json:"totalIncome"` //累计收入
  66. } `json:"data"`
  67. }
  68. //BreachList get reach list.
  69. type BreachList struct {
  70. Page int `json:"page"`
  71. TotalCount int `json:"total_count"`
  72. Data []*struct {
  73. AID int64 `json:"aid"`
  74. BreachTime int64 `json:"breachTime"` //时间戳
  75. Money float64 `json:"money"` //扣除金额
  76. Reason string `json:"reason"` //原因
  77. Title string `json:"title"` //稿件标题
  78. } `json:"data"`
  79. }