GeneralAnalysis.php 763 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. /**
  3. * [WeEngine System] Copyright (c) 2014 WE7.CC
  4. * WeEngine is NOT a free software, it under the license terms, visited http://www.we7.cc/ for more details.
  5. */
  6. namespace We7\Table\Wxapp;
  7. class GeneralAnalysis extends \We7Table {
  8. protected $tableName = 'wxapp_general_analysis';
  9. protected $primaryKey = 'id';
  10. protected $field = array(
  11. 'uniacid',
  12. 'session_cnt',
  13. 'visit_pv',
  14. 'visit_uv',
  15. 'visit_uv_new',
  16. 'type',
  17. 'stay_time_uv',
  18. 'stay_time_session',
  19. 'visit_depth',
  20. 'ref_date',
  21. );
  22. protected $default = array(
  23. 'uniacid' => '',
  24. 'session_cnt' => '',
  25. 'visit_pv' => '',
  26. 'visit_uv' => '',
  27. 'visit_uv_new' => '',
  28. 'type' => '',
  29. 'stay_time_uv' => '',
  30. 'stay_time_session' => '',
  31. 'visit_depth' => '',
  32. 'ref_date' => '',
  33. );
  34. }