1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- /**
- * Created by PhpStorm.
- * User: wxj
- * Date: 2020/3/11
- * Time: 16:17
- */
- 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',//int(11) NOT NULL AUTO_INCREMENT,
- 'enterpriseId',//int(11) NOT NULL COMMENT '企业id',
- 'receivedNo',// varchar(50) NOT NULL COMMENT '收款单编号',
- 'createTime',// int(11) DEFAULT NULL,
- ];
- $this->_readonly = ['id'];
- $this->_create_autofill = [
- //'createTime' => time()
- ];
- $this->_update_autofill = [
- //'updateTime' => time()
- ];
- parent::__construct($serviceDB);
- }
- }
|