Reply.php 604 B

12345678910111213141516171819202122232425262728293031
  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\Wxcard;
  7. class Reply extends \We7Table {
  8. protected $tableName = 'wxcard_reply';
  9. protected $primaryKey = 'id';
  10. protected $field = array(
  11. 'rid',
  12. 'title',
  13. 'card_id',
  14. 'cid',
  15. 'brand_name',
  16. 'logo_url',
  17. 'success',
  18. 'error'
  19. );
  20. protected $default = array(
  21. 'rid' => 0,
  22. 'title' => '',
  23. 'card_id' => '',
  24. 'cid' => 0,
  25. 'brand_name' => '',
  26. 'logo_url' => '',
  27. 'success' => '',
  28. 'error' => ''
  29. );
  30. }