ExchangeTradesShipping.php 807 B

123456789101112131415161718192021222324252627282930313233343536373839
  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 ExchangeTradesShipping extends \We7Table {
  8. protected $tableName = 'activity_exchange_trades_shipping';
  9. protected $primaryKey = 'tid';
  10. protected $field = array(
  11. 'uniacid',
  12. 'uid',
  13. 'exid',
  14. 'status',
  15. 'createtime',
  16. 'province',
  17. 'city',
  18. 'district',
  19. 'address',
  20. 'zipcode',
  21. 'mobile',
  22. 'name'
  23. );
  24. protected $default = array(
  25. 'uniacid' => '',
  26. 'uid' => '',
  27. 'exid' => '',
  28. 'status' => 0,
  29. 'createtime' => '',
  30. 'province' => '',
  31. 'city' => '',
  32. 'district' => '',
  33. 'address' => '',
  34. 'zipcode' => '',
  35. 'mobile' => '',
  36. 'name' => ''
  37. );
  38. }