WelcomeBinddomain.php 525 B

1234567891011121314151617181920212223
  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\System;
  7. class WelcomeBinddomain extends \We7Table {
  8. protected $tableName = 'system_welcome_binddomain';
  9. protected $primaryKey = 'id';
  10. protected $field = array(
  11. 'uid',
  12. 'module_name',
  13. 'domain',
  14. 'createtime',
  15. );
  16. protected $default = array(
  17. 'uid' => '',
  18. 'module_name' => '',
  19. 'domain' => '',
  20. 'createtime' => '',
  21. );
  22. }