企微短剧业务系统

customerLoss.php 2.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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. "enable_to_sort"=> true
  23. ],
  24. [
  25. 'name' => '企微关注成本',
  26. 'column' => 'follow_cost',
  27. 'notes' => '当天消耗/企微关注人数',
  28. "enable_to_sort"=> false
  29. ],
  30. [
  31. 'name' => '首日流失用户',
  32. 'column' => 'first_loss_count',
  33. "enable_to_sort"=> true
  34. ],
  35. [
  36. 'name' => '3天流失用户',
  37. 'column' => 'third_loss_count',
  38. "enable_to_sort"=> true
  39. ],
  40. [
  41. 'name' => '3天流失率',
  42. 'column' => 'third_loss_rate',
  43. "enable_to_sort"=> true
  44. ],
  45. [
  46. 'name' => '7天流失用户',
  47. 'column' => 'seventh_loss_count',
  48. "enable_to_sort"=> true
  49. ],
  50. [
  51. 'name' => '7天流失率',
  52. 'column' => 'seventh_loss_rate',
  53. "enable_to_sort"=> true
  54. ],
  55. [
  56. 'name' => '15天流失用户',
  57. 'column' => 'fifteenth_loss_count',
  58. "enable_to_sort"=> true
  59. ],
  60. [
  61. 'name' => '15天流失率',
  62. 'column' => 'fifteenth_loss_rate',
  63. "enable_to_sort"=> true
  64. ],
  65. [
  66. 'name' => '30天流失用户',
  67. 'column' => 'thirtieth_loss_count',
  68. "enable_to_sort"=> true
  69. ],
  70. [
  71. 'name' => '30天流失率',
  72. 'column' => 'thirtieth_loss_rate',
  73. "enable_to_sort"=> true
  74. ],
  75. [
  76. 'name' => '累计流失用户',
  77. 'column' => 'loss_count',
  78. "enable_to_sort"=> true
  79. ],
  80. [
  81. 'name' => '累计流失率',
  82. 'column' => 'loss_rate',
  83. "enable_to_sort"=> true
  84. ]
  85. ]
  86. ];