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