加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
数据库文件.sql 301.18 KB
一键复制 编辑 原始数据 按行查看 历史
fierykylin 提交于 2019-10-12 14:40 . 更新数据库文件
/*
Navicat Premium Data Transfer
Source Server : 本地mysql
Source Server Type : MySQL
Source Server Version : 50724
Source Host : 127.0.0.1:3306
Source Schema : xadmin
Target Server Type : MySQL
Target Server Version : 50724
File Encoding : 65001
Date: 12/10/2019 14:07:45
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for auth_group
-- ----------------------------
DROP TABLE IF EXISTS `auth_group`;
CREATE TABLE `auth_group` (
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '主键',
`module` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'admin' COMMENT '所属模块',
`level` int(11) NOT NULL COMMENT '角色等级',
`title` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '用户组中文名称',
`status` tinyint(1) NOT NULL COMMENT '状态:为1正常,为0禁用',
`rules` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '用户组拥有的规则id, 多个规则\",\"隔开',
`notation` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '组别描述',
`pic` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '角色图标',
`recom` tinyint(1) NOT NULL DEFAULT 0 COMMENT '是否推荐首页显示',
`create_time` int(10) NOT NULL COMMENT '创建时间',
`update_time` int(10) NOT NULL COMMENT '编辑时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of auth_group
-- ----------------------------
INSERT INTO `auth_group` VALUES (1, 'admin', 1, '超级管理员', 1, '1,14,40,41,32,33,34,35,36,37,38,39,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,2,3,12,13,10,5,6,7,8,9,11,4,16,17,18,15,19,20,21,22,24,25,23,26,27,28,50,42,43,44,45,29,30,31,67,68', '后台超级管理员', NULL, 0, 1566739984, 1569737031);
-- ----------------------------
-- Table structure for auth_group_access
-- ----------------------------
DROP TABLE IF EXISTS `auth_group_access`;
CREATE TABLE `auth_group_access` (
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '主键',
`uid` int(11) UNSIGNED NOT NULL COMMENT '用户id',
`group_id` int(11) UNSIGNED NOT NULL COMMENT '用户组id',
`create_time` int(10) NULL DEFAULT NULL COMMENT '创建时间',
`update_time` int(10) NULL DEFAULT NULL COMMENT '编辑时间',
PRIMARY KEY (`id`) USING BTREE,
INDEX `uid`(`uid`) USING BTREE,
INDEX `group_id`(`group_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of auth_group_access
-- ----------------------------
INSERT INTO `auth_group_access` VALUES (1, 1, 1, NULL, NULL);
-- ----------------------------
-- Table structure for auth_rule
-- ----------------------------
DROP TABLE IF EXISTS `auth_rule`;
CREATE TABLE `auth_rule` (
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '主键',
`pid` int(11) UNSIGNED NOT NULL COMMENT '父id',
`module` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'admin' COMMENT '权限节点所属模块',
`level` tinyint(1) NULL DEFAULT NULL COMMENT '1-项目;2-模块;3-操作',
`name` varchar(80) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '规则唯一标识',
`title` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '规则中文名称',
`type` tinyint(1) NOT NULL DEFAULT 1,
`status` tinyint(1) NOT NULL DEFAULT 1 COMMENT '状态:为1正常,为0禁用',
`ismenu` tinyint(1) NOT NULL DEFAULT 0 COMMENT '是否导航',
`condition` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '规则表达式,为空表示存在就验证,不为空表示按照条件验证',
`icon` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '节点图标',
`sorts` mediumint(8) NULL DEFAULT 50 COMMENT '排序',
`create_time` int(10) NOT NULL COMMENT '创建时间',
`update_time` int(10) NOT NULL COMMENT '编辑时间',
`link` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '真实链接地址',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `name`(`name`) USING BTREE,
INDEX `pid`(`pid`) USING BTREE,
INDEX `module`(`module`) USING BTREE,
INDEX `level`(`level`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 69 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of auth_rule
-- ----------------------------
INSERT INTO `auth_rule` VALUES (1, 0, 'admin', 0, 'Index/index', '后台首页', 1, 1, 1, '', 'fa fa-home', 1, 1568170013, 1568864196, '/admin/index/index.html');
INSERT INTO `auth_rule` VALUES (2, 0, 'admin', 0, 'User', '用户角色权限管理', 1, 1, 1, '', 'fa fa-users', 100, 1568170013, 1568170280, '/admin/login/user.html');
INSERT INTO `auth_rule` VALUES (3, 2, 'admin', 2, 'User/index', '用户列表', 1, 1, 1, '', 'fa fa-user', 1, 1568170013, 1568170280, '/admin/user/index.html');
INSERT INTO `auth_rule` VALUES (4, 2, 'admin', 0, 'AuthGroup/index', '角色管理', 1, 1, 1, '', 'fa fa-user-circle-o', 100, 1568170013, 1568170280, '/admin/auth_group/index.html');
INSERT INTO `auth_rule` VALUES (5, 3, 'admin', 2, 'User/tree', '用户列表树', 1, 1, 0, NULL, '', 100, 1565694447, 1568170280, '/admin/user/tree.html');
INSERT INTO `auth_rule` VALUES (6, 3, 'admin', 2, 'User/password', '修改用户密码', 1, 1, 0, NULL, '', 100, 1565694529, 1568170280, '/admin/user/password.html');
INSERT INTO `auth_rule` VALUES (7, 3, 'admin', 2, 'User/ajax', 'ajax更新用户数据', 1, 1, 0, NULL, '', 100, 1565694623, 1568170280, '/admin/user/ajax.html');
INSERT INTO `auth_rule` VALUES (8, 3, 'admin', 2, 'User/authUser', '授权用户', 1, 1, 0, NULL, '', 100, 1566292846, 1568170280, '/admin/user/authuser.html');
INSERT INTO `auth_rule` VALUES (9, 3, 'admin', 3, 'User/Menu', '获取用户菜单', 1, 1, 0, NULL, '', 100, 1566729415, 1568170280, '/admin/user/menu.html');
INSERT INTO `auth_rule` VALUES (10, 3, 'admin', 3, 'User/authGroup', '授权角色', 1, 1, 0, '', '', 4, 1494660839, 1568170280, '/admin/user/authgroup.html');
INSERT INTO `auth_rule` VALUES (11, 3, 'admin', 3, 'User/add', '新增用户', 1, 1, 0, '', '', 100, 1568170013, 1568170281, '/admin/user/add.html');
INSERT INTO `auth_rule` VALUES (12, 3, 'admin', 3, 'User/edit', '编辑用户', 1, 1, 0, '', '', 2, 1568170013, 1568170281, '/admin/user/edit.html');
INSERT INTO `auth_rule` VALUES (13, 3, 'admin', 3, 'User/delete', '删除用户', 1, 1, 0, '', '', 3, 1568170013, 1568170281, '/admin/user/delete.html');
INSERT INTO `auth_rule` VALUES (14, 1, 'admin', 0, 'index/welcome', '欢迎页面', 1, 1, 1, NULL, 'layui-icon layui-icon-fire', 100, 1565692017, 1568170281, '/admin/index/welcome.html');
INSERT INTO `auth_rule` VALUES (15, 4, 'admin', 3, 'AuthGroup/add', '新增角色', 1, 1, 0, '', '', 100, 1568170013, 1568170281, '/admin/auth_group/add.html');
INSERT INTO `auth_rule` VALUES (16, 4, 'admin', 3, 'AuthGroup/edit', '编辑角色', 1, 1, 0, '', '', 2, 1568170013, 1568170281, '/admin/auth_group/edit.html');
INSERT INTO `auth_rule` VALUES (17, 4, 'admin', 3, 'AuthGroup/delete', '删除角色', 1, 1, 0, '', '', 3, 1568170013, 1568170281, '/admin/auth_group/delete.html');
INSERT INTO `auth_rule` VALUES (18, 4, 'admin', 3, 'AuthGroup/authUser', '授权用户', 1, 1, 0, '', '', 4, 1494585527, 1568170281, '/admin/auth_group/authuser.html');
INSERT INTO `auth_rule` VALUES (19, 4, 'admin', 3, 'AuthGroup/tree', '角色列表', 1, 1, 0, NULL, '', 100, 1565693932, 1568170281, '/admin/auth_group/tree.html');
INSERT INTO `auth_rule` VALUES (20, 4, 'admin', 3, 'authGroup/getUserRule', '获取选中的权限节点', 1, 1, 0, NULL, '', 100, 1565694039, 1568170281, '/admin/auth_group/getuserrule.html');
INSERT INTO `auth_rule` VALUES (21, 4, 'admin', 3, 'AuthGroup/ajax', 'ajax更新角色', 1, 1, 0, NULL, '', 100, 1565694098, 1568170281, '/admin/auth_group/ajax.html');
INSERT INTO `auth_rule` VALUES (22, 2, 'admin', 0, 'AuthRule/index', '管理员节点列表', 1, 1, 1, '', 'fa fa-usb', 100, 1568170014, 1568170281, '/admin/auth_rule/index.html');
INSERT INTO `auth_rule` VALUES (23, 22, 'admin', 3, 'AuthRule/add', '新增管理员节点', 1, 1, 0, '', '', 100, 1568170014, 1568170281, '/admin/auth_rule/add.html');
INSERT INTO `auth_rule` VALUES (24, 22, 'admin', 3, 'AuthRule/edit', '编辑管理员节点', 1, 1, 0, '', '', 2, 1568170014, 1568170281, '/admin/auth_rule/edit.html');
INSERT INTO `auth_rule` VALUES (25, 22, 'admin', 3, 'AuthRule/delete', '删除管理员节点', 1, 1, 0, '', '', 3, 1568170014, 1568170281, '/admin/auth_rule/delete.html');
INSERT INTO `auth_rule` VALUES (26, 22, 'admin', 2, 'AuthRule/tree', '节点树(添加角色时调用)', 1, 1, 0, NULL, '', 100, 1566926736, 1568170281, '/admin/auth_rule/tree.html');
INSERT INTO `auth_rule` VALUES (27, 22, 'admin', 0, 'AuthRule/tree2', '节点管理json', 1, 1, 0, NULL, '', 100, 1566954943, 1568170281, '/admin/auth_rule/tree2.html');
INSERT INTO `auth_rule` VALUES (28, 22, 'admin', 1, 'AuthRule/ajax', 'ajax更新数据', 1, 1, 0, NULL, '', 100, 1566972877, 1568170281, '/admin/auth_rule/ajax.html');
INSERT INTO `auth_rule` VALUES (29, 0, 'admin', 1, 'Admin/Config/index', '常规配置', 1, 1, 1, NULL, 'fa fa-cogs fa-fw', 1001, 1567525022, 1568170014, '/Admin/config/index.html');
INSERT INTO `auth_rule` VALUES (30, 29, 'admin', 1, 'Site/index', '站点配置', 1, 1, 1, NULL, 'fa fa-sitemap', 100, 1567525298, 1568170281, '/admin/site/index.html');
INSERT INTO `auth_rule` VALUES (31, 30, 'admin', 2, 'site/edit', '编辑站点信息', 1, 1, 0, NULL, '', 100, 1567750916, 1568170281, '/admin/site/edit.html');
INSERT INTO `auth_rule` VALUES (32, 0, 'admin', 0, 'admin/nav/index', '导航栏管理', 1, 1, 1, NULL, 'fa fa-navicon', 51, 1567756928, 1568170014, '/admin/nav/index.html');
INSERT INTO `auth_rule` VALUES (33, 32, 'admin', 1, 'nav/index', '导航栏列表', 1, 1, 1, NULL, 'fa fa-th-large', 100, 1567757105, 1568170281, '/admin/nav/index.html');
INSERT INTO `auth_rule` VALUES (34, 32, 'admin', 1, 'nav/add', '添加导航栏', 1, 1, 0, NULL, '', 100, 1567757236, 1568170281, '/admin/nav/add.html');
INSERT INTO `auth_rule` VALUES (35, 32, 'admin', 1, 'nav/edit', '编辑导航栏', 1, 1, 0, NULL, '', 100, 1567757267, 1568170281, '/admin/nav/edit.html');
INSERT INTO `auth_rule` VALUES (36, 32, 'admin', 1, 'nav/delete', '删除导航栏', 1, 1, 0, NULL, '', 100, 1567757304, 1568170281, '/admin/nav/delete.html');
INSERT INTO `auth_rule` VALUES (37, 32, 'admin', 1, 'nav/ajax', 'ajax更新导航栏', 1, 1, 0, NULL, '', 100, 1567757336, 1568170281, '/admin/nav/ajax.html');
INSERT INTO `auth_rule` VALUES (38, 32, 'admin', 1, 'nav/tree', '导航栏json树', 1, 1, 0, NULL, '', 100, 1567757390, 1568170281, '/admin/nav/tree.html');
INSERT INTO `auth_rule` VALUES (39, 32, 'admin', 1, 'nav/tree2', '导航栏首页节点树json', 1, 1, 0, NULL, '', 100, 1567758935, 1568170281, '/admin/nav/tree2.html');
INSERT INTO `auth_rule` VALUES (40, 1, 'admin', 0, 'admin/index/welcome', '首页管理', 1, 1, 1, NULL, 'layui-icon layui-icon-home', 100, 1567763830, 1568170014, '/admin/index/welcome.html');
INSERT INTO `auth_rule` VALUES (41, 40, 'admin', 1, 'admin/banner/index', '首页轮播图', 1, 1, 1, NULL, 'fa fa-picture-o', 100, 1567764188, 1568170014, '/admin/banner/index.html');
INSERT INTO `auth_rule` VALUES (42, 2, 'admin', 1, 'admin/automatic/index', '权限节点生成器', 1, 1, 1, NULL, 'fa fa-exchange', 100, 1568168203, 1568170014, '/admin/automatic/index.html');
INSERT INTO `auth_rule` VALUES (43, 42, 'admin', 0, 'automatic/index', '节点生成器首页', 1, 1, 0, NULL, '', 100, 1568168873, 1568170281, '/admin/automatic/index.html');
INSERT INTO `auth_rule` VALUES (44, 42, 'admin', 2, 'Automatic/query', '获取控制器的节点', 1, 1, 0, NULL, '', 100, 1568183469, 1568183469, '/admin/automatic/query.html');
INSERT INTO `auth_rule` VALUES (45, 42, 'admin', 2, 'Automatic/add', '批量添加提交', 1, 1, 0, NULL, '', 100, 1568215889, 1568215889, '/admin/automatic/add.html');
INSERT INTO `auth_rule` VALUES (50, 22, 'admin', NULL, 'admin/AuthRule/copy', '插入复制新节点', 1, 1, 0, NULL, NULL, 100, 1568222115, 1568222115, '/admin/auth_rule/copy.html');
INSERT INTO `auth_rule` VALUES (51, 32, 'admin', NULL, 'admin/Nav/copy', '复制导航栏', 1, 1, 0, NULL, NULL, 100, 1569289252, 1569289252, '/admin/nav/copy.html');
INSERT INTO `auth_rule` VALUES (52, 0, 'admin', 1, 'admin/news/index', '资讯管理', 1, 1, 1, NULL, 'fa fa-newspaper-o', 51, 1569290751, 1569290751, '/admin/news/index.html');
INSERT INTO `auth_rule` VALUES (53, 52, 'admin', 1, 'News/index', '资讯列表', 1, 1, 1, NULL, 'fa fa-book', 100, 1569290882, 1569290882, '/admin/news/index.html');
INSERT INTO `auth_rule` VALUES (54, 53, 'admin', NULL, 'admin/News/add', '添加资讯', 1, 1, 0, NULL, NULL, 100, 1569291489, 1569291489, '/admin/news/add.html');
INSERT INTO `auth_rule` VALUES (55, 53, 'admin', NULL, 'admin/News/tree', '首页资讯树', 1, 1, 0, NULL, NULL, 100, 1569291489, 1569291489, '/admin/news/tree.html');
INSERT INTO `auth_rule` VALUES (56, 53, 'admin', NULL, 'admin/News/edit', '修改资讯', 1, 1, 0, NULL, NULL, 100, 1569291489, 1569291489, '/admin/news/edit.html');
INSERT INTO `auth_rule` VALUES (57, 53, 'admin', NULL, 'admin/News/ajax', 'ajax更新资讯', 1, 1, 0, NULL, NULL, 100, 1569291489, 1569291489, '/admin/news/ajax.html');
INSERT INTO `auth_rule` VALUES (58, 53, 'admin', NULL, 'admin/News/delete', '删除资讯', 1, 1, 0, NULL, NULL, 100, 1569291489, 1569291489, '/admin/news/delete.html');
INSERT INTO `auth_rule` VALUES (59, 52, 'admin', 1, 'newsCategory/index', '资讯分类管理', 1, 1, 1, NULL, ' fa fa-asterisk', 100, 1569294920, 1569294920, '/admin/news_category/index.html');
INSERT INTO `auth_rule` VALUES (60, 59, 'admin', NULL, 'admin/NewsCategory/tree2', '分类首页节点树2', 1, 1, 0, NULL, NULL, 100, 1569295056, 1569295056, '/admin/news_category/tree2.html');
INSERT INTO `auth_rule` VALUES (61, 59, 'admin', NULL, 'admin/NewsCategory/tree', '分类首页节点树', 1, 1, 0, NULL, NULL, 100, 1569295056, 1569295056, '/admin/news_category/tree.html');
INSERT INTO `auth_rule` VALUES (62, 59, 'admin', NULL, 'admin/NewsCategory/add', '添加资讯分类', 1, 1, 0, NULL, NULL, 100, 1569295056, 1569295056, '/admin/news_category/add.html');
INSERT INTO `auth_rule` VALUES (63, 59, 'admin', NULL, 'admin/NewsCategory/copy', '复制资讯分类', 1, 1, 0, NULL, NULL, 100, 1569295056, 1569295056, '/admin/news_category/copy.html');
INSERT INTO `auth_rule` VALUES (64, 59, 'admin', NULL, 'admin/NewsCategory/edit', '编辑资讯分类', 1, 1, 0, NULL, NULL, 100, 1569295056, 1569295056, '/admin/news_category/edit.html');
INSERT INTO `auth_rule` VALUES (65, 59, 'admin', NULL, 'admin/NewsCategory/delete', '删除资讯分类', 1, 1, 0, NULL, NULL, 100, 1569295056, 1569295056, '/admin/news_category/delete.html');
INSERT INTO `auth_rule` VALUES (66, 59, 'admin', NULL, 'admin/NewsCategory/ajax', 'ajax更新资讯分类', 1, 1, 0, NULL, NULL, 100, 1569295056, 1569295056, '/admin/news_category/ajax.html');
INSERT INTO `auth_rule` VALUES (67, 29, 'admin', NULL, 'admin/Configs/index', '网站配置', 1, 1, 1, NULL, 'fa fa-cog', 100, 1569736984, 1569736984, '/admin/configs/index.html');
INSERT INTO `auth_rule` VALUES (68, 67, 'admin', NULL, 'admin/Configs/edit', '更新网站配置', 1, 1, 0, NULL, NULL, 100, 1569737031, 1569737031, '/admin/configs/edit.html');
-- ----------------------------
-- Table structure for configs
-- ----------------------------
DROP TABLE IF EXISTS `configs`;
CREATE TABLE `configs` (
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '主键',
`key` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '键',
`value` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '值',
`type` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '类型',
`desc` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '描述',
PRIMARY KEY (`id`) USING BTREE,
INDEX `k`(`key`) USING BTREE,
INDEX `type`(`type`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 30 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of configs
-- ----------------------------
INSERT INTO `configs` VALUES (1, 'person', '火麒麟', 'site', '站长');
INSERT INTO `configs` VALUES (2, 'desc', '思议岁月的个人网站', 'site', '网站描述');
INSERT INTO `configs` VALUES (3, 'addr', '联系地址', 'site', '联系地址');
INSERT INTO `configs` VALUES (4, 'keyword', '思议岁月,个人博客', 'site', '网站关键字');
INSERT INTO `configs` VALUES (5, 'title', '网站名称', 'site', '网站名称');
INSERT INTO `configs` VALUES (6, 'copyright', '网站版权', 'site', '网站版权');
INSERT INTO `configs` VALUES (7, 'logo', '/uploads/site_logo/20190930\\32378a6594a3739041749c5ee3ef2acb.png', 'site', '网站LOGO');
INSERT INTO `configs` VALUES (9, 'image_ext', 'jpg,gif,jpeg,png,bmp', 'up', '上传图片格式');
INSERT INTO `configs` VALUES (10, 'email', '997707514@qq.com', 'site', '网站邮箱');
INSERT INTO `configs` VALUES (11, 'record_no', '备案号', 'site', '备案号');
INSERT INTO `configs` VALUES (12, 'record_no2', '公安备案号', 'site', '公安备案');
INSERT INTO `configs` VALUES (13, 'image_size', '100', 'up', '上传图片的大小');
INSERT INTO `configs` VALUES (14, 'watermark_swich', '0', 'up', '水印开关 0=》关闭水印 1=>开启水印');
INSERT INTO `configs` VALUES (15, 'watermark_url', '/uploads/watermark/20190930\\acf1e0da53f96d4160180f5d4fe42f88.png', 'up', '水印图片地址');
INSERT INTO `configs` VALUES (25, 'image_zip_status', '1', 'up', '是否压缩图片 0=》不压缩 1=》压缩');
INSERT INTO `configs` VALUES (26, 'image_zip_quality', '70', 'up', '图片压缩质量1~99之间,建议70-99范围内');
INSERT INTO `configs` VALUES (27, 'image_zip_width', '700', 'up', '原图尺寸压缩至所填尺寸宽度,尺寸为0则维持原图片尺寸');
INSERT INTO `configs` VALUES (28, 'image_original_status', '0', 'up', '保存原始图片 0=》不保存 1=》保存');
INSERT INTO `configs` VALUES (29, 'image_zip_height', '0', 'up', '原图尺寸压缩至所填尺寸高度,尺寸为0则维持原图片尺寸');
-- ----------------------------
-- Table structure for nav
-- ----------------------------
DROP TABLE IF EXISTS `nav`;
CREATE TABLE `nav` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '名字',
`url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '导航栏跳转地址',
`sorts` int(4) NOT NULL DEFAULT 99 COMMENT '排序',
`pid` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '父id',
`create_time` int(11) NULL DEFAULT NULL COMMENT '创建时间',
`update_time` int(11) NULL DEFAULT NULL COMMENT '更新时间',
`status` tinyint(1) NULL DEFAULT NULL COMMENT '显示状态',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 42 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of nav
-- ----------------------------
INSERT INTO `nav` VALUES (1, '场馆概况', 'javascript;:', 100, '0', 1567761128, 1568854100, 1);
INSERT INTO `nav` VALUES (2, '简介', '', 100, '1', 1567761512, 1568771167, 1);
INSERT INTO `nav` VALUES (3, '内设机构', '', 100, '1', 1567762086, 1567762086, 1);
INSERT INTO `nav` VALUES (4, '楼层导览', '', 100, '1', 1567762101, 1567762101, 1);
INSERT INTO `nav` VALUES (5, '荣誉榜', '', 100, '1', 1567762109, 1567762109, 1);
INSERT INTO `nav` VALUES (6, '展览内容', '', 100, '0', 1567762118, 1568854103, 1);
INSERT INTO `nav` VALUES (7, '常设展览', '', 100, '6', 1567762127, 1567762127, 1);
INSERT INTO `nav` VALUES (8, '短期展览', '', 100, '6', 1567762134, 1567762134, 1);
INSERT INTO `nav` VALUES (9, '科普大篷车', '', 100, '6', 1567762149, 1567762149, 1);
INSERT INTO `nav` VALUES (10, '虚拟游览', '', 100, '6', 1567762156, 1567762156, 1);
INSERT INTO `nav` VALUES (11, '4D动感影院', '', 100, '6', 1567762163, 1567762163, 1);
INSERT INTO `nav` VALUES (12, '天象馆球幕影院', '', 100, '6', 1567762170, 1567762170, 1);
INSERT INTO `nav` VALUES (13, '科教活动', '', 100, '0', 1567762177, 1568854104, 1);
INSERT INTO `nav` VALUES (14, '学术研讨', '', 100, '13', 1567762182, 1567762182, 1);
INSERT INTO `nav` VALUES (15, '科技培训', '', 100, '13', 1567762191, 1567762191, 1);
INSERT INTO `nav` VALUES (16, '科普数字资源', '', 100, '13', 1567762198, 1567762198, 1);
INSERT INTO `nav` VALUES (17, '夏冬令营', '', 100, '13', 1567762214, 1567762214, 1);
INSERT INTO `nav` VALUES (18, '活动预告', '', 100, '13', 1567762221, 1567762221, 1);
INSERT INTO `nav` VALUES (19, '服务中心', '', 100, '0', 1567762241, 1567762241, 1);
INSERT INTO `nav` VALUES (20, '观众指南', '', 100, '19', 1567762248, 1567762248, 1);
INSERT INTO `nav` VALUES (21, '交通信息', '', 100, '19', 1567762253, 1567762253, 1);
INSERT INTO `nav` VALUES (22, '科技馆通告', '', 100, '19', 1567762258, 1567762258, 1);
INSERT INTO `nav` VALUES (23, '意见反馈', '', 100, '19', 1567762265, 1567762265, 1);
INSERT INTO `nav` VALUES (24, '新闻动态', '', 100, '0', 1567762274, 1567762274, 1);
INSERT INTO `nav` VALUES (25, '科技新闻', '', 100, '24', 1567762280, 1567762280, 1);
INSERT INTO `nav` VALUES (26, '科普活动新闻', '', 100, '24', 1567762287, 1567762287, 1);
INSERT INTO `nav` VALUES (27, '工作动态', '', 100, '24', 1567762294, 1567762294, 1);
INSERT INTO `nav` VALUES (28, '馆际交流', '', 100, '24', 1567762301, 1567762301, 1);
INSERT INTO `nav` VALUES (29, '预约服务', '', 100, '0', 1567762310, 1567762310, 1);
INSERT INTO `nav` VALUES (30, '个人预约', '', 100, '29', 1567762316, 1567762316, 1);
INSERT INTO `nav` VALUES (31, '团体预约', '', 100, '29', 1567762323, 1567762323, 1);
INSERT INTO `nav` VALUES (32, '志愿者', '', 100, '0', 1567762330, 1567762330, 1);
INSERT INTO `nav` VALUES (33, '志愿者招募通告', '', 100, '32', 1567762337, 1567762337, 1);
INSERT INTO `nav` VALUES (34, '志愿者活动', '', 100, '32', 1567762370, 1567762370, 1);
INSERT INTO `nav` VALUES (35, '志愿者风采', '', 100, '32', 1567762379, 1567762379, 1);
INSERT INTO `nav` VALUES (36, '关于我们', '/', 100, '0', 1567762386, 1569718097, 1);
INSERT INTO `nav` VALUES (37, '员工风采', '', 100, '36', 1567762392, 1567762392, 1);
INSERT INTO `nav` VALUES (38, '党务工作', '', 100, '36', 1567762397, 1567762397, 1);
INSERT INTO `nav` VALUES (39, '工会活动', 'javascript:;', 100, '36', 1567762427, 1569717992, 1);
INSERT INTO `nav` VALUES (40, '测试', '、', 100, '0', 1569720662, 1569720662, 1);
INSERT INTO `nav` VALUES (41, '测试子节点', '啊啊啊啊啊啊', 100, '40', 1569720688, 1569720688, 1);
-- ----------------------------
-- Table structure for news
-- ----------------------------
DROP TABLE IF EXISTS `news`;
CREATE TABLE `news` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`news_category_id` int(11) NULL DEFAULT NULL COMMENT '资讯分类id',
`cover` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '封面',
`title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '标题',
`abstract` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '摘要',
`content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '内容',
`top` tinyint(1) NULL DEFAULT NULL COMMENT '置顶',
`recommend` tinyint(1) NULL DEFAULT NULL COMMENT '推荐',
`hot` tinyint(1) NULL DEFAULT NULL COMMENT '热门',
`browse` int(11) NULL DEFAULT NULL COMMENT '浏览量',
`create_time` int(11) NULL DEFAULT NULL COMMENT '创建时间',
`update_time` int(11) NULL DEFAULT NULL COMMENT '更新时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 33 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of news
-- ----------------------------
INSERT INTO `news` VALUES (1, 2, '/uploads/20190909\\7226731695a1d9e81026db14f0b80df2.png', '简介', NULL, '<p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 35px; text-indent: 50px;\">武汉科技馆1990年3月对外开放,2006年改扩建后重新开放。作为全国科普教育基地、先进科技馆、国家级4A级旅游景区,武汉市青少年科技、学生校外、爱国主义教育基地,武汉科技馆一直致力于以集科学性、知识性和趣味性于一体的常设展览和科普展教活动、科技交流等形式,面向社会公众传播和普及科学文化知识,为提高公众科学素质做出了有益的贡献。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 35px; text-indent: 50px;\">2015年12月28日,武汉科技馆新馆建成开馆。新馆是我市着力打造的“江汉朝宗”文化旅游景区群众的重要组成部分,是一座集多功能、综合性、智能化于一体的特大型科普教育活动场所。大楼由原武汉客运港改造而成,总建筑面积约3万平方米。新馆分设“自然板块”的宇宙、生命、水展厅,“创造板块”的光、信息、交通展厅,另设了数学、儿童展厅,并联合有关单位打造室外“舰船世界”展区。新馆展品数量达600余件,其中创新展品占展品总数的40%以上,还有选择的从国外采购一批经典展品。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 35px; text-indent: 50px;\">在武汉科技馆,我们为您营造了体验科学、启迪创新的环境,您可以学习科学知识、了解科技发展的最新成就、领略科技对生活的影响、展望科技创造的未来……无论在武汉科技馆,还是在它的网站,如果您能感受到参观和浏览的乐趣,感受到科技的美好神奇,如果您能有所学习、思考,如果您能由思考而带来方法领悟、智慧启迪,不断增强创新意识和创新精神,最大限度地发掘自己的创造潜能,那将是我们最大的欣慰和满足。&nbsp;</p><div><br></div>', 0, 0, 0, 998, 1568016586, 1568016586);
INSERT INTO `news` VALUES (4, 4, '/uploads/20190909\\0bd2179ba450655a225603c1eb9d5504.png', '楼层导览', NULL, '<div><br></div><div><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;\"><br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;\"><img src=\"http://www.whstm.org.cn/u/cms/www/201603/18115322oi2k.png\" title=\"20160116132835_410.png\" style=\"box-sizing: border-box; border-width: 0px; border-style: initial; outline: 0px; background: transparent; max-width: 100%;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;\"><br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;\"><br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;\"><img src=\"http://www.whstm.org.cn/u/cms/www/201603/18115336s2iy.png\" title=\"20160116132832_573.png\" style=\"box-sizing: border-box; border-width: 0px; border-style: initial; outline: 0px; background: transparent; max-width: 100%;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;\"><br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;\"><br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;\"><img src=\"http://www.whstm.org.cn/u/cms/www/201603/18115348vlyi.png\" title=\"20160116132831_158.png\" style=\"box-sizing: border-box; border-width: 0px; border-style: initial; outline: 0px; background: transparent; max-width: 100%;\"></p></div>', 0, 0, 0, 0, 1568016798, 1568016798);
INSERT INTO `news` VALUES (5, 5, '/uploads/20190909\\97101438238bf17e6ae40f013a4c4bae.png', '武 汉 科 技 馆 荣 誉 榜', NULL, '<div><br></div><div><table class=\"table\" style=\"box-sizing: border-box; margin-bottom: 20px; border: 0px; outline: 0px; font-size: 14px; background: rgb(255, 255, 255); border-spacing: 0px; width: 649px; max-width: 100%; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;\"><tbody style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\"><tr class=\"firstRow\" style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent; height: 31px;\"><td width=\"418\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-color: windowtext; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top; word-break: break-all;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">荣誉名称</p></td><td width=\"100\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-left-style: none; border-color: windowtext windowtext windowtext black; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top; word-break: break-all;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">授予年份</p></td><td width=\"411\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-left-style: none; border-color: windowtext windowtext windowtext black; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">授予单位</p></td></tr><tr style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent; height: 20px;\"><td width=\"418\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: windowtext; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top; word-break: break-all;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">2013-2014年度市级文明单位</p></td><td width=\"107\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-left-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: black; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">2015</p></td><td width=\"411\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-left-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: black; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">中共市委、武汉市人民政府</p></td></tr><tr style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent; height: 20px;\"><td width=\"418\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: windowtext; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">2013-2014年度区最佳文明单位</p></td><td width=\"107\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-left-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: black; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">2015</p></td><td width=\"411\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-left-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: black; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">中共江岸区委、区政府</p></td></tr><tr style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent; height: 20px;\"><td width=\"418\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: windowtext; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">第二届(2015)湖北省妇女儿童服务业博览会最佳公益风尚奖</p></td><td width=\"107\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-left-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: black; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">2015</p></td><td width=\"411\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-left-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: black; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">湖北省妇女儿童服务业博览会组委会</p></td></tr><tr style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent; height: 27px;\"><td width=\"418\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: windowtext; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">2015-2019全国科普教育基地称号</p></td><td width=\"107\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-left-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: black; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">2015</p></td><td width=\"411\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-left-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: black; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">中国科学技术协会</p></td></tr><tr style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent; height: 27px;\"><td width=\"418\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: windowtext; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">武汉科技馆展教部工人先锋号</p></td><td width=\"107\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-left-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: black; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">2015</p></td><td width=\"411\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-left-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: black; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">武汉市总工会</p></td></tr><tr style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent; height: 27px;\"><td width=\"418\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: windowtext; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">全市“三万”活动工作突出工作组</p></td><td width=\"107\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-left-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: black; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">2015</p></td><td width=\"411\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-left-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: black; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">中共武汉市委办公室、武汉市人民政府办公厅</p></td></tr><tr style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent; height: 27px;\"><td width=\"418\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: windowtext; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">五四红旗团支部(总支)</p></td><td width=\"107\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-left-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: black; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">2015</p></td><td width=\"411\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-left-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: black; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">共青团武汉市委市直机关工作委员会</p></td></tr><tr style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent; height: 23px;\"><td width=\"418\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: windowtext; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">绿化先进单位</p></td><td width=\"107\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-left-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: black; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">2015</p></td><td width=\"411\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-left-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: black; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">江岸区绿化委员会</p></td></tr><tr style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent; height: 27px;\"><td width=\"418\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: windowtext; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">2014年度综治工作优胜单位</p></td><td width=\"107\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-left-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: black; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">2015</p></td><td width=\"411\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-left-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: black; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">江岸区二七街综治委</p></td></tr><tr style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent; height: 25px;\"><td width=\"418\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: windowtext; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">武汉市市直机关女职工排舞比赛(甲组)最佳表演铜将</p></td><td width=\"107\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-left-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: black; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">2015</p></td><td width=\"411\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-left-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: black; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">中共武汉市委市直机关工作委员会</p></td></tr><tr style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent; height: 27px;\"><td width=\"418\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: windowtext; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">中国自然科学博物馆协会理事单位</p></td><td width=\"107\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-left-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: black; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">2014</p></td><td width=\"411\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-left-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: black; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">中国自然科学博物馆协会</p></td></tr><tr style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent; height: 27px;\"><td width=\"418\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: windowtext; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">全国高层次科普专门人才培养实践基地</p></td><td width=\"107\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-left-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: black; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">2014</p></td><td width=\"411\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-left-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: black; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">全国高层次科普专门人才培养指导委员会、中国科协科普部</p></td></tr><tr style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent; height: 27px;\"><td width=\"418\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: windowtext; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">全市“万民干部进万村惠万民”活动工作突出工作组</p></td><td width=\"107\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-left-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: black; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">2014</p></td><td width=\"411\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-left-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: black; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">中共武汉市委办公厅、武汉市人民政府办公厅</p></td></tr><tr style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent; height: 27px;\"><td width=\"418\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: windowtext; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">2013年度二七街安全生产优秀单位</p></td><td width=\"107\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-left-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: black; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">2014</p></td><td width=\"411\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-left-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: black; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">江岸区二七街社会管理综合治理委员会办公室</p></td></tr><tr style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent; height: 27px;\"><td width=\"418\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: windowtext; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">第29届全国青少年科技创新大赛基层赛事优秀组织单位</p></td><td width=\"107\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-left-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: black; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">2014</p></td><td width=\"411\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-left-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: black; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">第29届全国青少年科技创新大赛组委会、中国科协青少年科技中心</p></td></tr><tr style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent; height: 25px;\"><td width=\"418\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: windowtext; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">武汉科技馆展教部在2014年度“七一”表彰中评为党员示范岗</p></td><td width=\"107\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-left-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: black; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">2014</p></td><td width=\"411\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-left-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: black; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">市科协机关党委</p></td></tr><tr style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent; height: 27px;\"><td width=\"418\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: windowtext; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">馆团支部获2013年度市直机关共青团工作先进单位</p></td><td width=\"107\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-left-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: black; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">2014</p></td><td width=\"411\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-left-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: black; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">共青团武汉市直属机关工作委员会</p></td></tr><tr style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent; height: 27px;\"><td width=\"418\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: windowtext; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">2013年度人口计划生育优胜单位</p></td><td width=\"107\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-left-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: black; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">2014</p></td><td width=\"411\" valign=\"center\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-left-style: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: black; outline: 0px; background: transparent; line-height: 1.42857; vertical-align: top; word-break: break-all;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">中共江岸区委二七街工作委员会、江岸区人民政府二七街办事处</p></td></tr></tbody></table></div>', 0, 0, 0, 0, 1568016927, 1568016927);
INSERT INTO `news` VALUES (6, 8, '/uploads/20190909\\f375991bae526fe56760d37e59ae9628.jpg', '“罗马帝国——机械与科技展”亮相武汉科技馆', NULL, '<p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 17.5px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2017年10月20日,“罗马帝国——机械与科技展”在武汉科技馆正式亮相,为您全景式地呈现罗马帝国的科技成就和文明风貌。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 17.5px; text-indent: 37px;\">罗马帝国于公元前9世纪初兴起于意大利半岛中部,随后以其强大的军事实力为支撑,不断对外扩张,在公元1世纪前后,建立起横跨欧亚非三大洲的庞大帝国,雄踞西方,盛极一时。强大的军事机器和先进的科技成就是缔造罗马帝国的重要基础,罗马帝国在历代杰出领袖的经营下日益壮大,成为当时世界上最强盛的国家之一,在政治、经济、科技、文化等领域都取得了令人瞩目的成果,并对世界格局的发展产生了深远影响。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 17.5px; text-indent: 37px;\">“罗马帝国——机械与科技展”分为“导论·罗马帝王”、“军事机械”、“工程机械”和“罗马人的生活”四个展区,分别展示了气势磅礴的罗马帝王头像、高度还原的军事机械装备、精巧仿制的工程技术展品以及丰富多样的生活娱乐内容,每件互动机械展品均可实际操作。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 17.5px; text-indent: 37px;\">本次参展的展品由意大利Niccolai工匠家族依据罗马学者维特鲁威《建筑十书》的记载,以及最新的考古发现精心制作而成,于2010年首次在意大利展出,产生轰动效应,佳评如潮,一举斩获意大利罗马文明博物馆金奖的殊荣。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 17.5px; text-indent: 37px;\">武汉科技馆此次引进该展览,除了展示60件(套)与罗马帝国相关的雕塑头像、机械构件、建筑模型之外,还将穿插多媒体投影视频,为观众带来一场耳目一新的时空之旅。展览以罗马帝王为引论,通过精美的展品,将罗马帝国的科技、军事、民生等串联起来,勾勒出一幅幅壮阔的图景,希望观众在了解罗马帝国辉煌科技成就的同时,认识到发展科技、走科技强国之路的重要性和必要性。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 17.5px; text-indent: 37px;\">展览于2017年10月20日在武汉科技馆专题展厅免费对外开放,展期两个月。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-align: center;\"><img title=\"1.jpg\" src=\"http://www.whstm.org.cn/u/cms/www/201710/20143041tish.jpg\" style=\"box-sizing: border-box; border-width: 0px; border-style: initial; outline: 0px; background: transparent; max-width: 100%; float: none;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-align: center;\"><img title=\"2.jpg\" src=\"http://www.whstm.org.cn/u/cms/www/201710/20143041mzub.jpg\" style=\"box-sizing: border-box; border-width: 0px; border-style: initial; outline: 0px; background: transparent; max-width: 100%; float: none;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-align: center;\"><img title=\"3.jpg\" src=\"http://www.whstm.org.cn/u/cms/www/201710/20143041vw0e.jpg\" style=\"box-sizing: border-box; border-width: 0px; border-style: initial; outline: 0px; background: transparent; max-width: 100%; float: none;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-align: center;\"><img title=\"4.jpg\" src=\"http://www.whstm.org.cn/u/cms/www/201710/20143041mfz8.jpg\" style=\"box-sizing: border-box; border-width: 0px; border-style: initial; outline: 0px; background: transparent; max-width: 100%; float: none;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-align: center;\"><img title=\"5.jpg\" src=\"http://www.whstm.org.cn/u/cms/www/201710/201430412je2.jpg\" style=\"box-sizing: border-box; border-width: 0px; border-style: initial; outline: 0px; background: transparent; max-width: 100%; float: none;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-align: center;\"><img title=\"6.jpg\" src=\"http://www.whstm.org.cn/u/cms/www/201710/2014304193dv.jpg\" style=\"box-sizing: border-box; border-width: 0px; border-style: initial; outline: 0px; background: transparent; max-width: 100%; float: none;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-align: center;\"><img title=\"7.jpg\" src=\"http://www.whstm.org.cn/u/cms/www/201710/20143041o870.jpg\" style=\"box-sizing: border-box; border-width: 0px; border-style: initial; outline: 0px; background: transparent; max-width: 100%; float: none;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-align: center;\"><img title=\"8.jpg\" src=\"http://www.whstm.org.cn/u/cms/www/201710/20143041s6z8.jpg\" style=\"box-sizing: border-box; border-width: 0px; border-style: initial; outline: 0px; background: transparent; max-width: 100%; float: none;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;\">&nbsp;</p>', 0, 0, 0, 0, 1568017075, 1568017075);
INSERT INTO `news` VALUES (7, 9, '/uploads/20190909\\c431dbedc9d03a1d3d229d4bcc5eb140.jpg', '科普大篷车4月校园展风采', NULL, '<p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 32px;\">为了向广大师生宣传普及科技知识,培养学生勤动手、善动脑、爱科学、 乐创造的科学素养和实践能力,落实学校共享科技,我馆联合红领巾第二小学、武汉一中高中部、取水楼小学、青山区红钢城小学以及工科院社区在4月份开展科普大篷车进校园宣传活动。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 0em; text-align: center;\"><img src=\"http://www.whstm.org.cn/u/cms/www/201805/091537239hxu.jpg\" title=\"+微信图片_20180508163242.jpg\" style=\"box-sizing: border-box; border-width: 0px; border-style: initial; outline: 0px; background: transparent; max-width: 100%;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 32px;\">本次“科普大篷车”进校园,现场展出了多种科普仪器以及作品展板,涉及到物理学、光学、数学、电磁技术等多门学科知识,有锥体上滚、记忆金属花、潜望镜、最速降线、混沌摆、数学智能玩具等20多件科普设备。同学们围在科普展品前,或细心观察,或动手操作,或潜心研究,产生了浓厚的兴趣。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 0em; text-align: center;\"><img src=\"http://www.whstm.org.cn/u/cms/www/201805/09153743qzir.jpg\" title=\"+initpintu_副本.jpg\" style=\"box-sizing: border-box; border-width: 0px; border-style: initial; outline: 0px; background: transparent; max-width: 100%;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 32px;\">学生们纷纷表示:“科技实在太神奇了,真是大开眼界,希望科普大篷车能常来我们学校”,还有同学参观后表示:“本次参观科普大篷车,使我受益匪浅,我一定好好学习科学知识,以后长大也要发明创造一些高科技的东西,为祖国的繁荣富强贡献出自己的一份力量。”</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 0em; text-align: center;\"><img src=\"http://www.whstm.org.cn/u/cms/www/201805/0915375963ob.jpg\" title=\"+initpintu_副本2.jpg\" style=\"box-sizing: border-box; border-width: 0px; border-style: initial; outline: 0px; background: transparent; max-width: 100%;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 32px;\">此次开展科普大篷车进校园宣传活动,取得圆满成功。该活动对中小学生爱科学、学科学、用科学的兴趣培养起到了良好的推动作用。同时提高了孩子们勤动手、善动脑、乐创造的科学素养和实践能力。弘扬科学精神,传播科学思想,普及科学知识是一项长期而艰巨的任务,借着“科普大篷车”进校园的契机,将科技普及的种子深深埋进孩子们的心里。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 32px;\">通过在学校宣传普及科技知识,为学生打开了科技之窗,使广大师生了解了更多的科技知识,拓宽了学生的科技眼界,增强了学生的科技意识;同时,为中小学生了解前沿科技知识,接触广袤的科技世界,展望科技未来提供了可能。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 0em; text-align: center;\"><img src=\"http://www.whstm.org.cn/u/cms/www/201805/09153819i8z2.jpg\" title=\"+initpintu_副本3.jpg\" style=\"box-sizing: border-box; border-width: 0px; border-style: initial; outline: 0px; background: transparent; max-width: 100%;\">&nbsp;</p><div><br></div>', 0, 0, 0, 0, 1568017351, 1568017351);
INSERT INTO `news` VALUES (8, 3, '/uploads/20190909\\62994752ba803622d123d99d61185a38.png', '内设机构', NULL, '<div><br></div><div><table cellspacing=\"0\" cellpadding=\"0\" style=\"box-sizing: border-box; border: 0px; outline: 0px; font-size: 14px; background: rgb(255, 255, 255); border-spacing: 0px; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;\"><tbody style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\"><tr class=\"firstRow\" style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\"><td width=\"121\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-color: windowtext; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">序号</strong></p></td><td width=\"246\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-left-style: none; border-color: windowtext windowtext windowtext black; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">内设机构名称</strong></p></td></tr><tr style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\"><td width=\"121\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-color: black windowtext windowtext; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">1</p></td><td width=\"246\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-left-style: none; border-color: black windowtext windowtext black; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">办公室</p></td></tr><tr style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\"><td width=\"121\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-color: black windowtext windowtext; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">2</p></td><td width=\"246\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-left-style: none; border-color: black windowtext windowtext black; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">财务部</p></td></tr><tr style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\"><td width=\"121\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-color: black windowtext windowtext; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">3</p></td><td width=\"246\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-left-style: none; border-color: black windowtext windowtext black; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">展览教育部</p></td></tr><tr style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\"><td width=\"121\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-color: black windowtext windowtext; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">4</p></td><td width=\"246\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-left-style: none; border-color: black windowtext windowtext black; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">科技培训部</p></td></tr><tr style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\"><td width=\"121\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-color: black windowtext windowtext; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">5</p></td><td width=\"246\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-left-style: none; border-color: black windowtext windowtext black; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">研究策划部</p></td></tr><tr style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\"><td width=\"121\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-color: black windowtext windowtext; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">6</p></td><td width=\"246\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-left-style: none; border-color: black windowtext windowtext black; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">展品研制部</p></td></tr><tr style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\"><td width=\"121\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-color: black windowtext windowtext; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">7</p></td><td width=\"246\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-left-style: none; border-color: black windowtext windowtext black; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">数字影视部</p></td></tr><tr style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\"><td width=\"121\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-color: black windowtext windowtext; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">8</p></td><td width=\"246\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-left-style: none; border-color: black windowtext windowtext black; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">数字科技馆部</p></td></tr><tr style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\"><td width=\"121\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-color: black windowtext windowtext; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">9</p></td><td width=\"246\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-left-style: none; border-color: black windowtext windowtext black; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">行政保卫部</p></td></tr><tr style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\"><td width=\"121\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-color: black windowtext windowtext; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">10</p></td><td width=\"246\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-style: none; border-left-style: none; border-color: black windowtext windowtext black; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">综合服务部</p><div><br></div></td></tr></tbody></table></div>', 0, 0, 0, 0, 1568023881, 1568023881);
INSERT INTO `news` VALUES (18, 27, '/uploads/20190910\\c560db0ef774b40c404ba9df1c8aaf25.jpg', '曹广晶副省长一行参观“信息通信展——5G改变社会”科普展', NULL, '<p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 21px; text-indent: 2em;\">8月7日,湖北省副省长曹广晶一行到武汉科技馆参观“信息通信展——5G改变社会”科普展,省通管局、市科协、省市通信学会、武汉科技馆及部分成员单位的领导及相关负责人陪同。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 21px;\"><br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 21px; text-align: center;\"><img src=\"http://www.whstm.org.cn/u/cms/www/201908/081834548avb.JPG\" title=\"DSC_1040.JPG\" style=\"box-sizing: border-box; border-width: 0px; border-style: initial; outline: 0px; background: transparent; max-width: 100%;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 28px; line-height: 21px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\"><img width=\"1\" height=\"1\" src=\"http://www.whstm.org.cn/thirdparty/ueditor/themes/default/images/spacer.gif\" alt=\"QQ图片20190806114855\" word_img=\"file:///C:/Users/Administrator/AppData/Local/Temp/msohtmlclip1/01/clip_image004.jpg\" style=\"box-sizing: border-box; border-width: 1px; border-style: solid; border-color: rgb(221, 221, 221); outline: 0px; background: url(&quot;http://www.whstm.org.cn/thirdparty/ueditor/themes/default/images/word.gif&quot;) center center no-repeat; max-width: 100%;\"><img width=\"1\" height=\"1\" src=\"http://www.whstm.org.cn/thirdparty/ueditor/themes/default/images/spacer.gif\" alt=\"QQ图片20190806114855\" word_img=\"file:///C:/Users/Administrator/AppData/Local/Temp/msohtmlclip1/01/clip_image004.jpg\" style=\"box-sizing: border-box; border-width: 1px; border-style: solid; border-color: rgb(221, 221, 221); outline: 0px; background: url(&quot;http://www.whstm.org.cn/thirdparty/ueditor/themes/default/images/word.gif&quot;) center center no-repeat; max-width: 100%;\"><img width=\"1\" height=\"1\" src=\"http://www.whstm.org.cn/thirdparty/ueditor/themes/default/images/spacer.gif\" alt=\"QQ图片20190806114855\" word_img=\"file:///C:/Users/Administrator/AppData/Local/Temp/msohtmlclip1/01/clip_image004.jpg\" style=\"box-sizing: border-box; border-width: 1px; border-style: solid; border-color: rgb(221, 221, 221); outline: 0px; background: url(&quot;http://www.whstm.org.cn/thirdparty/ueditor/themes/default/images/word.gif&quot;) center center no-repeat; max-width: 100%;\">8</strong><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">月7日,湖北省副省长曹广晶(中)一行到武汉科技馆参观“信息通信展——5G改变社会”科普展,省通管局局长宋起柱(右一)、市科协副主席安群慧(左一)陪同</strong></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-align: center; line-height: 21px;\"><br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 21px; text-align: center;\"><img src=\"http://www.whstm.org.cn/u/cms/www/201908/08183517xafc.JPG\" title=\"DSC_1008.JPG\" style=\"box-sizing: border-box; border-width: 0px; border-style: initial; outline: 0px; background: transparent; max-width: 100%;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 16px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">&nbsp;&nbsp;&nbsp;</strong><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">曹广晶到武汉科技馆参观“信息通信展——5G改变社会”科普展,省通管局、市科协、省市通信学会、武汉科技馆及部分成员单位的领导及相关负责人陪同</strong></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 16px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\"><br style=\"box-sizing: border-box;\"></strong></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-align: center; line-height: 16px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">&nbsp;</strong><img src=\"http://www.whstm.org.cn/u/cms/www/201908/08183610i3sp.JPG\" title=\"DSC_1141.JPG\" style=\"box-sizing: border-box; border-width: 0px; border-style: initial; outline: 0px; background: transparent; max-width: 100%;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 16px; text-align: center;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">曹广晶现场体验5G技术应用的最新成果</strong></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 40px; line-height: 32px;\">“信息通信展——5G改变社会”科普展是武汉科技馆联合省通信学会、省5G产业联盟、市通信学会共同主办的全国首个体验最丰富、受众最广、时间最长的5G综合体验展览,旨在借助武汉科技馆这个深受大众欢迎的科普场所,采用“科普+体验”的方式,让大众尤其是青少年,近距离地感受信息通信技术的发展历史,以及5G技术应用的最新成果,提升公众对信息通信科技创新成果的认知度,培养青少年对通信科技的学习兴趣,为5G商用和产业发展营造良好的社会氛围。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 40px; line-height: 32px;\">参观者在展览中可以体验到以VR眼镜、AR医疗、5G机器人、无人机、虚拟驾驶、云游戏等为代表的众多基于5G技术的应用,近距离感受“万物广泛互联、人机深度交互”。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 40px; line-height: 32px;\">曹广晶在参观完5G展览后,在陪同人员的引领下,还实地参观了武汉科技馆的宇宙展厅。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-align: center; line-height: 21px;\"><br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 21px; text-align: center;\"><img src=\"http://www.whstm.org.cn/u/cms/www/201908/08183600z5bj.JPG\" title=\"DSC_1219.JPG\" style=\"box-sizing: border-box; border-width: 0px; border-style: initial; outline: 0px; background: transparent; max-width: 100%;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-align: center; text-indent: 28px; line-height: 16px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">湖北省副省长曹广晶(左二)一行参观武汉科技馆宇宙展厅,武汉科技馆馆长、党委</strong><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">书记刘青(右二)陪同</strong></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 40px; line-height: 32px;\">“信息通信展——5G改变社会”科普展将持续至九月初,市民可免费前往武汉科技馆一楼专题展厅体验。</p><div><br></div>', 0, 1, 0, 0, 1568048179, 1568048179);
INSERT INTO `news` VALUES (19, 27, '/uploads/20190910\\7aadd6ef9524b43ead1b4b2c9c3b34b3.jpg', '市委副书记、市长周先旺参观“信息通信展—5G改变社会”科普展', NULL, '<p style=\"box-sizing: border-box; margin-top: 10px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 27px; text-indent: 2em;\">近日,市委副书记、市长周先旺来到武汉科技馆“信息通信展—5G改变社会”科普展现场,了解5G建设、应用发展情况。他强调,要抓住5G发展机遇,加快新一代信息基础设施建设,推动5G技术广泛应用,为全市经济社会发展注入新动能。</p><p style=\"box-sizing: border-box; margin-top: 10px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 27px; text-align: center;\"><img src=\"http://www.whstm.org.cn/u/cms/www/201908/13171919jvuj.JPG\" title=\"DSC_1249.JPG\" style=\"box-sizing: border-box; border-width: 0px; border-style: initial; outline: 0px; background: transparent; max-width: 100%;\"></p><p style=\"box-sizing: border-box; margin-top: 10px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 27px;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;展览设置了信息通信知识科普和5G应用体验馆两部分。信息通信科普知识板块展示了通信基本原理、从1G到5G的通信技术演进过程及5G技术特点。在听取5G在湖北及武汉发展现状后,周先旺表示,要抓住产业风口,大力推进5G基础设施建设,争取走在全国同类城市前列。</p><p style=\"box-sizing: border-box; margin-top: 10px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 27px;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;综合体验馆展示了5G技术在应用方面的探索与实践,周先旺现场体验AR眼镜、5G视频回传等基于5G技术的应用,近距离感受万物互联应用场景。他说,要借助5G技术,抢占产业发展制高点,提升资源配置效率,为产业转型升级打下坚实基础;统筹城乡发展,同步规划建设,推动5G技术在远程教育、远程医疗、现代农业等领域广泛应用。</p><p style=\"box-sizing: border-box; margin-top: 10px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 27px;\">市委常委、常务副市长胡亚波参加活动。</p><p style=\"box-sizing: border-box; margin-top: 10px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 27px;\">市科协党组书记、副主席陈光勇陪同参观。</p>', 0, 1, 0, 0, 1568048273, 1568048273);
INSERT INTO `news` VALUES (20, 27, '/uploads/20190910\\3085a6a0680fb023dcee9526de4b070a.jpg', '科学之夜来了! 武汉科技馆本周末试点夜间开放', NULL, '<p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 2em;\">为深入学习贯彻习近平新时代中国特色社会主义思想,以实际行动落实以人民为中心的发展理念,持续推动“三化”大武汉建设,为喜迎国庆、迎接军运盛会营造良好的文化氛围,根据武汉市政府的统一部署,武汉科技馆将于本周末(8月17日)开始试点夜间开放,时间持续到10月31日。在此期间,每周六、周日以及逢重要时间节点、法定节日,武汉科技馆公共开放时间延长至21:00(20:00停止入馆)。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-align: center;\"><img src=\"http://www.whstm.org.cn/u/cms/www/201908/151624286n3t.JPG\" title=\"DSC_7309.JPG\" style=\"box-sizing: border-box; border-width: 0px; border-style: initial; outline: 0px; background: transparent; max-width: 100%; float: none;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;\"><br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-align: center;\"><img src=\"http://www.whstm.org.cn/u/cms/www/201908/15162428xjre.JPG\" title=\"DSC_7350.JPG\" style=\"box-sizing: border-box; border-width: 0px; border-style: initial; outline: 0px; background: transparent; max-width: 100%; float: none;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;\"><br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 40px;\">本次夜间试点开放工作是武汉科技馆贯彻落实武汉市文化科技单位主动对接国家发展夜间经济、推动文化旅游融合发展的重要举措,旨在将武汉市的城市发展和历史文化深度融合,体现武汉市城市文化底蕴,打造城市特色品牌,为武汉市民和来汉游客提供差异化、多元化的文化夜生活。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;\">&nbsp;&nbsp;&nbsp;&nbsp;夜间试点开放期间,武汉科技馆结合自身资源优势,推出一系列精彩活动邀您参加。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 40px;\">从本周末起,武汉科技馆在夜间开馆试运行期间,将增设夜间定时讲解一场。同时,馆内除常设展览外,多个临时展览开放。“信息通信展——5G改变社会”科普展将持续到9月上旬。该展览包括信息通信知识科普展和5G应用体验馆两大部分。参观者可以抢鲜体验以VR眼镜、AR医疗、5G机器人、无人机、虚拟驾驶、云游戏等为代表的众多基于5G技术的应用,近距离感受“万物广泛互联、人机深度交互”。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-align: center;\"><img src=\"http://www.whstm.org.cn/u/cms/www/201908/15162449c60d.JPG\" title=\"DSC_1189.JPG\" style=\"box-sizing: border-box; border-width: 0px; border-style: initial; outline: 0px; background: transparent; max-width: 100%;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;\"><br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 38px;\">9月1日起,“光辉典范 永耀苍穹——朱光亚生平事迹展”亮相武汉科技馆。展览将以实物展品为主,辅以视频、图片、展板等展示手段,通过展览,以塑形铸魂科学家精神为抓手,激发公众特别是青少年的科技报国远大志向,在全社会营造讲科学、爱科学、学科学、用科学的良好氛围。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 40px;\">9月底,武汉科技馆将举办“时代号角——向世界科技强国前进 ”中华人民共和国建立70周年科技发展历程大型图片展。展览将以图片为主、视频、音频、实物模型为辅的形式,以历史辉映现实,充分展示中华人民共和国建立70周年科技发展历程。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 40px;\">&nbsp;</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 40px;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-align: center;\"><img src=\"http://www.whstm.org.cn/u/cms/www/201908/151625173150.JPG\" title=\"DSC_0102.JPG\" style=\"box-sizing: border-box; border-width: 0px; border-style: initial; outline: 0px; background: transparent; max-width: 100%; float: none;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;\"><br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-align: center;\"><img src=\"http://www.whstm.org.cn/u/cms/www/201908/151625176xiy.JPG\" title=\"DSC_8971.JPG\" style=\"box-sizing: border-box; border-width: 0px; border-style: initial; outline: 0px; background: transparent; max-width: 100%; float: none;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 40px;\"><br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 40px;\">此外,武汉科技馆广受欢迎的儿童展厅将在晚间试点期间增开一场,以满足观众需求。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;\"><br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 40px;\">鉴于夜间参观的特殊性,为保障文明有序的参观秩序,武汉科技馆在此提醒观众知晓文明参观须知:</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 60px;\">1.&nbsp;开馆领票时间内,请观众凭本人有效证件到领票处领取免费参观券后入馆参观,每人一票,不得代领(1.3米以下未成年人、高龄老人以及行动不便者须有人监护陪伴)。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 60px;\">2.&nbsp;请勿将(开封和未开封)液体饮料带入场馆,本馆提供免费饮用水,请自带水杯。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 60px;\">3.&nbsp;严禁将枪支弹药类(如玩具枪、仿真枪等),各类管制刀具(如美工刀、水果刀等)、易燃易爆物品(如烟花爆竹、氢气球等)、滑板车、平衡车及宠物带入场馆;违禁的私人物品请于馆外自行处理。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 60px;\">4.&nbsp;参观前请您整理好衣物,衣冠不整者、醉酒者谢绝入内;馆内严禁吸烟和使用明火,展厅禁止进食;参观时请勿大声喧哗、奔跑、追逐、攀爬、躺卧,请保持良好的参观秩序和参观环境。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 60px;\">5.&nbsp;展厅内请勿使用自拍杆和三脚架。拍照时请注意自身、他人及展品安全。临时性展览将依据办展协议确定是否可以拍照,若不能拍照,将在展厅内设立明显的提示标识。新闻记者若因工作需要,需进入展厅进行拍照或摄像,请联系相关部门得到许可后方可进行。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 60px;\">6.&nbsp;请爱护场馆展品和场内设施,在操作展品前,请仔细阅读展品说明,按说明提示或在工作人员的指导下操作展品;如有损坏,须照价赔偿。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 60px;\">7.&nbsp;观众应自觉遵守本馆的各项规章制度,做文明观众;如有突发意外,请听从现场工作人员统一指挥,并按指定线路疏散或撤离。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 40px;\"><br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 40px;\">武汉科技馆将以此次夜间试点开放为契机,继续深入开展“不忘初心、牢记使命”主题教育活动,牢固树立以人民为中心的发展理念,不断强化服务标准,提升服务质量,提高服务效能,持续推动科教文化深度融合,为武汉市民和来汉游客提供更为丰富更加优质的科教文化服务产品,为迎接新中国成立70周年和第七届军人运动会在武汉隆重举行营造良好的文化氛围作出积极贡献。</p><div><br></div>', 0, 1, 0, 0, 1568048326, 1568048326);
INSERT INTO `news` VALUES (21, 27, '/uploads/20190910\\a75588198adc1a7b927b83788fe9bfe2.jpg', '“科学馆奇妙夜”模式开启!——武汉科技馆试点夜间开放首日人气火爆', NULL, '<p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 21px; text-indent: 2em;\">8月17日是我市四大文化场馆夜间开放首日,全市共有5023位市民兴致勃勃尝鲜,其中武汉科技馆晚间入场2277人次,参观人数位居四大场馆之首。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 21px;\"><br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 21px; text-align: center;\"><img src=\"http://www.whstm.org.cn/u/cms/www/201908/18160130c380.JPG\" title=\"DSC_2110.JPG\" style=\"box-sizing: border-box; border-width: 0px; border-style: initial; outline: 0px; background: transparent; max-width: 100%;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-align: center; line-height: 21px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">武汉科技馆试点夜间开放首日人气火爆</strong></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 21px;\">&nbsp;&nbsp;&nbsp;<strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">亲子夜游打卡地:武汉科技馆的夜场到底有多奇妙?</strong></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 21px;\">&nbsp;&nbsp;&nbsp;夜间开放首日,武汉科技馆将领票截止时间由原来的15:30延长至20:00(21:00闭馆)。晚上6时许,武汉科技馆的领票处,凭有效证件排队领取入场券的家长和孩子络绎不绝。深受小朋友喜爱的儿童展厅里,多项互动体验项目让孩子们玩得不亦乐乎;馆内7大展厅的定时讲解服务准时开讲,时间从18:00点持续到20:00点;“信息通信展——5G改变社会”临时展览现场,不少观众正在排队体验众多基于5G技术的应用成果。当天,馆内夜场开放活动也吸引了湖北电视台、武汉电视台、长江日报、楚天都市报等多家媒体的关注和报道。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 21px;\"><br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 21px; text-align: center;\"><img src=\"http://www.whstm.org.cn/u/cms/www/201908/18160156fvta.JPG\" title=\"DSC_2227.JPG\" style=\"box-sizing: border-box; border-width: 0px; border-style: initial; outline: 0px; background: transparent; max-width: 100%;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-align: center; line-height: 21px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">夜场观众有序进场</strong></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 21px;\"><br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-align: center;\"><img src=\"http://www.whstm.org.cn/u/cms/www/201908/18160250dj87.JPG\" title=\"DSC_2114.JPG\" style=\"box-sizing: border-box; border-width: 0px; border-style: initial; outline: 0px; background: transparent; max-width: 100%; float: none;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;\"><br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-align: center;\"><img src=\"http://www.whstm.org.cn/u/cms/www/201908/18160250tiv9.JPG\" title=\"DSC_2124.JPG\" style=\"box-sizing: border-box; border-width: 0px; border-style: initial; outline: 0px; background: transparent; max-width: 100%; float: none;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;\"><br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-align: center;\"><img src=\"http://www.whstm.org.cn/u/cms/www/201908/18160250c22t.JPG\" title=\"DSC_2138.JPG\" style=\"box-sizing: border-box; border-width: 0px; border-style: initial; outline: 0px; background: transparent; max-width: 100%; float: none;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;\"><br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-align: center;\"><img src=\"http://www.whstm.org.cn/u/cms/www/201908/18160250342s.JPG\" title=\"DSC_2145.JPG\" style=\"box-sizing: border-box; border-width: 0px; border-style: initial; outline: 0px; background: transparent; max-width: 100%; float: none;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;\"><br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-align: center;\"><img src=\"http://www.whstm.org.cn/u/cms/www/201908/18160250x43v.JPG\" title=\"DSC_2162.JPG\" style=\"box-sizing: border-box; border-width: 0px; border-style: initial; outline: 0px; background: transparent; max-width: 100%; float: none;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;\"><br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-align: center;\"><img src=\"http://www.whstm.org.cn/u/cms/www/201908/18160250u02d.JPG\" title=\"DSC_2241.JPG\" style=\"box-sizing: border-box; border-width: 0px; border-style: initial; outline: 0px; background: transparent; max-width: 100%; float: none;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 21px;\"><br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 39px; line-height: 21px;\">武汉科技馆此次进行夜间试点开放,是市科协深入开展“不忘初心、牢记使命”主题教育,牢固树立以人民为中心的发展理念,大力加强科普惠民的重要举措,是落实我市科教文化单位主动对接国家发展夜间经济、推动科教文化融合发展的大胆尝试,同时也是满足不同群体差异化要求,适应青少年的多样化科普需求的一项便民措施。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 43px; line-height: 21px;\">为了落实武汉市政府的统一部署,保障夜间试点开放的顺利进行,武汉科技馆先后召开了四次协调会,动员和部署夜场相关工作,并与辖区公安机关——长航公安局武汉分局联系,由对方调派警力在夜间加强馆内外巡逻力度,维护和确保治安安全。另外,科技馆还主动与武汉港务集团有限公司客运站协调周边停车与外围环境卫生工作。活动当天,市科协主要领导亲临现场督导,武汉科技馆全体职工全天加班,以确保夜间试点开放有序推进。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 21px;\"><br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 21px; text-align: center;\"><img src=\"http://www.whstm.org.cn/u/cms/www/201908/18160401rv0j.JPG\" title=\"DSC_2223.JPG\" style=\"box-sizing: border-box; border-width: 0px; border-style: initial; outline: 0px; background: transparent; max-width: 100%;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 0em; text-align: center; line-height: 21px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">市科协党组书记、副主席陈光勇(右二),市科协党组成员、副主席张若光(右一),市科</strong><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">协党组成员、副主席熊少明(左二)亲临现场督导,市文化旅游局副局长张相卫(左一)现场调研。</strong></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 21px;\"><br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 21px; text-align: center;\"><img src=\"http://www.whstm.org.cn/u/cms/www/201908/181604165ivg.JPG\" title=\"DSC_2218.JPG\" style=\"box-sizing: border-box; border-width: 0px; border-style: initial; outline: 0px; background: transparent; max-width: 100%;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-align: center; text-indent: 28px; line-height: 21px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">武汉科技馆馆长、党委书记刘青(右二)向新闻媒体介绍武汉科技馆夜间开放情况</strong></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 43px; line-height: 21px;\">武汉科技馆即日起至10月31日期间开放夜间试点,在此期间内每周六、周日及逢重要时间节点、法定节日,其公共开放时间延长至21:00(20:00停止入馆)。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 43px; line-height: 21px;\">夜间开馆试运行期间,武汉科技馆增设夜间定时讲解一场,同时,除常设展览外开放多个临时展览:5G科普展将持续到9月上旬;“光辉典范 永耀苍穹——朱光亚生平事迹展”9月1日亮相;“时代号角——向世界科技强国前进”中华人民共和国建立70周年科技发展历程大型图片展将于9月底展出。此外,广受欢迎的儿童展厅将在晚间试点期间增开一场,以满足观众需求。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 43px; line-height: 21px;\">与博物馆相比,科技馆的展品互动性强,观众参与度高,且每件展品背后都有科学原理知识,能够让参与者在玩中学、学中玩,既满足了广大青少年天性需求,也达到了增长知识,提升科学素质的目的。为此,武们呼吁广大市民错峰参观,以确保每位参观者都能在科技馆里得到更好的参观学习环境。</p><div><br></div>', 0, 1, 0, 0, 1568048404, 1568048404);
INSERT INTO `news` VALUES (22, 25, '/uploads/20190910\\c92add81f796bdc27934440fd9d54844.jpg', '香水博物馆:放大你的嗅觉', '在位于加州伯克利 Walnut 街 1518-1/2 号砖车道的尽头,有一间名为「Aftel 奇妙香水」的博物馆(Aftel Archive of Curious Sce...', '<p style=\"box-sizing: border-box; margin-bottom: 0px; padding-top: 16px; padding-bottom: 16px; border: 0px; outline: 0px; font-size: 16px; background: rgb(255, 255, 255); color: rgb(53, 53, 53); line-height: 32px; text-indent: 2em; overflow: hidden; font-family: &quot;Microsoft YaHei&quot;, 微软雅黑, 宋体;\">在位于加州伯克利 Walnut 街 1518-1/2 号砖车道的尽头,有一间名为「Aftel 奇妙香水」的博物馆(Aftel Archive of Curious Scents),它是由天然香水调香师 Mandy Aftel 自家车库改造而成的。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; padding-top: 16px; padding-bottom: 16px; border: 0px; outline: 0px; font-size: 16px; background: rgb(255, 255, 255); color: rgb(53, 53, 53); line-height: 32px; text-indent: 2em; overflow: hidden; font-family: &quot;Microsoft YaHei&quot;, 微软雅黑, 宋体;\">虽然这里并不是美国的第一家香水博物馆,但却是首家提供现场芳香体验的。这间小小的博物馆囊括了全世界的嗅觉史:参观者能闻到从全球各地搜集来的 300 多种天然香料、原料和古制香氛。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; padding-top: 16px; padding-bottom: 16px; border: 0px; outline: 0px; font-size: 16px; background: rgb(255, 255, 255); text-indent: 0em; text-align: center; color: rgb(53, 53, 53); line-height: 32px; overflow: hidden; font-family: &quot;Microsoft YaHei&quot;, 微软雅黑, 宋体;\"><img width=\"600\" class=\"aligncenter\" alt=\"\" src=\"http://upload.art.ifeng.com/2017/0919/1505802063722.jpeg\" border=\"0\" style=\"box-sizing: border-box; border-width: 0px; border-style: initial; outline: 0px; background: transparent; max-width: 100%; width: 700px; height: auto;\"></p><p style=\"box-sizing: border-box; margin: -30px auto; padding-top: 16px; padding-bottom: 16px; border: 0px; outline: 0px; font-size: 16px; background: rgb(255, 255, 255); color: rgb(53, 53, 53); line-height: 32px; text-indent: 2em; overflow: hidden; font-family: &quot;Microsoft YaHei&quot;, 微软雅黑, 宋体;\">Mandy Aftel 将自家的车库改造成一间香水博物馆,并在2017年7 月对公众开放</p><p style=\"box-sizing: border-box; margin-bottom: 0px; padding-top: 16px; padding-bottom: 16px; border: 0px; outline: 0px; font-size: 16px; background: rgb(255, 255, 255); color: rgb(53, 53, 53); line-height: 32px; text-indent: 2em; overflow: hidden; font-family: &quot;Microsoft YaHei&quot;, 微软雅黑, 宋体;\">香水博物馆的拥有者 Mandy Aftel 毕业于密歇根大学,拥有英语和心理学双学位。20 多年前,在撰写畅销书《Essence and Alchemy》的过程中,Aftel 开始沉迷于探索天然香料、香料史以及留香时间的奥妙。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; padding-top: 16px; padding-bottom: 16px; border: 0px; outline: 0px; font-size: 16px; background: rgb(255, 255, 255); color: rgb(53, 53, 53); line-height: 32px; text-indent: 2em; overflow: hidden; font-family: &quot;Microsoft YaHei&quot;, 微软雅黑, 宋体;\">在 Aftel 数十年的研究经历中,她接触和调制了成千上万来自全球各地的香水精华,有些精华本身就是一件古董珍藏。后来,她萌生了一个想法:让其他人也能体验到天然香料的乐趣与珍贵。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; padding-top: 16px; padding-bottom: 16px; border: 0px; outline: 0px; font-size: 16px; background: rgb(255, 255, 255); text-indent: 0em; text-align: center; color: rgb(53, 53, 53); line-height: 32px; overflow: hidden; font-family: &quot;Microsoft YaHei&quot;, 微软雅黑, 宋体;\"><img width=\"600\" class=\"aligncenter\" alt=\"\" src=\"http://upload.art.ifeng.com/2017/0919/1505802063902.jpeg\" border=\"0\" style=\"box-sizing: border-box; border-width: 0px; border-style: initial; outline: 0px; background: transparent; max-width: 100%; width: 700px; height: auto;\"></p><p style=\"box-sizing: border-box; margin: -30px auto; padding-top: 16px; padding-bottom: 16px; border: 0px; outline: 0px; font-size: 16px; background: rgb(255, 255, 255); color: rgb(53, 53, 53); line-height: 32px; text-indent: 2em; overflow: hidden; font-family: &quot;Microsoft YaHei&quot;, 微软雅黑, 宋体;\">每位购买门票的参观者都能收到 3 张纸签,可以在上面喷洒自己喜欢的香水</p><p style=\"box-sizing: border-box; margin-bottom: 0px; padding-top: 16px; padding-bottom: 16px; border: 0px; outline: 0px; font-size: 16px; background: rgb(255, 255, 255); color: rgb(53, 53, 53); line-height: 32px; text-indent: 2em; overflow: hidden; font-family: &quot;Microsoft YaHei&quot;, 微软雅黑, 宋体;\">「天然香料及其丰富的历史,在市场营销和商业香水的服务中经常被忽视。」Aftel 决定将自己多年私藏的香氛档案对外展示,告诉人们关于香水起源、不同文明的气味故事,通过最直接的感官接触,传播香氛在人类文化中的意义。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; padding-top: 16px; padding-bottom: 16px; border: 0px; outline: 0px; font-size: 16px; background: rgb(255, 255, 255); text-indent: 0em; text-align: center; color: rgb(53, 53, 53); line-height: 32px; overflow: hidden; font-family: &quot;Microsoft YaHei&quot;, 微软雅黑, 宋体;\"><img width=\"600\" class=\"aligncenter\" alt=\"\" src=\"http://upload.art.ifeng.com/2017/0919/1505802063997.jpeg\" border=\"0\" style=\"box-sizing: border-box; border-width: 0px; border-style: initial; outline: 0px; background: transparent; max-width: 100%; width: 700px; height: auto;\"></p><p style=\"box-sizing: border-box; margin: -30px auto; padding-top: 16px; padding-bottom: 16px; border: 0px; outline: 0px; font-size: 16px; background: rgb(255, 255, 255); color: rgb(53, 53, 53); line-height: 32px; text-indent: 2em; overflow: hidden; font-family: &quot;Microsoft YaHei&quot;, 微软雅黑, 宋体;\">抽屉盒子里装有收集自全球各地的香氛原料</p><p style=\"box-sizing: border-box; margin-bottom: 0px; padding-top: 16px; padding-bottom: 16px; border: 0px; outline: 0px; font-size: 16px; background: rgb(255, 255, 255); color: rgb(53, 53, 53); line-height: 32px; text-indent: 2em; overflow: hidden; font-family: &quot;Microsoft YaHei&quot;, 微软雅黑, 宋体;\">博物馆的展品包括从花朵、根茎、叶片、树皮、树脂和香脂等天然原料提取而来的气味展品,还有一些从动物身上所提取的气味,供参观者亲身体验。除此之外,博物馆还有一个工作台,Aftel 将一些香水解构成实物放在抽屉上进行展示。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; padding-top: 16px; padding-bottom: 16px; border: 0px; outline: 0px; font-size: 16px; background: rgb(255, 255, 255); text-indent: 0em; text-align: center; color: rgb(53, 53, 53); line-height: 32px; overflow: hidden; font-family: &quot;Microsoft YaHei&quot;, 微软雅黑, 宋体;\"><img width=\"600\" class=\"aligncenter\" alt=\"\" src=\"http://upload.art.ifeng.com/2017/0919/1505802063958.jpeg\" border=\"0\" style=\"box-sizing: border-box; border-width: 0px; border-style: initial; outline: 0px; background: transparent; max-width: 100%; width: 700px; height: auto;\"></p><p style=\"box-sizing: border-box; margin: -30px auto; padding-top: 16px; padding-bottom: 16px; border: 0px; outline: 0px; font-size: 16px; background: rgb(255, 255, 255); color: rgb(53, 53, 53); line-height: 32px; text-indent: 2em; overflow: hidden; font-family: &quot;Microsoft YaHei&quot;, 微软雅黑, 宋体;\">麝香是古代最为人所知的香料之一,提炼自麝鹿腺囊中的干燥分泌物</p><p style=\"box-sizing: border-box; margin-bottom: 0px; padding-top: 16px; padding-bottom: 16px; border: 0px; outline: 0px; font-size: 16px; background: rgb(255, 255, 255); color: rgb(53, 53, 53); line-height: 32px; text-indent: 2em; overflow: hidden; font-family: &quot;Microsoft YaHei&quot;, 微软雅黑, 宋体;\">香水最诱人之处在于加入的动物气味,但大部分都是从一些听起来不太「诱人」的原料中提取的,比如排泄物或会阴分泌物。博物馆内还有 50 多本古典书籍,追溯了令人惊叹的香水历史。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; padding-top: 16px; padding-bottom: 16px; border: 0px; outline: 0px; font-size: 16px; background: rgb(255, 255, 255); text-indent: 0em; text-align: center; color: rgb(53, 53, 53); line-height: 32px; overflow: hidden; font-family: &quot;Microsoft YaHei&quot;, 微软雅黑, 宋体;\"><img width=\"600\" class=\"aligncenter\" alt=\"\" src=\"http://upload.art.ifeng.com/2017/0919/1505802063485.jpeg\" border=\"0\" style=\"box-sizing: border-box; border-width: 0px; border-style: initial; outline: 0px; background: transparent; max-width: 100%; width: 700px; height: auto;\"></p><p style=\"box-sizing: border-box; margin: -30px auto; padding-top: 16px; padding-bottom: 16px; border: 0px; outline: 0px; font-size: 16px; background: rgb(255, 255, 255); color: rgb(53, 53, 53); line-height: 32px; text-indent: 2em; overflow: hidden; font-family: &quot;Microsoft YaHei&quot;, 微软雅黑, 宋体;\">博物馆内展示的讲述香水的古董书籍</p><p style=\"box-sizing: border-box; margin-bottom: 0px; padding-top: 16px; padding-bottom: 16px; border: 0px; outline: 0px; font-size: 16px; background: rgb(255, 255, 255); color: rgb(53, 53, 53); line-height: 32px; text-indent: 2em; overflow: hidden; font-family: &quot;Microsoft YaHei&quot;, 微软雅黑, 宋体;\">馆内各种珍贵的收藏,包括手绘明信片和雕刻品,都是真实存在的原型,有的历史甚至可以追溯到 400 多年前。通过这些展品,参观者能够了解到这些成分的来源,亲眼看到和摸到制成香水的原材料,比较纯天然香水精华与人工合成替代品间的区别,并领略现代工艺以合乎人道的方式提取出来的动物气味,以及古制动物香氛。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; padding-top: 16px; padding-bottom: 16px; border: 0px; outline: 0px; font-size: 16px; background: rgb(255, 255, 255); text-indent: 0em; text-align: center; color: rgb(53, 53, 53); line-height: 32px; overflow: hidden; font-family: &quot;Microsoft YaHei&quot;, 微软雅黑, 宋体;\"><img width=\"600\" class=\"aligncenter\" alt=\"\" src=\"http://upload.art.ifeng.com/2017/0919/1505802063322.jpeg\" border=\"0\" style=\"box-sizing: border-box; border-width: 0px; border-style: initial; outline: 0px; background: transparent; max-width: 100%; width: 700px; height: auto;\"></p><p style=\"box-sizing: border-box; margin: -30px auto; padding-top: 16px; padding-bottom: 16px; border: 0px; outline: 0px; font-size: 16px; background: rgb(255, 255, 255); color: rgb(53, 53, 53); line-height: 32px; text-indent: 2em; overflow: hidden; font-family: &quot;Microsoft YaHei&quot;, 微软雅黑, 宋体;\">博物馆的工作台</p><p style=\"box-sizing: border-box; margin-bottom: 0px; padding-top: 16px; padding-bottom: 16px; border: 0px; outline: 0px; font-size: 16px; background: rgb(255, 255, 255); color: rgb(53, 53, 53); line-height: 32px; text-indent: 2em; overflow: hidden; font-family: &quot;Microsoft YaHei&quot;, 微软雅黑, 宋体;\">博物馆只在每周六的上午 10 点到下午 6 点对外开放,参观者只需登录 aftelier.com 花 20 美元购买一张门票,便能享受一小时的芳香之旅。在这个激动人心的旅程中,你会感受到鼻息间的馥郁香气,并从这些非凡的气味展品中,追溯人类文明的原始形态。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; padding-top: 16px; padding-bottom: 16px; border: 0px; outline: 0px; font-size: 16px; background: rgb(255, 255, 255); text-indent: 0em; text-align: center; color: rgb(53, 53, 53); line-height: 32px; overflow: hidden; font-family: &quot;Microsoft YaHei&quot;, 微软雅黑, 宋体;\"><img width=\"600\" class=\"aligncenter\" alt=\"\" src=\"http://upload.art.ifeng.com/2017/0919/1505802063168.jpeg\" border=\"0\" style=\"box-sizing: border-box; border-width: 0px; border-style: initial; outline: 0px; background: transparent; max-width: 100%; width: 700px; height: auto;\"></p><p style=\"box-sizing: border-box; margin: -30px auto; padding-top: 16px; padding-bottom: 16px; border: 0px; outline: 0px; font-size: 16px; background: rgb(255, 255, 255); color: rgb(53, 53, 53); line-height: 32px; text-indent: 2em; overflow: hidden; font-family: &quot;Microsoft YaHei&quot;, 微软雅黑, 宋体;\">甲香在圣经《出埃及记》中有记载,是用来供奉 Ketoret 的神台,其成分之一是由 Onycha 贝壳制成的香料,右边是一幅 18 世纪的版画,画中描绘的是 Onycha 和狸猫</p><p style=\"box-sizing: border-box; margin-bottom: 0px; padding-top: 16px; padding-bottom: 16px; border: 0px; outline: 0px; font-size: 16px; background: rgb(255, 255, 255); color: rgb(53, 53, 53); line-height: 32px; text-indent: 2em; overflow: hidden; font-family: &quot;Microsoft YaHei&quot;, 微软雅黑, 宋体;\">这些气味的历史与人类最早的医药、烹饪、性欲、装饰和原始崇拜有着密不可分的联系。正如 Aftel 在她的畅销书中所言:「虽然只是在闻天然香水,却可以通往宏伟、具有异国风情的过去,以及被隐藏的、感知中的现在。」</p><p style=\"box-sizing: border-box; margin-bottom: 0px; padding-top: 16px; padding-bottom: 16px; border: 0px; outline: 0px; font-size: 16px; background: rgb(255, 255, 255); text-indent: 0em; text-align: center; color: rgb(53, 53, 53); line-height: 32px; overflow: hidden; font-family: &quot;Microsoft YaHei&quot;, 微软雅黑, 宋体;\"><img width=\"600\" class=\"aligncenter\" alt=\"\" src=\"http://upload.art.ifeng.com/2017/0919/1505802063194.jpeg\" border=\"0\" style=\"box-sizing: border-box; border-width: 0px; border-style: initial; outline: 0px; background: transparent; max-width: 100%; width: 700px; height: auto;\"></p><p style=\"box-sizing: border-box; margin: -30px auto; padding-top: 16px; padding-bottom: 16px; border: 0px; outline: 0px; font-size: 16px; background: rgb(255, 255, 255); color: rgb(53, 53, 53); line-height: 32px; text-indent: 2em; overflow: hidden; font-family: &quot;Microsoft YaHei&quot;, 微软雅黑, 宋体;\">博物馆展示台上的海狸摆件,海狸香具有天然的皮革味,是海狸用来圈划领土时从肛门腺体分泌出的物质</p><p style=\"box-sizing: border-box; margin-bottom: 0px; padding-top: 16px; padding-bottom: 16px; border: 0px; outline: 0px; font-size: 16px; background: rgb(255, 255, 255); color: rgb(53, 53, 53); line-height: 32px; text-indent: 2em; overflow: hidden; font-family: &quot;Microsoft YaHei&quot;, 微软雅黑, 宋体;\">气味是直接的,它能不经任何中介物质,直接抵达我们的大脑,而这或许也是嗅觉体验总是让人如此难以忘怀的原因。它唤起的并非对于事物的二手记忆,而是直接让我们回想起事物本身。所以,狭小精巧的 Aftel 博物馆在帮助人们了解香水的同时,也使它变得神秘。</p>', 0, 1, 0, 0, 1568048542, 1568048542);
INSERT INTO `news` VALUES (23, 25, '/uploads/20190910\\72ad422283d5cb1e646052de1d6651e8.jpg', '人工智能画画 是深梦还是噩梦?', '谷歌推出了一款可以帮助人画简笔画的工具Autodraw,随便画几笔,算法就能识别出你想要画什么图案,为你优化出来。', '<p style=\"box-sizing: border-box; margin-bottom: 20px; border: 0px; outline: 0px; font-size: 16px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); text-align: center; line-height: 30px; font-family: &quot;Open Sans&quot;, Arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, STHeiti, &quot;WenQuanYi Micro Hei&quot;, SimSun, sans-serif;\"><a title=\"中国量子激光武器取得革命性的突破\" href=\"http://resource.feng.com/resource/h062/h14/img201710051547350.jpg\" style=\"box-sizing: border-box; border: 0px; outline: 0px; font-size: 14px; background: transparent; color: rgb(17, 17, 17); cursor: pointer;\"><img src=\"http://resource.feng.com/resource/h062/h14/img201710051547350.jpg\" style=\"box-sizing: border-box; margin-top: -16px; margin-bottom: -12px; border-style: initial; border-color: currentcolor; outline: 0px; background: transparent; max-width: 600px;\"></a></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;\"><br style=\"box-sizing: border-box; font-family: &quot;Open Sans&quot;, Arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, STHeiti, &quot;WenQuanYi Micro Hei&quot;, SimSun, sans-serif; font-size: 16px;\">  最近有媒体披露,中国在传闻已久的量子激光武器上有了重大突破,这个突破足以改变人类军工史进程。这款新研制的量子激光武器不但在性能方面全球领先,而且还在相关的领域上有着新的突破。<br style=\"box-sizing: border-box; font-family: &quot;Open Sans&quot;, Arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, STHeiti, &quot;WenQuanYi Micro Hei&quot;, SimSun, sans-serif; font-size: 16px;\"><br style=\"box-sizing: border-box; font-family: &quot;Open Sans&quot;, Arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, STHeiti, &quot;WenQuanYi Micro Hei&quot;, SimSun, sans-serif; font-size: 16px;\">  量子激光武器,说得简单一些就是依靠量子点发射激光的武器,由于这样的武器需要建立在超强功率的激光器上,所以在研发方面就要对超强功率的固体激光器有着非常高的要求,如今中国已经可以制造出这样先进的超强功率的固体激光器,实在让人兴奋不已。<br style=\"box-sizing: border-box; font-family: &quot;Open Sans&quot;, Arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, STHeiti, &quot;WenQuanYi Micro Hei&quot;, SimSun, sans-serif; font-size: 16px;\"><br style=\"box-sizing: border-box; font-family: &quot;Open Sans&quot;, Arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, STHeiti, &quot;WenQuanYi Micro Hei&quot;, SimSun, sans-serif; font-size: 16px;\">  据相关资料显示,中国新研制的量子激光武器由超强功率激光器发出的激光束,可以实现在3000千米远的距离上获得每平方厘米35K焦耳的能量密度,杀伤能力已经超过导弹,甚至还高出一个数量级,最为可怕的是该量子激光武器有效杀伤距离超过30000千米,如果未来装备服役,那可是一个非常可怕的大杀器。<br style=\"box-sizing: border-box; font-family: &quot;Open Sans&quot;, Arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, STHeiti, &quot;WenQuanYi Micro Hei&quot;, SimSun, sans-serif; font-size: 16px;\"><br style=\"box-sizing: border-box; font-family: &quot;Open Sans&quot;, Arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, STHeiti, &quot;WenQuanYi Micro Hei&quot;, SimSun, sans-serif; font-size: 16px;\">  相比之下,作为世界第一的军事大国美国在激光武器上却迟迟没有进展,目前美国比较成熟的激光武器是化学激光武器,虽然有着不错的威力,但是其发射激光器实在是太重了,50吨的重量,以目前的状况来看,连部署都有问题,如果实战基本用不上。<br style=\"box-sizing: border-box; font-family: &quot;Open Sans&quot;, Arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, STHeiti, &quot;WenQuanYi Micro Hei&quot;, SimSun, sans-serif; font-size: 16px;\"><br style=\"box-sizing: border-box; font-family: &quot;Open Sans&quot;, Arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, STHeiti, &quot;WenQuanYi Micro Hei&quot;, SimSun, sans-serif; font-size: 16px;\">  可以说,中国目前在激光武器的研制上已经达到世界最先进水平,并且在激光武器领域有着革命性的突破,相信在未来不久,人们就可以看到真正的量子激光武器。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;\">&nbsp;</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px currentcolor; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 24px; font-stretch: normal;\">来源:威锋网</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px currentcolor; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 24px; font-stretch: normal;\">特别声明:本文转载仅仅是出于传播信息的需要,并不意味着代表本网站观点或证实其内容的真实性;如原作者对版权有异议,请与我们联系删除;如其他媒体、网站或个人从本网站转载使用,须保留本网站注明的“来源”,并自负版权等法律责任。</p>', 0, 1, 0, 0, 1568048610, 1568048610);
INSERT INTO `news` VALUES (24, 25, '/uploads/20190910\\ff285b3d5f8641ff6aa01454d6cc1c4a.jpg', '还在为“灵魂出窍”着迷?或与耳部损伤有关', '据国外媒体报道,一项新研究指出,灵魂出窍体验(out-of-body experiences)很可能是由患者的耳朵损伤引起的。', '<p style=\"box-sizing: border-box; margin-bottom: 20px; border: 0px; outline: 0px; font-size: 16px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-variant-numeric: normal; font-variant-east-asian: normal; line-height: 30px; font-family: &quot;Open Sans&quot;, Arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, STHeiti, &quot;WenQuanYi Micro Hei&quot;, SimSun, sans-serif; text-align: center; widows: 1; font-stretch: normal;\"><a title=\"还在为“灵魂出窍”着迷?或与耳部损伤有关\" href=\"http://resource.feng.com/resource/h061/h99/img201707281208070.png\" style=\"box-sizing: border-box; border: 0px; outline: 0px; font-size: 14px; background: transparent; color: rgb(17, 17, 17); cursor: pointer;\"><img src=\"http://resource.feng.com/resource/h061/h99/img201707281208070.png\" style=\"box-sizing: border-box; margin-top: -16px; margin-bottom: -12px; border-style: initial; border-color: currentcolor; outline: 0px; background: transparent; max-width: 600px;\"></a></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;\"><br style=\"box-sizing: border-box; font-variant-numeric: normal; font-variant-east-asian: normal; font-size: 16px; line-height: 30px; font-family: &quot;Open Sans&quot;, Arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, STHeiti, &quot;WenQuanYi Micro Hei&quot;, SimSun, sans-serif; widows: 1; font-stretch: normal;\">  北京时间7月28日消息,据国外媒体报道,一项新研究指出,灵魂出窍体验(out-of-body experiences)很可能是由患者的耳朵损伤引起的。<br style=\"box-sizing: border-box; font-variant-numeric: normal; font-variant-east-asian: normal; font-size: 16px; line-height: 30px; font-family: &quot;Open Sans&quot;, Arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, STHeiti, &quot;WenQuanYi Micro Hei&quot;, SimSun, sans-serif; widows: 1; font-stretch: normal;\"><br style=\"box-sizing: border-box; font-variant-numeric: normal; font-variant-east-asian: normal; font-size: 16px; line-height: 30px; font-family: &quot;Open Sans&quot;, Arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, STHeiti, &quot;WenQuanYi Micro Hei&quot;, SimSun, sans-serif; widows: 1; font-stretch: normal;\">  数百年来,人们一直对所谓的“灵魂出窍”十分着迷,无数人宣称有过这种体验,但相关的解释却几乎没有。<br style=\"box-sizing: border-box; font-variant-numeric: normal; font-variant-east-asian: normal; font-size: 16px; line-height: 30px; font-family: &quot;Open Sans&quot;, Arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, STHeiti, &quot;WenQuanYi Micro Hei&quot;, SimSun, sans-serif; widows: 1; font-stretch: normal;\"><br style=\"box-sizing: border-box; font-variant-numeric: normal; font-variant-east-asian: normal; font-size: 16px; line-height: 30px; font-family: &quot;Open Sans&quot;, Arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, STHeiti, &quot;WenQuanYi Micro Hei&quot;, SimSun, sans-serif; widows: 1; font-stretch: normal;\">  近年来,研究者一直在推测(没有证据的情况下),前庭系统紊乱——比如内耳出现体液渗漏,或者鼓膜附近的神经受到感染——可能是引发这类现象的根源。<br style=\"box-sizing: border-box; font-variant-numeric: normal; font-variant-east-asian: normal; font-size: 16px; line-height: 30px; font-family: &quot;Open Sans&quot;, Arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, STHeiti, &quot;WenQuanYi Micro Hei&quot;, SimSun, sans-serif; widows: 1; font-stretch: normal;\"><br style=\"box-sizing: border-box; font-variant-numeric: normal; font-variant-east-asian: normal; font-size: 16px; line-height: 30px; font-family: &quot;Open Sans&quot;, Arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, STHeiti, &quot;WenQuanYi Micro Hei&quot;, SimSun, sans-serif; widows: 1; font-stretch: normal;\">  现在,法国艾克斯·马赛大学的神经学家首次对基于人口的证据进行了汇总,支持了灵魂出窍现象源于正常视觉系统与前庭系统脱节的观点。这项研究被认为是认识这种神秘现象的重要一步。<br style=\"box-sizing: border-box; font-variant-numeric: normal; font-variant-east-asian: normal; font-size: 16px; line-height: 30px; font-family: &quot;Open Sans&quot;, Arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, STHeiti, &quot;WenQuanYi Micro Hei&quot;, SimSun, sans-serif; widows: 1; font-stretch: normal;\"><br style=\"box-sizing: border-box; font-variant-numeric: normal; font-variant-east-asian: normal; font-size: 16px; line-height: 30px; font-family: &quot;Open Sans&quot;, Arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, STHeiti, &quot;WenQuanYi Micro Hei&quot;, SimSun, sans-serif; widows: 1; font-stretch: normal;\">  为了全面分析这一现象,研究负责人克里斯托弗·洛佩兹(Christophe Lopez)与一位前庭系统领域的专家玛雅·埃尔齐埃(Maya Elzière)展开合作,共同分析了210位埃尔齐埃的病人。所有这些病人都饱受因前庭系统紊乱,如感染或体液渗流而导致的头昏眼花等问题之苦。<br style=\"box-sizing: border-box; font-variant-numeric: normal; font-variant-east-asian: normal; font-size: 16px; line-height: 30px; font-family: &quot;Open Sans&quot;, Arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, STHeiti, &quot;WenQuanYi Micro Hei&quot;, SimSun, sans-serif; widows: 1; font-stretch: normal;\"><br style=\"box-sizing: border-box; font-variant-numeric: normal; font-variant-east-asian: normal; font-size: 16px; line-height: 30px; font-family: &quot;Open Sans&quot;, Arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, STHeiti, &quot;WenQuanYi Micro Hei&quot;, SimSun, sans-serif; widows: 1; font-stretch: normal;\">  两位研究者还对210位年龄和性别相对应,但没有眩晕历史的人进行了跟踪分析,作为对照组。<br style=\"box-sizing: border-box; font-variant-numeric: normal; font-variant-east-asian: normal; font-size: 16px; line-height: 30px; font-family: &quot;Open Sans&quot;, Arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, STHeiti, &quot;WenQuanYi Micro Hei&quot;, SimSun, sans-serif; widows: 1; font-stretch: normal;\"><br style=\"box-sizing: border-box; font-variant-numeric: normal; font-variant-east-asian: normal; font-size: 16px; line-height: 30px; font-family: &quot;Open Sans&quot;, Arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, STHeiti, &quot;WenQuanYi Micro Hei&quot;, SimSun, sans-serif; widows: 1; font-stretch: normal;\">  首先,他们发现,大部分经历过眩晕的患者在被确诊之前,都出现了抑郁、焦虑以及自我感丧失(depersonalization)等症状,而医生们将此归结于前庭系统的紊乱。<br style=\"box-sizing: border-box; font-variant-numeric: normal; font-variant-east-asian: normal; font-size: 16px; line-height: 30px; font-family: &quot;Open Sans&quot;, Arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, STHeiti, &quot;WenQuanYi Micro Hei&quot;, SimSun, sans-serif; widows: 1; font-stretch: normal;\"><br style=\"box-sizing: border-box; font-variant-numeric: normal; font-variant-east-asian: normal; font-size: 16px; line-height: 30px; font-family: &quot;Open Sans&quot;, Arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, STHeiti, &quot;WenQuanYi Micro Hei&quot;, SimSun, sans-serif; widows: 1; font-stretch: normal;\">  研究者表示,这些症状可能就预示着灵魂出窍的体验。在所有病人中,有29人(占14%)宣称曾经有过灵魂出窍的体验。<br style=\"box-sizing: border-box; font-variant-numeric: normal; font-variant-east-asian: normal; font-size: 16px; line-height: 30px; font-family: &quot;Open Sans&quot;, Arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, STHeiti, &quot;WenQuanYi Micro Hei&quot;, SimSun, sans-serif; widows: 1; font-stretch: normal;\"><br style=\"box-sizing: border-box; font-variant-numeric: normal; font-variant-east-asian: normal; font-size: 16px; line-height: 30px; font-family: &quot;Open Sans&quot;, Arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, STHeiti, &quot;WenQuanYi Micro Hei&quot;, SimSun, sans-serif; widows: 1; font-stretch: normal;\">  与此同时,对照组中有10个人(占5%)也宣称体验过灵魂出窍。这10个人不曾眩晕过,也没有前庭系统的紊乱症状,但都饱受与抑郁症相关的自我感丧失之苦。<br style=\"box-sizing: border-box; font-variant-numeric: normal; font-variant-east-asian: normal; font-size: 16px; line-height: 30px; font-family: &quot;Open Sans&quot;, Arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, STHeiti, &quot;WenQuanYi Micro Hei&quot;, SimSun, sans-serif; widows: 1; font-stretch: normal;\"><br style=\"box-sizing: border-box; font-variant-numeric: normal; font-variant-east-asian: normal; font-size: 16px; line-height: 30px; font-family: &quot;Open Sans&quot;, Arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, STHeiti, &quot;WenQuanYi Micro Hei&quot;, SimSun, sans-serif; widows: 1; font-stretch: normal;\">  洛佩兹解释道,大部分患者都是在第一次出现眩晕症状之后才体验到了灵魂出窍。研究团队的结论称,尽管抑郁症和自我感丧失可能是推动因素,但与耳部有关的损伤问题可能才是造成灵魂出窍体验的最主要原因。</p>', 0, 1, 0, 0, 1568048696, 1568048696);
INSERT INTO `news` VALUES (25, 22, '/uploads/20190910\\06134dbb013108f9181a10d615a8a7b6.png', '武汉科学技术馆讲解服务指南', ' 武汉科学技术馆讲解服务指南', '<p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 33px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">方法一:</strong></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 33px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">讲解员免费定时讲解&nbsp;</strong>&nbsp;</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 33px;\">时间:周六、周日(节假日另行安排)</p><table cellspacing=\"0\" cellpadding=\"0\" width=\"568\" align=\"center\" style=\"box-sizing: border-box; border: 0px; outline: 0px; font-size: 14px; background: rgb(255, 255, 255); border-spacing: 0px; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;\"><tbody style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\"><tr class=\"firstRow\" style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent; height: 42px;\"><td width=\"95\" height=\"42\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-color: windowtext; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center; line-height: 33px;\">展厅名称</p></td><td width=\"146\" height=\"42\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-color: windowtext; border-right-color: windowtext; border-bottom-color: windowtext; border-left: none; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center; line-height: 33px;\">上午场</p></td><td width=\"146\" height=\"42\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-color: windowtext; border-right-color: windowtext; border-bottom-color: windowtext; border-left: none; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center; line-height: 33px;\">下午场</p></td><td width=\"181\" height=\"42\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top-color: windowtext; border-right-color: windowtext; border-bottom-color: windowtext; border-left: none; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center; line-height: 33px;\">夜场(7月1日-10月31日)</p></td></tr><tr style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent; height: 42px;\"><td width=\"95\" height=\"42\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: windowtext; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center; line-height: 33px;\">生命展厅</p></td><td width=\"146\" height=\"42\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left: none; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center; line-height: 33px;\">9:20-9:40</p></td><td width=\"146\" height=\"42\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left: none; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center; line-height: 33px;\">14:00-14:20</p></td><td width=\"181\" height=\"42\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left: none; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center; line-height: 33px;\">18:00—18:20</p></td></tr><tr style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent; height: 42px;\"><td width=\"95\" height=\"42\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: windowtext; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center; line-height: 33px;\">宇宙展厅</p></td><td width=\"146\" height=\"42\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left: none; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center; line-height: 33px;\">9:45-10:05</p></td><td width=\"146\" height=\"42\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left: none; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center; line-height: 33px;\">14:25-14:45</p></td><td width=\"181\" height=\"42\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left: none; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center;\">18:25—18:45</p></td></tr><tr style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent; height: 42px;\"><td width=\"95\" height=\"42\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: windowtext; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center; line-height: 33px;\">水展厅</p></td><td width=\"146\" height=\"42\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left: none; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center; line-height: 33px;\">10:10-10:30</p></td><td width=\"146\" height=\"42\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left: none; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center; line-height: 33px;\">14:50-15:10</p></td><td width=\"181\" height=\"42\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left: none; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center; line-height: 33px;\">18:50—19:10</p></td></tr><tr style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent; height: 42px;\"><td width=\"95\" height=\"42\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: windowtext; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center; line-height: 33px;\">数学展厅</p></td><td width=\"146\" height=\"42\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left: none; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center; line-height: 33px;\">10:35-10:45</p></td><td width=\"146\" height=\"42\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left: none; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center; line-height: 33px;\">15:15-15:25</p></td><td width=\"181\" rowspan=\"2\" height=\"42\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left: none; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center; line-height: 33px;\">19:15—19:35</p></td></tr><tr style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent; height: 42px;\"><td width=\"95\" height=\"42\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: windowtext; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center; line-height: 33px;\">交通展厅</p></td><td width=\"146\" height=\"42\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left: none; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center; line-height: 33px;\">10:45-11:00</p></td><td width=\"146\" height=\"42\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left: none; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center; line-height: 33px;\">15:25-15:40</p></td></tr><tr style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent; height: 42px;\"><td width=\"95\" height=\"42\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: windowtext; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center; line-height: 33px;\">信息展厅</p></td><td width=\"146\" height=\"42\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left: none; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center; line-height: 33px;\">11:00-11:15</p></td><td width=\"146\" height=\"42\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left: none; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center; line-height: 33px;\">15:40-15:55</p></td><td width=\"181\" rowspan=\"2\" height=\"42\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left: none; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center; line-height: 33px;\">19:40—20:05</p></td></tr><tr style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent; height: 42px;\"><td width=\"95\" height=\"42\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left-color: windowtext; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center; line-height: 33px;\">光展厅</p></td><td width=\"146\" height=\"42\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left: none; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center; line-height: 33px;\">11:15-11:30</p></td><td width=\"146\" height=\"42\" style=\"box-sizing: border-box; padding-right: 7px; padding-left: 7px; border-top: none; border-right-color: windowtext; border-bottom-color: windowtext; border-left: none; outline: 0px; background: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: transparent; text-align: center; line-height: 33px;\">15:55-16:10</p></td></tr></tbody></table><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 33px; text-align: center;\">集合地点:各展厅入口处</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 33px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">方法二:</strong></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 33px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">语音导览设备</strong></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 33px;\">一、本馆提供语音导览服务,有中、英、日、韩四种语言。观众可根据需要租用语音导览设备,享受武汉科学技术馆里142件重点展项 (有&nbsp;<img src=\"http://www.whstm.org.cn/u/cms/www/201908/300943253va3.png\" style=\"box-sizing: border-box; border-width: 0px; border-style: initial; outline: 0px; background: transparent; max-width: 100%;\">&nbsp;&nbsp;标识)的讲解自助服务。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 33px;\">二、租用语音导览设备可在二楼服务台语音导览服务中心办理。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 33px;\">三、凭本人有效证件和200元/台押金办理语音导览机租赁手续。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 33px;\">四、语音导览机租用时间限当日9:00-15:30,请务必在当日15:30之前归还,如超时,将计入科技馆不良信用记录。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 33px;\">五、如在租用期间对语音导览机造成损毁,则按损毁程度进行赔偿。丢失则按物品原价进行赔偿。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 33px;\"><br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 33px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">方法三:</strong></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 33px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">武汉科技馆官方微信</strong></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 33px; text-align: center;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\"><img src=\"http://www.whstm.org.cn/u/cms/www/201908/3009300031es.jpg\" style=\"box-sizing: border-box; border-width: 0px; border-style: initial; outline: 0px; background: transparent; max-width: 100%; width: 522px; height: 428px;\"></strong></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 33px;\">办法:加入“武汉科学技术馆”官方微信→点击左下方“展馆服务”→点击“语音讲解”→输入展项名称(例如“向日葵的向阳性”)即可收听部分重点展项语音讲解。</p>', 0, 1, 0, 0, 1568076901, 1568076901);
INSERT INTO `news` VALUES (26, 22, '/uploads/20190910\\98ff81d3ea897c1fea7dbb5a8911b252.png', '武汉科技馆2019年中秋节期间开闭馆时间通告', '武汉科技馆2019年中秋节期间开闭馆时间通告', '<p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 43px;\">根据《国务院办公厅关于2019年部分节假日安排的通知》(国办发明电〔2018〕15号文)规定,经上级批准,结合我馆实际,为方便广大市民参观,现将2019年中秋节期间我馆开闭馆时间通告如下:</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 43px;\">9月13日至9月15日(周五至周日)开馆;</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 43px;\">9月16日、17日(周一、周二)正常闭馆检修;</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 43px;\">9月18日(周三)起正常开馆。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 43px;\">希望广大市民相互转告。闭馆期间,给您带来不便,敬请谅解!祝您节日愉快!&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 43px;\"><br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 43px; text-align: right;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 武汉科学技术馆</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 43px; text-align: right;\">2019年9月7日</p>', 0, 1, 0, 0, 1568076967, 1568076967);
INSERT INTO `news` VALUES (27, 22, '/uploads/20190910\\182578d5e5486fa52be0db2f421e2b63.png', '武汉科技馆儿童展厅实行 高峰期限额领票入场制度的通知', '武汉科技馆儿童展厅实行 高峰期限额领票入场制度的通知', '<p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 32px; line-height: 33px;\">目前,我馆儿童展厅参观方式采用的是清场制,每天分三场开放,每场限量500人。自暑假以来,观众量大幅度提升,儿童展厅入口处经常处于排队状态,高峰期进场前排队观众队伍站满了整个一楼公共区域,影响了馆内参观秩序,也易引发纠纷。为更好维护参观秩序,有效利用公共社会资源,确保儿童展厅公共安全,经研究决定,自2019年8月8日起,我馆儿童展厅高峰期对观众限额发放入场券,现将具体办法公告如下:</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 32px; line-height: 33px;\">&nbsp;</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 32px;\">一、适宜观众高峰期</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 32px; line-height: 37px;\">儿童展厅的高峰期包括周末、寒暑假、节假日及其他人流量大的时间段。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 32px; line-height: 37px;\">二、具体施行办法</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 32px; line-height: 37px;\">1、儿童展厅依然实行每天分三场开放;</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 32px; line-height: 37px;\">2、发券地点:儿童展厅入口公共走廊处;</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 32px; line-height: 37px;\">3、每一场发放500张入场券,观众依序领券,凭券入场;</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 32px; line-height: 37px;\">4、每场次的入场券按红、黄、蓝三色区分,标明场次及入场时间,领到入场券的观众在规定的时间和场次进入展厅,提前或者逾期(本场次清场后)均无效;</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 32px; line-height: 37px;\">5、入场券须由成年人带领1.3米以下适龄儿童前来领券,大人、儿童均需领券。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 32px; line-height: 37px;\">6、领券时间:开馆时间每天上午九点钟开始发券,从第一场开始发起,依次发放第二场和第三场,每场观众全部进入展厅后开始发放下一场入场券500张,发完即止;</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 32px; line-height: 37px;\">7、领到其他场次入场券的观众可先去参观其他展厅,在规定的时间内入场即可。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 32px; line-height: 37px;\">儿童展厅观众量很大,请您合理安排,错峰参观。若有不便,请您谅解支持。祝您参观愉快!</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 34px; line-height: 37px;\">&nbsp;</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 34px; line-height: 37px;\">&nbsp;</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 0em; line-height: 37px; text-align: right;\">武汉科学技术馆</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 0em; line-height: 37px; text-align: right;\">2019年8月8日</p>', 0, 1, 0, 0, 1568077048, 1568077048);
INSERT INTO `news` VALUES (28, 22, '/uploads/20190910\\f9228af08cce85f7d88962b67c4d74b4.png', '2019年武汉科技馆公开招聘科普辅导员公告', '2019年武汉科技馆公开招聘科普辅导员公告', '<p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">武汉科学技术馆因事业发展需要,根据市政府有关会议精神,面向社会公开招聘科普辅导员19名。招聘基本程序为:报名-审核-笔试-面试-政审-体检-入职。现将有关情况公告如下:</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 47px; line-height: 35px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">一、招聘对象</strong></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 43px; line-height: 35px;\">符合应聘条件和岗位要求的各类人员。详见岗位一览表(附件一)</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">二、招聘条件</strong></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">(一)基本条件</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">1、具有中华人民共和国国籍;</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">2、拥护中华人民共和国宪法,遵守法律,享有公民政治权利;</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">3、具有良好的品行,愿意履行事业单位工作人员义务,遵守事业单位工作纪律;</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">4、具有符合国家或行业规定并能坚持正常工作的年龄条件和身体条件;</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">5、具有适应岗位要求、正常履行职责的文化程度、专业或技能条件和工作能力;</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">6、岗位要求的其它条件。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">(二)有下列情形之一的人员不得报考</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">1、受到党纪、政纪处分或刑事处罚,正在处分(罚)期间的;</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">2、正在接受纪律审查、司法调查或者审计的;</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">3、曾因犯罪受过刑事处罚或者曾被开除公职的人员;</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">4、现役军人、在校学生;</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">5、未能与原单位解除劳动(聘用)合同的;</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">6、按照法律法规规定不得聘用的其他情形的人员。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 47px; line-height: 35px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">三、报名</strong></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">(一)网上报名</strong></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">应聘人员应于2019年8月7日12:00起至2019年8月14日12:00期间可登录武汉掌上人才网(www.whzsrc.com),点击“招聘·考试”栏目进行网上报名,选择报考单位及岗位,认真填写个人资料,提交的信息必须真实、准确、完整、有效,凡弄虚作假或信息不全者一律取消报考资格。应聘人员可于2019年8月8日12:00后登录报名网站查询初审结果。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">(二)现场确认报名</strong></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">查询到初审通过的考生须于2019年8月16日(上午9:00-11:30,下午14:30-17:00)前往武汉科学技术馆(地址:沿江大道91号,联系电话:027-50750655)提交如下报名材料以确认报名资格:</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">1、本人二代身份证原件及复印件1份;</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">2、大学本科及以上学历毕业证、学位证原件及复印件1份;</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">3、教育部学历证书电子注册备案表或学籍在线验证报告1份;(登录学信网查询后自行下载及打印,并确认打印的报告在有效期内)</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 47px; line-height: 35px;\">4、本人《报名表》;(在武汉掌上人才资格审查页面自行下载打印)</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">5、普通话等级证书原件及复印件1份;</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">6、其他必要的证明材料。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">提醒:未按规定时间现场确认视为自动放弃考试资格,不做笔试安排。</strong></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">(三)免笔试资格确认</strong></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">具有高级专业技术职称或博士学历学位的人员,携带如下证明材料须于8月16日(上午9:00-11:30,下午14:30-17:00)前往武汉科学技术馆(地址:沿江大道91号)办理免笔试手续。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 47px; line-height: 35px;\">1、本人《报名表》(在武汉掌上人才资格审查页面自行下载打印);</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 47px; line-height: 35px;\">2、本人二代身份证原件及复印件1份;</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 47px; line-height: 35px;\">3、往届博士提供学历学位证书原件及复印件1份,应届博士提供学生证原件及复印件1份;</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">4、高级专业技术人员提供《高级专业技术资格证书》原件及复印件1份。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">(四)网上打印准考证</strong></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">参加现场报名确认(含免笔试人员)的应聘人员须于2019年8月20日登录官方报名网站下载并打印准考证,未在规定时间内下载打印准考证的人员,视为自动放弃报考资格。笔试、面试使用同一准考证,请妥善保管。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 47px; line-height: 35px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">四、笔试</strong></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">笔试实行百分制,具体时间及地点将以准考证为准,相关事宜请关注武汉掌上人才网的最新公告。笔试后一周左右,考生可登陆武汉掌上人才查询本人笔试成绩。根据笔试成绩从高分到低分排序,按岗位招聘人数与参考人数1:3比例确定复审人员。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 47px; line-height: 35px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">五、资格复审</strong></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">进入资格复审的人员需于指定时间地点参加复审,具体事宜另行通知。复审合格方可进入面试,复审不合格的取消面试资格,并按照笔试成绩高低顺序依次递补。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 47px; line-height: 35px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">六、面试</strong></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">面试实行百分制,采取能力测试的方式进行,具体时间及地点另行通知。综合成绩采取百分制,笔试和面试成绩按4:6比例计入考生综合成绩。办理免试人员的笔试成绩即为该岗位所有入围面试考生的笔试平均成绩,直接进入面试,不受面试比例限制,不占用面试指标。综合成绩相同的考生,以面试成绩高低确定排名。综合成绩预计在面试结束后一周左右发布。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 47px; line-height: 35px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">七、体检、政审</strong></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">按综合成绩从高到低的顺序以1:1比例确定进入体检和政审环节的人员。拟入职人员需统一前往指定医院进行体检,如本次入围的拟聘人员中出现本人放弃、体检或政审不合格、不按规定参加体检及政审等情况,将按综合成绩高低顺次递补拟聘人员,不再另行组织招聘。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 47px; line-height: 35px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">八、聘用管理</strong></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">拟聘用人员经公示无异议者,可以办理入职手续,与武汉人才市场有限公司签订劳动合同,发放工资,统一办理基本养老保险、医疗、失业、工伤、生育等社会保险及住房公积金,在合同规定的试用期内进行试用,试用期经考核合格者,按照岗位设置的要求,予以录用;考核不合格的人员解除劳动合同。本次招聘岗位休假制度为周三至周日正常上班,周一周二换休,法定节假日换休另行安排。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 47px; line-height: 35px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">九、其他事项</strong></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">(一)公告发布以后各环节的有关通知,将通过武汉掌上人才网(www.whzsrc.com)及其微信公众号“武汉掌上人才”进行发布,以上网站为本次招聘的指定官方消息发布平台,如有其他任何第三方网站、邮件或短信散布的关于培训等言论均为不实信息,请考生提高警惕,切勿上当受骗。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">(二)资格审查贯穿整个招聘过程,资格审查可在任何一个环节进行,如发现报考人员提供虚假报考材料或在考试中有弄虚作假行为的,一经查实,立即取消报考资格,所签劳动合同无效。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">(三)报名政策及资格审核咨询:027-50750655</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 35px;\">准考证下载及成绩查询:027-83883626(请在工作日工作时间内拨打,其余时间不受理)</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 35px;\">&nbsp;</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 47px; line-height: 35px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">特别声明:武汉掌上人才与武汉科学技术馆在招聘过程中不收取报名者任何费用!也未与任何培训机构合作!</strong></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 47px; line-height: 35px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">&nbsp;</strong></p><p style=\"box-sizing: border-box; margin-right: 37px; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-align: right; line-height: 35px;\">武汉科学技术馆</p><p style=\"box-sizing: border-box; margin-right: 37px; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-align: right; line-height: 35px;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;2019年8月7日</p>', 0, 0, 0, 0, 1568077132, 1569574713);
INSERT INTO `news` VALUES (29, 2, '/uploads/new_cover/20190927\\42f49ba3c2ac290ea93705dd60588684.jpg', 'ThinkPHP6.0RC4版本发布——ORM独立,日志多通道支持', 'RC4版本主要改进包括ORM库独立,日志系统增加多通道支持,缓存、日志、数据库的配置文件统一调整为多通道模式,并做了大量的改进和修正。', '<h3 style=\"box-sizing: inherit; margin: 0px 0px 14px; padding: 0px; line-height: 1.43; font-weight: 500; font-size: 24px; font-family: &quot;Segoe UI Light&quot;, &quot;Segoe UI&quot;, &quot;Microsoft Jhenghei&quot;, &quot;Microsoft Yahei&quot;, arial, sans-serif; color: rgb(82, 82, 82); white-space: normal;\">2019 年 8 月 16 日 发布</h3><p style=\"box-sizing: inherit; margin-top: 20px; margin-bottom: 20px; padding: 0px; line-height: 2; font-size: 17px; color: rgb(82, 82, 82); font-family: &quot;Helvetica Neue&quot;, NotoSansHans-Regular, AvenirNext-Regular, arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft Yahei&quot;, &quot;WenQuanYi Micro Hei&quot;, serif; white-space: normal;\"><code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">RC4</code>版本主要改进包括<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">ORM</code>库独立,日志系统增加多通道支持,缓存、日志、数据库的配置文件统一调整为多通道模式,并做了大量的改进和修正。</p><blockquote class=\"danger\" style=\"box-sizing: inherit; margin: 14px 0px; padding: 5px 5px 5px 15px; line-height: 1.2; color: rgb(217, 83, 79); border-left: 4px solid rgb(217, 83, 79); background-color: rgb(253, 247, 247); border-top-color: rgb(217, 83, 79); border-right-color: rgb(217, 83, 79); border-bottom-color: rgb(217, 83, 79); font-family: &quot;Helvetica Neue&quot;, NotoSansHans-Regular, AvenirNext-Regular, arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft Yahei&quot;, &quot;WenQuanYi Micro Hei&quot;, serif; font-size: 15px; white-space: normal;\"><p style=\"box-sizing: inherit; margin-top: 10px; margin-bottom: 10px; padding: 0px; line-height: 2; font-size: 17px;\">本次更新相对于<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">RC3</code>版本主要涉及配置文件的更新,其它调整参考更新日志的用法调整部分。</p></blockquote><h2 style=\"box-sizing: inherit; margin: 14px 0px; padding: 0px 0px 0.3em; line-height: 1.225; font-weight: 500; font-size: 28px; border-bottom: 1px solid rgb(238, 238, 238); font-family: &quot;Segoe UI Light&quot;, &quot;Segoe UI&quot;, &quot;Microsoft Jhenghei&quot;, &quot;Microsoft Yahei&quot;, arial, sans-serif; color: rgb(82, 82, 82); white-space: normal;\"><a id=\"_7\" style=\"box-sizing: inherit; margin: -10px 0px 0px; padding: 0px; color: rgb(0, 154, 97); position: absolute;\"></a>主要新特性</h2><h3 style=\"box-sizing: inherit; margin: 14px 0px; padding: 0px; line-height: 1.43; font-weight: 500; font-size: 24px; font-family: &quot;Segoe UI Light&quot;, &quot;Segoe UI&quot;, &quot;Microsoft Jhenghei&quot;, &quot;Microsoft Yahei&quot;, arial, sans-serif; color: rgb(82, 82, 82); white-space: normal;\"><a id=\"thinkorm_9\" style=\"box-sizing: inherit; margin: -10px 0px 0px; padding: 0px; color: rgb(0, 154, 97); position: absolute;\"></a>数据库和模型改为独立的<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">think-orm</code>库</h3><p style=\"box-sizing: inherit; margin-top: 20px; margin-bottom: 20px; padding: 0px; line-height: 2; font-size: 17px; color: rgb(82, 82, 82); font-family: &quot;Helvetica Neue&quot;, NotoSansHans-Regular, AvenirNext-Regular, arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft Yahei&quot;, &quot;WenQuanYi Micro Hei&quot;, serif; white-space: normal;\">数据库和模型操作核心不再内置,改为统一依赖<a href=\"https://github.com/top-think/think-orm\" target=\"_blank\" style=\"box-sizing: inherit; margin: 0px; padding: 0px; color: rgb(0, 154, 97); text-decoration-line: none;\"><code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">topthink/think-orm</code></a>库(该类库已经包括其它的数据库驱动),用法保持一致,功能也没有任何的缺失。</p><p style=\"box-sizing: inherit; margin-top: 20px; margin-bottom: 20px; padding: 0px; line-height: 2; font-size: 17px; color: rgb(82, 82, 82); font-family: &quot;Helvetica Neue&quot;, NotoSansHans-Regular, AvenirNext-Regular, arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft Yahei&quot;, &quot;WenQuanYi Micro Hei&quot;, serif; white-space: normal;\">此前<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">think-orm</code>库已经独立更新维护,但一直是同步核心的ORM,<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">2.0</code>版本进行了架构调整,保持独立性的同时支持框架依赖,以后数据库操作这块统一在此类库更新。</p><h3 style=\"box-sizing: inherit; margin: 14px 0px; padding: 0px; line-height: 1.43; font-weight: 500; font-size: 24px; font-family: &quot;Segoe UI Light&quot;, &quot;Segoe UI&quot;, &quot;Microsoft Jhenghei&quot;, &quot;Microsoft Yahei&quot;, arial, sans-serif; color: rgb(82, 82, 82); white-space: normal;\"><a id=\"_15\" style=\"box-sizing: inherit; margin: -10px 0px 0px; padding: 0px; color: rgb(0, 154, 97); position: absolute;\"></a>模型功能增强</h3><p style=\"box-sizing: inherit; margin-top: 20px; margin-bottom: 20px; padding: 0px; line-height: 2; font-size: 17px; color: rgb(82, 82, 82); font-family: &quot;Helvetica Neue&quot;, NotoSansHans-Regular, AvenirNext-Regular, arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft Yahei&quot;, &quot;WenQuanYi Micro Hei&quot;, serif; white-space: normal;\">对模型做了大量的功能改进,主要包括:</p><ul style=\"box-sizing: inherit; margin-top: 14px; margin-bottom: 14px; padding: 0px 0px 0px 28px; line-height: 1.2; color: rgb(82, 82, 82); font-family: &quot;Helvetica Neue&quot;, NotoSansHans-Regular, AvenirNext-Regular, arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft Yahei&quot;, &quot;WenQuanYi Micro Hei&quot;, serif; font-size: 15px; white-space: normal;\" class=\" list-paddingleft-2\"><li><p>关联类增加<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">withField</code>和<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">withLimit</code>方法</p></li><li><p>改进模型的<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">hasWhere</code>方法对闭包查询条件的支持完善</p></li><li><p>支持<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">has</code>/<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">hasWhere</code>的多次调用</p></li><li><p>模型的<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">has</code>/<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">hasWhere</code>方法支持软删除</p></li><li><p>增加远程一对一关联</p></li><li><p>远程一对一和一对多支持预载入及<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">has</code>/<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">hasWhere</code>查询</p></li><li><p>模型类支持序列化及缓存操作</p></li><li><p>关联预载入查询支持缓存</p></li><li><p>模型方法支持依赖注入</p></li><li><p>模型事件改进支持系统事件系统</p></li></ul><h3 style=\"box-sizing: inherit; margin: 14px 0px; padding: 0px; line-height: 1.43; font-weight: 500; font-size: 24px; font-family: &quot;Segoe UI Light&quot;, &quot;Segoe UI&quot;, &quot;Microsoft Jhenghei&quot;, &quot;Microsoft Yahei&quot;, arial, sans-serif; color: rgb(82, 82, 82); white-space: normal;\"><a id=\"WEB_30\" style=\"box-sizing: inherit; margin: -10px 0px 0px; padding: 0px; color: rgb(0, 154, 97); position: absolute;\"></a>日志支持多通道、并统一命令行和WEB日志格式</h3><p style=\"box-sizing: inherit; margin-top: 20px; margin-bottom: 20px; padding: 0px; line-height: 2; font-size: 17px; color: rgb(82, 82, 82); font-family: &quot;Helvetica Neue&quot;, NotoSansHans-Regular, AvenirNext-Regular, arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft Yahei&quot;, &quot;WenQuanYi Micro Hei&quot;, serif; white-space: normal;\">此次更新对日志类做了较大的调整和增强,主要包括:</p><ul style=\"box-sizing: inherit; margin-top: 14px; margin-bottom: 14px; padding: 0px 0px 0px 28px; line-height: 1.2; color: rgb(82, 82, 82); font-family: &quot;Helvetica Neue&quot;, NotoSansHans-Regular, AvenirNext-Regular, arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft Yahei&quot;, &quot;WenQuanYi Micro Hei&quot;, serif; font-size: 15px; white-space: normal;\" class=\" list-paddingleft-2\"><li><p>日志增加多通道支持,可以同时或者切换写入多个通道</p></li><li><p>WEB和CLI的日志记录格式统一,并支持日志格式化</p></li><li><p>对JSON日志格式的改进</p></li><li><p>支持日志写入事件</p></li></ul><p style=\"box-sizing: inherit; margin-top: 20px; margin-bottom: 20px; padding: 0px; line-height: 2; font-size: 17px; color: rgb(82, 82, 82); font-family: &quot;Helvetica Neue&quot;, NotoSansHans-Regular, AvenirNext-Regular, arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft Yahei&quot;, &quot;WenQuanYi Micro Hei&quot;, serif; white-space: normal;\">具体用法变化可以参考之前的博客:<a href=\"https://blog.thinkphp.cn/1186947\" target=\"_blank\" style=\"box-sizing: inherit; margin: 0px; padding: 0px; color: rgb(0, 154, 97); text-decoration-line: none;\">6.0日志变化</a></p><h3 style=\"box-sizing: inherit; margin: 14px 0px; padding: 0px; line-height: 1.43; font-weight: 500; font-size: 24px; font-family: &quot;Segoe UI Light&quot;, &quot;Segoe UI&quot;, &quot;Microsoft Jhenghei&quot;, &quot;Microsoft Yahei&quot;, arial, sans-serif; color: rgb(82, 82, 82); white-space: normal;\"><a id=\"Filesystem_41\" style=\"box-sizing: inherit; margin: -10px 0px 0px; padding: 0px; color: rgb(0, 154, 97); position: absolute;\"></a>增加<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">Filesystem</code>组件</h3><p style=\"box-sizing: inherit; margin-top: 20px; margin-bottom: 20px; padding: 0px; line-height: 2; font-size: 17px; color: rgb(82, 82, 82); font-family: &quot;Helvetica Neue&quot;, NotoSansHans-Regular, AvenirNext-Regular, arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft Yahei&quot;, &quot;WenQuanYi Micro Hei&quot;, serif; white-space: normal;\"><code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">Filesystem</code>组件用以替代之前的上传类,提供了更多上传到远端的扩展库支持。</p><h3 style=\"box-sizing: inherit; margin: 14px 0px; padding: 0px; line-height: 1.43; font-weight: 500; font-size: 24px; font-family: &quot;Segoe UI Light&quot;, &quot;Segoe UI&quot;, &quot;Microsoft Jhenghei&quot;, &quot;Microsoft Yahei&quot;, arial, sans-serif; color: rgb(82, 82, 82); white-space: normal;\"><a id=\"_45\" style=\"box-sizing: inherit; margin: -10px 0px 0px; padding: 0px; color: rgb(0, 154, 97); position: absolute;\"></a>容器对象增加回调机制</h3><p style=\"box-sizing: inherit; margin-top: 20px; margin-bottom: 20px; padding: 0px; line-height: 2; font-size: 17px; color: rgb(82, 82, 82); font-family: &quot;Helvetica Neue&quot;, NotoSansHans-Regular, AvenirNext-Regular, arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft Yahei&quot;, &quot;WenQuanYi Micro Hei&quot;, serif; white-space: normal;\">容器中的对象实例化之后,引入回调机制,利用该机制可以实现诸如注解功能等相关功能。</p><p style=\"box-sizing: inherit; margin-top: 20px; margin-bottom: 20px; padding: 0px; line-height: 2; font-size: 17px; color: rgb(82, 82, 82); font-family: &quot;Helvetica Neue&quot;, NotoSansHans-Regular, AvenirNext-Regular, arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft Yahei&quot;, &quot;WenQuanYi Micro Hei&quot;, serif; white-space: normal;\">你可以通过<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">resolving</code>方法注册一个全局回调</p><pre style=\"box-sizing: inherit; margin-top: 14px; margin-bottom: 14px; padding: 16px; line-height: 1.45; background-color: rgb(249, 250, 250); font-family: monaco, Consolas, &quot;Liberation Mono&quot;, Menlo, Courier, monospace; overflow: auto; border: 1px solid rgb(228, 228, 228); border-radius: 1px; color: rgb(82, 82, 82); font-size: 15px;\">Container::getInstance()-&gt;resolving(function($instance,$container)&nbsp;{\n&nbsp;&nbsp;&nbsp;&nbsp;//&nbsp;...});</pre><p style=\"box-sizing: inherit; margin-top: 20px; margin-bottom: 20px; padding: 0px; line-height: 2; font-size: 17px; color: rgb(82, 82, 82); font-family: &quot;Helvetica Neue&quot;, NotoSansHans-Regular, AvenirNext-Regular, arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft Yahei&quot;, &quot;WenQuanYi Micro Hei&quot;, serif; white-space: normal;\">回调方法支持两个参数,第一个参数是容器对象实例,第二个参数是容器实例本身。</p><p style=\"box-sizing: inherit; margin-top: 20px; margin-bottom: 20px; padding: 0px; line-height: 2; font-size: 17px; color: rgb(82, 82, 82); font-family: &quot;Helvetica Neue&quot;, NotoSansHans-Regular, AvenirNext-Regular, arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft Yahei&quot;, &quot;WenQuanYi Micro Hei&quot;, serif; white-space: normal;\">或者单独注册一个某个容器对象的回调</p><pre style=\"box-sizing: inherit; margin-top: 14px; margin-bottom: 14px; padding: 16px; line-height: 1.45; background-color: rgb(249, 250, 250); font-family: monaco, Consolas, &quot;Liberation Mono&quot;, Menlo, Courier, monospace; overflow: auto; border: 1px solid rgb(228, 228, 228); border-radius: 1px; color: rgb(82, 82, 82); font-size: 15px;\">Container::getInstance()-&gt;resolving(\\think\\Cache::class,function($instance,$container)&nbsp;{\n&nbsp;&nbsp;&nbsp;&nbsp;//&nbsp;...});</pre><h3 style=\"box-sizing: inherit; margin: 14px 0px; padding: 0px; line-height: 1.43; font-weight: 500; font-size: 24px; font-family: &quot;Segoe UI Light&quot;, &quot;Segoe UI&quot;, &quot;Microsoft Jhenghei&quot;, &quot;Microsoft Yahei&quot;, arial, sans-serif; color: rgb(82, 82, 82); white-space: normal;\"><a id=\"thinkannotation_65\" style=\"box-sizing: inherit; margin: -10px 0px 0px; padding: 0px; color: rgb(0, 154, 97); position: absolute;\"></a>路由注解独立为<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">think-annotation</code>库</h3><p style=\"box-sizing: inherit; margin-top: 20px; margin-bottom: 20px; padding: 0px; line-height: 2; font-size: 17px; color: rgb(82, 82, 82); font-family: &quot;Helvetica Neue&quot;, NotoSansHans-Regular, AvenirNext-Regular, arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft Yahei&quot;, &quot;WenQuanYi Micro Hei&quot;, serif; white-space: normal;\">路由注解功能独立为<a href=\"https://github.com/top-think/think-annotation\" target=\"_blank\" style=\"box-sizing: inherit; margin: 0px; padding: 0px; color: rgb(0, 154, 97); text-decoration-line: none;\"><code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">think-annotation</code></a>库,并且使用更加规范,支持IDE提示。</p><h3 style=\"box-sizing: inherit; margin: 14px 0px; padding: 0px; line-height: 1.43; font-weight: 500; font-size: 24px; font-family: &quot;Segoe UI Light&quot;, &quot;Segoe UI&quot;, &quot;Microsoft Jhenghei&quot;, &quot;Microsoft Yahei&quot;, arial, sans-serif; color: rgb(82, 82, 82); white-space: normal;\"><a id=\"_69\" style=\"box-sizing: inherit; margin: -10px 0px 0px; padding: 0px; color: rgb(0, 154, 97); position: absolute;\"></a>多应用模式下路由定义支持纳入应用目录</h3><p style=\"box-sizing: inherit; margin-top: 20px; margin-bottom: 20px; padding: 0px; line-height: 2; font-size: 17px; color: rgb(82, 82, 82); font-family: &quot;Helvetica Neue&quot;, NotoSansHans-Regular, AvenirNext-Regular, arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft Yahei&quot;, &quot;WenQuanYi Micro Hei&quot;, serif; white-space: normal;\">在多应用模式下,路由定义文件支持放入应用目录的<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">route</code>目录下。</p><h3 style=\"box-sizing: inherit; margin: 14px 0px; padding: 0px; line-height: 1.43; font-weight: 500; font-size: 24px; font-family: &quot;Segoe UI Light&quot;, &quot;Segoe UI&quot;, &quot;Microsoft Jhenghei&quot;, &quot;Microsoft Yahei&quot;, arial, sans-serif; color: rgb(82, 82, 82); white-space: normal;\"><a id=\"view_73\" style=\"box-sizing: inherit; margin: -10px 0px 0px; padding: 0px; color: rgb(0, 154, 97); position: absolute;\"></a>模板根目录默认放入根目录下的<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">view</code>目录</h3><p style=\"box-sizing: inherit; margin-top: 20px; margin-bottom: 20px; padding: 0px; line-height: 2; font-size: 17px; color: rgb(82, 82, 82); font-family: &quot;Helvetica Neue&quot;, NotoSansHans-Regular, AvenirNext-Regular, arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft Yahei&quot;, &quot;WenQuanYi Micro Hei&quot;, serif; white-space: normal;\">模板根目录默认从应用目录下移动到根目录的<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">view</code>目录,如果是多应用模式的话,下面是应用子目录,如果你需要改回放入原先的应用目录下,可以在应用的<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">template</code>配置文件中定义<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">view_path</code>。</p><pre style=\"box-sizing: inherit; margin-top: 14px; margin-bottom: 14px; padding: 16px; line-height: 1.45; background-color: rgb(249, 250, 250); font-family: monaco, Consolas, &quot;Liberation Mono&quot;, Menlo, Courier, monospace; overflow: auto; border: 1px solid rgb(228, 228, 228); border-radius: 1px; color: rgb(82, 82, 82); font-size: 15px;\">&#39;view_path&#39;&nbsp;&nbsp;&nbsp;&nbsp;=&gt;&nbsp;&nbsp;&nbsp;&nbsp;app_path(&#39;view&#39;),</pre><h2 style=\"box-sizing: inherit; margin: 14px 0px; padding: 0px 0px 0.3em; line-height: 1.225; font-weight: 500; font-size: 28px; border-bottom: 1px solid rgb(238, 238, 238); font-family: &quot;Segoe UI Light&quot;, &quot;Segoe UI&quot;, &quot;Microsoft Jhenghei&quot;, &quot;Microsoft Yahei&quot;, arial, sans-serif; color: rgb(82, 82, 82); white-space: normal;\"><a id=\"_81\" style=\"box-sizing: inherit; margin: -10px 0px 0px; padding: 0px; color: rgb(0, 154, 97); position: absolute;\"></a>更新日志</h2><h3 style=\"box-sizing: inherit; margin: 14px 0px; padding: 0px; line-height: 1.43; font-weight: 500; font-size: 24px; font-family: &quot;Segoe UI Light&quot;, &quot;Segoe UI&quot;, &quot;Microsoft Jhenghei&quot;, &quot;Microsoft Yahei&quot;, arial, sans-serif; color: rgb(82, 82, 82); white-space: normal;\"><a id=\"_83\" style=\"box-sizing: inherit; margin: -10px 0px 0px; padding: 0px; color: rgb(0, 154, 97); position: absolute;\"></a>功能改进</h3><ul style=\"box-sizing: inherit; margin-top: 14px; margin-bottom: 14px; padding: 0px 0px 0px 28px; line-height: 1.2; color: rgb(82, 82, 82); font-family: &quot;Helvetica Neue&quot;, NotoSansHans-Regular, AvenirNext-Regular, arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft Yahei&quot;, &quot;WenQuanYi Micro Hei&quot;, serif; font-size: 15px; white-space: normal;\" class=\" list-paddingleft-2\"><li><p>改进路由类的配置读取</p></li><li><p>改进<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">parseLike</code>查询</p></li><li><p>改进<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">ViewResponse</code>类增加内容渲染输出支持</p></li><li><p>增加<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">display</code>助手函数</p></li><li><p>验证类<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">maker</code>方法支持注入扩展验证规则</p></li><li><p>改进事件触发的对象传入</p></li><li><p>改进<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">Console/Table</code>类</p></li><li><p>改进关联定义对查询构造器的支持</p></li><li><p>关联类增加<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">withField</code>和<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">withLimit</code>方法,并取消<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">Query</code>类<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">withField</code>方法</p></li><li><p>增加延迟关联查询对<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">withLimit</code>的支持</p></li><li><p>改进模型<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">toArray</code>方法</p></li><li><p>改进Url生成的域名参数</p></li><li><p>改进&nbsp;<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">make:command</code>指令生成</p></li><li><p>缓存有效期支持<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">DateInterval</code></p></li><li><p>改进Query类find方法</p></li><li><p>改进<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">json</code>查询</p></li><li><p>改进查询缓存</p></li><li><p>增加<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">filesystem</code>组件</p></li><li><p>改进跨域请求</p></li><li><p>改进路由检测缓存配置</p></li><li><p>改进注解路由的文件写入</p></li><li><p>路由注册支持注册<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">options</code>请求类型</p></li><li><p>改进重定向路由检测</p></li><li><p>改进模型的<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">hasWhere</code>方法对闭包查询条件的支持完善</p></li><li><p>增加<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">time_query_rule</code>数据库配置参数 用于自定义时间查询规则</p></li><li><p>改进时间字段类型的自动识别</p></li><li><p>改进<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">redis</code>驱动</p></li><li><p>容器对象增加<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">invoke</code>回调机制</p></li><li><p>改进多对多关联</p></li><li><p>资源路由增加<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">withModel</code>和<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">withValidate</code>对各个路由设置不同的模型绑定和验证</p></li><li><p>改进<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">getLastInsID</code>方法</p></li><li><p>日志类调整 支持多通道写入</p></li><li><p>改进模型输出</p></li><li><p>支持单独关闭某个通道的日志写入</p></li><li><p>取消部署模式下 不写入调试日志的功能 用调试级别设置单独的日志渠道来替代</p></li><li><p>改进日志记录格式</p></li><li><p>支持日志输出格式化</p></li><li><p>改进资源路由</p></li><li><p>改进命令行日志实时写入</p></li><li><p>日志通道支持单独设置level配置参数</p></li><li><p>Log类调整优化</p></li><li><p>增加<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">paginateX</code>查询用于大数据分页查询</p></li><li><p>数据集增加<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">first</code>和<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">last</code>方法</p></li><li><p>改进<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">response/View</code>类的<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">assign</code>方法</p></li><li><p>改进请求参数获取问题</p></li><li><p>改进<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">pathinfo</code>方法</p></li><li><p>增加一些路径助手函数</p></li><li><p>改进多级控制器访问</p></li><li><p>Log类支持<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">__call</code>方法</p></li><li><p>多应用模式的路由定义支持放入单独的应用目录</p></li><li><p>模型增加依赖注入支持</p></li><li><p>改进模型事件</p></li><li><p>改进页面<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">Trace</code>机制</p></li><li><p>改进<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">validate</code>助手函数,支持设置验证失败后是否抛出异常</p></li><li><p>改进容器<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">bind</code>方法</p></li><li><p>改进Redis Session驱动</p></li><li><p>改进日志记录的空行问题</p></li><li><p>改进<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">RedirectResponse</code></p></li><li><p>改进缓存驱动</p></li><li><p>改进<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">think optimize:schema</code>&nbsp;指令</p></li><li><p>Url类增加https方法</p></li><li><p>改进<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">isPjax</code>判断</p></li><li><p>改进Db类配置获取</p></li></ul><h3 style=\"box-sizing: inherit; margin: 14px 0px; padding: 0px; line-height: 1.43; font-weight: 500; font-size: 24px; font-family: &quot;Segoe UI Light&quot;, &quot;Segoe UI&quot;, &quot;Microsoft Jhenghei&quot;, &quot;Microsoft Yahei&quot;, arial, sans-serif; color: rgb(82, 82, 82); white-space: normal;\"><a id=\"_151\" style=\"box-sizing: inherit; margin: -10px 0px 0px; padding: 0px; color: rgb(0, 154, 97); position: absolute;\"></a>问题修正</h3><ul style=\"box-sizing: inherit; margin-top: 14px; margin-bottom: 14px; padding: 0px 0px 0px 28px; line-height: 1.2; color: rgb(82, 82, 82); font-family: &quot;Helvetica Neue&quot;, NotoSansHans-Regular, AvenirNext-Regular, arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft Yahei&quot;, &quot;WenQuanYi Micro Hei&quot;, serif; font-size: 15px; white-space: normal;\" class=\" list-paddingleft-2\"><li><p>修正模型属性获取</p></li><li><p>修正Request类的过滤功能</p></li><li><p>修正<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">subDomain</code>方法</p></li><li><p>修正<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">input</code>助手函数</p></li><li><p>修正模型<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">refresh</code>方法</p></li><li><p>修正关联统计不使用子查询的方式</p></li><li><p>修正Request类<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">root</code>方法</p></li><li><p>修正缓存有效期处理</p></li><li><p>修正<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">MorphTo</code>关联</p></li><li><p>修正缓存标签</p></li><li><p>修正mysql驱动<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">insert</code>方法</p></li><li><p>修正Db类<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">connect</code>方法</p></li><li><p>修正<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">allowCrossDomain</code>方法</p></li><li><p>修正Query类<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">chunk</code>方法</p></li><li><p>修正分组跨域</p></li><li><p>修正关联预载入查询</p></li><li><p>修正时间字段写入</p></li><li><p>修正验证类<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">checkSize</code></p></li><li><p>修正多对多关联闭包</p></li><li><p>修正RuleName类<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">setRule</code>方法</p></li><li><p>修正<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">whereTime</code>查询</p></li><li><p>修正<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">request</code>助手函数</p></li><li><p>修正日志关闭配置</p></li><li><p>修复对多字节字符的兼容性</p></li></ul><h3 style=\"box-sizing: inherit; margin: 14px 0px; padding: 0px; line-height: 1.43; font-weight: 500; font-size: 24px; font-family: &quot;Segoe UI Light&quot;, &quot;Segoe UI&quot;, &quot;Microsoft Jhenghei&quot;, &quot;Microsoft Yahei&quot;, arial, sans-serif; color: rgb(82, 82, 82); white-space: normal;\"><a id=\"_180\" style=\"box-sizing: inherit; margin: -10px 0px 0px; padding: 0px; color: rgb(0, 154, 97); position: absolute;\"></a>用法调整</h3><ul style=\"box-sizing: inherit; margin-top: 14px; margin-bottom: 14px; padding: 0px 0px 0px 28px; line-height: 1.2; color: rgb(82, 82, 82); font-family: &quot;Helvetica Neue&quot;, NotoSansHans-Regular, AvenirNext-Regular, arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft Yahei&quot;, &quot;WenQuanYi Micro Hei&quot;, serif; font-size: 15px; white-space: normal;\" class=\" list-paddingleft-2\"><li><p>模型切换后缀方法<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">switch</code>更改为<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">suffix</code></p></li><li><p>关联定义仅支持查询类的方法</p></li><li><p>取消Query类的<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">fetchArray</code>方法</p></li><li><p><code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">select</code>查询方法默认返回数据集对象</p></li><li><p>取消<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">optimize:config</code>指令</p></li><li><p>调整数据库和缓存配置文件格式 默认采用多类型支持 方便切换</p></li><li><p>Cache类的<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">init</code>和<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">connect</code>方法取消 并入<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">store</code>方法</p></li><li><p><code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">cache</code>助手函数取消初始化用法</p></li><li><p><code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">cache</code>助手函数留空返回Cache对象</p></li><li><p>默认时间字段类型改为<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">timestamp</code></p></li><li><p>注解路由移出核心,注解相关功能使用<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">topthink/think-annotation</code></p></li><li><p>改进路由 取消<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">url_convert</code>配置参数</p></li><li><p>取消<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">route:build</code>指令</p></li><li><p>调整默认模板目录为根目录<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">view</code></p></li><li><p>取消默认的请求日志记录 在项目里面自己添加</p></li><li><p>统一<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">find</code>查询必须使用查询条件</p></li><li><p>扩展的<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">service</code>配置文件默认放到<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">vendor</code>目录下</p></li><li><p>废除<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">LogLevel</code>事件</p></li><li><p>取消App类的序列化方法</p></li><li><p>控制台的<code style=\"box-sizing: inherit; margin: 0px 5px; padding: 2px 6px; display: inline-block; border-radius: 4px; word-break: break-all; white-space: pre; line-height: 1.3; background: rgb(249, 250, 250); font-family: Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace; border: 1px solid rgb(222, 217, 217);\">user</code>配置改为通过静态方法设置当前执行用户</p></li></ul><p style=\"box-sizing: inherit; margin-top: 20px; margin-bottom: 20px; padding: 0px; line-height: 2; font-size: 17px; color: rgb(82, 82, 82); font-family: &quot;Helvetica Neue&quot;, NotoSansHans-Regular, AvenirNext-Regular, arial, &quot;Hiragino Sans GB&quot;, &quot;Microsoft Yahei&quot;, &quot;WenQuanYi Micro Hei&quot;, serif; white-space: normal;\">更多内容可以参考<a href=\"https://www.kancloud.cn/manual/thinkphp6_0/content\" target=\"_blank\" style=\"box-sizing: inherit; margin: 0px; padding: 0px; color: rgb(0, 154, 97); text-decoration-line: none;\">6.0完全开发手册</a></p><p><br/></p>', 1, 1, 1, 0, 1569570991, 1569723238);
INSERT INTO `news` VALUES (30, 22, '/uploads/new_cover/20190927\\ea47ca488471418c3aa20e201da07421.jpg', '2019年武汉科技馆公开招聘科普辅导员公告', '2019年武汉科技馆公开招聘科普辅导员公告', '<p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">武汉科学技术馆因事业发展需要,根据市政府有关会议精神,面向社会公开招聘科普辅导员19名。招聘基本程序为:报名-审核-笔试-面试-政审-体检-入职。现将有关情况公告如下:</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 47px; line-height: 35px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">一、招聘对象</strong></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 43px; line-height: 35px;\">符合应聘条件和岗位要求的各类人员。详见岗位一览表(附件一)</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">二、招聘条件</strong></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">(一)基本条件</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">1、具有中华人民共和国国籍;</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">2、拥护中华人民共和国宪法,遵守法律,享有公民政治权利;</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">3、具有良好的品行,愿意履行事业单位工作人员义务,遵守事业单位工作纪律;</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">4、具有符合国家或行业规定并能坚持正常工作的年龄条件和身体条件;</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">5、具有适应岗位要求、正常履行职责的文化程度、专业或技能条件和工作能力;</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">6、岗位要求的其它条件。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">(二)有下列情形之一的人员不得报考</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">1、受到党纪、政纪处分或刑事处罚,正在处分(罚)期间的;</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">2、正在接受纪律审查、司法调查或者审计的;</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">3、曾因犯罪受过刑事处罚或者曾被开除公职的人员;</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">4、现役军人、在校学生;</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">5、未能与原单位解除劳动(聘用)合同的;</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">6、按照法律法规规定不得聘用的其他情形的人员。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 47px; line-height: 35px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">三、报名</strong></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">(一)网上报名</strong></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">应聘人员应于2019年8月7日12:00起至2019年8月14日12:00期间可登录武汉掌上人才网(www.whzsrc.com),点击“招聘·考试”栏目进行网上报名,选择报考单位及岗位,认真填写个人资料,提交的信息必须真实、准确、完整、有效,凡弄虚作假或信息不全者一律取消报考资格。应聘人员可于2019年8月8日12:00后登录报名网站查询初审结果。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">(二)现场确认报名</strong></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">查询到初审通过的考生须于2019年8月16日(上午9:00-11:30,下午14:30-17:00)前往武汉科学技术馆(地址:沿江大道91号,联系电话:027-50750655)提交如下报名材料以确认报名资格:</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">1、本人二代身份证原件及复印件1份;</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">2、大学本科及以上学历毕业证、学位证原件及复印件1份;</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">3、教育部学历证书电子注册备案表或学籍在线验证报告1份;(登录学信网查询后自行下载及打印,并确认打印的报告在有效期内)</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 47px; line-height: 35px;\">4、本人《报名表》;(在武汉掌上人才资格审查页面自行下载打印)</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">5、普通话等级证书原件及复印件1份;</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">6、其他必要的证明材料。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">提醒:未按规定时间现场确认视为自动放弃考试资格,不做笔试安排。</strong></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">(三)免笔试资格确认</strong></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">具有高级专业技术职称或博士学历学位的人员,携带如下证明材料须于8月16日(上午9:00-11:30,下午14:30-17:00)前往武汉科学技术馆(地址:沿江大道91号)办理免笔试手续。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 47px; line-height: 35px;\">1、本人《报名表》(在武汉掌上人才资格审查页面自行下载打印);</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 47px; line-height: 35px;\">2、本人二代身份证原件及复印件1份;</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 47px; line-height: 35px;\">3、往届博士提供学历学位证书原件及复印件1份,应届博士提供学生证原件及复印件1份;</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">4、高级专业技术人员提供《高级专业技术资格证书》原件及复印件1份。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">(四)网上打印准考证</strong></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">参加现场报名确认(含免笔试人员)的应聘人员须于2019年8月20日登录官方报名网站下载并打印准考证,未在规定时间内下载打印准考证的人员,视为自动放弃报考资格。笔试、面试使用同一准考证,请妥善保管。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 47px; line-height: 35px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">四、笔试</strong></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">笔试实行百分制,具体时间及地点将以准考证为准,相关事宜请关注武汉掌上人才网的最新公告。笔试后一周左右,考生可登陆武汉掌上人才查询本人笔试成绩。根据笔试成绩从高分到低分排序,按岗位招聘人数与参考人数1:3比例确定复审人员。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 47px; line-height: 35px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">五、资格复审</strong></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">进入资格复审的人员需于指定时间地点参加复审,具体事宜另行通知。复审合格方可进入面试,复审不合格的取消面试资格,并按照笔试成绩高低顺序依次递补。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 47px; line-height: 35px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">六、面试</strong></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">面试实行百分制,采取能力测试的方式进行,具体时间及地点另行通知。综合成绩采取百分制,笔试和面试成绩按4:6比例计入考生综合成绩。办理免试人员的笔试成绩即为该岗位所有入围面试考生的笔试平均成绩,直接进入面试,不受面试比例限制,不占用面试指标。综合成绩相同的考生,以面试成绩高低确定排名。综合成绩预计在面试结束后一周左右发布。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 47px; line-height: 35px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">七、体检、政审</strong></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">按综合成绩从高到低的顺序以1:1比例确定进入体检和政审环节的人员。拟入职人员需统一前往指定医院进行体检,如本次入围的拟聘人员中出现本人放弃、体检或政审不合格、不按规定参加体检及政审等情况,将按综合成绩高低顺次递补拟聘人员,不再另行组织招聘。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 47px; line-height: 35px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">八、聘用管理</strong></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">拟聘用人员经公示无异议者,可以办理入职手续,与武汉人才市场有限公司签订劳动合同,发放工资,统一办理基本养老保险、医疗、失业、工伤、生育等社会保险及住房公积金,在合同规定的试用期内进行试用,试用期经考核合格者,按照岗位设置的要求,予以录用;考核不合格的人员解除劳动合同。本次招聘岗位休假制度为周三至周日正常上班,周一周二换休,法定节假日换休另行安排。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 47px; line-height: 35px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">九、其他事项</strong></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">(一)公告发布以后各环节的有关通知,将通过武汉掌上人才网(www.whzsrc.com)及其微信公众号“武汉掌上人才”进行发布,以上网站为本次招聘的指定官方消息发布平台,如有其他任何第三方网站、邮件或短信散布的关于培训等言论均为不实信息,请考生提高警惕,切勿上当受骗。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">(二)资格审查贯穿整个招聘过程,资格审查可在任何一个环节进行,如发现报考人员提供虚假报考材料或在考试中有弄虚作假行为的,一经查实,立即取消报考资格,所签劳动合同无效。</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: white; color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 37px; line-height: 35px;\">(三)报名政策及资格审核咨询:027-50750655</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 35px;\">准考证下载及成绩查询:027-83883626(请在工作日工作时间内拨打,其余时间不受理)</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; line-height: 35px;\">&nbsp;</p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 47px; line-height: 35px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">特别声明:武汉掌上人才与武汉科学技术馆在招聘过程中不收取报名者任何费用!也未与任何培训机构合作!</strong></p><p style=\"box-sizing: border-box; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-indent: 47px; line-height: 35px;\"><strong style=\"box-sizing: border-box; border: 0px; outline: 0px; background: transparent;\">&nbsp;</strong></p><p style=\"box-sizing: border-box; margin-right: 37px; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-align: right; line-height: 35px;\">武汉科学技术馆</p><p style=\"box-sizing: border-box; margin-right: 37px; margin-bottom: 0px; border: 0px; outline: 0px; background: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: &quot;Open Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; text-align: right; line-height: 35px;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;2019年8月7日</p>', 0, 0, 0, 0, 1569578446, 1569578446);
INSERT INTO `news` VALUES (31, 2, '/uploads/new_cover/20190927\\f25f5291eaf958334ad4585151284a38.jpg', '标题', '666', '<p>6666</p>', 0, 1, 0, 0, 1569578913, 1569578913);
INSERT INTO `news` VALUES (32, 2, '/uploads/new_cover/20190927\\f25f5291eaf958334ad4585151284a38.jpg', '标题', '666', '<p>6666</p>', 0, 1, 0, 0, 1569578962, 1569717183);
-- ----------------------------
-- Table structure for news_category
-- ----------------------------
DROP TABLE IF EXISTS `news_category`;
CREATE TABLE `news_category` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '名字',
`url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '导航栏跳转地址',
`sorts` int(4) NOT NULL DEFAULT 99 COMMENT '排序',
`pid` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '父id',
`create_time` int(11) NULL DEFAULT NULL COMMENT '创建时间',
`update_time` int(11) NULL DEFAULT NULL COMMENT '更新时间',
`status` tinyint(1) NULL DEFAULT NULL COMMENT '显示状态',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 42 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of news_category
-- ----------------------------
INSERT INTO `news_category` VALUES (1, '场馆概况', 'javascript;:', 100, '0', 1567761128, 1569305106, 1);
INSERT INTO `news_category` VALUES (2, '简介', '', 100, '1', 1567761512, 1567761900, 1);
INSERT INTO `news_category` VALUES (3, '内设机构', '', 100, '1', 1567762086, 1567762086, 1);
INSERT INTO `news_category` VALUES (4, '楼层导览', '', 100, '1', 1567762101, 1567762101, 1);
INSERT INTO `news_category` VALUES (5, '荣誉榜', '', 100, '1', 1567762109, 1567762109, 1);
INSERT INTO `news_category` VALUES (6, '展览内容', '', 100, '0', 1567762118, 1567762118, 1);
INSERT INTO `news_category` VALUES (7, '常设展览', '', 100, '6', 1567762127, 1567762127, 1);
INSERT INTO `news_category` VALUES (8, '短期展览', '', 100, '6', 1567762134, 1567762134, 1);
INSERT INTO `news_category` VALUES (9, '科普大篷车', '', 100, '6', 1567762149, 1567762149, 1);
INSERT INTO `news_category` VALUES (10, '虚拟游览', '', 100, '6', 1567762156, 1567762156, 1);
INSERT INTO `news_category` VALUES (11, '4D动感影院', '', 100, '6', 1567762163, 1567762163, 1);
INSERT INTO `news_category` VALUES (12, '天象馆球幕影院', '', 100, '6', 1567762170, 1567762170, 1);
INSERT INTO `news_category` VALUES (13, '科教活动', '', 100, '0', 1567762177, 1567762177, 1);
INSERT INTO `news_category` VALUES (14, '学术研讨', '', 100, '13', 1567762182, 1567762182, 1);
INSERT INTO `news_category` VALUES (15, '科技培训', '', 100, '13', 1567762191, 1567762191, 1);
INSERT INTO `news_category` VALUES (16, '科普数字资源', '', 100, '13', 1567762198, 1567762198, 1);
INSERT INTO `news_category` VALUES (17, '夏冬令营', '', 100, '13', 1567762214, 1567762214, 1);
INSERT INTO `news_category` VALUES (18, '活动预告', '', 100, '13', 1567762221, 1567762221, 1);
INSERT INTO `news_category` VALUES (19, '服务中心', '', 100, '0', 1567762241, 1567762241, 1);
INSERT INTO `news_category` VALUES (20, '观众指南', '', 100, '19', 1567762248, 1567762248, 1);
INSERT INTO `news_category` VALUES (21, '交通信息', '', 100, '19', 1567762253, 1567762253, 1);
INSERT INTO `news_category` VALUES (22, '科技馆通告', '', 100, '19', 1567762258, 1567762258, 1);
INSERT INTO `news_category` VALUES (23, '意见反馈', '', 100, '19', 1567762265, 1567762265, 1);
INSERT INTO `news_category` VALUES (24, '新闻动态', '', 100, '0', 1567762274, 1567762274, 1);
INSERT INTO `news_category` VALUES (25, '科技新闻', '', 100, '24', 1567762280, 1567762280, 1);
INSERT INTO `news_category` VALUES (26, '科普活动新闻', '', 100, '24', 1567762287, 1567762287, 1);
INSERT INTO `news_category` VALUES (27, '工作动态', '', 100, '24', 1567762294, 1567762294, 1);
INSERT INTO `news_category` VALUES (28, '馆际交流', '', 100, '24', 1567762301, 1567762301, 1);
INSERT INTO `news_category` VALUES (29, '预约服务', '', 100, '0', 1567762310, 1567762310, 1);
INSERT INTO `news_category` VALUES (30, '个人预约', '', 100, '29', 1567762316, 1567762316, 1);
INSERT INTO `news_category` VALUES (31, '团体预约', '', 100, '29', 1567762323, 1567762323, 1);
INSERT INTO `news_category` VALUES (32, '志愿者', '', 100, '0', 1567762330, 1567762330, 1);
INSERT INTO `news_category` VALUES (33, '志愿者招募通告', '', 100, '32', 1567762337, 1567762337, 1);
INSERT INTO `news_category` VALUES (34, '志愿者活动', '', 100, '32', 1567762370, 1567762370, 1);
INSERT INTO `news_category` VALUES (35, '志愿者风采', '', 100, '32', 1567762379, 1567762379, 1);
INSERT INTO `news_category` VALUES (36, '关于我们', '/', 100, '0', 1567762386, 1569718324, 1);
INSERT INTO `news_category` VALUES (37, '员工风采', '', 100, '36', 1567762392, 1567762392, 1);
INSERT INTO `news_category` VALUES (38, '党务工作', '', 100, '36', 1567762397, 1567762397, 1);
INSERT INTO `news_category` VALUES (39, '工会活动', '', 100, '36', 1567762427, 1567762427, 1);
INSERT INTO `news_category` VALUES (40, '工会活动子分类', '/', 100, '39', 1569718890, 1569718890, 1);
INSERT INTO `news_category` VALUES (41, '工会活动子分类', '/', 100, '39', 1569719296, 1569719689, 1);
-- ----------------------------
-- Table structure for news_tags
-- ----------------------------
DROP TABLE IF EXISTS `news_tags`;
CREATE TABLE `news_tags` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`news_id` int(11) NULL DEFAULT NULL,
`tags_id` int(11) NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 5 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of news_tags
-- ----------------------------
INSERT INTO `news_tags` VALUES (2, 30, 2);
INSERT INTO `news_tags` VALUES (3, 30, 3);
INSERT INTO `news_tags` VALUES (4, 29, 1);
-- ----------------------------
-- Table structure for site
-- ----------------------------
DROP TABLE IF EXISTS `site`;
CREATE TABLE `site` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '站点名字',
`stationmaster` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '站长',
`email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '站长邮箱',
`record_no` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '备案号',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of site
-- ----------------------------
INSERT INTO `site` VALUES (1, '思议岁月', '思议岁月', 'whkjg@163.com', '鄂ICP备17022109号-2');
-- ----------------------------
-- Table structure for site_copy1
-- ----------------------------
DROP TABLE IF EXISTS `site_copy1`;
CREATE TABLE `site_copy1` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '站点名字',
`stationmaster` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '站长',
`email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '站长邮箱',
`record_no` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '备案号',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of site_copy1
-- ----------------------------
INSERT INTO `site_copy1` VALUES (1, '思议岁月', '思议岁月', 'whkjg@163.com', '鄂ICP备17022109号-2');
-- ----------------------------
-- Table structure for tags
-- ----------------------------
DROP TABLE IF EXISTS `tags`;
CREATE TABLE `tags` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '标签名',
`hot` tinyint(1) NULL DEFAULT NULL COMMENT '是否热门标签',
`create_time` int(11) NULL DEFAULT NULL COMMENT '创建时间',
`update_time` int(11) NULL DEFAULT NULL COMMENT '更新时间',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `name`(`name`) USING BTREE COMMENT 'name唯一'
) ENGINE = InnoDB AUTO_INCREMENT = 4 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of tags
-- ----------------------------
INSERT INTO `tags` VALUES (1, 'ThinkPHP6.0', 0, 1569570991, 1569570991);
INSERT INTO `tags` VALUES (2, '科技馆', 0, 1569578447, 1569578447);
INSERT INTO `tags` VALUES (3, '哈哈', 0, 1569578447, 1569578447);
-- ----------------------------
-- Table structure for user
-- ----------------------------
DROP TABLE IF EXISTS `user`;
CREATE TABLE `user` (
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '主键',
`username` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '用户名',
`password` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '密码',
`code` char(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '验证码',
`name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '姓名',
`email` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '邮箱',
`mobile` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '手机号码',
`sex` tinyint(1) NOT NULL DEFAULT 0 COMMENT '性别',
`logins` int(11) NOT NULL DEFAULT 0 COMMENT '登陆次数',
`create_time` int(10) NOT NULL DEFAULT 0 COMMENT '注册时间',
`update_time` int(10) NOT NULL DEFAULT 0 COMMENT '更新时间',
`reg_ip` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '0' COMMENT '注册IP',
`last_time` int(10) NOT NULL DEFAULT 0 COMMENT '最后登录时间',
`last_ip` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '0' COMMENT '最后登录IP',
`status` tinyint(1) NOT NULL DEFAULT 0 COMMENT '状态',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of user
-- ----------------------------
INSERT INTO `user` VALUES (1, 'admin', 'e10adc3949ba59abbe56e057f20f883e', NULL, '后台管理员', '', '', 0, 40, 0, 0, '127.0.0.1', 1570496117, '127.0.0.1', 1);
SET FOREIGN_KEY_CHECKS = 1;
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化