1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- namespace JinDouYun\Dao\Finance;
- use JinDouYun\Dao\BaseDao;
- class DReceivedReceiptCheckQueue extends BaseDao
- {
- public function __construct($serviceDB = 'default')
- {
- $this->_table = 'received_receipt_check_queue';
- $this->_primary = 'id';
- $this->_fields = [
- 'id',
- 'enterpriseId',
- 'receivedNo',
- 'createTime',
- ];
- $this->_readonly = ['id'];
- $this->_create_autofill = [
-
- ];
- $this->_update_autofill = [
-
- ];
- parent::__construct($serviceDB);
- }
- }
|