_table = 'qianniao_pay_receipt_index_1'; $this->_primary = 'id'; $this->_fields = [ 'id',//int(11) NOT NULL AUTO_INCREMENT COMMENT '应收索引表id', 'payReceiptId',//int(11) NOT NULL COMMENT '应付单据id', 'createTime',//int(11) NOT NULL COMMENT '创建时间', 'updateTime',//int(11) NOT NULL COMMENT '修改时间', 'shopId',//int(11) DEFAULT NULL COMMENT '商铺id', 'financeTypeId',//tinyint(2) DEFAULT NULL COMMENT '财务类型id', 'financeType',//varchar(50) DEFAULT NULL COMMENT '财务类型名称', 'auditStatus',//tinyint(1) DEFAULT '1' COMMENT '应付单据状态(1未审核 2已审核)', 'customerId',//int(11) DEFAULT NULL COMMENT '客户id', 'sourceNo',//char(25) DEFAULT NULL COMMENT '源订单号', ]; $this->_readonly = ['id']; $this->_create_autofill = [ 'createTime' => time() ]; $this->_update_autofill = [ 'updateTime' => time() ]; parent::__construct($serviceDB); } }