Reply.php 550 B

123456789101112131415161718192021222324252627
  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 Reply extends \We7Table {
  8. protected $tableName = 'wxapp_reply';
  9. protected $primaryKey = 'id';
  10. protected $field = array(
  11. 'rid',
  12. 'title',
  13. 'appid',
  14. 'pagepath',
  15. 'mediaid',
  16. 'createtime',
  17. );
  18. protected $default = array(
  19. 'rid' => '',
  20. 'title' => '',
  21. 'appid' => '',
  22. 'pagepath' => '',
  23. 'mediaid' => '',
  24. 'createtime' => '',
  25. );
  26. }