1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- namespace JinDouYun\Dao\Customer;
- use JinDouYun\Dao\BaseDao;
- class DShopCard extends BaseDao
- {
- public function __construct($serviceDB = 'default')
- {
- $this->_table = 'customer_card';
- $this->_primary = 'id';
- $this->_fields = [
- "id",
- "customer_id",
- "enterprise_id",
- "card_id",
- "status",
- "createTime",
- ];
- $this->_readonly = ['id'];
- $this->_create_autofill = [
- 'createTime' => time()
- ];
- parent::__construct($serviceDB);
- }
- }
|