_table = 'notice_setting'; $this->_primary = 'id'; $this->_fields = [ 'id',//int(11) NOT NULL AUTO_INCREMENT COMMENT 'id', 'content',//json DEFAULT NULL COMMENT '配置内容', 'enterpriseId', 'extend',//json DEFAULT NULL COMMENT '扩展字段', 'createTime',//int(11) DEFAULT NULL COMMENT '创建时间', 'updateTime',//int(11) DEFAULT NULL COMMENT '修改时间', ]; $this->_readonly = ['id']; $this->_create_autofill = [ 'createTime' => time() ]; $this->_update_autofill = [ 'updateTime' => time() ]; parent::__construct($serviceDB); } }