Reply.php 420 B

12345678910111213141516171819
  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\Basic;
  7. class Reply extends \We7Table {
  8. protected $tableName = 'basic_reply';
  9. protected $primaryKey = 'id';
  10. protected $field = array(
  11. 'rid',
  12. 'content'
  13. );
  14. protected $default = array(
  15. 'rid' => '',
  16. 'content' => ''
  17. );
  18. }