_table = 'merchant_setting'; $this->_primary = 'id'; $this->_fields = [ "id", //int(10) NOT NULL AUTO_INCREMENT COMMENT '商户入驻设置表', "enterpriseId", //int(10) DEFAULT NULL COMMENT '企业id', "type", // tinyint(1) DEFAULT '4' COMMENT '设置类型 4:商户设置 5:入驻设置', "setting", //json DEFAULT NULL COMMENT '设置内容', "updateTime", //int(10) DEFAULT NULL COMMENT '修改时间', "createTime", //int(10) DEFAULT NULL COMMENT '创建时间', ]; $this->_readonly = ['id']; $this->_create_autofill = [ 'createTime' => time() ]; $this->_update_autofill = [ 'updateTime' => time() ]; parent::__construct($serviceDB); } }