123456789101112131415161718192021222324252627282930313233 |
- <?php
- /**
- * [WeEngine System] Copyright (c) 2014 WE7.CC
- * WeEngine is NOT a free software, it under the license terms, visited http://www.we7.cc/ for more details.
- */
- namespace We7\Table\Store;
- class GoodsCloud extends \We7Table {
- protected $tableName = 'site_store_goods_cloud';
- protected $primaryKey = 'id';
- protected $field = array(
- 'cloud_id',
- 'name',
- 'title',
- 'logo',
- 'wish_branch',
- 'is_edited',
- 'isdeleted',
- 'branchs',
- );
- protected $default = array(
- 'cloud_id' => 0,
- 'name' => '',
- 'title' => '',
- 'logo' => '',
- 'wish_branch' => '',
- 'is_edited' => 0,
- 'isdeleted' => 0,
- 'branchs' => '',
- );
- }
|