CardNotices.php 602 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\Mc;
  7. class CardNotices extends \We7Table {
  8. protected $tableName = 'mc_card_notices';
  9. protected $primaryKey = 'id';
  10. protected $field = array(
  11. 'uniacid',
  12. 'uid',
  13. 'type',
  14. 'title',
  15. 'thumb',
  16. 'groupid',
  17. 'content',
  18. 'addtime',
  19. );
  20. protected $default = array(
  21. 'uniacid' => 0,
  22. 'uid' => 0,
  23. 'type' => 1,
  24. 'title' => '',
  25. 'thumb' => '',
  26. 'groupid' => 0,
  27. 'content' => '',
  28. 'addtime' => 0,
  29. );
  30. }