Cache.php 465 B

1234567891011121314151617181920212223
  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\Userapi;
  7. class Cache extends \We7Table {
  8. protected $tableName = 'userapi_cache';
  9. protected $primaryKey = 'id';
  10. protected $field = array(
  11. 'key',
  12. 'content',
  13. 'lastupdate',
  14. );
  15. protected $default = array(
  16. 'key' => '',
  17. 'content' => '',
  18. 'lastupdate' => '',
  19. );
  20. }