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