CreditsRecharge.php 707 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\Mc;
  7. class CreditsRecharge extends \We7Table {
  8. protected $tableName = 'mc_credits_recharge';
  9. protected $primaryKey = 'id';
  10. protected $field = array(
  11. 'uniacid',
  12. 'uid',
  13. 'openid',
  14. 'tid',
  15. 'transid',
  16. 'fee',
  17. 'type',
  18. 'tag',
  19. 'status',
  20. 'createtime',
  21. 'backtype',
  22. );
  23. protected $default = array(
  24. 'uniacid' => '',
  25. 'uid' => '',
  26. 'openid' => '',
  27. 'tid' => '',
  28. 'transid' => '',
  29. 'fee' => '',
  30. 'type' => 'credit',
  31. 'tag' => '0',
  32. 'status' => 0,
  33. 'createtime' => '',
  34. 'backtype' => '',
  35. );
  36. }