GoodsCloud.php 638 B

123456789101112131415161718192021222324252627282930313233
  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\Store;
  7. class GoodsCloud 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' => '',
  26. 'is_edited' => 0,
  27. 'isdeleted' => 0,
  28. 'branchs' => '',
  29. );
  30. }