企微短剧业务系统

customerLoss.php 2.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <?php
  2. return [
  3. 'basic' => [
  4. [
  5. 'name' => '时间',
  6. 'column' => 'ref_date',
  7. "enable_to_sort"=> false
  8. ],
  9. [
  10. 'name' => '企微主体',
  11. 'column' => 'corp_name',
  12. "enable_to_sort"=> false
  13. ],
  14. [
  15. 'name' => '当天消耗',
  16. 'column' => 'paid',
  17. "enable_to_sort"=> true
  18. ],
  19. [
  20. 'name' => '企微关注人数',
  21. 'column' => 'scan_follow_count',
  22. 'notes' => '企微关联投放账号的企微关注人数',
  23. "enable_to_sort"=> true
  24. ],
  25. [
  26. 'name' => '企微关注成本',
  27. 'column' => 'follow_cost',
  28. 'notes' => '当天消耗/企微关注人数',
  29. "enable_to_sort"=> false
  30. ],
  31. [
  32. 'name' => '企微加粉人数',
  33. 'column' => 'add_user_count',
  34. 'notes' => '系统企微关注人数',
  35. "enable_to_sort"=> false
  36. ],
  37. [
  38. 'name' => '首日流失用户',
  39. 'column' => 'first_loss_count',
  40. "enable_to_sort"=> true
  41. ],
  42. [
  43. "name" => "首日流失率",
  44. 'column' => "first_loss_rate",
  45. "enable_to_sort" => true
  46. ],
  47. [
  48. 'name' => '3天流失用户',
  49. 'column' => 'third_loss_count',
  50. "enable_to_sort"=> true
  51. ],
  52. [
  53. 'name' => '3天流失率',
  54. 'column' => 'third_loss_rate',
  55. "enable_to_sort"=> true
  56. ],
  57. [
  58. 'name' => '7天流失用户',
  59. 'column' => 'seventh_loss_count',
  60. "enable_to_sort"=> true
  61. ],
  62. [
  63. 'name' => '7天流失率',
  64. 'column' => 'seventh_loss_rate',
  65. "enable_to_sort"=> true
  66. ],
  67. [
  68. 'name' => '15天流失用户',
  69. 'column' => 'fifteenth_loss_count',
  70. "enable_to_sort"=> true
  71. ],
  72. [
  73. 'name' => '15天流失率',
  74. 'column' => 'fifteenth_loss_rate',
  75. "enable_to_sort"=> true
  76. ],
  77. [
  78. 'name' => '30天流失用户',
  79. 'column' => 'thirtieth_loss_count',
  80. "enable_to_sort"=> true
  81. ],
  82. [
  83. 'name' => '30天流失率',
  84. 'column' => 'thirtieth_loss_rate',
  85. "enable_to_sort"=> true
  86. ],
  87. [
  88. 'name' => '累计流失用户',
  89. 'column' => 'loss_count',
  90. "enable_to_sort"=> true
  91. ],
  92. [
  93. 'name' => '累计流失率',
  94. 'column' => 'loss_rate',
  95. "enable_to_sort"=> true
  96. ]
  97. ]
  98. ];