12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- namespace JinDouYun\Dao\Customer;
- use JinDouYun\Dao\BaseDao;
- class DReflectDetail extends BaseDao
- {
- public function __construct($serviceDB = 'default')
- {
- $this->_table = 'qianniao_reflect_detail_1';
- $this->_primary = 'id';
- $this->_fields = [
- 'id',
- 'customerId',
- 'userCenterId',
- 'reflectType',
- 'money',
- 'reflectInfo',
- 'reflectStatus',
- 'auditStatus',
- 'createTime',
- 'updateTime',
- 'extend',
- ];
- $this->_readonly = ['id'];
- $this->_create_autofill = [
- 'createTime' => time()
- ];
- $this->_update_autofill = [
- 'updateTime' => time()
- ];
- parent::__construct($serviceDB);
- }
- }
|