ExchangeTrades.php 560 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\Activity;
  7. class ExchangeTrades extends \We7Table {
  8. protected $tableName = 'activity_exchange_trades';
  9. protected $primaryKey = 'tid';
  10. protected $field = array(
  11. 'uniacid',
  12. 'uid',
  13. 'exid',
  14. 'type',
  15. 'createtime',
  16. );
  17. protected $default = array(
  18. 'uniacid' => '',
  19. 'uid' => '',
  20. 'exid' => '',
  21. 'type' => '',
  22. 'createtime' => 0,
  23. );
  24. }