123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- namespace JinDouYun\Dao\Shop;
- use JinDouYun\Dao\BaseDao;
- class DShopCard extends BaseDao
- {
- public function __construct($serviceDB = 'default')
- {
- $this->_table = 'shop_card';
- $this->_primary = 'id';
- $this->_fields = [
- "id",
- "shop_id",
- "name",
- "price",
- "ot_price",
- "status",
- "image",
- "info",
- "introduce",
- "createTime",
- ];
- $this->_readonly = ['id'];
- $this->_create_autofill = [
- 'createTime' => time()
- ];
- parent::__construct($serviceDB);
- }
- }
|