StoreGoodsCloud.php 667 B

12345678910111213141516171819202122232425262728293031
  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 StoreGoodsCloud extends \We7Table {
  8. protected $tableName = 'site_store_goods_cloud';
  9. protected $primaryKey = 'id';
  10. protected $field = array(
  11. 'cloud_id',
  12. 'name',
  13. 'title',
  14. 'logo',
  15. 'wish_branch',
  16. 'is_edited',
  17. 'isdeleted',
  18. 'branchs'
  19. );
  20. protected $default = array(
  21. 'cloud_id' => 0,
  22. 'name' => '',
  23. 'title' => '',
  24. 'logo' => '',
  25. 'wish_branch' => 0,
  26. 'is_edited' => 0,
  27. 'isdeleted' => 0,
  28. 'branchs' => ''
  29. );
  30. }