12345678910111213141516171819202122232425262728293031323334 |
- <?php
- /**
- * 打卡时间模板
- * Created by PhpStorm.
- * User: wxj
- * Date: 2019/10/31
- * Time: 15:02
- */
- namespace JinDouYun\Dao\Shop;
- use JinDouYun\Dao\BaseDao;
- class DShopGroupRecord extends BaseDao
- {
- public function __construct($serviceDB = 'default')
- {
- $this->_table = 'shop_group_record';
- $this->_primary = 'id';
- $this->_fields = [
- 'id',// int unsigned NOT NULL AUTO_INCREMENT,
- 'group_id',// int NOT NULL,
- 'shop_id',// int NOT NULL,
- 'time',// int NOT NULL,
- 'createTime',// int NOT NULL,
- ];
- $this->_readonly = ['id'];
- $this->_create_autofill = [
- 'createTime' => time()
- ];
- parent::__construct($serviceDB);
- }
- }
|