MappingUcenter.php 472 B

123456789101112131415161718192021
  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 MappingUcenter extends \We7Table {
  8. protected $tableName = 'mc_mapping_ucenter';
  9. protected $primaryKey = 'fanid';
  10. protected $field = array(
  11. 'uniacid',
  12. 'uid',
  13. 'centeruid'
  14. );
  15. protected $default = array(
  16. 'uniacid' => '',
  17. 'uid' => '',
  18. 'centeruid' => ''
  19. );
  20. }