bingyu-duanxinwangzhan/message-code/message_api/public/message.sql

223 lines
38 KiB
PL/PgSQL
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

/*
Navicat Premium Data Transfer
Source Server : 121.5.53.35
Source Server Type : MySQL
Source Server Version : 50651
Source Host : 121.5.53.35
Source Database : message
Target Server Type : MySQL
Target Server Version : 50651
File Encoding : utf-8
Date: 11/14/2023 18:04:51 PM
*/
SET NAMES utf8;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for `message_admin`
-- ----------------------------
DROP TABLE IF EXISTS `message_admin`;
CREATE TABLE `message_admin` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`is_admin` tinyint(1) DEFAULT '0' COMMENT '是否是超级管理员',
`user_name` varchar(100) DEFAULT NULL COMMENT '用户名',
`password` varchar(32) DEFAULT NULL COMMENT '密码',
`sys_create_time` datetime DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
PRIMARY KEY (`id`),
KEY `index_user_name` (`user_name`),
KEY `index_password` (`password`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='管理员表';
-- ----------------------------
-- Records of `message_admin`
-- ----------------------------
BEGIN;
INSERT INTO `message_admin` VALUES ('1', '1', 'admin', '21232f297a57a5a743894a0e4a801fc3', '2021-07-28 15:05:32'), ('2', '0', 'test', '098f6bcd4621d373cade4e832627b4f6', '2021-07-30 11:07:47');
COMMIT;
-- ----------------------------
-- Table structure for `message_auth`
-- ----------------------------
DROP TABLE IF EXISTS `message_auth`;
CREATE TABLE `message_auth` (
`id` int(10) NOT NULL AUTO_INCREMENT COMMENT '主键自增',
`user_id` int(10) DEFAULT '0' COMMENT '用户编号',
`menu_id` varchar(255) DEFAULT NULL COMMENT '菜单编号',
`sys_create_time` datetime DEFAULT CURRENT_TIMESTAMP COMMENT '系统创建时间',
PRIMARY KEY (`id`),
KEY `index_user_id` (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='授权表';
-- ----------------------------
-- Records of `message_auth`
-- ----------------------------
BEGIN;
INSERT INTO `message_auth` VALUES ('5', '2', '4,5', '2021-07-31 10:20:43'), ('7', '3', '14,15,8,22', '2022-06-12 00:19:28');
COMMIT;
-- ----------------------------
-- Table structure for `message_code`
-- ----------------------------
DROP TABLE IF EXISTS `message_code`;
CREATE TABLE `message_code` (
`id` int(10) NOT NULL AUTO_INCREMENT COMMENT '主键',
`tel` varchar(11) DEFAULT NULL COMMENT '手机号码',
`code` varchar(10) DEFAULT NULL COMMENT '验证码',
`ip` varchar(50) DEFAULT NULL COMMENT 'IP',
`sys_create_time` int(11) NOT NULL COMMENT '创建时间',
PRIMARY KEY (`id`),
KEY `index_tel` (`tel`),
KEY `index_ip` (`ip`),
KEY `index_code` (`code`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT;
-- ----------------------------
-- Records of `message_code`
-- ----------------------------
BEGIN;
INSERT INTO `message_code` VALUES ('1', '18656095360', '5568', '117.65.179.23', '1694261690'), ('2', '13335516957', '9572', '223.244.89.203', '1694420224'), ('3', '13335516957', '3604', '36.159.240.106', '1694428776'), ('4', '18721008051', '5900', '114.96.43.85', '1694482803'), ('5', '18656095360', '7897', '114.96.43.85', '1694498975'), ('6', '18656095360', '1234', '114.96.43.85', '1694499024'), ('7', '18721008051', '1234', '114.96.43.85', '1694499707'), ('8', '17521243506', '1234', '180.165.230.95', '1694600415'), ('9', '15021778540', '1234', '180.165.230.95', '1695808182'), ('10', '15021778540', '1234', '180.165.230.95', '1695809934'), ('11', '18656095360', '9243', '117.65.179.48', '1695866599'), ('12', '18656095360', '5406', '117.65.179.48', '1695866754'), ('13', '18656095360', '8891', '117.65.176.150', '1697159276');
COMMIT;
-- ----------------------------
-- Table structure for `message_config`
-- ----------------------------
DROP TABLE IF EXISTS `message_config`;
CREATE TABLE `message_config` (
`id` int(10) NOT NULL AUTO_INCREMENT COMMENT '主键自增',
`key` varchar(100) DEFAULT NULL COMMENT '',
`value` text COMMENT '',
`sys_create_time` datetime DEFAULT CURRENT_TIMESTAMP COMMENT '系统创建时间',
PRIMARY KEY (`id`),
KEY `index_key` (`key`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='配置表';
-- ----------------------------
-- Records of `message_config`
-- ----------------------------
BEGIN;
INSERT INTO `message_config` VALUES ('1', 'about', '<p style=\"text-align: left;\"><span style=\"font-family: 等线; font-size: 20px;\">&nbsp; &nbsp; &nbsp; </span><span style=\"font-size: 20px; font-family: arial, helvetica, sans-serif;\">上海河滔信息科技有限公司是一家智能服务一体化数字营销公司,公司主要业务为数字化营销和智能化服务平台。核心团队来自赶集网、华为等知名公司。<br/></span></p><p style=\"text-align: left;\"><span style=\"font-size: 20px; font-family: arial, helvetica, sans-serif;\">&nbsp; &nbsp; &nbsp; 河滔科技自创立以来服务了数家国内传统行业及APP行业等客户群服务范围涉及政府机构、电信运营商、电商、物流、旅游等多个行业。公司通过不断的行业经验积累技术的提升服务质量的提高达成与客户的长期、稳定的合作致力于成为行业领先的增值业务提供商。</span></p><p><br/></p>', '2023-09-09 22:02:09'), ('2', 'culture', '<p><span style=\"font-size: 20px;\">激情、智慧、野性、担当,通信创造价值</span></p>', '2023-09-09 22:02:28');
COMMIT;
-- ----------------------------
-- Table structure for `message_menu`
-- ----------------------------
DROP TABLE IF EXISTS `message_menu`;
CREATE TABLE `message_menu` (
`id` int(10) NOT NULL AUTO_INCREMENT COMMENT '主键自增',
`p_id` int(10) DEFAULT '0' COMMENT '等级',
`level` tinyint(1) DEFAULT '0' COMMENT '等级1、一级2、二级3、三级',
`title` varchar(100) DEFAULT NULL COMMENT '标题',
`icon` varchar(100) DEFAULT NULL COMMENT '图标',
`url` varchar(100) DEFAULT NULL COMMENT '链接',
`sort` smallint(5) DEFAULT '0' COMMENT '排序',
`sys_create_time` datetime DEFAULT CURRENT_TIMESTAMP COMMENT '等级一级默认为0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=35 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='菜单表';
-- ----------------------------
-- Records of `message_menu`
-- ----------------------------
BEGIN;
INSERT INTO `message_menu` VALUES ('6', '0', '1', '员工管理', '&#xe6b8;', '#', '0', '2021-07-29 09:51:45'), ('7', '6', '2', '员工列表', null, '/admin/lists', '0', '2021-07-29 09:53:18'), ('8', '0', '1', '内容管理', '&#xe723;', '#', '0', '2021-07-31 15:42:27'), ('9', '8', '2', '关于我们', null, '/config/edit/about', '0', '2021-07-31 15:43:41'), ('10', '8', '2', '企业文化', null, '/config/edit/culture', '0', '2021-07-31 15:44:39'), ('14', '0', '1', '新闻管理', '&#xe723;', '#', '0', '2021-08-01 08:28:27'), ('15', '14', '2', '新闻列表', null, '/news/lists', '0', '2021-08-01 08:28:57'), ('31', '0', '1', '常见问题管理', '&#xe723;', '#', '0', '2023-09-12 10:07:07'), ('32', '31', '2', '常见问题列表', null, '/problem/lists', '0', '2023-09-12 10:07:35'), ('33', '0', '1', '工单管理', '&#xe723;', '#', '0', '2023-09-12 10:08:02'), ('34', '33', '2', '工单列表', null, '/workOrder/lists', '0', '2023-09-12 10:08:50');
COMMIT;
-- ----------------------------
-- Table structure for `message_news`
-- ----------------------------
DROP TABLE IF EXISTS `message_news`;
CREATE TABLE `message_news` (
`id` int(10) NOT NULL AUTO_INCREMENT COMMENT '主键自增',
`title` varchar(255) DEFAULT NULL COMMENT '标题',
`source` varchar(255) DEFAULT NULL COMMENT '来源',
`url` varchar(255) DEFAULT NULL COMMENT '图片地址',
`content` text COMMENT '内容',
`is_recommend` tinyint(1) DEFAULT '0' COMMENT '是否推荐0、否1、是',
`sys_create_time` datetime DEFAULT CURRENT_TIMESTAMP COMMENT '系统创建时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COMMENT='新闻表';
-- ----------------------------
-- Records of `message_news`
-- ----------------------------
BEGIN;
INSERT INTO `message_news` VALUES ('1', '测试', '作者', null, '内容', '1', '2023-09-09 21:40:01'), ('2', '测试1', '作者', null, '内容', '1', '2023-09-09 21:40:13'), ('3', '测试的标题1', '作者1', '/upload/4d/75322a2843047460299ba1446b55eee3de8608.png', '<p>内容1</p>', '0', '2023-09-12 10:21:53'), ('4', '测试标题', null, null, '<p>测试内容</p>', '0', '2023-09-12 10:27:17'), ('5', '2023数字化转型发展大会在京召开', '中国通信院CAICT', '/upload/78/274838013d7f1087ffa3e8b69bc73abdc0a4c4.jpeg', '<p><span style=\"color: rgba(0, 0, 0, 0.9); font-family: system-ui, -apple-system, &quot;system-ui&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei UI&quot;, &quot;Microsoft YaHei&quot;, Arial, sans-serif; letter-spacing: 1px; text-align: justify; text-wrap: wrap; background-color: rgb(255, 255, 255);\">2023年9月13-14日由中国信息通信研究院简称“中国信通院”和中国通信标准化协会联合主办的“2023数字化转型发展大会”在北京召开。本次大会以“数跨新阶 原生新纪”为主题成立了数字原生推进方阵发布了《数字原生》公布了第二届“鼎新杯”数字化转型应用大赛案例结果公布了2023年上半年政企数字化转型最新评估结果。</span></p><p><img src=\"/upload/4e/b69ecb2e1369f37291b5dac9724c2cf5de4aeb.jpeg\" title=\"4e/b69ecb2e1369f37291b5dac9724c2cf5de4aeb.jpeg\" alt=\"b69ecb2e1369f37291b5dac9724c2cf5de4aeb.jpeg\"/></p><p><span style=\"color: rgba(0, 0, 0, 0.9); font-family: system-ui, -apple-system, &quot;system-ui&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei UI&quot;, &quot;Microsoft YaHei&quot;, Arial, sans-serif; letter-spacing: 1px; text-align: justify; text-wrap: wrap; background-color: rgb(255, 255, 255);\">中国通信标准化协会理事长闻库、中国通信企业协会副会长兼秘书长赵中新、国务院国资委信息中心原主任王绪君、中国信通院院长余晓晖、工业和信息化部信息通信发展司政策标准处处长陆洋出席会议并致辞。开幕式由中国信通院云计算与大数据研究所所长何宝宏主持。</span></p><p><span style=\"color: rgba(0, 0, 0, 0.9); font-family: system-ui, -apple-system, &quot;system-ui&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei UI&quot;, &quot;Microsoft YaHei&quot;, Arial, sans-serif; letter-spacing: 1px; text-align: justify; text-wrap: wrap; background-color: rgb(255, 255, 255);\"><br/></span></p>', '1', '2023-10-11 16:54:42'), ('6', '山东5G用户规模突破4700万户普及率达46.3%', '中宏网', '', '<p style=\"box-sizing: border-box; transition: none 0s ease 0s; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; outline: 0px; font-family: &quot;Microsoft Yahei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 15px; line-height: inherit; color: rgb(68, 68, 68); vertical-align: baseline; text-wrap: wrap; background-color: rgb(255, 255, 255); text-align: justify; text-indent: 2em;\"><span style=\"box-sizing: border-box; transition: none 0s ease 0s; margin: 0px; padding: 0px; border: 0px; outline: 0px; font-family: inherit; font-size: inherit; line-height: inherit; color: inherit; vertical-align: baseline; text-indent: 2em;\">近年来山东省通信管理局聚焦网络强国建设目标组织全行业深入落实《5G应用“扬帆”行动计划2021—2023年加速打造泛在领先的5G网络持续深化5G技术与重点行业领域融合赋能推动构建山东新型工业化发展引擎。截至目前山东省5G用户规模突破4700万户5G个人用户普及率达到46.3%5G网络接入流量占比达到48.2%5G网络使用效率显著提升。</span><br style=\"box-sizing: border-box; transition: none 0s ease 0s;\"/></p><p style=\"box-sizing: border-box; transition: none 0s ease 0s; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; outline: 0px; font-family: &quot;Microsoft Yahei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 15px; line-height: inherit; color: rgb(68, 68, 68); vertical-align: baseline; text-wrap: wrap; background-color: rgb(255, 255, 255); text-align: justify; text-indent: 2em;\">关键基础设施支撑能力持续提升截至8月底山东省累计建成5G基站19.3万个每万人拥有5G基站19个5G网络覆盖全省16市区、县城城区、乡镇镇区和省内海岸线全省建成5G虚拟专网1448个。重点领域5G应用成效凸显全行业已在矿山、电力、港口、油气、农业、生态保护等领域发展5G应用项目1200余个。工业和信息化部公布的“5G+工业互联网”十个重点行业实践中山东省电子设备制造、装备制造、建材、港口、采矿、电力、家电等7个行业入围居全国首位。</p><p><br/></p>', '1', '2023-10-11 16:55:05'), ('7', '“5G+工业互联网”成数字经济“新名片”', '经济参考报', '', '<p style=\"box-sizing: border-box; transition: none 0s ease 0s; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; outline: 0px; font-family: &quot;Microsoft Yahei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 15px; line-height: inherit; color: rgb(68, 68, 68); vertical-align: baseline; text-wrap: wrap; background-color: rgb(255, 255, 255); text-align: justify; text-indent: 2em;\"><span style=\"box-sizing: border-box; transition: none 0s ease 0s; margin: 0px; padding: 0px; border: 0px; outline: 0px; font-family: inherit; font-size: inherit; line-height: inherit; color: inherit; vertical-align: baseline; text-indent: 2em;\">近日工业和信息化部印发《工业互联网专项工作组2023年工作计划》提出深化“5G+工业互联网”发展制定实施“5G+工业互联网”512升级版工作方案。</span><br style=\"box-sizing: border-box; transition: none 0s ease 0s;\"/></p><p style=\"box-sizing: border-box; transition: none 0s ease 0s; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; outline: 0px; font-family: &quot;Microsoft Yahei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 15px; line-height: inherit; color: rgb(68, 68, 68); vertical-align: baseline; text-wrap: wrap; background-color: rgb(255, 255, 255); text-align: justify; text-indent: 2em;\">我国已建成全球规模最大、技术最先进的5G网络工业互联网产业规模已超1.2万亿元“5G+工业互联网”正成为数字经济的“新名片”。</p><p style=\"box-sizing: border-box; transition: none 0s ease 0s; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; outline: 0px; font-family: &quot;Microsoft Yahei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 15px; line-height: inherit; color: rgb(68, 68, 68); vertical-align: baseline; text-wrap: wrap; background-color: rgb(255, 255, 255); text-align: justify; text-indent: 2em;\">5G全连接工厂形成标杆</p><p style=\"box-sizing: border-box; transition: none 0s ease 0s; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; outline: 0px; font-family: &quot;Microsoft Yahei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 15px; line-height: inherit; color: rgb(68, 68, 68); vertical-align: baseline; text-wrap: wrap; background-color: rgb(255, 255, 255); text-align: justify; text-indent: 2em;\">在以“数实融合、数智赋能——高质量推进新型工业化”为主题的2023工业互联网大会上5G全连接工厂示范标杆优秀案例向观众展示“5G+工业互联网”如何赋能数字经济高质量发展。</p><p style=\"box-sizing: border-box; transition: none 0s ease 0s; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; outline: 0px; font-family: &quot;Microsoft Yahei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 15px; line-height: inherit; color: rgb(68, 68, 68); vertical-align: baseline; text-wrap: wrap; background-color: rgb(255, 255, 255); text-align: justify; text-indent: 2em;\">在装备制造行业正泰电气股份有限公司与中国电信上海公司联合打造的面向输变配用电气设备一站式生产的5G全连接工厂以5G连接为主要生产装备接入手段一方面基于5G提供同时满足输变配用一站式生产的生产线另一方面基于5G提供从下线生产到验收装运的全周期服务体系。基于5G一张定制专网、一朵边缘云以及切片管理平台、AI人工智能智能分析平台、专网自服务平台、融合定位平台等工厂总计上线智能物流、品质管理、设备管理、柔性产线等11个业务场景在物流设备降耗、设备集约化、无纸化等绿色低碳举措方面均有突破性提高相关产品销售额明显提升能源利用率提高40%。</p><p style=\"box-sizing: border-box; transition: none 0s ease 0s; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; outline: 0px; font-family: &quot;Microsoft Yahei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 15px; line-height: inherit; color: rgb(68, 68, 68); vertical-align: baseline; text-wrap: wrap; background-color: rgb(255, 255, 255); text-align: justify; text-indent: 2em;\">在港口行业天津港5G智慧港口项目由天津港集团有限公司联合中国移动打造项目总体采用“一张5G行业专网+一张北斗高精度定位网+一张车路协同网络+一个港口智能调度平台+N大应用场景”的建设模式通过5G+车路协同+高精度定位等多重基础网络能力结合AI和大数据平台的智能规划和调度最终形成人工智能运输机器人无人驾驶、全域感知和全局策略控制的无人水平运输系统可节省60%人力成本码头效率提升20%。</p><p style=\"box-sizing: border-box; transition: none 0s ease 0s; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; outline: 0px; font-family: &quot;Microsoft Yahei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 15px; line-height: inherit; color: rgb(68, 68, 68); vertical-align: baseline; text-wrap: wrap; background-color: rgb(255, 255, 255); text-align: justify; text-indent: 2em;\">在电子设备制造行业海能达通信股份有限公司与中国联通合作采用独立5G核心网部署利用5G无线信号覆盖海能达深海龙岗工厂楼宇车间以及工厂园区。室内车间实现SMT表面组装技术车间、电子仓库、来料接收区的全覆盖并将摄像头、AGV自动导向车、扫码枪、智能终端等应用全部连接起来室外园区实现智能安防监控、车辆识别、人脸识别、音视频集群等应用。经过5G数字化改造这一工厂降低运营成本20%以上实现无纸化办公降低生产管理30%费用,并提升人员利用率。</p><p style=\"box-sizing: border-box; transition: none 0s ease 0s; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; outline: 0px; font-family: &quot;Microsoft Yahei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 15px; line-height: inherit; color: rgb(68, 68, 68); vertical-align: baseline; text-wrap: wrap; background-color: rgb(255, 255, 255); text-align: justify; text-indent: 2em;\">业界分析5G全连接工厂是充分利用以5G为代表的新一代信息通信技术打造新型工业互联网基础设施形成信息IT运营OT深度融合、数据要素充分利用、创新应用高效赋能的先进工厂。</p><p style=\"box-sizing: border-box; transition: none 0s ease 0s; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; outline: 0px; font-family: &quot;Microsoft Yahei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 15px; line-height: inherit; color: rgb(68, 68, 68); vertical-align: baseline; text-wrap: wrap; background-color: rgb(255, 255, 255); text-align: justify; text-indent: 2em;\">拓展工业互联网应用深度</p><p style=\"box-sizing: border-box; transition: none 0s ease 0s; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; outline: 0px; font-family: &quot;Microsoft Yahei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 15px; line-height: inherit; color: rgb(68, 68, 68); vertical-align: baseline; text-wrap: wrap; background-color: rgb(255, 255, 255); text-align: justify; text-indent: 2em;\">数据显示我国工业互联网产业规模已超1.2万亿元已建成2100多个高水平的数字化车间和智能工厂培育6000多家系统解决方案供应商建成具有一定区域和行业影响力的工业互联网平台超240个重点平台工业设备连接数超8100万台。工业互联网融入45个国民经济大类“5G+工业互联网”在千行百业落地并向生产核心环节延伸。工业互联网“百城千园行”纵深推进标识解析体系服务企业超27万家。</p><p style=\"box-sizing: border-box; transition: none 0s ease 0s; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; outline: 0px; font-family: &quot;Microsoft Yahei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 15px; line-height: inherit; color: rgb(68, 68, 68); vertical-align: baseline; text-wrap: wrap; background-color: rgb(255, 255, 255); text-align: justify; text-indent: 2em;\">中国信息通信研究院院长余晓晖在2023工业互联网大会上透露基于对1000多个中国智能制造的案例研究发现传统产业智能化改造的范围不断扩大深度不断提升。工业互联网的应用深度从生产辅助环节的信息化向核心生产环节的数据分析优化拓展。</p><p style=\"box-sizing: border-box; transition: none 0s ease 0s; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; outline: 0px; font-family: &quot;Microsoft Yahei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 15px; line-height: inherit; color: rgb(68, 68, 68); vertical-align: baseline; text-wrap: wrap; background-color: rgb(255, 255, 255); text-align: justify; text-indent: 2em;\">从各地应用来看《2022中国“5G+工业互联网”发展成效评估报告》显示,综合政策环境、基础设施、产业生态、创新突破四个维度,我国形成以长三角地区、粤港澳地区为引领,向京津冀、西部和东北地区延伸的“东中西”梯次推进的全新发展格局,地区总体呈现差异化、特色化的发展形态。</p><p style=\"box-sizing: border-box; transition: none 0s ease 0s; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; outline: 0px; font-family: &quot;Microsoft Yahei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 15px; line-height: inherit; color: rgb(68, 68, 68); vertical-align: baseline; text-wrap: wrap; background-color: rgb(255, 255, 255); text-align: justify; text-indent: 2em;\">中国信息通信研究院信息化与工业化融合研究所副所长田洪川认为,我国工业互联网主要以政府为牵引,统筹规划技术攻关,构建场景驱动技术创新的特色路径。我国在深入实施工业互联网创新发展工程中,充分发挥出高校、科研院所和企业联合攻关作用,围绕基础短板和新兴领域推动技术创新迭代。</p><p style=\"box-sizing: border-box; transition: none 0s ease 0s; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; outline: 0px; font-family: &quot;Microsoft Yahei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 15px; line-height: inherit; color: rgb(68, 68, 68); vertical-align: baseline; text-wrap: wrap; background-color: rgb(255, 255, 255); text-align: justify; text-indent: 2em;\">打造“5G+工业互联网”升级版</p><p style=\"box-sizing: border-box; transition: none 0s ease 0s; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; outline: 0px; font-family: &quot;Microsoft Yahei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 15px; line-height: inherit; color: rgb(68, 68, 68); vertical-align: baseline; text-wrap: wrap; background-color: rgb(255, 255, 255); text-align: justify; text-indent: 2em;\">据介绍今年是《工业互联网发展行动计划2018-2020年》的收官之年我国将从三方面发力一是坚持战略引导优化完善新时期工业互联网高质量发展的政策体系二是坚持问题导向着力破解制约工业互联网规模推广的痛点难点三是坚持需求牵引合力构建促进工业互联网良性循环的产业生态。</p><p style=\"box-sizing: border-box; transition: none 0s ease 0s; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; outline: 0px; font-family: &quot;Microsoft Yahei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 15px; line-height: inherit; color: rgb(68, 68, 68); vertical-align: baseline; text-wrap: wrap; background-color: rgb(255, 255, 255); text-align: justify; text-indent: 2em;\">工业和信息化部近日印发《工业互联网专项工作组2023年工作计划》提出深化“5G+工业互联网”发展制定实施“5G+工业互联网”512升级版工作方案推动不少于3000家企业建设5G工厂建成不少于300家5G工厂打造30个试点标杆发布首批5G工厂名录编制典型案例集。完善“5G+工业互联网”发展管理平台落实5G工厂入库持续跟踪项目进展情况。强化网络设施建设推进企业利用5G改造升级内外网。推动中国电信、中国移动、中国联通加快建设高质量外网连接企业和云平台资源服务企业超过3000家。</p><p style=\"box-sizing: border-box; transition: none 0s ease 0s; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; outline: 0px; font-family: &quot;Microsoft Yahei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 15px; line-height: inherit; color: rgb(68, 68, 68); vertical-align: baseline; text-wrap: wrap; background-color: rgb(255, 255, 255); text-align: justify; text-indent: 2em;\">中国信息通信研究院技术与标准研究所副所长曹蓟光认为推动5G全连接工厂已然成为“5G+工业互联网”深入发展的关键方向。5G全连接工厂将在“建网”“联网”“用网”“护网”等四个方面赋能企业数字化转型。</p><p style=\"box-sizing: border-box; transition: none 0s ease 0s; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; outline: 0px; font-family: &quot;Microsoft Yahei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 15px; line-height: inherit; color: rgb(68, 68, 68); vertical-align: baseline; text-wrap: wrap; background-color: rgb(255, 255, 255); text-align: justify; text-indent: 2em;\">从“建网”来看加快5G网络、时间敏感网络、边缘计算等新型工业网络设施建设加速企业内网络的无线化、扁平化、融合化充分利用5G网络“一网到底”的网络能力推动企业办公、生产管理、监控预警、工业控制、物联等网络互通。从“联网”来看充分激活沉淀在工业各环节、各设备的工业数据实现工业数据价值的最大化为企业精细化管理、精准决策提供依据。从“用网”来看企业针对所处行业特点及生产、运营、管理中亟待解决的问题快速普及“5G+工业互联网”典型应用场景,逐步深入工业自动化控制场景,助力产线走向柔性化和智能化。从“护网”来看,构建面向工业企业的多层级网络安全防护体系。</p><p style=\"box-sizing: border-box; transition: none 0s ease 0s; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; outline: 0px; font-family: &quot;Microsoft Yahei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 15px; line-height: inherit; color: rgb(68, 68, 68); vertical-align: baseline; text-wrap: wrap; background-color: rgb(255, 255, 255); text-align: justify; text-indent: 2em;\">此外,余晓晖也展望,随着大模型技术越来越多地应用于工业领域,更多技术潜能将被激发。(记者 陈爱平)</p><p><br/></p>', '1', '2023-10-11 16:55:44'), ('8', '数实融合”赢海内外各界高度赞誉,彰显“数字中国”特色魅力', '光明网', '', '<p style=\"box-sizing: border-box; transition: none 0s ease 0s; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; outline: 0px; font-family: &quot;Microsoft Yahei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 15px; line-height: inherit; color: rgb(68, 68, 68); vertical-align: baseline; text-wrap: wrap; background-color: rgb(255, 255, 255); text-align: justify; text-indent: 2em;\"><span style=\"box-sizing: border-box; transition: none 0s ease 0s; margin: 0px; padding: 0px; border: 0px; outline: 0px; font-family: inherit; font-size: inherit; line-height: inherit; color: inherit; vertical-align: baseline; text-indent: 2em;\">从赛会管理到赛场运营,从火炬传递到数字人点火,本届亚运会,科技感“拉满”,呈现出一场数字和实体交相辉映的体育盛会。</span><br style=\"box-sizing: border-box; transition: none 0s ease 0s;\"/></p><p style=\"box-sizing: border-box; transition: none 0s ease 0s; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; outline: 0px; font-family: &quot;Microsoft Yahei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 15px; line-height: inherit; color: rgb(68, 68, 68); vertical-align: baseline; text-wrap: wrap; background-color: rgb(255, 255, 255); text-align: justify; text-indent: 2em;\">“我们首次在国际赛事上使用机器狗,我在比赛现场看到了它们,非常灵活、可爱,网友都说它们是赛场上的显眼包。”日前,在杭州亚组委召开的新闻发布会上,杭州亚运会信息技术指挥中心新闻发言人张鸽说道。</p><p style=\"box-sizing: border-box; transition: none 0s ease 0s; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; outline: 0px; font-family: &quot;Microsoft Yahei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 15px; line-height: inherit; color: rgb(68, 68, 68); vertical-align: baseline; text-wrap: wrap; background-color: rgb(255, 255, 255); text-align: justify; text-indent: 2em;\">张鸽表示,杭州亚运会除了在奥体中心体育场使用了机器狗,还在网球中心、黄龙体育中心、滨江体育馆以及亚运村等场景投放了类似的机器人,应用于观众服务、赛事服务等场景。“比如在亚运村,有为村民进行舞蹈表演的机器人,与运动员进行互动。在羽毛球场馆,机器人可以为羽毛球运动员寄送物品。此外,在众多场馆部署了配送、巡防、迎宾、灭蚊等各类的机器人,来服务于公共表演、体育训练、安全保障、教育娱乐等领域。”</p><p style=\"box-sizing: border-box; transition: none 0s ease 0s; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; outline: 0px; font-family: &quot;Microsoft Yahei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 15px; line-height: inherit; color: rgb(68, 68, 68); vertical-align: baseline; text-wrap: wrap; background-color: rgb(255, 255, 255); text-align: justify; text-indent: 2em;\">本届亚运会上数字火炬传递也成为“智能亚运”一个特色鲜明符号。张鸽介绍有来自130多个国家和地区、超过1亿人参与数字火炬传递的“亚运数字火炬手”活动成为亚运史上覆盖区域最广、参与人数最多、持续时间最长的线上火炬主题活动创造了一个新的吉尼斯世界纪录。</p><p style=\"box-sizing: border-box; transition: none 0s ease 0s; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; outline: 0px; font-family: &quot;Microsoft Yahei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 15px; line-height: inherit; color: rgb(68, 68, 68); vertical-align: baseline; text-wrap: wrap; background-color: rgb(255, 255, 255); text-align: justify; text-indent: 2em;\">“我们提出‘亚运数字火炬手’的设想,就是期望让更多人突破时间和空间限制,参与到亚运这场盛会中,以‘万众参与 数字互联’的方式,让每个人都能成为自己心目中的火炬手,这也是奥林匹克精神的一种表达。”张鸽说道。</p><p style=\"box-sizing: border-box; transition: none 0s ease 0s; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; outline: 0px; font-family: &quot;Microsoft Yahei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 15px; line-height: inherit; color: rgb(68, 68, 68); vertical-align: baseline; text-wrap: wrap; background-color: rgb(255, 255, 255); text-align: justify; text-indent: 2em;\">张鸽介绍早在2020年7月他们就提出了这个设想并计划分为“火苗蓄力、薪火相传、数字点火”三个阶段开展。2020年9月他们会同支付宝推出了“智能亚运一站通”同时上线了“火苗蓄力”积累了五千多万的亚运粉丝。2022年11月启动了“薪火相传”正式首创推出“亚运数字火炬手”并开展线上火炬传递活动。今年9月15日数字火炬手突破了一亿人。9月23日开幕式现场导演团队等各方完美呈现了“数实融合”点火仪式赢得了海内外各界的高度赞誉。</p><p style=\"box-sizing: border-box; transition: none 0s ease 0s; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; outline: 0px; font-family: &quot;Microsoft Yahei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 15px; line-height: inherit; color: rgb(68, 68, 68); vertical-align: baseline; text-wrap: wrap; background-color: rgb(255, 255, 255); text-align: justify; text-indent: 2em;\">“我们能够推出‘亚运数字火炬手’,可以说得益于浙江雄厚的数字经济基础。”张鸽说,通过“数实融合”点火仪式的完美呈现,彰显了“数字中国”的特色魅力,表达了共建亚洲命运共同体的美好愿景。后续他们将谋划后亚运时代科技遗产的应用,以此推动城市发展,造福市民生活。(记者 刘希尧)</p><p><br/></p>', '1', '2023-10-11 16:56:23');
COMMIT;
-- ----------------------------
-- Table structure for `message_problem`
-- ----------------------------
DROP TABLE IF EXISTS `message_problem`;
CREATE TABLE `message_problem` (
`id` int(10) NOT NULL AUTO_INCREMENT COMMENT '主键自增',
`title` varchar(255) DEFAULT NULL COMMENT '标题',
`content` text COMMENT '内容',
`sys_create_time` datetime DEFAULT CURRENT_TIMESTAMP COMMENT '系统创建时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of `message_problem`
-- ----------------------------
BEGIN;
INSERT INTO `message_problem` VALUES ('1', '问题1', '内容1', '2023-09-09 21:47:56'), ('2', '测试问题1', '<p>测试内容1</p>', '2023-09-12 10:29:08');
COMMIT;
-- ----------------------------
-- Table structure for `message_user`
-- ----------------------------
DROP TABLE IF EXISTS `message_user`;
CREATE TABLE `message_user` (
`id` int(10) NOT NULL AUTO_INCREMENT COMMENT '主键自增',
`tel` varchar(20) DEFAULT NULL COMMENT '手机号码',
`password` varchar(32) DEFAULT NULL COMMENT '密码',
`token` varchar(32) DEFAULT NULL COMMENT 'token',
`company_name` varchar(255) DEFAULT NULL COMMENT '公司名称',
`header_url` varchar(255) DEFAULT NULL COMMENT '头像',
`nick_name` varchar(255) DEFAULT NULL COMMENT '昵称',
`company_code` varchar(255) DEFAULT NULL COMMENT '统一社会信用代码',
`company_desc` varchar(255) DEFAULT NULL COMMENT '公司简介',
`sys_create_time` datetime DEFAULT CURRENT_TIMESTAMP COMMENT '系统创建时间',
PRIMARY KEY (`id`),
KEY `index_tel` (`tel`) USING BTREE,
KEY `index_password` (`password`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='用户表';
-- ----------------------------
-- Records of `message_user`
-- ----------------------------
BEGIN;
INSERT INTO `message_user` VALUES ('2', '18656095360', 'e10adc3949ba59abbe56e057f20f883e', '6e32c14e98c650f82a1a497d0a3dcf66', '金众客网络科技', null, null, null, null, '2023-09-09 20:21:49'), ('3', '13335516957', '25f9e794323b453885f5181f1b624d0b', '53656d158c0741c2660e2ffde8c20c2d', '金众客', '', '二弟', '112233445566', '科技公司', '2023-09-11 16:17:48'), ('5', '18721008051', '3082ab6063af1db69be299d23c22e7fd', 'f5e82cc8cb46401ae6ba02bb4bcccb75', '短发短发', null, null, null, null, '2023-09-12 14:21:57'), ('6', '17521243506', 'e10adc3949ba59abbe56e057f20f883e', '59d7a96361fa8471daf24e636b576098', 'ghhhjj', null, null, null, null, '2023-09-13 18:20:17');
COMMIT;
-- ----------------------------
-- Table structure for `message_work_order`
-- ----------------------------
DROP TABLE IF EXISTS `message_work_order`;
CREATE TABLE `message_work_order` (
`id` int(10) NOT NULL AUTO_INCREMENT COMMENT '主键自增',
`user_id` int(10) DEFAULT '0' COMMENT '用户编号',
`title` varchar(255) DEFAULT NULL COMMENT '标题',
`content` text COMMENT '描述',
`url` text COMMENT '附件地址',
`company_name` varchar(255) DEFAULT NULL COMMENT '公司名称',
`email` varchar(255) DEFAULT NULL COMMENT '邮箱地址',
`api_account` varchar(255) DEFAULT NULL COMMENT 'api账号',
`tel` varchar(255) DEFAULT NULL COMMENT '手机号码',
`sys_create_time` datetime DEFAULT CURRENT_TIMESTAMP COMMENT '系统创建时间',
PRIMARY KEY (`id`),
KEY `index_user_id` (`user_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='工单表';
-- ----------------------------
-- Records of `message_work_order`
-- ----------------------------
BEGIN;
INSERT INTO `message_work_order` VALUES ('1', '3', '工单标题', '描述', '', '金众客', '834985407@qq.com', '12345', '13335516957', '2023-09-11 19:48:33'), ('2', '3', '工单标题1', '工单描述', '/upload/ee/c4d088a55ab2880c039812ea83a4cfdb7e80f7.jpg,/upload/6a/ad89874797081118bdace16a73af079c403899.png', '金众客', '834985407@qq.com', '123456789', '13335516957', '2023-09-11 20:06:41');
COMMIT;
SET FOREIGN_KEY_CHECKS = 1;