1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- namespace Jobs\Dao;
- use Jobs\Dao\BaseDao;
- class DLog extends BaseDao
- {
- public function __construct($serviceDB = 'log')
- {
- $this->_table = 'log_2019_1';
- $this->_primary = 'id';
- $this->_fields = [
- 'id',
- 'enterpriseId',
- 'userCenterId',
- 'createTime',
- 'no',
- 'actionType',
- 'operationData',
- ];
- $this->_readonly = ['id'];
- $this->_create_autofill = [
- ];
- $this->_update_autofill = [
- ];
- parent::__construct($serviceDB);
- }
- }
|