CardNoticesUnread.php 529 B

12345678910111213141516171819202122232425
  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 CardNoticesUnread extends \We7Table {
  8. protected $tableName = 'mc_card_notices_unread';
  9. protected $primaryKey = 'id';
  10. protected $field = array(
  11. 'uniacid',
  12. 'notice_id',
  13. 'uid',
  14. 'is_new',
  15. 'type',
  16. );
  17. protected $default = array(
  18. 'uniacid' => 0,
  19. 'notice_id' => 0,
  20. 'uid' => 0,
  21. 'is_new' => 1,
  22. 'type' => 1,
  23. );
  24. }