12345678910111213141516171819202122232425262728293031323334 |
- <?php
- namespace JinDouYun\Dao\Shop;
- use JinDouYun\Dao\BaseDao;
- class DShopClock extends BaseDao
- {
- public function __construct($serviceDB = 'default')
- {
- $this->_table = 'shop_clock';
- $this->_primary = 'id';
- $this->_fields = [
- "id",
- "shop_id",
- "uid",
- "time",
- "createTime",
- ];
- $this->_readonly = ['id'];
- $this->_create_autofill = [
- 'createTime' => time()
- ];
- parent::__construct($serviceDB);
- }
- }
|