Performance.php 532 B

12345678910111213141516171819202122232425
  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\Core;
  7. class Performance extends \We7Table {
  8. protected $tableName = 'core_performance';
  9. protected $primaryKey = 'id';
  10. protected $field = array(
  11. 'type',
  12. 'runtime',
  13. 'runurl',
  14. 'runsql',
  15. 'createtime',
  16. );
  17. protected $default = array(
  18. 'type' => '',
  19. 'runtime' => '',
  20. 'runurl' => '',
  21. 'runsql' => '',
  22. 'createtime' => '',
  23. );
  24. }