_table = 'commission_desc'; $this->_primary = 'id'; $this->_fields = [ "enterpriseId", //int(10) NOT NULL COMMENT '企业id', "desc", //json DEFAULT NULL COMMENT '文字设置内容', "createTime", //int(10) DEFAULT NULL COMMENT '创建时间', "updateTime", //int(10) DEFAULT NULL COMMENT '修改时间', ]; $this->_readonly = ['id']; $this->_create_autofill = [ 'createTime' => time() ]; $this->_update_autofill = [ 'updateTime' => time() ]; parent::__construct($serviceDB); } }