StoreCashLog.php 572 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\Site;
  7. class StoreCashLog extends \We7Table {
  8. protected $tableName = 'site_store_cash_log';
  9. protected $primaryKey = 'id';
  10. protected $field = array(
  11. 'founder_uid',
  12. 'number',
  13. 'amount',
  14. 'status',
  15. 'create_time'
  16. );
  17. protected $default = array(
  18. 'founder_uid' => 0,
  19. 'number' => '',
  20. 'amount' => '0.00',
  21. 'status' => 1,
  22. 'create_time' => 0
  23. );
  24. }