1 Star 0 Fork 292

锦迪 / JFinalCMS

forked from 樱木 / JFinalCMS 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
JFinalCMS.sql 344.41 KB
一键复制 编辑 原始数据 按行查看 历史
zztw_hyw 提交于 2021-03-27 16:32 . JFinalCms2.0
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058
/*
Navicat MySQL Data Transfer
Source Server : 测试
Source Server Version : 50730
Source Host : 47.56.210.20:3306
Source Database : newcms
Target Server Type : MYSQL
Target Server Version : 50730
File Encoding : 65001
Date: 2021-03-25 17:04:54
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `cms_admin`
-- ----------------------------
DROP TABLE IF EXISTS `cms_admin`;
CREATE TABLE `cms_admin` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
`createDate` datetime NOT NULL COMMENT '创建日期',
`updateDate` datetime NOT NULL COMMENT '修改日期',
`name` varchar(255) DEFAULT NULL COMMENT '姓名',
`password` varchar(255) DEFAULT NULL COMMENT '密码',
`username` varchar(255) DEFAULT NULL COMMENT '账号',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='管理员表';
-- ----------------------------
-- Records of cms_admin
-- ----------------------------
INSERT INTO `cms_admin` VALUES ('1', '2015-10-15 14:23:44', '2018-12-20 16:56:01', '管理员', '85bf4fb07c22e678ede6a932dba8621a', 'admin');
INSERT INTO `cms_admin` VALUES ('2', '2020-07-06 11:31:57', '2020-07-06 11:32:00', '演示账号', 'e10adc3949ba59abbe56e057f20f883e', 'read');
-- ----------------------------
-- Table structure for `cms_admin_role`
-- ----------------------------
DROP TABLE IF EXISTS `cms_admin_role`;
CREATE TABLE `cms_admin_role` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
`adminId` int(11) DEFAULT NULL COMMENT '角色名称',
`roleId` int(11) DEFAULT NULL COMMENT '角色描述',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='会员表';
-- ----------------------------
-- Records of cms_admin_role
-- ----------------------------
INSERT INTO `cms_admin_role` VALUES ('1', '1', '1');
INSERT INTO `cms_admin_role` VALUES ('2', '2', '1');
-- ----------------------------
-- Table structure for `cms_category`
-- ----------------------------
DROP TABLE IF EXISTS `cms_category`;
CREATE TABLE `cms_category` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
`createDate` datetime NOT NULL COMMENT '创建日期',
`updateDate` datetime NOT NULL COMMENT '修改日期',
`status` int(11) DEFAULT NULL COMMENT '状态',
`sort` int(11) DEFAULT NULL COMMENT '排序',
`grade` int(11) DEFAULT NULL COMMENT '等级',
`cat` varchar(255) DEFAULT NULL COMMENT 'URL目录',
`name` varchar(255) DEFAULT NULL COMMENT '名称',
`subname` varchar(255) DEFAULT NULL COMMENT '副名称',
`ico` varchar(255) DEFAULT NULL COMMENT '缩略图',
`image` varchar(255) DEFAULT NULL COMMENT '大图',
`introduction` longtext COMMENT '内容',
`description` varchar(255) DEFAULT NULL COMMENT '描述',
`keywords` varchar(255) DEFAULT NULL COMMENT '关键词',
`title` varchar(255) DEFAULT NULL COMMENT '标题',
`treePath` varchar(255) DEFAULT NULL COMMENT '树结构路径',
`parentId` int(11) DEFAULT NULL COMMENT '父栏目ID',
`modelId` int(11) DEFAULT NULL COMMENT '模型ID',
`listTemplate` varchar(255) DEFAULT NULL COMMENT '列表模板',
`detailTemplate` varchar(255) DEFAULT NULL COMMENT '详情模板',
`outlink` varchar(255) DEFAULT NULL COMMENT '跳转链接',
`chunkValue` longtext COMMENT '数据块值',
`remark` varchar(255) DEFAULT NULL COMMENT '备注',
`siteId` int(11) DEFAULT NULL COMMENT '站点ID',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1008 DEFAULT CHARSET=utf8 COMMENT='栏目表';
-- ----------------------------
-- Records of cms_category
-- ----------------------------
INSERT INTO `cms_category` VALUES ('1', '2018-06-14 14:34:55', '2018-10-23 11:23:20', '1', null, '0', 'product', '产品展示', null, null, null, null, null, null, null, ',', null, '1', 'product_list.html', 'product_detail.html', '', null, null, '1');
INSERT INTO `cms_category` VALUES ('2', '2018-06-14 14:36:31', '2018-12-11 11:12:38', '1', null, '0', 'article', '新闻资讯', null, null, null, null, null, null, null, ',', null, '2', 'news_list.html', 'news_detail.html', '', null, null, '1');
INSERT INTO `cms_category` VALUES ('3', '2018-06-14 14:36:32', '2018-06-14 14:36:32', '1', null, '0', 'video', '视频中心', null, null, null, null, null, null, null, ',', null, '3', 'video_list.html', 'video_detail.html', '', null, null, '1');
INSERT INTO `cms_category` VALUES ('4', '2018-06-14 15:16:23', '2020-06-18 18:48:25', '1', null, '0', 'guestbook', '在线留言', null, null, null, null, null, null, null, ',', null, '4', null, 'guestbook.html', null, null, null, '1');
INSERT INTO `cms_category` VALUES ('5', '2018-06-22 10:28:26', '2019-09-24 10:14:40', '1', null, '0', 'about', '关于我们', null, null, null, '<p>李彦宏,百度公司创始人、董事长兼首席执行官,全面负责百度公司的战略规划和运营管理。</p><p>\r\n 2000年1月,李彦宏从美国硅谷回到祖国创建了百度。经过十年的发展,李彦宏领导下的百度已经发展成为全球第二大独立搜索引擎和最大的中文搜索引擎,在中国拥有超过8成的市场份额。2005年,百度在美国纳斯达克成功上市,并成为首家进入纳斯达克成分股的中国公司。</p><p>\r\n 创立百度之前,李彦宏已经跻身全球最顶尖的搜索引擎工程师行列,其拥有的“超链分析”技术专利,是奠定整个现代搜索引擎发展趋势和方向的基础发明之一。目前百度拥有4000名全球顶尖的搜索引擎产品和技术工程师,并成为中国第一个拥有博士后工作站的互联网公司。百度的成功,也使中国成为美国、俄罗斯、和韩国之外,全球仅有的4个拥有搜索引擎核心技术的国家之一。2009年百度技术创新大会上,李彦宏发布了面向未来的框计算技术理念,进一步完善了中国互联网科学的理论体系,并将带动整个IT产业的技术进步。在满足国内中文搜索需求的同时,李彦宏还带领百度积极推进国际化进程。</p><p>\r\n 作为国内互联网行业的先行者和领导者,李彦宏曾经获得 “CCTV中国经济年度人物”、“改革开放30年30人”、“中国最具思想力企业家”等荣誉称号,美国《商业周刊》和《财富》等杂志,也多次将李彦宏评为“全球最佳商业领袖” 和“中国最具影响商界领袖”。李彦宏先生还分别获选美国《时代》周刊以及《福布斯》评选的 2010 年“全球最具影响力人物”。</p><p>\r\n 李彦宏1991年毕业于北京大学信息管理专业,随后赴美国布法罗纽约州立大学攻读计算机科学,并取得硕士学位。现兼任中国互联网协会副理事长,武汉大学客座教授。</p><p>\r\n 李彦宏个人大事记:<br/>1996年,发明“超链分析”技术并获美国专利;<br/>1999年底,携风险投资回国与徐勇先生共同创建百度;<br/>2001年,被评选为“中国十大创业新锐”;<br/>2002年,2003年荣获首届、第二届“IT十大风云人物”称号;<br/>2005年,荣获第十二届“东盟青年奖”; 并荣获“CCTV2005中国经济年度人物”;<br/>2006年,当选美国《商业周刊》2006年全球“最佳商业领袖”;<br/>2007年,当选艾瑞新经济最佳人物奖;<br/>2008年6月,担任2008年北京奥运会火炬手;<br/>2008年12月,当选中国经济体制改革研究会评出的“中国改革开放30年经济人物”;<br/>2009年12月,获评“2009第一财经?中国企业社会责任杰出人物奖”;<br/>2010年4月,入选《时代》杂志2010年全球最具影响力100人物榜单;<br/>2010年8月,获“纳斯达克全球杰出企业家”荣誉;<br/>2010年10月,荣膺2010年度十大气候公益企业家 ;<br/>2010年11月,上榜福布斯2010全球最具影响力人物。<br/>2010年11月,被美国《财富》杂志评为2010年度全球商业人士第6名,成为第一位进入该榜单前10名的中国人。</p><p><video class=\"edui-upload-video vjs-default-skin video-js\" controls=\"\" preload=\"none\" width=\"420\" height=\"280\" src=\"/upload/41dff151-ef28-41eb-99ba-8bfe6100c04a.mp4\" data-setup=\"{}\"><source src=\"/upload/41dff151-ef28-41eb-99ba-8bfe6100c04a.mp4\" type=\"video/mp4\"/></video></p>', null, null, null, ',', null, '4', null, 'about.html', '', null, null, '1');
INSERT INTO `cms_category` VALUES ('11', '2019-02-26 14:37:44', '2019-02-26 14:37:47', '1', null, '0', 'product', 'Product', null, null, null, null, null, null, null, ',', null, '1', 'product_list.html', 'product_detail.html', '', null, null, '2');
INSERT INTO `cms_category` VALUES ('12', '2019-02-26 14:40:28', '2019-02-26 14:40:32', '1', null, '0', 'article', 'Article', null, null, null, null, null, null, null, ',', null, '2', 'news_list.html', 'news_detail.html', '', null, null, '2');
INSERT INTO `cms_category` VALUES ('13', '2019-02-26 14:41:22', '2019-02-26 14:41:24', '1', null, '0', 'video', 'Video', null, null, null, null, null, null, null, ',', null, '3', 'video_list.html', 'video_detail.html', '', null, null, '2');
INSERT INTO `cms_category` VALUES ('14', '2019-02-26 14:42:07', '2019-02-26 14:42:09', '1', null, '0', 'guestbook', 'Guestbook', null, null, null, null, null, null, null, ',', null, '4', null, 'guestbook.html', '', null, null, '2');
INSERT INTO `cms_category` VALUES ('15', '2019-02-26 14:43:15', '2019-02-26 14:43:18', '1', null, '0', 'about', 'About', null, null, null, 'Robin Li, founder, chairman and CEO of Baidu Inc, is responsible for the strategic planning and operation management of Baidu Inc.\n\nIn January 2000, Robin Li returned to the motherland from the US Silicon Valley and founded Baidu. After ten years of development, Baidu under the leadership of Robin Li has developed into the second largest independent search engine and the largest Chinese search engine in the world, and has more than 8 of the market share in China. In 2005, Baidu successfully listed on Nasdaq in the United States and became the first Chinese company to enter Nasdaq constituent shares.\n\n\n\nBefore founding Baidu, Robin Li has become one of the world\'s leading search engine engineers. The patent of \"super chain analysis\" technology is one of the basic inventions for the development trend and direction of the modern search engine. At present, Baidu has 4000 top search engine products and technical engineers in the world, and has become the first Internet company in China with postdoctoral workstations. Baidu\'s success has also made China one of the only four countries in the world with core search engine technologies outside the United States, Russia and Korea. At the 2009 Baidu Technology Innovation Conference, Robin Li released the concept of Box Computing Technology for the future, further improved the theoretical system of China\'s Internet Science, and will drive the technological progress of the entire IT industry. While meeting the needs of Chinese search in China, Robin Li also led Baidu to actively promote the internationalization process.\n\n\n\nAs a pioneer and leader of the Internet industry in China, Robin Li was awarded the honorary title of \"CCTV China economic year\", \"30 years of reform and opening up for 30 years\" and \"China\'s most thoughtful entrepreneur\". Many other magazines such as BusinessWeek and fortune also rated Robin Li as \"the best business in the world\". Leaders and \"China\'s Most Influential Business Leaders\". Mr. Robin Li was also elected \"the most influential figure in the world\" in 2010, \"the times\" and \"Forbes\" respectively.\n\n\n\nRobin Li graduated from Peking University in 1991, and then went to New York State University of buffalo to study computer science and obtained his master\'s degree. He is also Vice President of China Internet Association and Visiting Professor of Wuhan University.\n\n\n\nRobin Li\'s personal Chronicle:\n\nIn 1996, the invention of \"hyper-chain analysis\" technology was patented by the United States.\n\nAt the end of 1999, he returned home with venture capital and co-founded Baidu with Mr. Xu Yong.\n\nIn 2001, he was selected as \"China\'s top ten pioneers in entrepreneurship\".\n\nIn 2002, he was awarded the title of \"Top Ten IT Persons\" in the first and second sessions in 2003.\n\nIn 2005, he won the 12th ASEAN Youth Award and CCTV 2005 China Economic Person of the Year.\n\nIn 2006, he was elected the \"Best Business Leader\" of Business Weekly in the world in 2006.\n\nIn 2007, he was elected the Best Person Award of the New Economy.\n\nIn June 2008, he was the torchbearer of the 2008 Beijing Olympic Games.\n\nIn December 2008, he was elected \"Economic Person of China in the 30 Years of Reform and Opening-up\" by the Research Institute of China\'s Economic System Reform.\n\nIn December 2009, he was awarded the \"2009 First Financial and Economic? Outstanding Person of Corporate Social Responsibility in China Award\".\n\nIn April 2010, Time Magazine ranked 100 most influential people in the world in 2010.\n\nIn August 2010, he won the honor of \"Nasdaq Global Outstanding Entrepreneur\".\n\nIn October 2010, he was honored as the top ten climate public welfare entrepreneurs in 2010.\n\nIn November 2010, Forbes ranked the most influential person in the world in 2010.\n\nIn November 2010, Fortune magazine ranked the sixth businessman in the world in 2010, becoming the first Chinese to rank in the top 10 of the list.', null, null, null, ',', null, '4', null, 'about.html', '', null, null, '2');
INSERT INTO `cms_category` VALUES ('100', '2019-12-23 19:20:02', '2019-12-23 19:20:05', '1', null, '0', 'about', '公司简介', '网站建设「一站式」服务商', null, null, '<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;<span style=\"font-size: 18px;\">JreCms是开源免费的JAVA企业网站开发建设管理系统,是一套高效、简洁、\r\n 强悍的可免费商用的JAVA \r\nCMS源码,能够满足各类企业网站开发建设的需要。系统采用简单到想哭的模板标签,只要懂HTML就可快速开发企业网站。官方提供了大量网站模板免费下载和使用,将致力于为广大开发者和企业提供最佳的网站开发建设解决方案。</span>\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;1、系统采用高效、简洁、强悍的模板标签,只要懂HTML就可快速开发企业网站;\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;2、系统采用JAVA语言开发,使用EhCache缓存技术;\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;3、系统默认采用Mysql轻型数据库,方便快捷,轻松上手;\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;4、系统采用响应式管理后台,满足各类设备随时管理的需要;\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;5、系统支持内容模型、多语言、自定义表单、筛选、多条件搜索、小程序、APP等功能;\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;6、系统支持多种URL模式及模型、栏目、内容自定义地址名称,满足各类网站推广优化的需要。<br/>\r\n</p>\r\n<p>\r\n <br/>\r\n</p>\r\n<p>\r\n <strong><span style=\"font-size: 18px;\">源码托管地址:</span></strong>\r\n</p>\r\n<p>\r\n GitHub:-<br/>\r\n</p>\r\n<p>\r\n Gitee:<a href=\"https://gitee.com/heyewei/JFinalcms\" target=\"_blank\" title=\"https://gitee.com/heyewei/JFinalcms\">https://gitee.com/heyewei/JFinalcms</a>\r\n</p>\r\n<p>\r\n <strong><span style=\"font-size: 18px;\"><br/></span></strong>\r\n</p>\r\n<p>\r\n <strong><span style=\"font-size: 18px;\">简单到想哭的标签:</span></strong>\r\n</p>\r\n<pre class=\"brush:html;toolbar:false\">1、全局标签示意:\r\n#(currentWeb.title) 站点标题 \r\n#(currentWeb.logo) 站点logo\r\n2、内容分页标签示意:\r\n#content_page(pageNumber = 1,pageSize = 8) \r\n#for(content : contentPage.list)\r\n &lt;p&gt;&lt;a href=&quot;#(content.path)&quot;&gt;#(content.title)&lt;/a&gt;&lt;/p&gt;\r\n#end\r\n#end\r\n3、内容页标签示意:\r\n#(content.title) 标题\r\n#(content.subtitle)副标题\r\n#(content.author) 作者\r\n#(content.source) 来源\r\n更多简单到想哭的标签请参考开发手册...</pre>', null, null, null, ',', null, '4', null, 'about.html', null, null, null, '10');
INSERT INTO `cms_category` VALUES ('101', '2019-12-25 14:03:52', '2020-11-07 23:24:16', '1', null, '0', 'news', '新闻中心', '了解最新公司动态及行业资讯', null, null, null, null, null, null, ',', null, '2', 'news_list.html', 'news_detail.html', null, null, null, '10');
INSERT INTO `cms_category` VALUES ('102', '2019-12-25 14:05:18', '2020-11-15 17:30:34', '1', null, '1', 'gsdt', '公司动态', '了解最新公司动态及行业资讯', null, null, null, null, null, null, ',101,', '101', '1', 'news_list.html', 'news_detail.html', null, null, null, '10');
INSERT INTO `cms_category` VALUES ('103', '2019-12-25 15:59:20', '2020-11-07 23:24:25', '1', null, '1', 'hydt', '行业动态', '了解最新公司动态及行业资讯', null, null, null, null, null, null, ',101,', '101', '2', 'news_list.html', 'news_detail.html', null, null, null, '10');
INSERT INTO `cms_category` VALUES ('104', '2019-12-25 16:00:02', '2019-12-25 16:00:04', '1', null, '0', 'product', '产品中心', '服务创造价值、存在造就未来', null, null, null, null, null, null, ',', null, '1', 'product_list.html', 'product_detail.html', null, null, null, '10');
INSERT INTO `cms_category` VALUES ('105', '2019-12-25 16:01:01', '2020-11-08 00:22:23', '1', null, '1', 'wzjs', '网站建设', '服务创造价值、存在造就未来', null, null, null, null, null, null, ',104,', '104', '1', 'product_list.html', 'product_detail.html', null, null, null, '10');
INSERT INTO `cms_category` VALUES ('106', '2019-12-25 16:02:07', '2020-11-08 00:22:32', '1', null, '1', 'ymkj', '域名空间', '服务创造价值、存在造就未来', null, null, null, null, null, null, ',104,', '104', '1', 'product_list.html', 'product_detail.html', null, null, null, '10');
INSERT INTO `cms_category` VALUES ('107', '2019-12-25 16:03:10', '2019-12-25 16:03:05', '1', null, '0', 'case', '服务案例', '服务创造价值、存在造就未来', null, null, null, null, null, null, ',', null, '1', 'case_list.html', 'case_detail.html', null, null, null, '10');
INSERT INTO `cms_category` VALUES ('108', '2019-12-25 16:19:53', '2019-12-25 16:19:51', '1', null, '0', 'job', '招贤纳士', '诚聘优秀人士加入我们的团队', null, null, null, null, null, null, ',', null, '1', 'job_list.html', 'job_detail.html', null, null, null, '10');
INSERT INTO `cms_category` VALUES ('109', '2019-12-25 16:21:40', '2019-12-25 16:21:48', '1', null, '0', 'guestbook', '在线留言', '有什么问题欢迎您随时反馈', null, null, null, null, null, null, ',', null, '4', null, 'guestbook.html', null, null, null, '10');
INSERT INTO `cms_category` VALUES ('110', '2019-12-25 16:22:27', '2019-12-25 16:22:25', '1', null, '0', 'contact', '联系我们', '能为您服务是我们的荣幸', null, null, ' <p>官方网站:<a href=\"http://www.jrecms.com\">www.jrecms.com</a><br /></p>\r\n <p>技术交流群: 575535321</p>\r\n <p><br /></p>\r\n <p>我们一直秉承大道至简分享便可改变世界的理念,坚持做最简约灵活的JreCms开源软件!</p>\r\n <p>您的每一份帮助都将支持JreCms做的更好,走的更远!</p>\r\n <p>我们一直在坚持不懈地努力,并尽可能让JreCms完全开源免费,您的帮助将使我们更有动力和信心^_^!</p>\r\n <p>扫一扫官网付款码赞助我们,您的支持是开发者不断前进的动力!</p>\r\n <p><br /></p>\r\n <p><strong>您的每一份捐赠将用来:</strong></p>\r\n <p>深入JreCms核心的开发、</p>\r\n <p>做丰富的应用;</p>\r\n <p>设计更爽的用户界面;</p>\r\n <p>吸引更多的模板开发者和应用开发者;</p>\r\n <p>奖励更多优秀贡献者。</p>\r\n <p>把JreCms技术交流群575535321推荐给伱自己有兴趣的群做宣传,也是对我们的帮助哟!~~</p>\r\n <p><img src=\"/static/upload/image/20180413/1523583018133454.png\" /></p>\r\n <p><br /></p>\r\n', null, null, null, ',', null, '4', null, 'about.html', null, null, null, '10');
INSERT INTO `cms_category` VALUES ('200', '2020-03-16 17:31:24', '2020-03-16 17:31:26', '1', null, '0', 'product', '产品中心', 'PRODUCT', null, null, null, null, null, null, ',', null, '1', 'product_list.html', 'product_detail.html', null, null, null, '11');
INSERT INTO `cms_category` VALUES ('201', '2020-03-17 14:29:02', '2020-03-17 14:29:05', '1', null, '0', 'case', '工程案例', 'CASE', null, null, null, null, null, null, ',', null, '1', 'case_list.html', 'case_detail.html', null, null, null, '11');
INSERT INTO `cms_category` VALUES ('202', '2020-03-17 14:31:17', '2020-03-17 14:31:20', '1', null, '0', 'about', '关于我们', 'ABOUT', null, '/static/upload/image/20180524/1527130333574564.jpg', '<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;<span style=\"font-size: 18px;\">JreCms是开源免费的JAVA企业网站开发建设管理系统,是一套高效、简洁、\r\n 强悍的可免费商用的JAVA \r\nCMS源码,能够满足各类企业网站开发建设的需要。系统采用简单到想哭的模板标签,只要懂HTML就可快速开发企业网站。官方提供了大量网站模板免费下载和使用,将致力于为广大开发者和企业提供最佳的网站开发建设解决方案。</span>\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;1、系统采用高效、简洁、强悍的模板标签,只要懂HTML就可快速开发企业网站;\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;2、系统采用JAVA语言开发,使用EhCache缓存技术;\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;3、系统默认采用Mysql轻型数据库,方便快捷,轻松上手;\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;4、系统采用响应式管理后台,满足各类设备随时管理的需要;\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;5、系统支持内容模型、多语言、自定义表单、筛选、多条件搜索、小程序、APP等功能;\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;6、系统支持多种URL模式及模型、栏目、内容自定义地址名称,满足各类网站推广优化的需要。<br/>\r\n</p>\r\n<p>\r\n <br/>\r\n</p>\r\n<p>\r\n <strong><span style=\"font-size: 18px;\">源码托管地址:</span></strong>\r\n</p>\r\n<p>\r\n GitHub:-<br/>\r\n</p>\r\n<p>\r\n Gitee:<a href=\"https://gitee.com/heyewei/JFinalcms\" target=\"_blank\" title=\"https://gitee.com/heyewei/JFinalcms\">https://gitee.com/heyewei/JFinalcms</a>\r\n</p>\r\n<p>\r\n <strong><span style=\"font-size: 18px;\"><br/></span></strong>\r\n</p>\r\n<p>\r\n <strong><span style=\"font-size: 18px;\">简单到想哭的标签:</span></strong>\r\n</p>\r\n<pre class=\"brush:html;toolbar:false\">1、全局标签示意:\r\n#(currentWeb.title) 站点标题 \r\n#(currentWeb.logo) 站点logo\r\n2、内容分页标签示意:\r\n#content_page(pageNumber = 1,pageSize = 8) \r\n#for(content : contentPage.list)\r\n &lt;p&gt;&lt;a href=&quot;#(content.path)&quot;&gt;#(content.title)&lt;/a&gt;&lt;/p&gt;\r\n#end\r\n#end\r\n3、内容页标签示意:\r\n#(content.title) 标题\r\n#(content.subtitle)副标题\r\n#(content.author) 作者\r\n#(content.source) 来源\r\n更多简单到想哭的标签请参考开发手册...</pre>', null, null, null, ',', null, '4', '', 'about.html', null, null, null, '11');
INSERT INTO `cms_category` VALUES ('203', '2020-03-20 10:36:58', '2020-03-20 10:37:00', '1', null, '1', 'gsjj', '公司简介', 'ABOUT', '/static/upload/image/20180524/1527130441382954.png', null, '<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;<span style=\"font-size: 18px;\">JreCms是开源免费的JAVA企业网站开发建设管理系统,是一套高效、简洁、\r\n 强悍的可免费商用的JAVA \r\nCMS源码,能够满足各类企业网站开发建设的需要。系统采用简单到想哭的模板标签,只要懂HTML就可快速开发企业网站。官方提供了大量网站模板免费下载和使用,将致力于为广大开发者和企业提供最佳的网站开发建设解决方案。</span>\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;1、系统采用高效、简洁、强悍的模板标签,只要懂HTML就可快速开发企业网站;\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;2、系统采用JAVA语言开发,使用EhCache缓存技术;\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;3、系统默认采用Mysql轻型数据库,方便快捷,轻松上手;\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;4、系统采用响应式管理后台,满足各类设备随时管理的需要;\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;5、系统支持内容模型、多语言、自定义表单、筛选、多条件搜索、小程序、APP等功能;\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;6、系统支持多种URL模式及模型、栏目、内容自定义地址名称,满足各类网站推广优化的需要。<br/>\r\n</p>\r\n<p>\r\n <br/>\r\n</p>\r\n<p>\r\n <strong><span style=\"font-size: 18px;\">源码托管地址:</span></strong>\r\n</p>\r\n<p>\r\n GitHub:-<br/>\r\n</p>\r\n<p>\r\n Gitee:<a href=\"https://gitee.com/heyewei/JFinalcms\" target=\"_blank\" title=\"https://gitee.com/heyewei/JFinalcms\">https://gitee.com/heyewei/JFinalcms</a>\r\n</p>\r\n<p>\r\n <strong><span style=\"font-size: 18px;\"><br/></span></strong>\r\n</p>\r\n<p>\r\n <strong><span style=\"font-size: 18px;\">简单到想哭的标签:</span></strong>\r\n</p>\r\n<pre class=\"brush:html;toolbar:false\">1、全局标签示意:\r\n#(currentWeb.title) 站点标题 \r\n#(currentWeb.logo) 站点logo\r\n2、内容分页标签示意:\r\n#content_page(pageNumber = 1,pageSize = 8) \r\n#for(content : contentPage.list)\r\n &lt;p&gt;&lt;a href=&quot;#(content.path)&quot;&gt;#(content.title)&lt;/a&gt;&lt;/p&gt;\r\n#end\r\n#end\r\n3、内容页标签示意:\r\n#(content.title) 标题\r\n#(content.subtitle)副标题\r\n#(content.author) 作者\r\n#(content.source) 来源\r\n更多简单到想哭的标签请参考开发手册...</pre>', null, null, null, ',202,', '202', '4', null, 'about.html', null, null, null, '11');
INSERT INTO `cms_category` VALUES ('204', '2020-03-20 10:42:04', '2020-03-20 10:42:06', '1', null, '1', 'ryzzh', '荣誉资质', 'HONOR', '/static/upload/image/20180524/1527130458483555.png', null, '<p style=\"text-align: center;\"><img src=\"/static/upload/image/20180524/1527128789519651.jpg\"/></p>', null, null, null, ',202,', '202', '4', null, 'about.html', null, null, null, '11');
INSERT INTO `cms_category` VALUES ('205', '2020-03-20 10:44:42', '2020-03-20 10:44:45', '1', null, '0', 'news', '企业新闻', 'NEWS', null, null, null, null, null, null, ',', null, '2', 'news_list.html', 'news_detail.html', null, null, null, '11');
INSERT INTO `cms_category` VALUES ('206', '2020-03-20 10:46:15', '2020-03-20 10:46:18', '1', null, '1', 'gsxw', '公司新闻', 'COMPANY', null, null, null, null, null, null, ',205,', '205', '2', 'news_list.html', 'news_detail.html', null, null, null, '11');
INSERT INTO `cms_category` VALUES ('207', '2020-03-20 10:51:25', '2020-03-20 10:51:28', '1', null, '1', 'hyxw', '行业新闻', 'INDUSTRY', null, null, null, null, null, null, ',205,', '205', '2', 'news_list.html', 'news_detail.html', null, null, null, '11');
INSERT INTO `cms_category` VALUES ('208', '2020-03-20 10:52:38', '2020-03-20 10:52:41', '1', null, '0', 'support', '技术支持', 'TECHNOLOGY', null, null, '<p style=\"text-align: center;\"><img src=\"/static/upload/image/20180530/1527643496112614.jpg\" title=\"1527643496112614.jpg\" alt=\"1.jpg\"/></p>', null, null, null, ',', null, '4', null, 'about.html', null, null, null, '11');
INSERT INTO `cms_category` VALUES ('209', '2020-03-20 10:59:27', '2020-03-20 10:59:30', '1', null, '0', 'guestbook', '在线留言', 'MESSAGE', null, null, null, null, null, null, ',', null, '4', null, 'guestbook.html', null, null, null, '11');
INSERT INTO `cms_category` VALUES ('210', '2020-03-20 11:00:50', '2020-03-20 11:00:52', '1', null, '0', 'contact', '联系我们', 'CONTACT', null, null, '<p><span style=\"color:#337FE5;font-size:18px;\"><strong>长沙XXXX网络科技有限公司</strong></span><br/>联系人:XXX<br/>电话:xxxxxxxxx<br/>QQ:xxxxxxxxx<br/>邮箱:xxxxxxxxbr/>网址:www.hnaoyun.com<br/>地址:长沙市xxxxxxxxxxxxx</p>', null, null, null, ',', null, '4', null, 'about.html', null, null, null, '11');
INSERT INTO `cms_category` VALUES ('211', '2020-03-20 11:02:52', '2020-03-20 11:02:55', '1', null, '1', 'cjwt', '常见问题', 'COMMON PROBLEM', null, null, null, null, null, null, ',208,', '208', '2', 'news_list.html', 'news_detail.html', null, null, null, '11');
INSERT INTO `cms_category` VALUES ('212', '2020-03-20 11:04:11', '2020-03-20 11:04:08', '1', null, '1', 'shhfw', '售后服务', 'SERVICE', null, null, null, null, null, null, ',208,', '208', '4', null, 'about.html', null, null, null, '11');
INSERT INTO `cms_category` VALUES ('213', '2020-03-20 11:05:31', '2020-03-20 11:05:32', '1', null, '1', 'dlqj', '电缆桥架', 'CABLE TRAY', null, null, null, null, null, null, ',200,', '200', '1', 'product_list.html', 'product_detail.html', null, null, null, '11');
INSERT INTO `cms_category` VALUES ('214', '2020-03-20 11:06:36', '2020-03-20 11:06:34', '1', null, '1', 'mxc', '母线槽', 'BUSBAR', null, null, null, null, null, null, ',200,', '200', '1', 'product_list.html', 'product_detail.html', null, null, null, '11');
INSERT INTO `cms_category` VALUES ('215', '2020-03-20 11:07:25', '2020-03-20 11:07:23', '1', null, '1', 'gc', '管材', 'PIPE', null, null, null, null, null, null, ',200,', '200', '1', 'product_list.html', 'product_detail.html', null, null, null, '11');
INSERT INTO `cms_category` VALUES ('216', '2020-03-20 11:08:17', '2020-03-20 11:08:14', '1', null, '1', 'pdx', '配电箱', 'POWER DISTRIBUTION BOX', null, null, null, null, null, null, ',200,', '200', '1', 'product_list.html', 'product_detail.html', null, null, null, '11');
INSERT INTO `cms_category` VALUES ('300', '2020-03-20 11:08:17', '2020-10-07 23:19:11', '1', null, '0', 'tzhxm', '拓展项目', 'EXPAND', null, null, null, null, null, null, ',', null, '1', 'product_list.html', 'product_detail.html', null, null, null, '12');
INSERT INTO `cms_category` VALUES ('301', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '0', 'jstzh', '军事拓展', 'MILITARY', null, null, null, null, null, null, ',', null, '1', 'job_list.html', 'job_detail.html', null, null, null, '12');
INSERT INTO `cms_category` VALUES ('302', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '0', 'jdjsh', '基地介绍', 'BASE', null, null, null, null, null, null, ',', null, '1', 'jd_list.html', 'jd_detail.html', null, null, null, '12');
INSERT INTO `cms_category` VALUES ('303', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '0', 'case', '客户案例', 'CASE', null, null, null, null, null, null, ',', null, '1', 'case_list.html', 'case_detail.html', null, null, null, '12');
INSERT INTO `cms_category` VALUES ('304', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '0', 'news', '最新动态', 'NEWS', null, null, null, null, null, null, ',', null, '2', 'news_list.html', 'news_detail.html', null, null, null, '12');
INSERT INTO `cms_category` VALUES ('305', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '0', 'about', '关于我们', 'ABOUT US', null, '', '<p>长沙翱云网络科技有限公司,是一家专业服务于企业信息化建设的提供商,是网络信息技术产业的高新科技企业。公司主要提供网站设计、网站建设、网站优化、程序开发、域名服务、智能DNS、云主机服务、数据库、企业邮箱、网站及服务器托管、网站及服务器安全、企业虚拟化建设、企业信息系统建设、企业IT技术支持与咨询、IT服务外包、系统集成等全方位企业信息化服务,为企业打造专业的网络形象,使企业可以在成本、效率、稳定、安全的前提下应用网络服务,展现自我风格和特色,创造更多的价值和效益!</p><p><br/></p><p>PbootCMS是翱云科技开发的全新内核的开源企业建站系统,系统以高效、简洁、强悍为开发目标,能够满足各类企业网站建设的需要;<br/><br/>系统采用高效、简洁的模板标签,只要懂HTML就可快速开发企业网站;<br/>&nbsp;&nbsp; &nbsp;<br/>系统采用PHP语言开发,使用自主研发的高速MVVM多层开发框架及多级缓存技术;<br/><br/>系统默认采用Sqlite轻型数据库,放入PHP空间即可直接使用,可选Mysql、Pgsql等数据库,满足各类存储需求;<br/><br/>系统采用响应式管理后台,满足各类设备随时管理的需要。</p><p><br/></p>', null, null, null, ',', null, '4', '', 'about.html', null, null, null, '12');
INSERT INTO `cms_category` VALUES ('306', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '0', 'guestbook', '在线留言', 'MESSAGE', null, '', '', null, null, null, ',', null, '4', '', 'guestbook.html', null, null, null, '12');
INSERT INTO `cms_category` VALUES ('307', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '0', 'contact', '联系我们', 'CONTACT US', null, '', '<p><strong style=\"margin: 0px; padding: 0px; transition: all 300ms ease; color: rgb(51, 51, 51); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; line-height: 28px; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"margin: 0px; padding: 0px; transition: all 300ms ease; color: rgb(51, 127, 229);\">长沙翱云网络科技有限公司</span></strong><br/><span style=\"color: rgb(51, 51, 51); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; line-height: 28px; background-color: rgb(255, 255, 255);\">联系人:秦经理</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; line-height: 28px; background-color: rgb(255, 255, 255);\">电话:</span>13348712175</p><p><span style=\"color: rgb(51, 51, 51); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; line-height: 28px; background-color: rgb(255, 255, 255);\">QQ:286735979</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; line-height: 28px; background-color: rgb(255, 255, 255);\">邮箱:qinxiaoming@aliyun.com</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; line-height: 28px; background-color: rgb(255, 255, 255);\">地址:湖南省长沙市岳麓区杜鹃路奥克斯缤纷广场1楼</span><br/></p>', null, null, null, ',', null, '4', '', 'about.html', null, null, null, '12');
INSERT INTO `cms_category` VALUES ('400', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '0', 'news', '新闻资讯', 'NEWS', '', null, null, null, null, '', ',', null, '2', 'news_list.html', 'news_detail.html', null, null, null, '13');
INSERT INTO `cms_category` VALUES ('401', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '0', 'product', '产品系列', 'PRODUCT', '', null, null, null, null, '', ',', null, '1', 'product_list.html', 'product_detail.html', null, null, null, '13');
INSERT INTO `cms_category` VALUES ('402', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '0', 'gmlch', '购买流程', 'PURCHASE PROCESS', '', '', '', null, null, '', ',', null, '4', '', 'about.html', null, null, null, '13');
INSERT INTO `cms_category` VALUES ('403', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '0', 'khty', '客户体验', 'CUSTOMER EXPERIENCE', '', null, null, null, null, '', ',', null, '1', 'case_list.html', 'case_detail.html', null, null, null, '13');
INSERT INTO `cms_category` VALUES ('404', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '0', 'about', '关于我们', 'ABOUT', '', '/static/upload/image/20180528/1527483382832093.jpg', '<p><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\">  </span>长沙翱云网络科技有限公司,是一家专业服务于企业信息化建设的提供商,是网络信息技术产业的高新科技企业。公司主要提供网站设计、网站建设、网站优化、程序开发、域名服务、智能DNS、云主机服务、数据库、企业邮箱、网站及服务器托管、网站及服务器安全、企业虚拟化建设、企业信息系统建设、企业IT技术支持与咨询、IT服务外包、系统集成等全方位企业信息化服务,为企业打造专业的网络形象,使企业可以在成本、效率、稳定、安全的前提下应用网络服务,展现自我风格和特色,创造更多的价值和效益!<span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\"></span><br/><br/></p><div style=\"margin: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; white-space: normal; text-align: center;\"><img src=\"http://web.hnjing.cn/Content/UploadFiles/image/20160730/20160730103732_2945.jpg\"/></div><p><br/></p>', null, null, '', ',', null, '4', '', 'about.html', null, null, null, '13');
INSERT INTO `cms_category` VALUES ('405', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '0', 'zshjm', '招商加盟', 'INVESTMENT', '', '', '', null, null, '', ',', null, '4', '', 'about.html', null, null, null, '13');
INSERT INTO `cms_category` VALUES ('406', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '0', 'flshm', '法律生命', 'LEGAL LIFE', '', '', '', null, null, '', ',', null, '4', '', 'about.html', null, null, null, '13');
INSERT INTO `cms_category` VALUES ('407', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '0', 'contact', '联系我们', 'CONTACT', '', '', '<p><strong style=\"margin: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; white-space: normal;\">长沙翱云网络科技有限公司</strong><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\">负责人:秦小明</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\">电话:0731-85838839</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\">邮箱:qinxiaoming@aliyun.com</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\">网址:http://www.hnaoyun.com</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\">地址:湖南省长沙市岳麓区杜鹃路奥克斯缤纷广场1楼</span></p><p><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\"><br/></span></p>', null, null, '', ',', null, '4', '', 'about.html', null, null, null, '13');
INSERT INTO `cms_category` VALUES ('408', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '1', 'gsdt', '公司动态', 'COMPANY DYNAMICS', '', null, null, null, null, '', ',400,', '400', '2', 'news_list.html', 'news_detail.html', null, null, null, '13');
INSERT INTO `cms_category` VALUES ('409', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '1', 'hyxw', '行业新闻', 'INDUSTRY', '', null, null, null, null, '', ',400,', '400', '2', 'news_list.html', 'news_detail.html', null, null, null, '13');
INSERT INTO `cms_category` VALUES ('410', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '1', 'kyqd', '控油祛痘', 'CONTROL OIL', '/static/upload/image/20180528/1527482962303225.jpg', null, null, null, null, '', ',401,', '401', '1', 'product_list.html', 'product_detail.html', null, null, null, '13');
INSERT INTO `cms_category` VALUES ('411', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '1', 'shcqj', '深层清洁', 'DEEP CLEANSING', '/static/upload/image/20180528/1527482956757356.jpg', null, null, null, null, '', ',401,', '401', '1', 'product_list.html', 'product_detail.html', null, null, null, '13');
INSERT INTO `cms_category` VALUES ('412', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '1', 'bshbsh', '补水保湿', 'MOISTURE', '/static/upload/image/20180528/1527482975804236.jpg', null, null, null, null, '', ',401,', '401', '1', 'product_list.html', 'product_detail.html', null, null, null, '13');
INSERT INTO `cms_category` VALUES ('413', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '1', 'mblf', '美白亮肤', 'WHITENING', '/static/upload/image/20180528/1527482987129881.jpg', null, null, null, null, '', ',401,', '401', '1', 'product_list.html', 'product_detail.html', null, null, null, '13');
INSERT INTO `cms_category` VALUES ('500', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '0', 'about', '公司简介', 'ABOUT US', '', '/static/upload/image/20180604/1528088065441601.jpg', '<p>长沙翱云网络科技有限公司,是一家专业服务于企业信息化建设的提供商,是网络信息技术产业的高新科技企业。公司主要提供网站设计、网站建设、网站优化、程序开发、域名服务、智能DNS、云主机服务、数据库、企业邮箱、网站及服务器托管、网站及服务器安全、企业虚拟化建设、企业信息系统建设、企业IT技术支持与咨询、IT服务外包、系统集成等全方位企业信息化服务,为企业打造专业的网络形象,使企业可以在成本、效率、稳定、安全的前提下应用网络服务,展现自我风格和特色,创造更多的价值和效益!</p><p><br/></p>PbootCMS是翱云科技开发的全新内核的开源企业建站系统,系统以高效、简洁、强悍为开发目标,能够满足各类企业网站建设的需要;<br/><br/>系统采用高效、简洁的模板标签,只要懂HTML就可快速开发企业网站;<br/>&nbsp;&nbsp; &nbsp;<br/>系统采用PHP语言开发,使用自主研发的高速MVVM多层开发框架及多级缓存技术;<br/><br/>系统默认采用Sqlite轻型数据库,放入PHP空间即可直接使用,可选Mysql、Pgsql等数据库,满足各类存储需求;<br/><br/>系统采用响应式管理后台,满足各类设备随时管理的需要。', null, null, null, ',', null, '4', '', 'about.html', null, null, null, '14');
INSERT INTO `cms_category` VALUES ('501', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '0', 'ccdkgc', '拆除打孔工程', 'DISMANTLING', '/static/upload/image/20180603/1528035787973527.jpg', null, null, null, null, null, ',', null, '1', 'product_list.html', 'product_detail.html', null, null, null, '14');
INSERT INTO `cms_category` VALUES ('502', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '0', 'azfs', '安装粉刷', 'WHITEWASH', '/static/upload/image/20180603/1528035799352050.jpg', null, null, null, null, null, ',', null, '1', 'product_list.html', 'product_detail.html', null, null, null, '14');
INSERT INTO `cms_category` VALUES ('503', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '0', 'case', '工程案例', 'CASE', '', null, null, null, null, null, ',', null, '1', 'case_list.html', 'case_detail.html', null, null, null, '14');
INSERT INTO `cms_category` VALUES ('504', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '0', 'hydt', '行业动态', 'DANAMICS', '', null, null, null, null, null, ',', null, '2', 'news_list.html', 'news_detail.html', null, null, null, '14');
INSERT INTO `cms_category` VALUES ('505', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '0', 'contact', '联系我们', 'CONTACT US', '', '', '<p><strong style=\"margin: 0px; padding: 0px; transition: all 300ms ease; color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"margin: 0px; padding: 0px; transition: all 300ms ease; color: rgb(229, 102, 0); font-size: 18px;\">长沙翱云网络科技有限公司</span></strong><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">联系人:秦经理</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">手机:133-4871-2175</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">邮箱:qinxiaoming@aliyun.com</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">网址:www.hnaoyun.com</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">地址:长沙市岳麓区杜鹃路奥克斯缤纷广场1楼</span></p><p><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\"><br/></span></p><p><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\"><iframe src=\"http://www.b.com/core/extend/ueditor/dialogs/map/show.html#center=113.039406,28.191913&zoom=13&width=530&height=340&markers=113.039406,28.191913&markerStyles=l,A\" width=\"534\" height=\"344\" frameborder=\"0\"></iframe></span></p>', null, null, null, ',', null, '4', '', 'about.html', null, null, null, '14');
INSERT INTO `cms_category` VALUES ('506', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '0', 'guestbook', '在线留言', 'ONLINE', '', '', '', null, null, null, ',', null, '4', '', 'guestbook.html', null, null, null, '14');
INSERT INTO `cms_category` VALUES ('507', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '1', 'cfcc', '厂房拆除', '', '', null, null, null, null, null, ',501,', '501', '1', 'product_list.html', 'product_detail.html', null, null, null, '14');
INSERT INTO `cms_category` VALUES ('508', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '1', 'sncc', '室内拆除', '', '', null, null, null, null, null, ',501,', '501', '1', 'product_list.html', 'product_detail.html', null, null, null, '14');
INSERT INTO `cms_category` VALUES ('509', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '1', 'snzk', '室内钻孔', '', '', null, null, null, null, null, ',501,', '501', '1', 'product_list.html', 'product_detail.html', null, null, null, '14');
INSERT INTO `cms_category` VALUES ('510', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '1', 'dk', '打孔', '', '', null, null, null, null, null, ',501,', '501', '1', 'product_list.html', 'product_detail.html', null, null, null, '14');
INSERT INTO `cms_category` VALUES ('511', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '1', 'swcc', '室外拆除', '', '', null, null, null, null, null, ',501,', '501', '1', 'product_list.html', 'product_detail.html', null, null, null, '14');
INSERT INTO `cms_category` VALUES ('512', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '1', 'cgjhnt', '拆钢筋混泥土', '', '', null, null, null, null, null, ',501,', '501', '1', 'product_list.html', 'product_detail.html', null, null, null, '14');
INSERT INTO `cms_category` VALUES ('513', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '1', 'zkdk', '钻孔打孔', '', '/static/upload/image/20180603/1528038021240507.jpg', null, null, null, null, null, ',502,', '502', '1', 'product_list.html', 'product_detail.html', null, null, null, '14');
INSERT INTO `cms_category` VALUES ('514', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '1', 'qbfs', '墙壁粉刷', '', '/static/upload/image/20180603/1528038030481378.jpg', null, null, null, null, null, ',502,', '502', '1', 'product_list.html', 'product_detail.html', null, null, null, '14');
INSERT INTO `cms_category` VALUES ('515', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '1', 'mgzx', '木工装修', '', '', null, null, null, null, null, ',502,', '502', '1', 'product_list.html', 'product_detail.html', null, null, null, '14');
INSERT INTO `cms_category` VALUES ('516', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '1', 'sdaz', '水电安装', '', '', null, null, null, null, null, ',502,', '502', '1', 'product_list.html', 'product_detail.html', null, null, null, '14');
INSERT INTO `cms_category` VALUES ('600', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '0', 'about', '关于我们', null, null, '', '<p>长沙翱云网络科技有限公司,是一家专业服务于企业信息化建设的服务商,是网络信息技术产业的高新科技企业。公司提供核心系统运维、智慧商业解决方案、系统设计与集成、系统工程外包、软件定制开发、桌面电脑维护、网站设计开发、空间域名服务、云主机服务、智能DNS、数据库、企业邮箱、网站及服务器托管、网站及服务器安全、企业虚拟化建设、企业IT技术支持与咨询、IT服务外包、安防系统、会议系统、背景音乐系统等全方位企业信息一体化化服务,为企业打造专业的网络服务形象,使企业可以在成本、效率、稳定、安全的前提下应用网络服务,展现自我风格和特色,创造更多的价值和效益!</p>', null, null, null, ',', null, '4', '', 'about.html', null, null, null, '15');
INSERT INTO `cms_category` VALUES ('601', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '0', 'ylyh', '园林养护', null, null, null, null, null, null, null, ',', null, '1', 'product_list.html', 'product_detail.html', null, null, null, '15');
INSERT INTO `cms_category` VALUES ('602', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '0', 'case', '工程案例', null, null, null, null, null, null, null, ',', null, '1', 'case_list.html', 'case_detail.html', null, null, null, '15');
INSERT INTO `cms_category` VALUES ('603', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '0', 'yhcs', '养护常识', null, null, null, null, null, null, null, ',', null, '2', 'news_list.html', 'news_detail.html', null, null, null, '15');
INSERT INTO `cms_category` VALUES ('604', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '0', 'hydt', '行业动态', null, null, null, null, null, null, null, ',', null, '2', 'news_list.html', 'news_detail.html', null, null, null, '15');
INSERT INTO `cms_category` VALUES ('605', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '0', 'guestbook', '在线留言', null, null, '', '', null, null, null, ',', null, '4', '', 'guestbook.html', null, null, null, '15');
INSERT INTO `cms_category` VALUES ('606', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '0', 'contact', '联系我们', null, null, '', '<p><strong style=\"margin: 0px; padding: 0px; transition: all 300ms ease; color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; white-space: normal;\"><span style=\"margin: 0px; padding: 0px; transition: all 300ms ease; color: rgb(0, 153, 0);\">长沙翱云网络科技有限公司</span></strong><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial;\">联系人:秦先生</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial;\">电话:13348712175</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial;\">邮箱:qinxiaoming@aliyun.com </span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial;\">地址:长沙市岳麓区杜鹃路奥克斯缤纷广场1楼<br/><br/></span></p><p><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial;\"><br/></span></p><p><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial;\"><iframe src=\"http://www.b.com/core/extend/ueditor/dialogs/map/show.html#center=112.824468,28.367403&zoom=13&width=530&height=340&markers=112.824468,28.367403&markerStyles=l,A\" width=\"534\" height=\"344\" frameborder=\"0\"></iframe></span></p>', null, null, null, ',', null, '4', '', 'about.html', null, null, null, '15');
INSERT INTO `cms_category` VALUES ('607', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '1', 'nyyhswjc', '农业有害生物检测', null, null, null, null, null, null, null, ',601,', '601', '1', 'product_list.html', 'product_detail.html', null, null, null, '15');
INSERT INTO `cms_category` VALUES ('608', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '1', 'smfzfw', '树木防治服务', null, null, null, null, null, null, null, ',601,', '601', '1', 'product_list.html', 'product_detail.html', null, null, null, '15');
INSERT INTO `cms_category` VALUES ('609', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '1', 'smxzfw', '树木修整服务', null, null, null, null, null, null, null, ',601,', '601', '1', 'product_list.html', 'product_detail.html', null, null, null, '15');
INSERT INTO `cms_category` VALUES ('610', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '1', 'tdzlyfk', '土地整理与复垦', null, null, null, null, null, null, null, ',601,', '601', '1', 'product_list.html', 'product_detail.html', null, null, null, '15');
INSERT INTO `cms_category` VALUES ('611', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '1', 'gcgc', '广场工程', null, null, null, null, null, null, null, ',602,', '602', '1', 'case_list.html', 'case_detail.html', null, null, null, '15');
INSERT INTO `cms_category` VALUES ('612', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '1', 'xqgc', '小区工程', null, null, null, null, null, null, null, ',602,', '602', '1', 'case_list.html', 'case_detail.html', null, null, null, '15');
INSERT INTO `cms_category` VALUES ('613', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '1', 'xxgc', '学校工程', null, null, null, null, null, null, null, ',602,', '602', '1', 'case_list.html', 'case_detail.html', null, null, null, '15');
INSERT INTO `cms_category` VALUES ('700', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '0', 'product', '产品展示', null, null, null, null, null, null, null, ',', null, '1', 'product_list.html', 'product_detail.html', null, null, null, '16');
INSERT INTO `cms_category` VALUES ('701', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '0', 'case', '成功案例', null, null, null, null, null, null, null, ',', null, '1', 'case_list.html', 'case_detail.html', null, null, null, '16');
INSERT INTO `cms_category` VALUES ('702', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '0', 'service', '服务中心', null, null, '', '<p style=\"margin-top: 0px; margin-bottom: 0px; padding: 10px; line-height: 26px; color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; white-space: normal; background-color: rgb(255, 255, 255);\">  <strong style=\"margin: 0px; padding: 0px;\"><span style=\"margin: 0px; padding: 0px; color: rgb(0, 51, 153);\">电话订购</span></strong><br/>  您可以通过拨打我们的订货热线:<br/>  全国服务电话:400-8551-688<br/>  我们的工作人员将为您提供热忱、周到的服务。<br/>  1、提供所需货物的名称及数量。<br/>  2、提供有效证件上的姓名、电话、手机、地址(为减少错误发生,如方便,请结束通话后发将以上信息通过短信方式发送至本公司)。<br/>  3、选择付款形式。<br/>  4、按形式支付相应货款。<br/>  5、公司确认款到后在12小时内将货物发送至您所提供的地址。<br/>  6、提货时,应出示有效证件。<br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 10px; line-height: 26px; color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; white-space: normal; background-color: rgb(255, 255, 255);\"><br/>  <strong style=\"margin: 0px; padding: 0px;\"><span style=\"margin: 0px; padding: 0px; color: rgb(0, 51, 153); font-size: 18px;\">产品保修</span></strong><br/>  自产品交货之日起壹年内,正常使用情况下,由于产品质量原因(非使用不当等人为原因)造成的设备故障,免费保修。</p><p><br/></p>', null, null, null, ',', null, '4', '', 'about.html', null, null, null, '16');
INSERT INTO `cms_category` VALUES ('703', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '0', 'jszs', '技术知识', null, null, null, null, null, null, null, ',', null, '2', 'news_list.html', 'news_detail.html', null, null, null, '16');
INSERT INTO `cms_category` VALUES ('704', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '0', 'news', '新闻动态', null, null, null, null, null, null, null, ',', null, '2', 'news_list.html', 'news_detail.html', null, null, null, '16');
INSERT INTO `cms_category` VALUES ('705', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '0', 'zxyg', '在线预购', null, null, '', '', null, null, null, ',', null, '4', '', 'guestbook.html', null, null, null, '16');
INSERT INTO `cms_category` VALUES ('706', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '0', 'about', '公司简介', null, null, '/static/upload/image/20180531/1527707684491754.jpg', '<p><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">  </span><strong style=\"margin: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"margin: 0px; padding: 0px; color: rgb(0, 51, 153);\"></span></strong></p><p>长沙翱云网络科技有限公司,是一家专业服务于企业信息化建设的提供商,是网络信息技术产业的高新科技企业。公司主要提供网站设计、网站建设、网站优化、程序开发、域名服务、智能DNS、云主机服务、数据库、企业邮箱、网站及服务器托管、网站及服务器安全、企业虚拟化建设、企业信息系统建设、企业IT技术支持与咨询、IT服务外包、系统集成等全方位企业信息化服务,为企业打造专业的网络形象,使企业可以在成本、效率、稳定、安全的前提下应用网络服务,展现自我风格和特色,创造更多的价值和效益!</p><p><br/></p><p>PbootCMS是翱云科技开发的全新内核的开源企业建站系统,系统以高效、简洁、强悍为开发目标,能够满足各类企业网站建设的需要;<br/><br/>系统采用高效、简洁的模板标签,只要懂HTML就可快速开发企业网站;<br/>&nbsp;&nbsp; &nbsp;<br/>系统采用PHP语言开发,使用自主研发的高速MVVM多层开发框架及多级缓存技术;<br/><br/>系统默认采用Sqlite轻型数据库,放入PHP空间即可直接使用,可选Mysql、Pgsql等数据库,满足各类存储需求;<br/><br/>系统采用响应式管理后台,满足各类设备随时管理的需要。</p><p><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\"></span><br/></p>', null, null, null, ',', null, '4', '', 'about.html', null, null, null, '16');
INSERT INTO `cms_category` VALUES ('707', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '1', 'cfzs', '厂房展示', null, null, null, null, null, null, null, ',706,', '706', '1', 'job_list.html', 'job_detail.html', null, null, null, '16');
INSERT INTO `cms_category` VALUES ('708', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '0', 'contact', '联系我们', null, null, '', '<p style=\"margin-top: 0px; margin-bottom: 0px; padding: 10px; line-height: 26px; color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; white-space: normal; background-color: rgb(255, 255, 255);\"><strong style=\"margin: 0px; padding: 0px;\"><span style=\"margin: 0px; padding: 0px; color: rgb(0, 51, 153); font-size: 18px;\">长沙翱云网络科技有限公司</span></strong><br/>咨询热线:400-855-1688<br/>联系人:秦小明<br/>电话:13348712175</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 10px; line-height: 26px; color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; white-space: normal; background-color: rgb(255, 255, 255);\">座机/传真:0731-85838839<br/>网址:http://www.hnaoyun.com<br/>地址:长沙市岳麓区杜鹃路奥克斯缤纷广场1楼</p><p><br/></p>', null, null, null, ',', null, '4', '', 'about.html', null, null, null, '16');
INSERT INTO `cms_category` VALUES ('709', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '1', 'zwsb', '制丸设备', null, null, null, null, null, null, null, ',700,', '700', '1', 'product_list.html', 'product_detail.html', null, null, null, '16');
INSERT INTO `cms_category` VALUES ('710', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '1', 'ypsb', '压片设备', null, null, null, null, null, null, null, ',700,', '700', '1', 'product_list.html', 'product_detail.html', null, null, null, '16');
INSERT INTO `cms_category` VALUES ('711', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '1', 'fssb', '粉碎设备', null, null, null, null, null, null, null, ',700,', '700', '1', 'product_list.html', 'product_detail.html', null, null, null, '16');
INSERT INTO `cms_category` VALUES ('712', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '1', 'klsb', '颗粒设备', null, null, null, null, null, null, null, ',700,', '700', '1', 'product_list.html', 'product_detail.html', null, null, null, '16');
INSERT INTO `cms_category` VALUES ('713', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '1', 'jysb', '煎药设备', null, null, null, null, null, null, null, ',700,', '700', '1', 'product_list.html', 'product_detail.html', null, null, null, '16');
INSERT INTO `cms_category` VALUES ('714', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '1', 'hhsb', '混合设备', null, null, null, null, null, null, null, ',700,', '700', '1', 'product_list.html', 'product_detail.html', null, null, null, '16');
INSERT INTO `cms_category` VALUES ('715', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, '1', 'sjm', '栓剂模', null, null, null, null, null, null, null, ',700,', '700', '1', 'product_list.html', 'product_detail.html', null, null, null, '16');
INSERT INTO `cms_category` VALUES ('800', '2020-09-25 11:49:23', '2020-09-25 11:49:26', '1', null, '0', 'xxgk', '学校概况', null, null, null, null, null, null, null, ',', null, '4', null, 'xxgk.html', null, null, null, '17');
INSERT INTO `cms_category` VALUES ('801', '2020-09-25 13:40:42', '2020-09-25 13:40:45', '1', null, '1', 'xxjj', '学校简介', null, null, null, null, null, null, null, ',800,', '800', '4', null, 'xxgk.html', null, null, null, '17');
INSERT INTO `cms_category` VALUES ('802', '2020-09-25 13:44:10', '2020-09-25 13:44:12', '1', null, '1', 'bxln', '办学理念', null, null, null, null, null, null, null, ',800,', '800', '4', null, 'xxgk.html', null, null, null, '17');
INSERT INTO `cms_category` VALUES ('803', '2020-09-25 13:45:02', '2020-09-25 13:45:00', '1', null, '1', 'zzjg', '组织机构', null, null, null, null, null, null, null, ',800,', '800', '4', null, 'xxgk.html', null, null, null, '17');
INSERT INTO `cms_category` VALUES ('804', '2020-09-25 13:46:02', '2020-09-25 13:45:58', '1', null, '1', 'xzjy', '校长寄语', null, null, null, null, null, null, null, ',800,', '800', '4', null, 'xxgk.html', null, null, null, '17');
INSERT INTO `cms_category` VALUES ('805', '2020-09-25 13:47:03', '2020-09-25 13:47:00', '1', null, '0', 'dysc', '德育视窗', null, null, null, null, null, null, null, ',', null, '2', 'dysc_list.html', 'dysc_detail.html', null, null, null, '17');
INSERT INTO `cms_category` VALUES ('806', '2020-09-25 13:48:18', '2020-09-25 13:48:14', '1', null, '1', 'dyhd', '德育活动', null, null, null, null, null, null, null, ',805,', '805', '2', 'dysc_list.html', 'dysc_detail.html', null, null, null, '17');
INSERT INTO `cms_category` VALUES ('807', '2020-09-25 13:49:11', '2020-09-25 13:49:08', '1', null, '1', 'xljk', '心理健康', null, null, null, null, null, null, null, ',805,', '805', '2', 'dysc_list.html', 'dysc_detail.html', null, null, null, '17');
INSERT INTO `cms_category` VALUES ('808', '2020-09-25 13:50:02', '2020-09-25 13:49:58', '1', null, '1', 'ystd', '艺术天地', null, null, null, null, null, null, null, ',805,', '805', '2', 'dysc_list.html', 'dysc_detail.html', null, null, null, '17');
INSERT INTO `cms_category` VALUES ('809', '2020-09-25 13:51:10', '2020-09-25 13:51:07', '1', null, '0', 'jyjx', '教研教学', null, null, null, null, null, null, null, ',', null, '2', 'jyjx_list.html', 'jyjx_detail.html', null, null, null, '17');
INSERT INTO `cms_category` VALUES ('810', '2020-09-25 13:51:55', '2020-09-25 13:51:52', '1', null, '1', 'jydt', '教研动态', null, null, null, null, null, null, null, ',809,', '809', '2', 'jyjx_list.html', 'jyjx_detail.html', null, null, null, '17');
INSERT INTO `cms_category` VALUES ('811', '2020-09-25 13:52:48', '2020-09-25 13:52:46', '1', null, '1', 'yxcg', '教学成果', null, null, null, null, null, null, null, ',809,', '809', '2', 'jyjx_list.html', 'jyjx_detail.html', null, null, null, '17');
INSERT INTO `cms_category` VALUES ('812', '2020-09-25 13:53:34', '2020-09-25 13:53:30', '1', null, '0', 'wyts', '外语特色', null, null, null, null, null, null, null, ',', null, '2', 'wyts_list.html', 'wyts_detail.html', null, null, null, '17');
INSERT INTO `cms_category` VALUES ('813', '2020-09-25 13:54:27', '2020-09-25 13:54:24', '1', null, '1', 'wyjy', '外语教研', null, null, null, null, null, null, null, ',812,', '812', '2', 'wyts_list.html', 'wyts_detail.html', null, null, null, '17');
INSERT INTO `cms_category` VALUES ('814', '2020-09-25 13:55:14', '2020-09-25 13:55:11', '1', null, '1', 'wyhd', '外语活动', null, null, null, null, null, null, null, ',812,', '812', '2', 'wyts_list.html', 'wyts_detail.html', null, null, null, '17');
INSERT INTO `cms_category` VALUES ('815', '2020-09-25 13:55:53', '2020-09-25 13:55:50', '1', null, '1', 'ywjz', '英文佳作', null, null, null, null, null, null, null, ',812,', '812', '2', 'wyts_list.html', 'wyts_detail.html', null, null, null, '17');
INSERT INTO `cms_category` VALUES ('816', '2020-09-25 14:41:20', '2020-09-25 14:41:18', '1', null, '0', 'gjjl', '国际交流', null, null, null, null, null, null, null, ',', null, '2', 'gjjl_list.html', 'gjjl_detail.html', null, null, null, '17');
INSERT INTO `cms_category` VALUES ('817', '2020-09-25 14:42:17', '2020-09-25 14:42:14', '1', null, '1', 'yhxx', '友好学校', null, null, null, null, null, null, null, ',816,', '816', '2', 'gjjl_list.html', 'gjjl_detail.html', null, null, null, '17');
INSERT INTO `cms_category` VALUES ('818', '2020-09-25 14:43:43', '2020-09-25 14:43:40', '1', null, '1', 'lfwf', '来访外访', null, null, null, null, null, null, null, ',816,', '816', '2', 'gjjl_list.html', 'gjjl_detail.html', null, null, null, '17');
INSERT INTO `cms_category` VALUES ('819', '2020-09-25 14:44:56', '2020-09-25 14:44:53', '1', null, '0', 'xzfc', '学子风采', null, null, null, null, null, null, null, ',', null, '2', 'xzfc_list.html', 'xzfc_detail.html', null, null, null, '17');
INSERT INTO `cms_category` VALUES ('820', '2020-09-25 14:46:17', '2020-09-25 14:46:14', '1', null, '1', 'zyjb', '状元金榜', null, null, null, null, null, null, null, ',819,', '819', '2', 'xzfc_list.html', 'xzfc_detail.html', null, null, null, '17');
INSERT INTO `cms_category` VALUES ('821', '2020-09-25 14:47:20', '2020-09-25 14:47:17', '1', null, '1', 'xyzx', '校园之星', null, null, null, null, null, null, null, ',819,', '819', '2', 'xzfc_list.html', 'xzfc_detail.html', null, null, null, '17');
INSERT INTO `cms_category` VALUES ('822', '2020-09-25 14:48:20', '2020-09-25 14:48:18', '1', null, '1', 'jcxy', '杰出校友', null, null, null, null, null, null, null, ',819,', '819', '2', 'xzfc_list.html', 'xzfc_detail.html', null, null, null, '17');
INSERT INTO `cms_category` VALUES ('823', '2020-09-25 14:49:05', '2020-09-25 14:49:03', '1', null, '0', 'xxzx', '学校资讯', null, null, null, null, null, null, null, ',', null, '2', 'xxzx_list.html', 'xxzx_detail.html', null, null, null, '17');
INSERT INTO `cms_category` VALUES ('824', '2020-09-25 14:49:48', '2020-09-25 14:49:46', '1', null, '1', 'xxgg', '学校公告', null, null, null, null, null, null, null, ',823,', '823', '2', 'xxzx_list.html', 'xxzx_detail.html', null, null, null, '17');
INSERT INTO `cms_category` VALUES ('825', '2020-09-25 14:52:53', '2020-09-25 14:52:51', '1', null, '1', 'xwdt', '新闻动态', null, null, null, null, null, null, null, ',823,', '823', '2', 'xxzx_list.html', 'xxzx_detail.html', null, null, null, '17');
INSERT INTO `cms_category` VALUES ('826', '2020-09-25 14:54:27', '2020-09-25 14:54:25', '1', null, '0', 'zszp', '招生招聘', null, null, null, null, null, null, null, ',', null, '2', 'zszp_list.html', 'zszp_detail.html', null, null, null, '17');
INSERT INTO `cms_category` VALUES ('827', '2020-09-25 14:55:31', '2020-09-25 14:55:26', '1', null, '1', 'cpyc', '诚聘英才', null, null, null, null, null, null, null, ',826,', '826', '2', 'zszp_list.html', 'zszp_detail.html', null, null, null, '17');
INSERT INTO `cms_category` VALUES ('828', '2020-09-25 14:56:41', '2020-09-25 14:56:38', '1', null, '1', 'czzs', '初中招生', null, null, null, null, null, null, null, ',826,', '826', '2', 'zszp_list.html', 'zszp_detail.html', null, null, null, '17');
INSERT INTO `cms_category` VALUES ('900', '2020-10-15 14:58:00', '2020-10-15 14:58:02', '1', null, '0', 'kc', '课程', null, null, null, null, null, null, null, ',', null, '4', null, 'kc.html', null, null, null, '18');
INSERT INTO `cms_category` VALUES ('901', '2020-10-15 14:58:00', '2020-10-15 14:58:00', '1', null, '0', 'ys', '优势', null, null, null, null, null, null, null, ',', null, '4', null, 'gsjj.html', null, null, null, '18');
INSERT INTO `cms_category` VALUES ('902', '2020-10-15 14:58:00', '2020-10-15 14:58:00', '1', null, '0', 'yy', '音乐', null, null, null, null, null, null, null, ',', null, '2', 'yy_list.html', 'yy_detail.html', null, null, null, '18');
INSERT INTO `cms_category` VALUES ('903', '2020-10-15 14:58:00', '2020-10-15 14:58:00', '1', null, '0', 'zp', '照片', null, null, null, null, null, null, null, ',', null, '2', 'zp_list.html', 'zp_detail.html', null, null, null, '18');
INSERT INTO `cms_category` VALUES ('904', '2020-10-15 14:58:00', '2020-10-15 14:58:00', '1', null, '0', 'video', '视频', null, null, null, null, null, null, null, ',', null, '2', 'video_list.html', 'video_detail.html', null, null, null, '18');
INSERT INTO `cms_category` VALUES ('905', '2020-10-15 14:58:00', '2020-10-15 14:58:00', '1', null, '0', 'zxbm', '在线报名', null, null, null, null, null, null, null, ',', null, '4', null, 'zxbm.html', null, null, null, '18');
INSERT INTO `cms_category` VALUES ('906', '2020-10-15 14:58:00', '2020-10-15 14:58:00', '1', null, '0', 'news', '新闻资讯', null, null, null, null, null, null, null, ',', null, '2', 'news_list.html', 'news_detail.html', null, null, null, '18');
INSERT INTO `cms_category` VALUES ('907', '2020-10-15 14:58:00', '2020-10-15 14:58:00', '1', null, '1', 'gsjj', '公司简介', null, null, null, null, null, null, null, ',901,', '901', '4', null, 'gsjj.html', null, null, null, '18');
INSERT INTO `cms_category` VALUES ('908', '2020-10-15 14:58:00', '2020-10-15 14:58:00', '1', null, '1', 'szll', '师资力量', null, null, null, null, null, null, null, ',901,', '901', '4', null, 'szll.html', null, null, null, '18');
INSERT INTO `cms_category` VALUES ('909', '2020-10-15 14:58:00', '2020-10-15 14:58:00', '1', null, '1', 'jxts', '教学特色', null, null, null, null, null, null, null, ',901,', '901', '4', null, 'jxts.html', null, null, null, '18');
INSERT INTO `cms_category` VALUES ('910', '2020-10-15 14:58:00', '2020-10-15 14:58:00', '1', null, '1', 'jxhj', '教学环境', null, null, null, null, null, null, null, ',901,', '901', '4', null, 'jxhj.html', null, null, null, '18');
INSERT INTO `cms_category` VALUES ('911', '2020-10-15 14:58:00', '2020-10-15 14:58:00', '1', null, '1', 'fzlc', '发展历程', null, null, null, null, null, null, null, ',901,', '901', '4', null, 'fzlc.html', null, null, null, '18');
INSERT INTO `cms_category` VALUES ('1000', '2020-10-17 16:33:14', '2020-10-17 16:33:17', '1', null, '0', 'about', '关于我们', null, null, null, null, null, null, null, ',', null, '4', null, 'about.html', null, null, null, '19');
INSERT INTO `cms_category` VALUES ('1001', '2020-10-17 16:33:46', '2020-10-17 16:33:51', '1', null, '0', 'news', '新闻中心', null, null, null, null, null, null, null, ',', null, '2', 'news_list.html', 'news_detail.html', null, null, null, '19');
INSERT INTO `cms_category` VALUES ('1002', '2020-10-17 16:35:32', '2020-10-17 16:35:26', '1', null, '0', 'product', '产品展示', null, null, null, null, null, null, null, ',', null, '1', 'product_list.html', 'product_detail.html', null, null, null, '19');
INSERT INTO `cms_category` VALUES ('1003', '2020-10-17 16:37:52', '2020-10-17 16:37:50', '1', null, '0', 'case', '顾客案例', null, null, null, null, null, null, null, ',', null, '1', 'case_list.html', 'case_detail.html', null, null, null, '19');
INSERT INTO `cms_category` VALUES ('1004', '2020-10-17 16:39:25', '2020-10-17 16:39:21', '1', null, '0', 'contact', '联系我们', null, null, null, null, null, null, null, ',', null, '4', null, 'contact.html', null, null, null, '19');
INSERT INTO `cms_category` VALUES ('1005', '2020-10-17 16:40:31', '2020-10-17 16:40:27', '1', null, '1', 'gsgk', '公司概况', null, null, null, null, null, null, null, ',1000,', '1000', '4', null, 'about.html', null, null, null, '19');
INSERT INTO `cms_category` VALUES ('1006', '2020-10-17 16:41:33', '2020-10-17 16:41:28', '1', null, '1', 'qywh', '企业文化', null, null, null, null, null, null, null, ',1000,', '1000', '4', null, 'about.html', null, null, null, '19');
INSERT INTO `cms_category` VALUES ('1007', '2020-10-17 16:42:16', '2020-10-17 16:42:11', '1', null, '1', 'zxfk', '在线反馈', null, null, null, null, null, null, null, ',1000,', '1000', '4', null, 'about.html', null, null, null, '19');
-- ----------------------------
-- Table structure for `cms_company`
-- ----------------------------
DROP TABLE IF EXISTS `cms_company`;
CREATE TABLE `cms_company` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
`name` varchar(255) DEFAULT NULL COMMENT '公司名称',
`address` varchar(255) DEFAULT NULL COMMENT '公司地址',
`postcode` varchar(255) DEFAULT NULL COMMENT '邮政编码',
`contact` varchar(255) DEFAULT NULL COMMENT '联系人',
`mobile` varchar(255) DEFAULT NULL COMMENT '手机号码',
`phone` varchar(255) DEFAULT NULL COMMENT '电话号码',
`fax` varchar(255) DEFAULT NULL COMMENT '传真号码',
`email` varchar(255) DEFAULT NULL COMMENT '电子邮箱',
`qq` varchar(255) DEFAULT NULL COMMENT 'QQ号码',
`weixin` varchar(255) DEFAULT NULL COMMENT '微信图标',
`h5` varchar(255) DEFAULT NULL COMMENT 'H5图标',
`app` varchar(255) DEFAULT NULL COMMENT 'APP图标',
`blicense` varchar(255) DEFAULT NULL COMMENT '营业执照代码',
`other` varchar(255) DEFAULT NULL COMMENT '其它信息',
`siteId` int(11) DEFAULT NULL COMMENT '站点ID',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of cms_company
-- ----------------------------
INSERT INTO `cms_company` VALUES ('1', '江苏省交通节能减排中心', '长沙市XXX区XXX号', '410000', 'XXX', '11111111111', '11111111111', null, '644080923@qq.com', '644080923', '/static/upload/image/20180531/1527705737340857.png', null, null, null, null, '1');
INSERT INTO `cms_company` VALUES ('2', '长沙XXX网络科技有限公司', '长沙市XXX区XXX号', '410000', 'XXX', '11111111111', '11111111111', null, '644080923@qq.com', '644080923', '/static/upload/image/20180531/1527705737340857.png', null, null, null, null, '2');
INSERT INTO `cms_company` VALUES ('10', '长沙XXX网络科技有限公司', '长沙市XXX区XXX号', '410000', 'XXX', '11111111111', '11111111111', null, '644080923@qq.com', '644080923', '/static/upload/image/20180531/1527705737340857.png', null, null, null, null, '10');
INSERT INTO `cms_company` VALUES ('11', '长沙XXX网络科技有限公司', '长沙市XXX区XXX号', '410000', 'XXX', '11111111111', '11111111111', null, '644080923@qq.com', '644080923', '/static/upload/image/20180531/1527705737340857.png', null, null, null, null, '11');
INSERT INTO `cms_company` VALUES ('12', '长沙XXX网络科技有限公司', '长沙市XXX区XXX号', '410000', 'XXX', '11111111111', '11111111111', null, '644080923@qq.com', '644080923', '/static/upload/image/20180531/1527705737340857.png', null, null, null, null, '12');
INSERT INTO `cms_company` VALUES ('13', '长沙XXX网络科技有限公司', '长沙市XXX区XXX号', '410000', 'XXX', '11111111111', '11111111111', null, '644080923@qq.com', '644080923', '/static/upload/image/20180531/1527705737340857.png', null, null, null, null, '13');
INSERT INTO `cms_company` VALUES ('14', '长沙XXX网络科技有限公司', '长沙市XXX区XXX号', '410000', 'XXX', '11111111111', '11111111111', null, '644080923@qq.com', '644080923', '/static/upload/image/20180531/1527705737340857.png', null, null, null, null, '14');
INSERT INTO `cms_company` VALUES ('15', '长沙XXX网络科技有限公司', '长沙市XXX区XXX号', '410000', 'XXX', '11111111111', '11111111111', null, '644080923@qq.com', '644080923', '/static/upload/image/20180531/1527705737340857.png', null, null, null, null, '15');
INSERT INTO `cms_company` VALUES ('16', '长沙XXX网络科技有限公司', '长沙市XXX区XXX号', '410000', 'XXX', '11111111111', '11111111111', null, '644080923@qq.com', '644080923', '/static/upload/image/20180531/1527705737340857.png', null, null, null, null, '16');
INSERT INTO `cms_company` VALUES ('17', '长沙XXX网络科技有限公司', '长沙市XXX区XXX号', '410000', 'XXX', '11111111111', '11111111111', null, '644080923@qq.com', '644080923', '/static/upload/image/20180531/1527705737340857.png', null, null, null, null, '17');
INSERT INTO `cms_company` VALUES ('18', '长沙XXX网络科技有限公司', '长沙市XXX区XXX号', '410000', 'XXX', '11111111111', '11111111111', null, '644080923@qq.com', '644080923', '/static/upload/image/20180531/1527705737340857.png', null, null, null, null, '18');
-- ----------------------------
-- Table structure for `cms_content`
-- ----------------------------
DROP TABLE IF EXISTS `cms_content`;
CREATE TABLE `cms_content` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
`createDate` datetime NOT NULL COMMENT '创建日期',
`updateDate` datetime NOT NULL COMMENT '修改日期',
`publishDate` datetime DEFAULT NULL COMMENT '发布日期',
`status` int(11) DEFAULT NULL COMMENT '状态',
`author` varchar(255) DEFAULT NULL COMMENT '作者',
`source` varchar(255) DEFAULT NULL COMMENT '来源',
`outlink` varchar(255) DEFAULT NULL COMMENT '外链地址',
`ico` varchar(255) DEFAULT NULL COMMENT '缩略图',
`image` varchar(255) DEFAULT NULL COMMENT '大图',
`pics` text COMMENT '多图片',
`tagIdValue` varchar(255) DEFAULT NULL COMMENT 'tag关键字',
`attach` varchar(255) DEFAULT NULL COMMENT '附件',
`isTop` bit(1) DEFAULT NULL COMMENT '是否置顶',
`isRecommend` bit(1) DEFAULT NULL COMMENT '是否推荐',
`isHeadline` bit(1) DEFAULT NULL COMMENT '是否头条',
`visits` int(11) DEFAULT NULL COMMENT '访问数',
`likes` int(11) DEFAULT NULL COMMENT '点赞数',
`oppose` int(11) DEFAULT NULL COMMENT '反对数',
`sort` int(11) DEFAULT NULL COMMENT '排序',
`description` varchar(255) DEFAULT NULL COMMENT '描述',
`keywords` varchar(255) DEFAULT NULL COMMENT '关键词',
`title` varchar(255) DEFAULT NULL COMMENT '标题',
`subtitle` varchar(255) DEFAULT NULL COMMENT '副标题',
`titlecolor` varchar(255) DEFAULT NULL COMMENT '标题颜色',
`introduction` longtext COMMENT '内容',
`categoryId` int(11) DEFAULT NULL COMMENT '内容栏目ID',
`chunkValue` longtext COMMENT '数据块值',
`modelFieldValue` longtext COMMENT '内容字段值',
`remark` varchar(255) DEFAULT NULL COMMENT '备注',
`siteId` int(11) DEFAULT NULL COMMENT '站点ID',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=801 DEFAULT CHARSET=utf8 COMMENT='内容表';
-- ----------------------------
-- Records of cms_content
-- ----------------------------
INSERT INTO `cms_content` VALUES ('14', '2018-12-18 14:40:24', '2018-12-18 14:40:43', '2018-12-18 14:39:57', '1', null, null, null, '/static/upload/product.jpg', null, null, null, null, null, null, null, '681', null, null, null, null, null, '产品1', null, null, '<p>产品1</p>', '1', null, '{}', null, '1');
INSERT INTO `cms_content` VALUES ('15', '2018-12-18 14:42:01', '2020-06-17 11:35:19', '2018-12-18 14:41:50', '1', null, null, null, '/static/upload/news.jpg', null, null, null, null, null, null, null, '504', null, null, null, null, null, '新闻1新闻1新闻1新闻1新闻1新闻1', null, null, '<p>新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1</p>', '2', null, '{}', null, '1');
INSERT INTO `cms_content` VALUES ('16', '2018-12-18 14:40:24', '2018-12-18 14:40:43', '2018-12-18 14:39:57', '1', null, null, null, '/static/upload/product.jpg', null, null, null, null, null, null, null, '201', null, null, null, null, null, '产品2', null, null, '<p>产品1</p>', '1', null, '{}', null, '1');
INSERT INTO `cms_content` VALUES ('17', '2018-12-18 14:42:01', '2020-06-17 11:38:10', '2018-12-18 14:41:50', '1', null, null, null, '/static/upload/news.jpg', null, null, null, null, null, null, null, '264', null, null, null, null, null, '新闻2', null, null, '<p>新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1新闻1</p>', '2', null, '{}', null, '1');
INSERT INTO `cms_content` VALUES ('18', '2018-12-18 14:40:24', '2018-12-18 14:40:43', '2018-12-18 14:39:57', '1', null, null, null, '/static/upload/product.jpg', null, null, null, null, null, null, null, '156', null, null, null, null, null, '产品3', null, null, '<p>产品1</p>', '1', null, '{}', null, '1');
INSERT INTO `cms_content` VALUES ('19', '2018-12-18 14:42:01', '2018-12-18 14:42:01', '2018-12-18 14:41:50', '1', null, null, null, '/static/upload/news.jpg', null, null, null, null, null, null, null, '133', null, null, null, null, null, '新闻3', null, null, '<p>新闻1</p>', '2', null, '{}', null, '1');
INSERT INTO `cms_content` VALUES ('20', '2018-12-18 14:40:24', '2018-12-18 14:40:43', '2018-12-18 14:39:57', '1', null, null, null, '/static/upload/product.jpg', null, null, null, null, null, null, null, '185', null, null, null, null, null, '产品4', null, null, '<p>产品1</p>', '1', null, '{}', null, '1');
INSERT INTO `cms_content` VALUES ('21', '2018-12-18 14:42:01', '2018-12-18 14:42:01', '2018-12-18 14:41:50', '1', null, null, null, '/static/upload/news.jpg', null, null, null, null, null, null, null, '126', null, null, null, null, null, '新闻4', null, null, '<p>新闻1</p>', '2', null, '{}', null, '1');
INSERT INTO `cms_content` VALUES ('22', '2018-12-18 14:40:24', '2018-12-18 14:40:43', '2018-12-18 14:39:57', '1', null, null, null, '/static/upload/product.jpg', null, null, null, null, null, null, null, '86', null, null, null, null, null, '产品5', null, null, '<p>产品1</p>', '1', null, '{}', null, '1');
INSERT INTO `cms_content` VALUES ('23', '2018-12-18 14:42:01', '2018-12-18 14:42:01', '2018-12-18 14:41:50', '1', null, null, null, '/static/upload/news.jpg', null, null, null, null, null, null, null, '52', null, null, null, null, null, '新闻5', null, null, '<p>新闻1</p>', '2', null, '{}', null, '1');
INSERT INTO `cms_content` VALUES ('24', '2018-12-18 14:40:24', '2018-12-18 14:40:43', '2018-12-18 14:39:57', '1', null, null, null, '/static/upload/product.jpg', null, null, null, null, null, null, null, '63', null, null, null, null, null, '产品6', null, null, '<p>产品1</p>', '1', null, '{}', null, '1');
INSERT INTO `cms_content` VALUES ('25', '2018-12-18 14:42:01', '2018-12-18 14:42:01', '2018-12-18 14:41:50', '1', null, null, null, '/static/upload/news.jpg', null, null, null, null, null, null, null, '56', null, null, null, null, null, '新闻6', null, null, '<p>新闻1</p>', '2', null, '{}', null, '1');
INSERT INTO `cms_content` VALUES ('26', '2018-12-18 14:40:24', '2018-12-18 14:40:43', '2018-12-18 14:39:57', '1', null, null, null, '/static/upload/product.jpg', null, null, null, null, null, null, null, '69', null, null, null, null, null, '产品7', null, null, '<p>产品1</p>', '1', null, '{}', null, '1');
INSERT INTO `cms_content` VALUES ('27', '2018-12-18 14:42:01', '2018-12-18 14:42:01', '2018-12-18 14:41:50', '1', null, null, null, '/static/upload/news.jpg', null, null, null, null, null, null, null, '46', null, null, null, null, null, '新闻7', null, null, '<p>新闻1</p>', '2', null, '{}', null, '1');
INSERT INTO `cms_content` VALUES ('28', '2018-12-18 14:40:24', '2018-12-18 14:40:43', '2018-12-18 14:39:57', '1', null, null, null, '/static/upload/product.jpg', null, null, null, null, null, null, null, '69', null, null, null, null, null, '产品8', null, null, '<p>产品1</p>', '1', null, '{}', null, '1');
INSERT INTO `cms_content` VALUES ('29', '2018-12-18 14:42:01', '2018-12-18 14:42:01', '2018-12-18 14:41:50', '1', null, null, null, '/static/upload/news.jpg', null, null, null, null, null, null, null, '45', null, null, null, null, null, '新闻8', null, null, '<p>新闻1</p>', '2', null, '{}', null, '1');
INSERT INTO `cms_content` VALUES ('30', '2018-12-18 14:40:24', '2018-12-18 14:40:43', '2018-12-18 14:39:57', '1', null, null, null, '/static/upload/product.jpg', null, null, null, null, null, null, null, '62', null, null, null, null, null, '产品9', null, null, '<p>产品1</p>', '1', null, '{}', null, '1');
INSERT INTO `cms_content` VALUES ('31', '2018-12-18 14:42:01', '2018-12-18 14:42:01', '2018-12-18 14:41:50', '1', null, null, null, '/static/upload/news.jpg', null, null, null, null, null, null, null, '43', null, null, null, null, null, '新闻9', null, null, '<p>新闻1</p>', '2', null, '{}', null, '1');
INSERT INTO `cms_content` VALUES ('32', '2018-12-18 14:40:24', '2018-12-18 14:40:43', '2018-12-18 14:39:57', '1', null, null, null, '/static/upload/product.jpg', null, null, null, null, null, null, null, '54', null, null, null, null, null, '产品10', null, null, '<p>产品1</p>', '1', null, '{}', null, '1');
INSERT INTO `cms_content` VALUES ('33', '2018-12-18 14:42:01', '2018-12-18 14:42:01', '2018-12-18 14:41:50', '1', null, null, null, '/static/upload/news.jpg', null, null, null, null, null, null, null, '30', null, null, null, null, null, '新闻10', null, null, '<p>新闻1</p>', '2', null, '{}', null, '1');
INSERT INTO `cms_content` VALUES ('34', '2018-12-18 14:40:24', '2018-12-18 14:40:43', '2018-12-18 14:39:57', '1', null, null, null, '/static/upload/product.jpg', null, null, null, null, null, null, null, '36', null, null, null, null, null, '产品11', null, null, '<p>产品1</p>', '1', null, '{}', null, '1');
INSERT INTO `cms_content` VALUES ('35', '2018-12-18 14:42:01', '2018-12-18 14:42:01', '2018-12-18 14:41:50', '1', null, null, null, '/static/upload/news.jpg', null, null, null, null, null, null, null, '29', null, null, null, null, null, '新闻11', null, null, '<p>新闻1</p>', '2', null, '{}', null, '1');
INSERT INTO `cms_content` VALUES ('36', '2018-12-18 14:40:24', '2018-12-18 14:40:43', '2018-12-18 14:39:57', '1', null, null, null, '/static/upload/product.jpg', null, null, null, null, null, null, null, '36', null, null, null, null, null, '产品12', null, null, '<p>产品1</p>', '1', null, '{}', null, '1');
INSERT INTO `cms_content` VALUES ('37', '2018-12-18 14:42:01', '2018-12-18 14:42:01', '2018-12-18 14:41:50', '1', null, null, null, '/static/upload/news.jpg', null, null, null, null, null, null, null, '27', null, null, null, null, null, '新闻12', null, null, '<p>新闻1</p>', '2', null, '{}', null, '1');
INSERT INTO `cms_content` VALUES ('38', '2018-12-18 14:40:24', '2018-12-18 14:40:43', '2018-12-18 14:39:57', '1', null, null, null, '/static/upload/product.jpg', null, null, null, null, null, null, null, '33', null, null, null, null, null, '产品13', null, null, '<p>产品1</p>', '1', null, '{}', null, '1');
INSERT INTO `cms_content` VALUES ('39', '2018-12-18 14:42:01', '2018-12-18 14:42:01', '2018-12-18 14:41:50', '1', null, null, null, '/static/upload/news.jpg', null, null, null, null, null, null, null, '33', null, null, null, null, null, '新闻13', null, null, '<p>新闻1</p>', '2', null, '{}', null, '1');
INSERT INTO `cms_content` VALUES ('40', '2018-12-18 14:40:24', '2018-12-18 14:40:43', '2018-12-18 14:39:57', '1', null, null, null, '/static/upload/product.jpg', null, null, null, null, null, null, null, '39', null, null, null, null, null, '产品14', null, null, '<p>产品1</p>', '1', null, '{}', null, '1');
INSERT INTO `cms_content` VALUES ('41', '2018-12-18 14:42:01', '2018-12-18 14:42:01', '2018-12-18 14:41:50', '1', null, null, null, '/static/upload/news.jpg', null, null, null, null, null, null, null, '35', null, null, null, null, null, '新闻14', null, null, '<p>新闻1</p>', '2', null, '{}', null, '1');
INSERT INTO `cms_content` VALUES ('42', '2018-12-18 14:40:24', '2018-12-18 14:40:43', '2018-12-18 14:39:57', '1', null, null, null, '/static/upload/product.jpg', null, null, null, null, null, null, null, '33', null, null, null, null, null, '产品15', null, null, '<p>产品1</p>', '1', null, '{}', null, '1');
INSERT INTO `cms_content` VALUES ('43', '2018-12-18 14:42:01', '2018-12-18 14:42:01', '2018-12-18 14:41:50', '1', null, null, null, '/static/upload/news.jpg', null, null, null, null, null, null, null, '28', null, null, null, null, null, '新闻15', null, null, '<p>新闻1</p>', '2', null, '{}', null, '1');
INSERT INTO `cms_content` VALUES ('44', '2019-02-23 11:56:18', '2020-05-23 22:10:30', '2019-02-23 11:55:37', '1', null, null, null, '/static/upload/video.png', null, null, null, null, '', '', '', '670', null, null, null, null, null, '视频1', null, null, '<p>夜空中最亮的星</p>', '3', null, '{\"videoFile\":\"/static/upload/video.mp4\",\"videoPic\":\"/static/upload/video.png\"}', null, '1');
INSERT INTO `cms_content` VALUES ('45', '2018-12-18 14:40:24', '2018-12-18 14:40:43', '2018-12-18 14:39:57', '1', null, null, null, '/static/upload/product.jpg', null, null, null, null, null, null, null, '28', null, null, null, null, null, 'Product1', null, null, '<p>Product1</p>', '11', null, '{}', null, '2');
INSERT INTO `cms_content` VALUES ('46', '2018-12-18 14:40:24', '2018-12-18 14:40:43', '2018-12-18 14:39:57', '1', null, null, null, '/static/upload/product.jpg', null, null, null, null, null, null, null, '31', null, null, null, null, null, 'Product2', null, null, '<p>Product2</p>', '11', null, '{}', null, '2');
INSERT INTO `cms_content` VALUES ('47', '2018-12-18 14:40:24', '2018-12-18 14:40:43', '2018-12-18 14:39:57', '1', null, null, null, '/static/upload/product.jpg', null, null, null, null, null, null, null, '26', null, null, null, null, null, 'Product3', null, null, '<p>Product3</p>', '11', null, '{}', null, '2');
INSERT INTO `cms_content` VALUES ('48', '2018-12-18 14:40:24', '2018-12-18 14:40:43', '2018-12-18 14:39:57', '1', null, null, null, '/static/upload/product.jpg', null, null, null, null, null, null, null, '35', null, null, null, null, null, 'Product4', null, null, '<p>Product4</p>', '11', null, '{}', null, '2');
INSERT INTO `cms_content` VALUES ('49', '2018-12-18 14:40:24', '2018-12-18 14:40:43', '2018-12-18 14:39:57', '1', null, null, null, '/static/upload/product.jpg', null, null, null, null, null, null, null, '23', null, null, null, null, null, 'Product5', null, null, '<p>Product5</p>', '11', null, '{}', null, '2');
INSERT INTO `cms_content` VALUES ('50', '2018-12-18 14:40:24', '2018-12-18 14:40:43', '2018-12-18 14:39:57', '1', null, null, null, '/static/upload/product.jpg', null, null, null, null, null, null, null, '19', null, null, null, null, null, 'Product6', null, null, '<p>Product6</p>', '11', null, '{}', null, '2');
INSERT INTO `cms_content` VALUES ('51', '2018-12-18 14:40:24', '2018-12-18 14:40:43', '2018-12-18 14:39:57', '1', null, null, null, '/static/upload/product.jpg', null, null, null, null, null, null, null, '33', null, null, null, null, null, 'Product7', null, null, '<p>Product7</p>', '11', null, '{}', null, '2');
INSERT INTO `cms_content` VALUES ('52', '2018-12-18 14:40:24', '2018-12-18 14:40:43', '2018-12-18 14:39:57', '1', null, null, null, '/static/upload/product.jpg', null, null, null, null, null, null, null, '31', null, null, null, null, null, 'Product8', null, null, '<p>Product8</p>', '11', null, '{}', null, '2');
INSERT INTO `cms_content` VALUES ('53', '2018-12-18 14:40:24', '2018-12-18 14:40:43', '2018-12-18 14:39:57', '1', null, null, null, '/static/upload/product.jpg', null, null, null, null, null, null, null, '20', null, null, null, null, null, 'Product9', null, null, '<p>Product9</p>', '11', null, '{}', null, '2');
INSERT INTO `cms_content` VALUES ('54', '2018-12-18 14:40:24', '2018-12-18 14:40:43', '2018-12-18 14:39:57', '1', null, null, null, '/static/upload/product.jpg', null, null, null, null, null, null, null, '19', null, null, null, null, null, 'Product10', null, null, '<p>Product10</p>', '11', null, '{}', null, '2');
INSERT INTO `cms_content` VALUES ('55', '2018-12-18 14:40:24', '2018-12-18 14:40:43', '2018-12-18 14:39:57', '1', null, null, null, '/static/upload/product.jpg', null, null, null, null, null, null, null, '15', null, null, null, null, null, 'Product11', null, null, '<p>Product11</p>', '11', null, '{}', null, '2');
INSERT INTO `cms_content` VALUES ('56', '2018-12-18 14:40:24', '2018-12-18 14:40:43', '2018-12-18 14:39:57', '1', null, null, null, '/static/upload/product.jpg', null, null, null, null, null, null, null, '15', null, null, null, null, null, 'Product12', null, null, '<p>Product12</p>', '11', null, '{}', null, '2');
INSERT INTO `cms_content` VALUES ('57', '2018-12-18 14:40:24', '2018-12-18 14:40:43', '2018-12-18 14:39:57', '1', null, null, null, '/static/upload/product.jpg', null, null, null, null, null, null, null, '16', null, null, null, null, null, 'Product13', null, null, '<p>Product13</p>', '11', null, '{}', null, '2');
INSERT INTO `cms_content` VALUES ('58', '2018-12-18 14:40:24', '2018-12-18 14:40:43', '2018-12-18 14:39:57', '1', null, null, null, '/static/upload/product.jpg', null, null, null, null, null, null, null, '15', null, null, null, null, null, 'Product14', null, null, '<p>Product14</p>', '11', null, '{}', null, '2');
INSERT INTO `cms_content` VALUES ('59', '2018-12-18 14:40:24', '2018-12-18 14:40:43', '2018-12-18 14:39:57', '1', null, null, null, '/static/upload/product.jpg', null, null, null, null, null, null, null, '16', null, null, null, null, null, 'Product15', null, null, '<p>Product15</p>', '11', null, '{}', null, '2');
INSERT INTO `cms_content` VALUES ('60', '2018-12-18 14:42:01', '2018-12-18 14:42:01', '2018-12-18 14:41:50', '1', null, null, null, '/static/upload/news.jpg', null, null, null, null, null, null, null, '43', null, null, null, null, null, 'Article1', null, null, '<p>Article1</p>', '12', null, '{}', null, '2');
INSERT INTO `cms_content` VALUES ('61', '2018-12-18 14:42:01', '2018-12-18 14:42:01', '2018-12-18 14:41:50', '1', null, null, null, '/static/upload/news.jpg', null, null, null, null, null, null, null, '40', null, null, null, null, null, 'Article2', null, null, '<p>Article2</p>', '12', null, '{}', null, '2');
INSERT INTO `cms_content` VALUES ('62', '2018-12-18 14:42:01', '2018-12-18 14:42:01', '2018-12-18 14:41:50', '1', null, null, null, '/static/upload/news.jpg', null, null, null, null, null, null, null, '34', null, null, null, null, null, 'Article3', null, null, '<p>Article3</p>', '12', null, '{}', null, '2');
INSERT INTO `cms_content` VALUES ('63', '2018-12-18 14:42:01', '2018-12-18 14:42:01', '2018-12-18 14:41:50', '1', null, null, null, '/static/upload/news.jpg', null, null, null, null, null, null, null, '30', null, null, null, null, null, 'Article4', null, null, '<p>Article4</p>', '12', null, '{}', null, '2');
INSERT INTO `cms_content` VALUES ('64', '2018-12-18 14:42:01', '2018-12-18 14:42:01', '2018-12-18 14:41:50', '1', null, null, null, '/static/upload/news.jpg', null, null, null, null, null, null, null, '20', null, null, null, null, null, 'Article5', null, null, '<p>Article5</p>', '12', null, '{}', null, '2');
INSERT INTO `cms_content` VALUES ('65', '2018-12-18 14:42:01', '2018-12-18 14:42:01', '2018-12-18 14:41:50', '1', null, null, null, '/static/upload/news.jpg', null, null, null, null, null, null, null, '23', null, null, null, null, null, 'Article6', null, null, '<p>Article6</p>', '12', null, '{}', null, '2');
INSERT INTO `cms_content` VALUES ('66', '2018-12-18 14:42:01', '2018-12-18 14:42:01', '2018-12-18 14:41:50', '1', null, null, null, '/static/upload/news.jpg', null, null, null, null, null, null, null, '23', null, null, null, null, null, 'Article7', null, null, '<p>Article7</p>', '12', null, '{}', null, '2');
INSERT INTO `cms_content` VALUES ('67', '2018-12-18 14:42:01', '2018-12-18 14:42:01', '2018-12-18 14:41:50', '1', null, null, null, '/static/upload/news.jpg', null, null, null, null, null, null, null, '20', null, null, null, null, null, 'Article8', null, null, '<p>Article8</p>', '12', null, '{}', null, '2');
INSERT INTO `cms_content` VALUES ('68', '2018-12-18 14:42:01', '2018-12-18 14:42:01', '2018-12-18 14:41:50', '1', null, null, null, '/static/upload/news.jpg', null, null, null, null, null, null, null, '19', null, null, null, null, null, 'Article9', null, null, '<p>Article9</p>', '12', null, '{}', null, '2');
INSERT INTO `cms_content` VALUES ('69', '2018-12-18 14:42:01', '2018-12-18 14:42:01', '2018-12-18 14:41:50', '1', null, null, null, '/static/upload/news.jpg', null, null, null, null, null, null, null, '21', null, null, null, null, null, 'Article10', null, null, '<p>Article10</p>', '12', null, '{}', null, '2');
INSERT INTO `cms_content` VALUES ('70', '2018-12-18 14:42:01', '2018-12-18 14:42:01', '2018-12-18 14:41:50', '1', null, null, null, '/static/upload/news.jpg', null, null, null, null, null, null, null, '20', null, null, null, null, null, 'Article11', null, null, '<p>Article11</p>', '12', null, '{}', null, '2');
INSERT INTO `cms_content` VALUES ('71', '2018-12-18 14:42:01', '2018-12-18 14:42:01', '2018-12-18 14:41:50', '1', null, null, null, '/static/upload/news.jpg', null, null, null, null, null, null, null, '20', null, null, null, null, null, 'Article12', null, null, '<p>Article12</p>', '12', null, '{}', null, '2');
INSERT INTO `cms_content` VALUES ('72', '2018-12-18 14:42:01', '2018-12-18 14:42:01', '2018-12-18 14:41:50', '1', null, null, null, '/static/upload/news.jpg', null, null, null, null, null, null, null, '20', null, null, null, null, null, 'Article13', null, null, '<p>Article13</p>', '12', null, '{}', null, '2');
INSERT INTO `cms_content` VALUES ('73', '2018-12-18 14:42:01', '2018-12-18 14:42:01', '2018-12-18 14:41:50', '1', null, null, null, '/static/upload/news.jpg', null, null, null, null, null, null, null, '20', null, null, null, null, null, 'Article14', null, null, '<p>Article14</p>', '12', null, '{}', null, '2');
INSERT INTO `cms_content` VALUES ('74', '2018-12-18 14:42:01', '2018-12-18 14:42:01', '2018-12-18 14:41:50', '1', null, null, null, '/static/upload/news.jpg', null, null, null, null, null, null, null, '19', null, null, null, null, null, 'Article15', null, null, '<p>Article15</p>', '12', null, '{}', null, '2');
INSERT INTO `cms_content` VALUES ('75', '2019-02-23 11:56:18', '2019-02-23 11:56:18', '2019-02-23 11:55:37', '1', null, null, null, '/static/upload/video.png', null, null, null, null, null, null, null, '46', null, null, null, null, null, 'Video1', null, null, '<p>The brightest star in the night sky</p>', '13', null, '{\"videoFile\":\"/static/upload/video.mp4\",\"videoPic\":\"/static/upload/video.png\"}', null, '2');
INSERT INTO `cms_content` VALUES ('103', '2019-12-26 19:31:17', '2019-12-26 19:31:14', '2019-12-26 19:33:40', '1', null, null, null, '/static/upload/image/20180412/1523499864406172.jpg', null, null, null, null, null, null, null, '113', null, null, null, null, null, 'JreCms正式发布', null, null, '<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;<span style=\"font-size: 18px;\">JreCms是开源免费的JAVA企业网站开发建设管理系统,是一套高效、简洁、\r\n 强悍的可免费商用的JAVA \r\nCMS源码,能够满足各类企业网站开发建设的需要。系统采用简单到想哭的模板标签,只要懂HTML就可快速开发企业网站。官方提供了大量网站模板免费下载和使用,将致力于为广大开发者和企业提供最佳的网站开发建设解决方案。</span>\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;1、系统采用高效、简洁、强悍的模板标签,只要懂HTML就可快速开发企业网站;\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;2、系统采用JAVA语言开发,使用EhCache缓存技术;\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;3、系统默认采用Mysql轻型数据库,方便快捷,轻松上手;\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;4、系统采用响应式管理后台,满足各类设备随时管理的需要;\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;5、系统支持内容模型、多语言、自定义表单、筛选、多条件搜索、小程序、APP等功能;\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;6、系统支持多种URL模式及模型、栏目、内容自定义地址名称,满足各类网站推广优化的需要。<br/>\r\n</p>\r\n<p>\r\n <br/>\r\n</p>\r\n<p>\r\n <strong><span style=\"font-size: 18px;\">源码托管地址:</span></strong>\r\n</p>\r\n<p>\r\n GitHub:-<br/>\r\n</p>\r\n<p>\r\n Gitee:<a href=\"https://gitee.com/heyewei/JFinalcms\" target=\"_blank\" title=\"https://gitee.com/heyewei/JFinalcms\">https://gitee.com/heyewei/JFinalcms</a>\r\n</p>\r\n<p>\r\n <strong><span style=\"font-size: 18px;\"><br/></span></strong>\r\n</p>\r\n<p>\r\n <strong><span style=\"font-size: 18px;\">简单到想哭的标签:</span></strong>\r\n</p>\r\n<pre class=\"brush:html;toolbar:false\">1、全局标签示意:\r\n#(currentWeb.title) 站点标题 \r\n#(currentWeb.logo) 站点logo\r\n2、内容分页标签示意:\r\n#content_page(pageNumber = 1,pageSize = 8) \r\n#for(content : contentPage.list)\r\n &lt;p&gt;&lt;a href=&quot;#(content.path)&quot;&gt;#(content.title)&lt;/a&gt;&lt;/p&gt;\r\n#end\r\n#end\r\n3、内容页标签示意:\r\n#(content.title) 标题\r\n#(content.subtitle)副标题\r\n#(content.author) 作者\r\n#(content.source) 来源\r\n更多简单到想哭的标签请参考开发手册...</pre>', '102', null, '{}', null, '10');
INSERT INTO `cms_content` VALUES ('104', '2019-12-26 19:33:36', '2019-12-26 19:33:38', '2019-12-26 19:33:42', '1', null, null, null, null, null, null, null, null, null, null, null, '40', null, null, null, null, null, '华为云:打造游戏创新智能世界的“黑土地”', null, null, '<p style=\"text-indent: 2em; text-align: left;\">【<strong>PConline资讯</strong>】2018年4月2日,在GMGC北京2018第七届全球游戏大会现场,记者有幸采访到了华为消费互联网解决方案总经理聂颂,他分享了游戏行业创新发展的技术基石,以及作为游戏创新要素的AI、5G、区块链等技术会为创新者带来哪些价值。</p><p class=\"detailPic\"><img src=\"/static/upload/image/20180413/1523583403755896.jpeg\"/></p><p style=\"text-indent: 2em; text-align: center;\">华为消费互联网解决方案总经理聂颂</p><p style=\"text-indent: 2em; text-align: left;\">对于游戏创新,聂颂特别强调了技术这块“黑土地”的重要性:单机版扫雷游戏盛行的背后是IntelCPU和Windows操作系统的支撑;PC互联、线下支付以及IDC技术的成熟让游戏“传奇”的时代来临;2017年中国游戏2189亿人民币收入的背后,是4G、Wifi网络、移动支付、智能手机和<span class=\"hrefStyle\">云计算</span>的成熟。而2018年,5G、区块链、AI、AR/VR的普及会给游戏行业带来玩法、服务以及场景上的多维度创新。</p><p style=\"text-indent: 2em; text-align: left;\">对此,聂颂首先表示,在游戏解决方案上,<span class=\"hrefStyle\">华为云</span>不做游戏产品,不与游戏企业争利,坚持做游戏企业的发动机和生产力。华为云游戏解决方案目前已经构建了游戏研发、游戏部署、游戏运营、游戏创新等全产业链条的能力。未来华为云将在游戏行业发力的几大方向:</p><p style=\"text-indent: 2em; text-align: left;\">第一,是基础设施层面,过去几年游戏行业使用最多的产品是云主机虚拟机,华为云主机的性能优异,裸金属服务被第三方机构评为年度影响力产品。</p><p style=\"text-indent: 2em; text-align: left;\">第二,是云容器产品方面,由于容器对于游戏部署来说意义重大,能够支撑游戏产品架构的演进。游戏企业通过使用容器,服务器部署的弹性速度提高10倍以上,并将扩展区服的时间降低到分钟级,整个运营成本降低超过50%。</p><p style=\"text-indent: 2em; text-align: left;\">第三,在AI能力层面,华为作为业界在“云+终”端同时具有芯片级别研发的公司,在终端侧,可以进行人脸识别;在云端可以进行大数据分析、视频分析、视觉认知;在架构底层,华为云使用了Atlas、GPU、FPGA等硬件为AI定制算力,从而可以在性能、延迟等方面满足游戏公司的需求。</p><p style=\"text-indent: 2em; text-align: left;\">第四,华为的云游戏实现了即看即玩。游戏免修改、多个用户一起玩直播的游戏社交游戏让客户体验大幅提升。</p><p style=\"text-indent: 2em; text-align: left;\">第五,在区块链层面,华为在十分钟之内就可以部署完整的区块链系统,每秒运算能力高达2000TPS,轻松帮助游戏客户实现不同游戏道具类的自由交换。</p><p style=\"text-indent: 2em; text-align: left;\">最后,聂颂特别强调了华为终端的优势:超过3亿的注册手机用户,华为开发者联盟超过37万的用户,应用市场下载量450亿+以及华为云100+的服务。在此次大会上,华为还发布了与消费者云的端云联合计划,已注册认证的消费者云开发者可以获得端云协同大礼包,后续针对开发者创新等,华为云也会陆续推出更大更好的扶持计划。</p><p>随着游戏用户规模逐渐从增量市场转向存量市场,游戏市场正从买量用户数转向追求极致体验,以华为打造智能世界的“黑土地”为沃土,2018年中国游戏市场创新会有哪些改变,让我们拭目以待!</p><p><br/></p><p><br/></p>', '103', null, '{}', null, '10');
INSERT INTO `cms_content` VALUES ('105', '2019-12-27 10:46:33', '2019-12-27 10:46:34', '2019-12-27 10:46:36', '1', null, null, null, '/static/upload/image/20180412/1523499864406172.jpg', null, null, null, null, null, null, null, '40', null, null, null, null, null, '锤子6年了 我们找到了它没有死的秘密', null, null, '<p>他有些戏谑意味地取了“锤子”这个名字。此前抡锤砸西门子冰箱的“壮举”让他一举成名,他想在手机圈里也搞出类似的动静来。这似乎预兆了他此后几年的命运:刺激。</p><p>另一个预兆发生在那年夏天。锤子办公室从中关村搬去望京,装车时突然电闪雷鸣暴雨如注。罗永浩站在旧办公室的窗边,念叨着“好了好了,我都知道了”,没多久,雷声停了雨也小了,似乎是天气与他达成了和解。</p><p><strong>“和解”是老罗锤子六年的另一个主题。从某种程度上说,这是他得以从手机死亡谷幸存的秘诀,但所有的得到都有代价,老罗祭出的牺牲品之一,就是曾经那个“罗永浩可爱多”。</strong></p><p><img src=\"https://static.cnbetacdn.com/article/2018/0411/1a9c9d6c1c93b7a.jpg\"/></p><p><strong>壹</strong></p><p>锤子4月9日在北工大举办的发布会没有形成刷屏之势。</p><p>有锤粉觉得意外,场内人看来却是正常。<strong>除了性价比,当天发布的坚果3实在乏善可陈,就连素来精彩的老罗演讲,也如同这个季节开败了的玉兰花,蔫蔫的让人打不起精神。散场之后,有锤粉在微信群里讨论,比刚才谁睡着的时间更长。</strong></p><p>罗永浩选择了“怼”。发布会结束他就发了条微博:“回来看了一下网上的反馈,很多用翔的人都说丑,嗯,肯定会卖得很好,放心睡了。”第二天他又在微信公众号里称,那些骂坚果3丑的人是笨蛋。</p><p>依然是天生骄傲的语气,但配方似乎与6年前已经不一样了。</p><p>那时他讨伐的对象是小米。2012年是小米模式突飞猛进备受赞誉的一年,截至11月底,小米销售额已经突破100亿人民币——华为和酷派实现这个数字都花了6年,而此时距离雷军喝下那碗小米汤不过短短2年。</p><p>但罗永浩不服。</p><p>他很快展示他过人的毒舌功力,嘲讽小米是“手机期货”、“耍猴式营销”……他甚至为自己的犀利洋洋得意,“雷军确实被我们逼得重视设计和假装有人文情怀了”。</p><p>但出来混总是要还的,“产能”在此后几年成为罗永浩的紧箍咒,感受到切肤之痛后,他向雷军转达了歉意、感慨做产品不容易。</p><p>不过那都是后话了,回到2012年,毫无疑问,罗永浩赶上了智能手机的大风口。</p><p>热潮之中,很多巨变已经初见端倪。</p><p>小米自然是最炙手可热的明星,锤子就直接复制了它的早期模式:先做ROM再做手机。更多的大厂商还没反应过来,华为要在2013年才推出互联网品牌“荣耀”,魅族要在更晚的2014年才有“魅蓝”,至于联想的ZUK,那就是2015年迟到的故事了。</p><p>更多关于颠覆的故事在苹果之外的手机厂商间上演:</p><p>诺基亚连续14年手机老大的位置被三星替代,铁娘子王雪红带领HTC完成精品战略转型,坐上手机老二的位置。黑莓生厂商RIM\r\n 选择了一条危险的道路:黑莓10成为放手一搏的产品,但它从2012年拖到2013年才面世,不情不愿发布触屏版的同时,还傲娇地保留了物理键盘板。</p><p>当时RIM还是很乐观的。时任CEO托斯滕·海因斯在谈及诺基亚的衰落时曾说,“我们现在拥有大约8000万名用户——这是诺基亚所不具备的。”但现实却是,尽管黑莓手机有奥巴马、Lady\r\n Gaga等一众粉丝,但随着黑莓公司在今年愚人节关闭BB OS 服务,最终,黑莓与诺基亚一样,把辉煌留给了历史。</p><p>风起云涌间,罗永浩掀起的波澜似乎多少带着点玩闹的成分。本来就有很多人抱着看笑话的心态,准备围观这位相声演员、英语老师如何玩砸,偏偏老罗还献上了料:</p><p>原先定在2012年年底发布的ROM跳票到次年3月,又因为工程师严重不足导致很多功能无法实现,加上发布会现场拖堂严重、网络瘫痪等原因,总之,那成为一场堪称“糟糕”的亮相,网络里几乎全是骂声。</p><p>有媒体称,那晚罗永浩失眠了,第二天,他在微博里亦保持了沉寂。</p><p><a href=\"http://img1.mydrivers.com/img/20180411/c6f3d600f2d7481e9d48701c9ce09874.png\" target=\"_blank\"><img src=\"https://static.cnbetacdn.com/article/2018/0411/206ee6043873f61.png\"/></a></p><p><strong>贰</strong></p><p>做锤子的前几年,罗永浩一直没能甩掉“不靠谱”的标签。</p><p>他狂妄。在手机影子都没有的2013年,他就在微博发布文章:《为什么看起来只有锤子科技最可能成为下一个索尼(盛田时代的索尼)或下一个苹果(乔布斯时代的苹果)?》——而那一年,国内手机市场最活跃的角色是799元的红米手机,它直接拉动了小米销量,当年“双十一”,小米三分钟售出一亿元。</p><p>他随性,即使在投资人面前也不改本色。“他甚至聊一聊,就看手机,不搭理投资人”,媒体人黄章晋曾经这样评价。在演讲台上口舌生莲的罗永浩,其实有点社交恐惧症,谈合作时不知道怎么说半真半假的话。</p><p><strong>2013年那场“糟糕”的ROM发布会没多久,罗永浩就烧光了陌陌唐岩给的900万。他第一次面临钱的难题。但很多投资人对这位曾经怒砸冰箱的狂人有所忌讳,一位知名基金的风投曾表示,“我非常欣赏老罗”,但他转头告诉同事的却是:“我们是一分钱也不会给他的。”</strong></p><p>锤子在生产线上遇到的麻烦,狠狠给了罗永浩一“锤子”。</p><p>2014年5月,锤子T1 发布。对于从未涉足过硬件生产的罗永浩,这无疑是历史性的一步。在产品宣传图里,他高调称之为“东半球最好用的智能手机”。或许是担心触及新的《广告法》条例,没多久,宣传语又变成了“全球第二好用的智能手机”。</p><p>那场发布会上,罗永浩扬眉吐气,挺直了腰板,痛快嘲笑着整个手机行业,尽管T1首发只有3G版。</p><p>供应链反手给了他一巴掌。由于良品率过低等原因——有媒体援引业内人士的判断,锤子手机良品率不会超过50%,而正常数值应该在93%以上——T1 在发布后的几个月里都无法正常供货,急得罗永浩跑到富士康去蹲守。</p><p>发布会造起的声势,在订购用户漫长的等待中变凉了。随后3-4个月,T1逃单率从最初的2%一路飙升到接近90%。那些通过员工渠道才搞到购买码的人也跑了,理由很简单:过去几个月,天天看锤子的负面新闻看怕了。</p><p>罗永浩扛到10月,不得不宣布锤子降价,降幅在1000元左右。降价后,最便宜的16G 3G版售价1980元。</p><p>这又激怒了不少锤粉。5个月前,老罗说“我特别反感有的手机厂商在新品上市时定一个高价,之后很快又会降价的做法”,他降价的唯一可能是:新一代产品上市,前一代需要清理库存。为了显得有信服力,他还撂下狠话:如果低于2500,我是你孙子。</p><p><strong>最终,T1在2014年的总销量是25万多台。那年,中国智能手机出货量为4.207亿台,其中,小米出货量为6112万台。</strong></p><p>这样的结果无疑是让人沮丧的。罗永浩认为自己的口无遮拦把企业连累了。</p><p>那年12月,他在北展做了最后一场个人演讲《一个理想主义者的创业故事》,现场哽咽鞠躬,表示要认真学做企业家,并宣布个人微博号密码交给了公司公关部,将来所说的每一句话,要经过公司审核过再发布。</p><p>自此,“罗永浩可爱多”的微博昵称消失了。</p><p><a href=\"http://img1.mydrivers.com/img/20180411/6fb5d811429f43c09809c07ae36a4171.png\" target=\"_blank\"><img src=\"https://static.cnbetacdn.com/article/2018/0411/be2a4e6b3f628b9.png\"/></a></p><p><strong>叁</strong></p><p>事实证明,罗永浩选择低姿态进入2015年,实在是个明智的选择。</p><p>那年手机行业的主题是:无人幸免。</p><p>险象在2014年已经初显。工信部监测报告显示,2014年前10个月智能手机出货量同比降幅达到10.4%,其中,国产手机出货量共2.86亿部,同比下降25.4%。显然,这是一个日趋饱和的市场。</p><p>于是,<strong>对于赶在风口成立的小手机厂商,2015年就是死亡谷。头一年还连发三款手机的大可乐在这年保持了寂静,次年三月宣布破产。</strong></p><p>行业不景气之下,上游企业随之受到牵连,珠三角多家手机代工厂出现倒闭、老板跳楼等悲剧。</p><p>大公司的日子也不好过,随着增速放缓,唱衰小米的声音此起彼伏。</p><p>那年年初,华为的余承东判断局势之残酷:未来3-5年国内只剩下三大手机厂商。当然,他不忘给自己打气,“其中就包括华为”。这位靠P6一战成名的CEO 曾经自嘲是华为的CHO(首席吹牛官)——“我学会了吹牛、打赌和应付口水战。”</p><p>8月,联想的杨元庆也在微博中写道:联想此刻正面临着严峻的挑战。头一年,联想以29.1亿美元收购摩托诺拉手机品牌,直接导致了2015年Q1财报里的2.92亿美元亏损。从后面的故事来看,此举也未能阻止联想手机业务的颓势。</p><p>如此局势之下,锤子的日子也不好过。</p><p><strong>那年锤子先后发布了坚果手机和T2,都没能打出翻身仗。最终,锤子科技在2015年亏损了4.62亿。</strong></p><p>钱成了大问题。天生骄傲的情怀在现实面前似乎不堪一击。到2016年,锤子对外公布的融资仅有AB两轮,融资金额最高的也就是2014年4月那笔1.8亿元人民币。于是,当锤子在2016年发不出工资时,罗永浩只能编了个理由:银行系统出了问题,过几天再发。</p><p>一年后,当危机化解,罗永浩把此事当做段子在极客公园大会上分享,逗得台下观众哈哈大笑。他闭口未谈期间的辛酸,包括为了钱去找小米谈收购、跟阿里质押股权,最后都没成,不得已,他跑到得到开专栏,去陌陌做直播,“卖身”换钱。</p><p>后来他说:<strong>真正的猛男,敢于直视惨淡的人生。猛男另一个特征,哭的时候要躲起来。</strong></p><p>期间也有援手。锤子科技早期投资人、紫辉创投创始合伙人郑刚称,在锤子资金危机中,贾跃亭曾经借给罗永浩1个亿。贾跃亭在2015年开始做手机,一度计划投资锤子,但考虑到交易需要时间,锤子又急需用钱,最后在没有质押股权的情况下,直接借出1个亿。</p><p>后来罗永浩用一组数据复盘了2016年:被传倒闭6次,被传收购5次,被曝资金链困境3次,被用户起诉1次。</p><p>类似的滋味雷军在这一年也品尝到了。小米在2015年开始遭遇出货量和市场份额双跌,到2016年春节时,雷军宣布取消KPI,随后,补课成为这一年的主题,他请回了黎万强,整顿供应链,找明星代言,布局线下和海外。</p><p><strong>两家公司的体量相差迥异,但在生死攸关之时,活下去的欲望足以让他们放下过往,甚至引入自己曾经鄙夷的模式。毕竟,在生意场上,生存就是最大的挑战。</strong></p><p>他们都熬出来了。</p><p>2017年,小米出货量重回世界前五,IPO 进入流程。罗永浩也宣布锤子获得新一轮10亿融资。令人意外的是,其中6亿来自成都市政府。</p><p>也是在这一年,锤子总部搬迁至成都,坚果Pro发布——这款中端机型是锤子首款产量过百万的产品。当罗永浩在发布会上哽咽:如果将来傻*都在用锤子手机,你们一定要记得,这手机是为你们做的,你似乎又能看到他昔日狂妄又感性的影子。</p><p><a href=\"http://img1.mydrivers.com/img/20180411/acc9a8439b6c42c287ca547b96c4f26f.png\" target=\"_blank\"><img src=\"https://static.cnbetacdn.com/article/2018/0411/2dc80ed81be2cf8.png\"/></a></p><p><strong>肆</strong></p><p>做高性价比手机、出空气净化器、布局生态链……锤子幸存之后的诸多举动被业内评价:越来越像小米。</p><p>事实上,自从办完2014年那场最后的个人演讲,罗永浩就在努力把自己变成正常的企业家,把锤子变成正常的公司。去年8月宣布那笔10亿融资时,他笑眯眯地谈到:</p><p>“没意外的话,从秋天开始,我们手里会有大约 19 个亿的运作现金。这意味着我们从明年开始会像一个正规的手机厂商一样,以高、中、低三个段位,每年推出 5~6 款产品。”</p><p>言语间全然不见当年愤怒、自傲、聛睨一切的姿态。</p><p>而正是这些特质,当初让很多追随“罗胖”的粉丝变身锤粉。<strong>作为好友的冯唐曾经分析过,为什么锤子的开局那么糟糕却没有夭折,其中一个重要理由恐怕就是粉丝,“换另一个疯子和偏执狂去做,没有老罗的粉丝群,可能一年都活不下去。”</strong></p><p>在不同的锤粉看来,锤子的六年有着不同的意味。</p><p>有人为这家公司熬过难关挺到现在而开心,即使中间有过口碑糟糕的M系列手机,塑料手感让他们不敢相信“这是老罗的审美”;有人已经转身离去,因为老罗曾经的骄傲不复存在,锤子已经成为泯然众人的大路货。</p><p>比如坚果Pro ,这款定价在1499、1799、2299 的手机,出货量是锤子科技过去五年所有手机产品的总和。</p><p>这是属于商业的成功,但文艺青年们更在乎直观感受。知乎用户 Slender Man 这样写道:</p><p><strong>“一个公司需要在第三方购物网站上刷评论,一个公司需要大费笔墨来夸赞作为手机配件的钢化膜,一个公司在类似于‘虚拟来电’这样的不实用功能上吹嘘所谓工匠精神而不是改善被人诟病依旧的系统时,这大概就是对‘情怀’最大的玷污。”</strong></p><p>但熬过生死关头的罗永浩显然已经超越了这些。他在去年感慨,“你知道我这5年是怎么挺过来的吗?每次就是厚着脸皮再坚持一下。”</p><p>他的变化显而易见。</p><p>他鲜少露面,曾经那些标签,比如彪悍、情怀、工匠精神,也不再一遍遍被强化。在与罗振宇那场8个半小时的《长谈》中,他谈到自己很庆幸,因为现在不需要用讲故事来融资了,“他们(投资人)不用看我罗永浩怎么样,我也不想和他们谈,大家直接看业绩”。</p><p>他开始理解很多以前看不上的行为。“过去,我要是在机场看到一个衣冠楚楚的家伙拿着一本《赢:韦尔奇一生的管理智慧》,就会觉得这个笨蛋没救了,但现在我也会拿着这样的书硬着头皮读完。”</p><p>而4月9日北工大的这场发布会上,罗永浩的表现也越发像一位成熟的商人。</p><p>他意外地只迟到了5分钟,随后用1个小时匆匆展示了千元机坚果3;</p><p>他否定了自己以前一些过于偏执的说法——谈到“为何整天发平价机”时,他说:“设计很重要,但它只是一部分……漂亮很重要,但科技行业漂亮也没那么必要。”</p><p>在这场可能是锤子有史以来最冷清的发布会上,他也老老实实解释了坚果3此时推出的理由:在做旗舰机产品的路上走得非常艰难,不得不做中档的产品,更高性价比的产品。</p><p>只有在谈到5月15日将在鸟巢举办的那场发布会时,罗永浩又显得很兴奋。</p><p>他喜欢用“尿裤子”这个粗俗的词语形容好产品带来的震撼,于是,那天下午他说道:我曾经想过,给每一个入场(鸟巢)的人发一个纸尿裤。</p><p>在这样天马行空的瞬间,企业家罗永浩,似乎又跟那个满身是刺却内心脆弱的老罗重逢了。</p><p><strong>这是属于幸存者的幸福瞬间,即使罗永浩为此付出了“杀死老罗”的代价。但商业就是如此,正如他那天下午感慨的——科技行业没有百年老店的。“只要你干不过别人,无论有什么理由,都是没什么用的。”</strong></p><p><br/></p>', '103', null, '{}', null, '10');
INSERT INTO `cms_content` VALUES ('106', '2019-12-27 10:55:00', '2019-12-27 10:55:02', '2019-12-27 10:55:04', '1', null, null, null, '/static/upload/image/20180412/1523499864406172.jpg', null, null, null, null, null, null, null, '106', null, null, null, null, null, '大获全胜 扎克伯格如何赢得与议员的当面对峙', null, null, '<p>腾讯《深网》 纪振宇 4月11日发自硅谷</p><p>并不是扎克伯格表现地多好,而是议员们的表现太差了。</p><p>在经历了连续两天马拉松式的国会议员“拷问”后,Facebook创始人兼首席执行官扎克伯格给外界留下了表现“超出预期”的印象,Facebook的股价甚至在第一天出现了过去两年来最大的单日涨幅,扎克伯格个人身家也在当天结束后暴涨近30亿美元。</p><p>国会会议厅自然不是让扎克伯格感到舒适的场所,为了准备这两场听证会,扎克伯格提前一天便来到了华盛顿特区,4月初的华盛顿依然春寒料峭,这里的人们大多身着深灰色大衣,神情肃穆,行色匆匆,这里与明媚温暖的加州完全是两个世界,这并不是他能够穿着T恤短裤,和妻子孩子在自家后院烧烤做线上视频直播,与成百上千万Facebook用户轻松聊天的时刻。</p><p>他不得不穿上为他量身定做的深蓝色修身西装、系上领带,端坐在摆放着名牌“Mr. Zuckberg”的桌子后面,与几十名参议员,上百名媒体记者共处一室,熬过接下来长达5个半小时的听证会。</p><p>“他很紧张,但他显得信心十足,”现场的一名人员这样描述,“他是一个聪明人。”</p><p>还未落座,扎克伯格就被数十名现场摄影记者围成的人墙所包围,他全身上下的各个角度,动作神情的每一个细节,都被无情地暴露在冰冷的镜头前。</p><p>但扎克伯格显然是有备而来,坐在听证席上的他保持上身挺直,对每一个问题都认真倾听,与提问的议员进行眼神接触,他改掉了过去回答问题时都先加上“so”语气词的习惯,而是先以“Senator”(参议员),“Congressman”或“Congresswoman”(议员)来称呼向他提问的对方,然后再作答。</p><p>他的桌上摆放着他的团队为他提前准备好的应答提纲,在听证会中场休息的间隙,现场媒体拍到了其中一页内容,厚厚的一叠纸上基本涉及到了所有他们能事先想到的议员们可能问到的问题,他的座椅放上了厚厚的垫子,或许也是团队为他精心准备的,为了让他在镜头面前显得更高大,更符合在危机时刻的领导者形象。</p><p>尽管时不时咽下口水,表情尴尬或频繁举起水杯,但出现在国会的扎克伯格,并不是我们过去所熟悉的那个穿着灰色帽衫,语速飞快,说着“快速行动,打破一切”的年轻创业者形象,而是一位训练有素,应对自如的CEO,这是一家正处在危机中的公司所需要的领导者的形象。</p><p>反观听证会上坐在扎克伯格对面的数十名国会议员,他们的表现却让人大失所望,或者说,人们从来就没有对这次听证抱太大期望,数十个问题暴露出了这些政治圈人士与21世纪科技圈完全的隔阂,他们与扎克伯格之间的许多问答,双方仿佛是在各自语境体系下的自说自话,出现了许多难以言状的尴尬时刻。</p><p>例如,一名议员问“如果用户不用支付你提供的服务的话,你如何维持你的公司经营?”</p><p>扎克伯格停顿片刻,说,“参议员,我们卖广告。”</p><p>“哦,是这样啊。”这位参议员说。</p><p>有一位议员说,“我13岁的儿子查理是个活跃的Instagram(Facebook旗下图片分享应用)用户,他让我确保今天提到他。”</p><p>另一位议员说,“如果我通过Whatsapp(Facebook旗下即时通讯应用)发邮件,这会让广告主知道里面的信息吗?”</p><p>议员们的许多问题,暴露了他们对一些最基本互联网常识或Facebook这家公司的无知,Twitter上的一名用户甚至嘲讽说,“这些议员的平均年龄已经100岁了。”</p><p>整场听证会,议员们的问题还缺乏重点,往往漫无边际,围绕着一些无关痛痒的问题兜圈子。</p><p>在议员们“不给力”的问题下,扎克伯格也得以完全依照此前团队所设计的策略,有条不紊地完成这两天的既定任务:承认错误,道歉,具体问题不做肯定或否定的回答,交给团队后续跟进,不做承诺,不否定目前的商业模式,不表现地过于贪婪。</p><p>Open MIC组织执行总监Michael Connor评价称,扎克伯格的听证会表现仅能算“勉强通过”,谈不上“优异”。这家代表Facebook投资者的机构在听证会开始前一天公开呼吁扎克伯格辞去Facebook的所有职务。</p><p>听证会的发起,源自Facebook大面积用户数据泄漏事件的爆发,由于爆料人称大数据公司Cambridge\r\n \r\nAnalytica利用从Facebook获得的大量用户数据,进行精准政治广告投放,以影响政治活动,事件可能涉及到8700万Facebook用户,其中大多数人位于美国,这些都引起了华盛顿的关注。</p><p>这场事件的另几个关键词是“俄罗斯操纵”、“美国总统选举”,这些已经触及到美国国家安全和核心利益。出于对各自选区选民的责任,这场听证会在所难免。</p><p>但参加听证会的国会议员的表现,或许连“通过”的标准都达不到。听证会的最终目的,是为了让这些立法者们能够更好地了解情况,最终至少能够形成对于某些现存问题的一致看法,并通过立法程序加以解决,尽管扎克伯格本人在听证会期间也明确表达了愿意接受“正确的监管”的态度,但至少从这两天的听证会现场情况来看,要达成上述目的的希望渺茫。</p><p>另一个尴尬的事实是,参与听证会的近百名议员,大多数都直接或间接接受过Facebook的政治捐款。在过去12年中,Facebook总共投入了700万美元用于政治捐款,从2014年至今,对扎克伯格质询的议员总共从Facebook获取了超过64万的政治捐助。</p><p>两天的听证会被一名Twitter用户评价为“走过场”,没有“实质意义”,如果说第一天的听证会上,扎克伯格还不时露出紧张的神态,第二天的他则完全神态自若,当主持整场听证会的议员提议休息片刻,扎克伯格回答说,“要不再来几个问题?”美国新闻电视网CNN评价道,两天的听证会,扎克伯格得以全身而退,毫发无伤。</p><p><br/></p>', '103', null, '{}', null, '10');
INSERT INTO `cms_content` VALUES ('107', '2019-12-27 10:56:27', '2021-03-25 10:18:03', '2019-12-27 10:56:30', '1', null, null, null, '/static/upload/image/20180412/1523499864406172.jpg', null, null, ',3,', null, null, null, null, '311', null, null, null, null, null, 'JreCms主要功能介绍', null, null, '<p>&nbsp;&nbsp;&nbsp;&nbsp;<span style=\"font-size: 18px;\">JreCms是开源免费的JAVA企业网站开发建设管理系统,是一套高效、简洁、\r\n 强悍的可免费商用的JAVA \r\nCMS源码,能够满足各类企业网站开发建设的需要。系统采用简单到想哭的模板标签,只要懂HTML就可快速开发企业网站。官方提供了大量网站模板免费下载和使用,将致力于为广大开发者和企业提供最佳的网站开发建设解决方案。</span></p><p>&nbsp;&nbsp;&nbsp;&nbsp;1、系统采用高效、简洁、强悍的模板标签,只要懂HTML就可快速开发企业网站;</p><p>&nbsp;&nbsp;&nbsp;&nbsp;2、系统采用JAVA语言开发,使用EhCache缓存技术;</p><p>&nbsp;&nbsp;&nbsp;&nbsp;3、系统默认采用Mysql轻型数据库,方便快捷,轻松上手;</p><p>&nbsp;&nbsp;&nbsp;&nbsp;4、系统采用响应式管理后台,满足各类设备随时管理的需要;</p><p>&nbsp;&nbsp;&nbsp;&nbsp;5、系统支持内容模型、多语言、自定义表单、筛选、多条件搜索、小程序、APP等功能;</p><p>&nbsp;&nbsp;&nbsp;&nbsp;6、系统支持多种URL模式及模型、栏目、内容自定义地址名称,满足各类网站推广优化的需要。<br/></p><p><br/></p><p><strong><span style=\"font-size: 18px;\">源码托管地址:</span></strong></p><p>GitHub:-<br/></p><p>Gitee:<a href=\"https://gitee.com/heyewei/JFinalcms\" target=\"_blank\" title=\"https://gitee.com/heyewei/JFinalcms\">https://gitee.com/heyewei/JFinalcms</a></p><p><strong><span style=\"font-size: 18px;\"><br/></span></strong></p><p><strong><span style=\"font-size: 18px;\">简单到想哭的标签:</span></strong></p><pre class=\"brush:html;toolbar:false\">1、全局标签示意:\r\n#(currentWeb.title)&nbsp;站点标题&nbsp;\r\n#(currentWeb.logo)&nbsp;站点logo\r\n2、内容分页标签示意:\r\n#content_page(pageNumber&nbsp;=&nbsp;1,pageSize&nbsp;=&nbsp;8)&nbsp;&nbsp;&nbsp;\r\n#for(content&nbsp;:&nbsp;contentPage.list)#(content.title)#end\r\n#end\r\n3、内容页标签示意:\r\n#(content.title)&nbsp;标题\r\n#(content.subtitle)副标题\r\n#(content.author)&nbsp;作者\r\n#(content.source)&nbsp;来源\r\n更多简单到想哭的标签请参考开发手册...</pre>', '102', '[]', '{}', null, '10');
INSERT INTO `cms_content` VALUES ('108', '2019-12-27 11:01:14', '2019-12-28 16:25:30', '2019-12-27 11:01:09', '1', null, null, null, '/static/upload/image/20180412/1523499435499884.png', null, null, null, null, null, null, null, '45', null, null, null, null, null, '域名注册服务', null, null, '<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;<span style=\"font-size: 18px;\">JreCms是开源免费的JAVA企业网站开发建设管理系统,是一套高效、简洁、\r\n 强悍的可免费商用的JAVA \r\nCMS源码,能够满足各类企业网站开发建设的需要。系统采用简单到想哭的模板标签,只要懂HTML就可快速开发企业网站。官方提供了大量网站模板免费下载和使用,将致力于为广大开发者和企业提供最佳的网站开发建设解决方案。</span>\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;1、系统采用高效、简洁、强悍的模板标签,只要懂HTML就可快速开发企业网站;\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;2、系统采用JAVA语言开发,使用EhCache缓存技术;\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;3、系统默认采用Mysql轻型数据库,方便快捷,轻松上手;\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;4、系统采用响应式管理后台,满足各类设备随时管理的需要;\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;5、系统支持内容模型、多语言、自定义表单、筛选、多条件搜索、小程序、APP等功能;\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;6、系统支持多种URL模式及模型、栏目、内容自定义地址名称,满足各类网站推广优化的需要。<br/>\r\n</p>\r\n<p>\r\n <br/>\r\n</p>\r\n<p>\r\n <strong><span style=\"font-size: 18px;\">源码托管地址:</span></strong>\r\n</p>\r\n<p>\r\n GitHub:-<br/>\r\n</p>\r\n<p>\r\n Gitee:<a href=\"https://gitee.com/heyewei/JFinalcms\" target=\"_blank\" title=\"https://gitee.com/heyewei/JFinalcms\">https://gitee.com/heyewei/JFinalcms</a>\r\n</p>\r\n<p>\r\n <strong><span style=\"font-size: 18px;\"><br/></span></strong>\r\n</p>\r\n<p>\r\n <strong><span style=\"font-size: 18px;\">简单到想哭的标签:</span></strong>\r\n</p>\r\n<pre class=\"brush:html;toolbar:false\">1、全局标签示意:\r\n#(currentWeb.title) 站点标题 \r\n#(currentWeb.logo) 站点logo\r\n2、内容分页标签示意:\r\n#content_page(pageNumber = 1,pageSize = 8) \r\n#for(content : contentPage.list)\r\n &lt;p&gt;&lt;a href=&quot;#(content.path)&quot;&gt;#(content.title)&lt;/a&gt;&lt;/p&gt;\r\n#end\r\n#end\r\n3、内容页标签示意:\r\n#(content.title) 标题\r\n#(content.subtitle)副标题\r\n#(content.author) 作者\r\n#(content.source) 来源\r\n更多简单到想哭的标签请参考开发手册...</pre>', '106', null, '{\"leixing\":\"基础版\",\"jiage\":\"0\",\"yanse\":\"红色\"}', null, '10');
INSERT INTO `cms_content` VALUES ('109', '2019-12-27 11:03:15', '2020-11-08 00:02:00', '2019-12-27 11:03:18', '1', null, null, null, '/static/upload/image/20180412/1523499813391526.jpg', null, null, null, null, null, null, '', '158', null, null, null, null, null, '网站建设极速版', null, null, '<p>&nbsp;&nbsp;&nbsp;&nbsp;<span style=\"font-size: 18px;\">JreCms是开源免费的JAVA企业网站开发建设管理系统,是一套高效、简洁、\r\n 强悍的可免费商用的JAVA \r\nCMS源码,能够满足各类企业网站开发建设的需要。系统采用简单到想哭的模板标签,只要懂HTML就可快速开发企业网站。官方提供了大量网站模板免费下载和使用,将致力于为广大开发者和企业提供最佳的网站开发建设解决方案。</span></p><p>&nbsp;&nbsp;&nbsp;&nbsp;1、系统采用高效、简洁、强悍的模板标签,只要懂HTML就可快速开发企业网站;</p><p>&nbsp;&nbsp;&nbsp;&nbsp;2、系统采用JAVA语言开发,使用EhCache缓存技术;</p><p>&nbsp;&nbsp;&nbsp;&nbsp;3、系统默认采用Mysql轻型数据库,方便快捷,轻松上手;</p><p>&nbsp;&nbsp;&nbsp;&nbsp;4、系统采用响应式管理后台,满足各类设备随时管理的需要;</p><p>&nbsp;&nbsp;&nbsp;&nbsp;5、系统支持内容模型、多语言、自定义表单、筛选、多条件搜索、小程序、APP等功能;</p><p>&nbsp;&nbsp;&nbsp;&nbsp;6、系统支持多种URL模式及模型、栏目、内容自定义地址名称,满足各类网站推广优化的需要。<br/></p><p><br/></p><p><strong><span style=\"font-size: 18px;\">源码托管地址:</span></strong></p><p>GitHub:-<br/></p><p>Gitee:<a href=\"https://gitee.com/heyewei/JFinalcms\" target=\"_blank\" title=\"https://gitee.com/heyewei/JFinalcms\">https://gitee.com/heyewei/JFinalcms</a></p><p><strong><span style=\"font-size: 18px;\"><br/></span></strong></p><p><strong><span style=\"font-size: 18px;\">简单到想哭的标签:</span></strong></p><pre class=\"brush:html;toolbar:false\">1、全局标签示意:\r\n#(currentWeb.title)&nbsp;站点标题&nbsp;\r\n#(currentWeb.logo)&nbsp;站点logo\r\n2、内容分页标签示意:\r\n#content_page(pageNumber&nbsp;=&nbsp;1,pageSize&nbsp;=&nbsp;8)&nbsp;&nbsp;&nbsp;\r\n#for(content&nbsp;:&nbsp;contentPage.list)#(content.title)#end\r\n#end\r\n3、内容页标签示意:\r\n#(content.title)&nbsp;标题\r\n#(content.subtitle)副标题\r\n#(content.author)&nbsp;作者\r\n#(content.source)&nbsp;来源\r\n更多简单到想哭的标签请参考开发手册...</pre>', '105', null, '{\"leixing\":\"旗舰版\",\"jiage\":\"99999\",\"yanse\":\"绿色\"}', null, '10');
INSERT INTO `cms_content` VALUES ('110', '2019-12-27 11:05:56', '2019-12-27 11:05:54', '2019-12-27 11:05:52', '1', null, null, null, '/static/upload/image/20180412/1523501297516241.jpg', null, null, null, null, null, null, null, '233', null, null, null, null, null, '网站建设全能版', null, null, '<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;<span style=\"font-size: 18px;\">JreCms是开源免费的JAVA企业网站开发建设管理系统,是一套高效、简洁、\r\n 强悍的可免费商用的JAVA \r\nCMS源码,能够满足各类企业网站开发建设的需要。系统采用简单到想哭的模板标签,只要懂HTML就可快速开发企业网站。官方提供了大量网站模板免费下载和使用,将致力于为广大开发者和企业提供最佳的网站开发建设解决方案。</span>\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;1、系统采用高效、简洁、强悍的模板标签,只要懂HTML就可快速开发企业网站;\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;2、系统采用JAVA语言开发,使用EhCache缓存技术;\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;3、系统默认采用Mysql轻型数据库,方便快捷,轻松上手;\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;4、系统采用响应式管理后台,满足各类设备随时管理的需要;\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;5、系统支持内容模型、多语言、自定义表单、筛选、多条件搜索、小程序、APP等功能;\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;6、系统支持多种URL模式及模型、栏目、内容自定义地址名称,满足各类网站推广优化的需要。<br/>\r\n</p>\r\n<p>\r\n <br/>\r\n</p>\r\n<p>\r\n <strong><span style=\"font-size: 18px;\">源码托管地址:</span></strong>\r\n</p>\r\n<p>\r\n GitHub:-<br/>\r\n</p>\r\n<p>\r\n Gitee:<a href=\"https://gitee.com/heyewei/JFinalcms\" target=\"_blank\" title=\"https://gitee.com/heyewei/JFinalcms\">https://gitee.com/heyewei/JFinalcms</a>\r\n</p>\r\n<p>\r\n <strong><span style=\"font-size: 18px;\"><br/></span></strong>\r\n</p>\r\n<p>\r\n <strong><span style=\"font-size: 18px;\">简单到想哭的标签:</span></strong>\r\n</p>\r\n<pre class=\"brush:html;toolbar:false\">1、全局标签示意:\r\n#(currentWeb.title) 站点标题 \r\n#(currentWeb.logo) 站点logo\r\n2、内容分页标签示意:\r\n#content_page(pageNumber = 1,pageSize = 8) \r\n#for(content : contentPage.list)\r\n &lt;p&gt;&lt;a href=&quot;#(content.path)&quot;&gt;#(content.title)&lt;/a&gt;&lt;/p&gt;\r\n#end\r\n#end\r\n3、内容页标签示意:\r\n#(content.title) 标题\r\n#(content.subtitle)副标题\r\n#(content.author) 作者\r\n#(content.source) 来源\r\n更多简单到想哭的标签请参考开发手册...</pre>', '105', null, '{}', null, '10');
INSERT INTO `cms_content` VALUES ('111', '2019-12-27 11:07:21', '2019-12-27 11:07:18', '2019-12-27 11:07:16', '1', null, null, null, '/static/upload/image/20180412/1523499864406172.jpg', null, null, null, null, null, null, null, '320', null, null, null, null, null, '网站建设商城版', null, null, '<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;<span style=\"font-size: 18px;\">JreCms是开源免费的JAVA企业网站开发建设管理系统,是一套高效、简洁、\r\n 强悍的可免费商用的JAVA \r\nCMS源码,能够满足各类企业网站开发建设的需要。系统采用简单到想哭的模板标签,只要懂HTML就可快速开发企业网站。官方提供了大量网站模板免费下载和使用,将致力于为广大开发者和企业提供最佳的网站开发建设解决方案。</span>\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;1、系统采用高效、简洁、强悍的模板标签,只要懂HTML就可快速开发企业网站;\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;2、系统采用JAVA语言开发,使用EhCache缓存技术;\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;3、系统默认采用Mysql轻型数据库,方便快捷,轻松上手;\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;4、系统采用响应式管理后台,满足各类设备随时管理的需要;\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;5、系统支持内容模型、多语言、自定义表单、筛选、多条件搜索、小程序、APP等功能;\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;6、系统支持多种URL模式及模型、栏目、内容自定义地址名称,满足各类网站推广优化的需要。<br/>\r\n</p>\r\n<p>\r\n <br/>\r\n</p>\r\n<p>\r\n <strong><span style=\"font-size: 18px;\">源码托管地址:</span></strong>\r\n</p>\r\n<p>\r\n GitHub:-<br/>\r\n</p>\r\n<p>\r\n Gitee:<a href=\"https://gitee.com/heyewei/JFinalcms\" target=\"_blank\" title=\"https://gitee.com/heyewei/JFinalcms\">https://gitee.com/heyewei/JFinalcms</a>\r\n</p>\r\n<p>\r\n <strong><span style=\"font-size: 18px;\"><br/></span></strong>\r\n</p>\r\n<p>\r\n <strong><span style=\"font-size: 18px;\">简单到想哭的标签:</span></strong>\r\n</p>\r\n<pre class=\"brush:html;toolbar:false\">1、全局标签示意:\r\n#(currentWeb.title) 站点标题 \r\n#(currentWeb.logo) 站点logo\r\n2、内容分页标签示意:\r\n#content_page(pageNumber = 1,pageSize = 8) \r\n#for(content : contentPage.list)\r\n &lt;p&gt;&lt;a href=&quot;#(content.path)&quot;&gt;#(content.title)&lt;/a&gt;&lt;/p&gt;\r\n#end\r\n#end\r\n3、内容页标签示意:\r\n#(content.title) 标题\r\n#(content.subtitle)副标题\r\n#(content.author) 作者\r\n#(content.source) 来源\r\n更多简单到想哭的标签请参考开发手册...</pre>', '105', null, '{}', null, '10');
INSERT INTO `cms_content` VALUES ('112', '2019-12-27 11:09:27', '2019-12-27 11:09:29', '2019-12-27 11:09:32', '1', null, null, null, '/static/upload/image/20180412/1523499979727269.jpg', null, null, null, null, null, null, null, '248', null, null, null, null, null, '网站空间', null, null, '<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;<span style=\"font-size: 18px;\">JreCms是开源免费的JAVA企业网站开发建设管理系统,是一套高效、简洁、\r\n 强悍的可免费商用的JAVA \r\nCMS源码,能够满足各类企业网站开发建设的需要。系统采用简单到想哭的模板标签,只要懂HTML就可快速开发企业网站。官方提供了大量网站模板免费下载和使用,将致力于为广大开发者和企业提供最佳的网站开发建设解决方案。</span>\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;1、系统采用高效、简洁、强悍的模板标签,只要懂HTML就可快速开发企业网站;\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;2、系统采用JAVA语言开发,使用EhCache缓存技术;\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;3、系统默认采用Mysql轻型数据库,方便快捷,轻松上手;\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;4、系统采用响应式管理后台,满足各类设备随时管理的需要;\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;5、系统支持内容模型、多语言、自定义表单、筛选、多条件搜索、小程序、APP等功能;\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;6、系统支持多种URL模式及模型、栏目、内容自定义地址名称,满足各类网站推广优化的需要。<br/>\r\n</p>\r\n<p>\r\n <br/>\r\n</p>\r\n<p>\r\n <strong><span style=\"font-size: 18px;\">源码托管地址:</span></strong>\r\n</p>\r\n<p>\r\n GitHub:-<br/>\r\n</p>\r\n<p>\r\n Gitee:<a href=\"https://gitee.com/heyewei/JFinalcms\" target=\"_blank\" title=\"https://gitee.com/heyewei/JFinalcms\">https://gitee.com/heyewei/JFinalcms</a>\r\n</p>\r\n<p>\r\n <strong><span style=\"font-size: 18px;\"><br/></span></strong>\r\n</p>\r\n<p>\r\n <strong><span style=\"font-size: 18px;\">简单到想哭的标签:</span></strong>\r\n</p>\r\n<pre class=\"brush:html;toolbar:false\">1、全局标签示意:\r\n#(currentWeb.title) 站点标题 \r\n#(currentWeb.logo) 站点logo\r\n2、内容分页标签示意:\r\n#content_page(pageNumber = 1,pageSize = 8) \r\n#for(content : contentPage.list)\r\n &lt;p&gt;&lt;a href=&quot;#(content.path)&quot;&gt;#(content.title)&lt;/a&gt;&lt;/p&gt;\r\n#end\r\n#end\r\n3、内容页标签示意:\r\n#(content.title) 标题\r\n#(content.subtitle)副标题\r\n#(content.author) 作者\r\n#(content.source) 来源\r\n更多简单到想哭的标签请参考开发手册...</pre>', '106', null, '{}', null, '10');
INSERT INTO `cms_content` VALUES ('113', '2019-12-27 11:12:57', '2019-12-27 11:12:55', '2019-12-27 11:12:53', '1', null, null, null, '/static/upload/image/20180412/1523500443228678.png', null, null, null, null, null, null, null, '159', null, null, null, null, null, '湖南XXXX网络科技有限公司', null, null, '<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;<span style=\"font-size: 18px;\">JreCms是开源免费的JAVA企业网站开发建设管理系统,是一套高效、简洁、\r\n 强悍的可免费商用的JAVA \r\nCMS源码,能够满足各类企业网站开发建设的需要。系统采用简单到想哭的模板标签,只要懂HTML就可快速开发企业网站。官方提供了大量网站模板免费下载和使用,将致力于为广大开发者和企业提供最佳的网站开发建设解决方案。</span>\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;1、系统采用高效、简洁、强悍的模板标签,只要懂HTML就可快速开发企业网站;\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;2、系统采用JAVA语言开发,使用EhCache缓存技术;\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;3、系统默认采用Mysql轻型数据库,方便快捷,轻松上手;\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;4、系统采用响应式管理后台,满足各类设备随时管理的需要;\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;5、系统支持内容模型、多语言、自定义表单、筛选、多条件搜索、小程序、APP等功能;\r\n</p>\r\n<p>\r\n &nbsp;&nbsp;&nbsp;&nbsp;6、系统支持多种URL模式及模型、栏目、内容自定义地址名称,满足各类网站推广优化的需要。<br/>\r\n</p>\r\n<p>\r\n <br/>\r\n</p>\r\n<p>\r\n <strong><span style=\"font-size: 18px;\">源码托管地址:</span></strong>\r\n</p>\r\n<p>\r\n GitHub:-<br/>\r\n</p>\r\n<p>\r\n Gitee:<a href=\"https://gitee.com/heyewei/JFinalcms\" target=\"_blank\" title=\"https://gitee.com/heyewei/JFinalcms\">https://gitee.com/heyewei/JFinalcms</a>\r\n</p>\r\n<p>\r\n <strong><span style=\"font-size: 18px;\"><br/></span></strong>\r\n</p>\r\n<p>\r\n <strong><span style=\"font-size: 18px;\">简单到想哭的标签:</span></strong>\r\n</p>\r\n<pre class=\"brush:html;toolbar:false\">1、全局标签示意:\r\n#(currentWeb.title) 站点标题 \r\n#(currentWeb.logo) 站点logo\r\n2、内容分页标签示意:\r\n#content_page(pageNumber = 1,pageSize = 8) \r\n#for(content : contentPage.list)\r\n &lt;p&gt;&lt;a href=&quot;#(content.path)&quot;&gt;#(content.title)&lt;/a&gt;&lt;/p&gt;\r\n#end\r\n#end\r\n3、内容页标签示意:\r\n#(content.title) 标题\r\n#(content.subtitle)副标题\r\n#(content.author) 作者\r\n#(content.source) 来源\r\n更多简单到想哭的标签请参考开发手册...</pre>', '107', null, '{}', null, '10');
INSERT INTO `cms_content` VALUES ('114', '2019-12-27 11:15:12', '2019-12-27 11:15:10', '2019-12-27 11:15:07', '1', null, null, null, null, null, null, null, null, null, null, null, '62', null, null, null, null, null, '信息审核专员', null, null, '<p><strong>岗位职责:</strong></p><p>1、根据业务规范对全平台音视图文内容进行审核、筛选及处理;</p><p>2、对平台内容进行监管处理和备案,维持网络秩序;</p><p>3、为用户提供平台业务咨询服务,保障产品活动顺利进行;</p><p>4、受理客户投诉,在授权范围内予以解决;</p><p>5、参与修订审核标准,优化审核流程与规范。</p><p>&nbsp;</p><p><strong>岗位要求:</strong></p><p>1、大专以上学历,专业不限,有视频网站内容审核经验者优先;</p><p>2、熟悉互联网信息安全,有敏感的风险意识,针对突发热点话题具备一定的判断处理能力;</p><p>3、耐心、细致、踏实、严谨,具备高度的责任心和团队合作精神;</p><p>4、有一定沟通协调能力及组织领导力,能够承担一定的压力与挑战。</p><p>说明:上班时间遵从部门内部排班安排,能适应夜班。</p><p>岗位升值空间:组长、主管、平台运营专员、网络推广、音乐编辑…</p><p><br/></p><p><strong>工作地址:</strong>\r\n &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</p><h2>北京市朝阳区</h2><p><br/></p>', '108', null, '{}', null, '10');
INSERT INTO `cms_content` VALUES ('115', '2019-12-27 11:16:02', '2019-12-27 11:15:58', '2019-12-27 11:15:56', '1', null, null, null, null, null, null, null, null, null, null, null, '92', null, null, null, null, null, '平台运营', null, null, '<p><strong><span style=\";font-family:宋体\">岗位职责: </span></strong></p><p>1、 负责平台运营的业务支撑工作,保证平台业务稳定发展;</p><p>2、 参与和优化部门业务操作流程,保证团队协同工作;</p><p>3、 为用户提供平台业务咨询服务;</p><p>4、 受理客户投诉,在授权范围内予以解决;</p><p>5、 网络活动视频录像与剪辑,挖掘优秀作品,后台信息简单编辑处理;</p><p>6、 与公司其他部门配合工作。</p><p><br/></p><p><strong><span style=\";font-family:宋体\">任职要求: </span></strong></p><p>1、 专科及以上学历,热爱互联网行业;</p><p>2、 较强的工作责任心,踏实勤恳,积极向上,性格开朗;</p><p>3、 形象佳,口齿伶俐,普通话标准;</p><p>4、 熟练使用电脑,经常上网,会使用office等相关办公软件;</p><p>5、 能适应白班、夜班倒班工作制;</p><p>注:根据个人能力和特长,公司给予更多的发展及晋升空间。</p><p><br/></p><p><strong>工作地址:</strong>\r\n &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</p><h2>北京市朝阳区北苑路</h2><p><br/></p>', '108', null, '{}', null, '10');
INSERT INTO `cms_content` VALUES ('116', '2019-12-27 11:20:07', '2019-12-28 16:25:54', '2019-12-27 11:20:03', '1', null, null, null, null, null, null, null, null, null, null, null, '92', null, null, null, null, null, '高级Linux运维工程师', null, null, '<p style=\"line-height: 150%\"><strong><span style=\"font-size:16px;line-height: 150%;font-family:宋体\">岗位职责:</span></strong></p><p>1、负责公司服务器基础环境的部署、配置、日常巡检、维护、故障的应急响应和问题处理;</p><p>2、负责公司kvm虚拟化平台的管理工作,基础环境部署,性能容量管理,漏洞扫描、安全加固,保证其稳定、高效运行;</p><p>3、负责维护公司集中监控系统,根据业务需求调整监控策略、告警阀值,处理告警信息和问题跟踪;</p><p>4、编写系统维护文档,完善并更新运维流程文档;</p><p style=\"line-height:150%\"><span style=\"font-size: 16px;line-height:150%\">&nbsp;</span></p><p style=\"line-height:150%\"><strong><span style=\"font-size:16px;line-height:150%;font-family:宋体\">任职要求:</span></strong></p><p>1、计算机等相关专业,本科以上学历,2年以上linux系统管理工作经验,经验丰富可适当放宽学历条件;</p><p>2、熟悉基础网络知识,熟悉TCP/IP协议工作原理,有大流量网站服务器管理经验者优先,熟悉自动化运维工具(三选一puppet/saltstack/ansible)优先;</p><p>3、熟悉linux系统高可用技术和负载均衡技术,熟悉WEB相关技术,包括Apache/Nginx/tomcat/squid 等应用程序的安装、配置和维护;</p><p>4、熟悉服务器硬件,具备排错及故障定位、处理的能力;熟练使用各种工具进行系统状态监控(cacti、Nagios、ganglia等),有虚拟化平台相关经验者优先(vmware/kvm/docker);</p><p>5、有良好的沟通能力和团队合作精神,有强烈的事业心和责任感,工作细心,热爱学习和分享,具有RHCE、RHCA认证者优先;</p><p>6、熟练撑握shell/python/perl等1至2种语言。</p><p><br/></p><p><strong>工作地址:</strong>\r\n &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</p><h2>北京市朝阳区</h2><p><br/></p>', '108', null, '{}', null, '10');
INSERT INTO `cms_content` VALUES ('207', '2020-03-20 11:17:42', '2020-03-20 11:17:44', '2020-03-20 11:17:46', '1', null, null, null, '/static/upload/image/20180524/1527130507157868.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '浅谈采购桥架选择的要点', null, null, '<p><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">  </span><span style=\"margin: 0px; padding: 0px; font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255); color: rgb(51, 127, 229);\"><strong style=\"margin: 0px; padding: 0px;\">1.电缆桥架结构类型选择</strong></span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">  在工程设计文件中通常笼统地将电缆桥架称呼为“桥架”,并未指出具体的结构特征,不同类型、不同制作材料的电缆桥架价格相差较大,且结构类型的混乱会带来工作现场散热、机械防护方面的问题。故在设计阶段应要求设计人员根据工程环境特征和技术要求,合理选择电缆桥架的结构特征,并在平面图的型号标注和材料表中进行清晰地表达。</span><br/><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">  </span><span style=\"margin: 0px; padding: 0px; font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255); color: rgb(51, 127, 229);\"><strong style=\"margin: 0px; padding: 0px;\">2.电缆桥架材质选择</strong></span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">  电缆桥架的材质是电缆桥架工程设计常见的另外一个问题。按照材料划分,电缆桥架主要有钢制、玻璃钢和铝合金几种。玻璃钢电缆桥架的特点是质量轻,比重仅为碳钢的1/4;耐水性和耐腐蚀性好,适合化工厂。不易燃烧,难燃型玻璃钢电缆桥架的氧指数≥32。使用寿命长,一般设计寿命为20年,但价格是钢制电缆桥架的3倍。施工的优越性在于切割方便、组装灵活,安装无需动火,这对于爆炸危险环境并且工程工期紧张的化工厂工程意义尤其重大,因为在爆炸危险环境,工程动火安装时化工厂必须停产,经济效益必受影响。铝合金电缆桥架重量也很轻,由于铝、钢比重不同(Al=2.7,Fe=7.86),按重量计算,铝钢之比约为1:3。铝合金电缆桥架外形尺寸、荷载特性均与钢质桥架基本相近。就费用而言,铝合金桥架的造价比镀锌钢制电缆桥架要高20%,使用寿命是钢制电缆桥架的5倍以上。</span><br/><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">  </span><span style=\"margin: 0px; padding: 0px; font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255); color: rgb(51, 127, 229);\"><strong style=\"margin: 0px; padding: 0px;\">3.电缆桥架表面防腐层类别选择</strong></span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">  工程设计中常见的第三个问题是电缆桥架型号没有标注防腐层的类别,也没有统一的文字说明。此问题在现实中有教训,如我国承担总承包的印尼某工程,钢制电缆桥架的表面防腐处理没有进行盐雾试验,完工不久桥架就锈蚀得相当严重,不得不更换。电缆桥架的表面防腐层类别主要有热浸锌、镀锌镍、冷镀锌、粉末静电喷涂等方式,生产厂家资料显示:热浸锌工艺寿命不小于40年,适用于室外重腐蚀环境,造价高;镀锌镍工艺寿命不小于30年,也适用于室外重腐蚀环境,造价高;冷镀锌工艺寿命不小于12年,适用于室外轻腐蚀环境,造价一般;粉末静电喷涂工艺寿命不小于12年,适用于室内常温干燥环境,价格一般。设计人员应该根据工程环境条件合理选择电缆桥架的表面防腐层类别,并在设计文件中清晰地表达。</span><br/><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">  </span><span style=\"margin: 0px; padding: 0px; font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255); color: rgb(51, 127, 229);\"><strong style=\"margin: 0px; padding: 0px;\">4.电缆桥架防火等级选择</strong></span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">  电缆桥架在有防火要求的区段内,可在电缆梯架、托盘内添加具有耐火或难燃性能的板、网等材料构成封闭或半封闭式结构,并采取在桥架及其支吊架表面涂刷防火涂层等措施,其整体耐火性能应满足国家有关规范或标准的要求。在工程防火要求较高的场所,不宜采用铝合金电缆桥架。</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">  在相同规格下,阻燃型电缆桥架比钢制电缆桥架贵2.2倍,使用寿命是钢制电缆桥架的5倍以上,重量比钢制电缆桥架重30%。防火型电缆桥架比钢制电缆桥架稍贵,使用寿命是钢制电缆桥架的3倍以上,重量与钢制电缆桥架基本相同。</span><br/><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">  </span><span style=\"margin: 0px; padding: 0px; font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255); color: rgb(51, 127, 229);\"><strong style=\"margin: 0px; padding: 0px;\">5.电缆桥架填充率的选择</strong></span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">  电缆梯架、托盘宽度和高度的选择应符合填充率的要求,电缆的梯架和托盘内的填充率在一般情况下,电力电缆可取40%~50%,控制电缆可取50%~70%,且宜预留10%~25%工程发展余量。</span><br/><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">  </span><span style=\"margin: 0px; padding: 0px; font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255); color: rgb(51, 127, 229);\"><strong style=\"margin: 0px; padding: 0px;\">6.电缆桥架载荷等级的选择</strong></span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">  在选择电缆桥架的荷载等级时,电缆桥架的工作均布荷载不应大于所选电缆桥架荷载等级的额定均布荷载,如果电缆桥架的支吊架的实际跨距不等于2m时,则工作均布荷载应满足要求。各种组件及支吊架在满足相应荷载的条件下,其规格尺寸应与托盘、梯架的直线段、弯通系列相匹配。</span><br/><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">  </span><span style=\"margin: 0px; padding: 0px; font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255); color: rgb(51, 127, 229);\"><strong style=\"margin: 0px; padding: 0px;\">7.电缆桥架的规格尺寸选择</strong></span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">  工程实际中,在电缆桥架的规格尺寸选择方面的问题是要么偏大,要么偏紧张。如何合理地选择电缆桥架的规格尺寸呢?《民用建筑电气设计规范》(JGJ16-2008)中8、10、7条规定:“电缆总截面积与托盘内横断面积的比值,电力电缆不应大于40%;控制电缆不应大于50%。”</span><br/><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">  </span><span style=\"margin: 0px; padding: 0px; font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255); color: rgb(51, 127, 229);\"><strong style=\"margin: 0px; padding: 0px;\">8.根据电缆弯曲半径选择电缆桥架</strong></span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">  在选择电缆桥架的弯通或引上、引下装置时,不应小于电缆桥架内电缆最小允许弯曲半径。</span><br/><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">  </span><span style=\"margin: 0px; padding: 0px; font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255); color: rgb(51, 127, 229);\"><strong style=\"margin: 0px; padding: 0px;\">9.材料统计方面的问题</strong></span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">  设计图纸在材料统计方面存在的主要问题:</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">  1)漏项。有的统计托架材料时仅仅统计直通部分,弯通部分不统计;有的材料表干脆没有支吊架一项。对于工程总承包公司而言,漏项带来的后果是在项目报价阶段导致报价偏低,而在项目执行阶段采购部门老是和供货商签订增补合同,从而导致总承包公司利润的降低。</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">  2)错项。原因在于很多设计人员对于一些概念不清,有的把弯通、支吊架算作附件,有的把盖板当成主材。实际上,电缆桥架的“托架”包括直通和弯通两部分。电缆桥架的“附件”包括各种连接板、盖板、隔板、压板、终端板、引下件、紧固件等。附件在材料表中不开列,由供货商随货配套供应,成本打入托架的单价部分,工程中不需要供货商单独报价。而“支吊架”包括托臂、立柱、吊架等,需要单独开列,工程中供货商需要单独报价。</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">  3)统计量偏差大,通常是数量偏少。那么工程报价中如何比较准确地统计电缆桥架的材料呢?一般而言,托架的直通部分可考虑1%~2%的裕量,弯通部分则直接统计数量。桥架全长除以平均立柱间距(户外立柱跨距一般采取6m,室内立柱跨距一般采取3m),得到立柱数,增加2%~4%裕量。而桥架全长除以支吊架平均间距,得到支吊架数,再考虑1%~2%裕量。至于支吊架的间距,户内直线段支吊架间距一般取1.5~3m,垂直安装的支架间距不大于2m。非直线段的支吊架配置应当遵守规范规定:当弯通弯曲半径小于300mm时,应在距非直线段与直线结合处300~600mm的直线段侧设置一个支吊架;当弯通弯曲半径不小于300mm时,除在距非直线段与直线结合处300~600mm的直线段侧设置一个支吊架外,在非直线段中部应增设一个支吊架。</span><br/><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">  </span><span style=\"margin: 0px; padding: 0px; font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255); color: rgb(51, 127, 229);\"><strong style=\"margin: 0px; padding: 0px;\">电缆桥架的选型设计</strong></span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">  1、确定环境条件环境条件一般有三种:腐蚀环境、正常环境、特殊环境。</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">  2、根据多数电缆走向,在室内可沿着、柱、梁、楼板走,在室外尽可能沿工艺管道走。</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">  3、计算荷重计算在电缆桥架走向断面上的单位长度电缆的重量q及总荷载G</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">  G总=n1q1+n2q2……nnqn式中:q1·q2·q3……qn为每根电缆单位重量(kg/m)</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">  n1·n2·n3……nn为相同电缆根数</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">  G总&lt;G允(电缆侨架的允许荷载参照荷载曲线图表)</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">  4、选择桥架根据电缆荷载及桥架安装处的环境,以桥架的载荷曲线为依据,来确定桥架的类型和规格及立柱的间距、托臂的长度、桥架的层次,立柱的长度等。</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">  5、根据电缆走向及安装的环境确定桥架的固定方式;悬挂式、直立式,(这两种形式均可采用单侧固定或双侧固定)、壁侧式等。</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">  6、各种电缆在电缆桥架上的层次安排与层间距离。</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">  电缆桥架层次的排列是:弱电控制电缆在最上层,接着一般控制电缆、低压动力电缆、高压动力电缆依次在下排列:如下表:这样排列有利于屏蔽干扰通风、散热等。</span></p>', '207', null, '{}', null, '11');
INSERT INTO `cms_content` VALUES ('208', '2020-03-20 11:19:01', '2020-03-20 11:19:03', '2020-03-20 11:19:05', '1', null, null, null, '/static/upload/image/20180524/1527130524815864.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '电缆桥架应有防止电缆刮伤的措施', null, null, '<p><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">  电缆桥架应有防止电缆刮伤的措施,如各种弯通、三通、四通等宜采用圆弧型,电缆引下时宜采用引下装置。电缆桥架由室外进入室内时(如变电所)应密封,可采用防火堵料、沙封等。同时电缆桥架应向室外倾斜,一般可1%坡度,以防雨水倒灌。</span><br/><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">  电缆桥架具有机械强度高,它既有金属桥架的刚性又有玻璃钢桥架的韧性,耐腐蚀性能好、抗老化性能强、造型美观、安装方便、使用寿命长。环氧树脂及环氧树脂复合型电缆桥架适合在强腐蚀环境、大跨距、重载荷条件下使用。</span></p>', '206', null, '{}', null, '11');
INSERT INTO `cms_content` VALUES ('209', '2020-03-20 11:20:26', '2020-03-20 11:20:28', '2020-03-20 11:20:30', '1', null, null, null, '/static/upload/image/20180524/1527130541932713.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '电镀锌桥架和热镀锌桥架的区别', null, null, '</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">  (5)钢结构件热镀锌后,相当于一次退火处理,能有效改善钢基体的机械性能,消除钢件成型焊接时的应力,有利于对钢结构件进行车削加工。</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">  (6)热镀锌后的件表面光亮美观。</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">  (7)纯锌层是热镀锌中最富有塑性的一层镀锌层,其性质基本接近于纯锌,具有延展性,所以它富于挠性。</span></p>', '207', null, '{}', null, '11');
INSERT INTO `cms_content` VALUES ('210', '2020-03-20 11:23:05', '2020-03-20 11:23:07', '2020-03-20 11:23:08', '1', null, null, null, '/static/upload/image/20180524/1527130575173851.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '常德水榭花城', null, null, '<p><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">长沙亚特电子科技有限公司是一家主要生产电缆汇线桥架、母线槽、配电箱、高低压配电屏等电器成套的新型高科技企业。联系方式:18075183823</span></p>', '201', null, '{}', null, '11');
INSERT INTO `cms_content` VALUES ('211', '2020-03-20 11:24:50', '2020-03-20 11:24:52', '2020-03-20 11:24:54', '1', null, null, null, '/static/upload/image/20180524/1527130589620332.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '长沙地铁维修总站', null, null, '<p><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">长沙亚特电子科技有限公司是一家主要生产电缆汇线桥架、母线槽、配电箱、高低压配电屏等电器成套的新型高科技企业。联系方式:18075183823</span></p>', '201', null, '{}', null, '11');
INSERT INTO `cms_content` VALUES ('212', '2020-03-20 11:25:47', '2020-03-20 11:25:49', '2020-03-20 11:25:51', '1', null, null, null, '/static/upload/image/20180524/1527130602835217.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '紫金城金色世纪', null, null, '<p><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">长沙亚特电子科技有限公司是一家主要生产电缆汇线桥架、母线槽、配电箱、高低压配电屏等电器成套的新型高科技企业。联系方式:18075183823</span></p>', '201', null, '{}', null, '11');
INSERT INTO `cms_content` VALUES ('213', '2020-03-20 11:28:21', '2020-03-20 11:28:23', '2020-03-20 11:28:24', '1', null, null, null, '/static/upload/image/20180524/1527130613614292.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '常德市人民法院', null, null, '<p><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">长沙亚特电子科技有限公司是一家主要生产电缆汇线桥架、母线槽、配电箱、高低压配电屏等电器成套的新型高科技企业。联系方式:18075183823</span></p>', '201', null, '{}', null, '11');
INSERT INTO `cms_content` VALUES ('214', '2020-03-20 11:29:29', '2020-03-20 11:29:31', '2020-03-20 11:29:33', '1', null, null, null, '/static/upload/image/20180524/1527130631317283.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '金城 2008', null, null, '<p><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">长沙亚特电子科技有限公司是一家主要生产电缆汇线桥架、母线槽、配电箱、高低压配电屏等电器成套的新型高科技企业。联系方式:18075183823</span></p>', '201', null, '{}', null, '11');
INSERT INTO `cms_content` VALUES ('215', '2020-03-20 11:31:18', '2020-03-20 11:31:21', '2020-03-20 11:31:23', null, null, null, null, '/static/upload/image/20180524/1527130643429592.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '常德市公安局', null, null, '<p><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">长沙亚特电子科技有限公司是一家主要生产电缆汇线桥架、母线槽、配电箱、高低压配电屏等电器成套的新型高科技企业。联系方式:18075183823</span></p>', '201', null, '{}', null, '11');
INSERT INTO `cms_content` VALUES ('216', '2020-03-20 11:34:21', '2020-03-20 11:34:23', '2020-03-20 11:34:25', '1', null, null, null, '/static/upload/image/20180524/1527130660873408.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '这是邵东国际商贸城', null, null, '<p><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">长沙亚特电子科技有限公司是一家主要生产电缆汇线桥架、母线槽、配电箱、高低压配电屏等电器成套的新型高科技企业。联系方式:18075183823</span></p>', '201', null, '{}', null, '11');
INSERT INTO `cms_content` VALUES ('217', '2020-03-20 11:34:57', '2020-03-20 11:34:59', '2020-03-20 11:35:01', '1', null, null, null, '/static/upload/image/20180524/1527130673538702.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '这是邵东国际商贸城', null, null, '<p><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">长沙亚特电子科技有限公司是一家主要生产电缆汇线桥架、母线槽、配电箱、高低压配电屏等电器成套的新型高科技企业。联系方式:18075183823</span></p>', '201', null, '{}', null, '11');
INSERT INTO `cms_content` VALUES ('218', '2020-03-20 13:35:16', '2020-03-20 13:35:19', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180524/1527130702564329.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '电缆桥架', null, null, '<p><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">长沙亚特电子科技有限公司是一家主要生产电缆汇线桥架、母线槽、配电箱、高低压配电屏等电器成套的新型高科技企业。联系方式:18075183823</span></p>', '213', null, '{}', null, '11');
INSERT INTO `cms_content` VALUES ('219', '2020-03-20 13:35:22', '2020-03-20 13:35:24', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180524/1527130718771247.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '电缆桥架', null, null, '<p><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">长沙亚特电子科技有限公司是一家主要生产电缆汇线桥架、母线槽、配电箱、高低压配电屏等电器成套的新型高科技企业。联系方式:18075183823</span></p>', '213', null, '{}', null, '11');
INSERT INTO `cms_content` VALUES ('220', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180524/1527130733759207.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '电缆桥架', null, null, '<p><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">长沙亚特电子科技有限公司是一家主要生产电缆汇线桥架、母线槽、配电箱、高低压配电屏等电器成套的新型高科技企业。联系方式:18075183823</span></p>', '213', null, '{}', null, '11');
INSERT INTO `cms_content` VALUES ('221', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180524/1527130748898769.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '电缆桥架', null, null, '<p><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">长沙亚特电子科技有限公司是一家主要生产电缆汇线桥架、母线槽、配电箱、高低压配电屏等电器成套的新型高科技企业。联系方式:18075183823</span></p>', '213', null, '{}', null, '11');
INSERT INTO `cms_content` VALUES ('222', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180524/1527130763248450.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '电缆桥架', null, null, '<p><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">长沙亚特电子科技有限公司是一家主要生产电缆汇线桥架、母线槽、配电箱、高低压配电屏等电器成套的新型高科技企业。联系方式:18075183823</span></p>', '213', null, '{}', null, '11');
INSERT INTO `cms_content` VALUES ('223', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180524/1527130774997386.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '电缆桥架', null, null, '<p><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">长沙亚特电子科技有限公司是一家主要生产电缆汇线桥架、母线槽、配电箱、高低压配电屏等电器成套的新型高科技企业。联系方式:18075183823</span></p>', '213', null, '{}', null, '11');
INSERT INTO `cms_content` VALUES ('224', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180524/1527130809134757.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '电缆桥架', null, null, '<p><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">长沙亚特电子科技有限公司是一家主要生产电缆汇线桥架、母线槽、配电箱、高低压配电屏等电器成套的新型高科技企业。联系方式:18075183823</span></p>', '213', null, '{}', null, '11');
INSERT INTO `cms_content` VALUES ('225', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180524/1527130829100246.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '玻璃钢桥架', null, null, '<p><span style=\"color: rgb(102, 102, 102); font-family: &quot;Microsoft Yahei&quot;, Arial; font-size: 14px; text-align: justify; background-color: rgb(255, 255, 255);\">长沙亚特电子科技有限公司是一家主要生产电缆汇线桥架、母线槽、配电箱、高低压配电屏等电器成套的新型高科技企业。联系方式:18075183823</span></p>', '213', null, '{}', null, '11');
INSERT INTO `cms_content` VALUES ('303', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180529/1527573682873322.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '企鹅漫步', null, null, '<p><span style=\"color: rgb(61, 61, 61); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; line-height: 28px; background-color: rgb(255, 255, 255);\">湖南君辉文化传播有限公司是拥有丰富的培训师资和课程设计实施经验,全国累计培训服务过企业已突破万家,成为国内培训总人数最多的体验式培训机构之一。致力于为各类组织提供全面的体验式培训解决方案。联系电话:18182121368</span></p>', '300', null, '{}', null, '12');
INSERT INTO `cms_content` VALUES ('304', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180529/1527573697221925.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '众星捧月', null, null, '<p><span style=\"color: rgb(61, 61, 61); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; line-height: 28px; background-color: rgb(255, 255, 255);\">湖南君辉文化传播有限公司是拥有丰富的培训师资和课程设计实施经验,全国累计培训服务过企业已突破万家,成为国内培训总人数最多的体验式培训机构之一。致力于为各类组织提供全面的体验式培训解决方案。联系电话:18182121368</span></p>', '300', null, '{}', null, '12');
INSERT INTO `cms_content` VALUES ('305', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180529/1527573717617645.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '充气攀岩', null, null, '湖南君辉文化传播有限公司是拥有丰富的培训师资和课程设计实施经验,全国累计培训服务过企业已突破万家,成为国内培训总人数最多的体验式培训机构之一。致力于为各类组织提供全面的体验式培训解决方案。联系电话:18182121368', '300', null, '{}', null, '12');
INSERT INTO `cms_content` VALUES ('306', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180529/1527573733196397.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '充气汉诺塔', null, null, '<p><span style=\"color: rgb(61, 61, 61); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; line-height: 28px; background-color: rgb(255, 255, 255);\">湖南君辉文化传播有限公司是拥有丰富的培训师资和课程设计实施经验,全国累计培训服务过企业已突破万家,成为国内培训总人数最多的体验式培训机构之一。致力于为各类组织提供全面的体验式培训解决方案。联系电话:18182121368</span></p>', '300', null, '{}', null, '12');
INSERT INTO `cms_content` VALUES ('307', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180529/1527573749440612.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '八仙过海', null, null, '<p><span style=\"color: rgb(61, 61, 61); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; line-height: 28px; background-color: rgb(255, 255, 255);\">湖南君辉文化传播有限公司是拥有丰富的培训师资和课程设计实施经验,全国累计培训服务过企业已突破万家,成为国内培训总人数最多的体验式培训机构之一。致力于为各类组织提供全面的体验式培训解决方案。联系电话:18182121368</span></p>', '300', null, '{}', null, '12');
INSERT INTO `cms_content` VALUES ('308', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180529/1527573765791698.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '动感五环', null, null, '<p><span style=\"color: rgb(61, 61, 61); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; line-height: 28px; background-color: rgb(255, 255, 255);\">湖南君辉文化传播有限公司是拥有丰富的培训师资和课程设计实施经验,全国累计培训服务过企业已突破万家,成为国内培训总人数最多的体验式培训机构之一。致力于为各类组织提供全面的体验式培训解决方案。联系电话:18182121368</span></p>', '300', null, '{}', null, '12');
INSERT INTO `cms_content` VALUES ('309', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180529/1527573779671151.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '十人九足', null, null, '<p><span style=\"color: rgb(61, 61, 61); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; line-height: 28px; background-color: rgb(255, 255, 255);\">湖南君辉文化传播有限公司是拥有丰富的培训师资和课程设计实施经验,全国累计培训服务过企业已突破万家,成为国内培训总人数最多的体验式培训机构之一。致力于为各类组织提供全面的体验式培训解决方案。联系电话:18182121368</span></p>', '300', null, '{}', null, '12');
INSERT INTO `cms_content` VALUES ('310', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180529/1527573804246318.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '呼啦圈竞走', null, null, '<p><span style=\"color: rgb(61, 61, 61); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; line-height: 28px; background-color: rgb(255, 255, 255);\">湖南君辉文化传播有限公司是拥有丰富的培训师资和课程设计实施经验,全国累计培训服务过企业已突破万家,成为国内培训总人数最多的体验式培训机构之一。致力于为各类组织提供全面的体验式培训解决方案。联系电话:18182121368</span></p>', '300', null, '{}', null, '12');
INSERT INTO `cms_content` VALUES ('311', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180529/1527573983647876.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '企业军训', null, null, '', '301', null, '{}', null, '12');
INSERT INTO `cms_content` VALUES ('312', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180529/1527573994266676.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '企业军训', null, null, '', '301', null, '{}', null, '12');
INSERT INTO `cms_content` VALUES ('313', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180529/1527574008338929.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '企业军训', null, null, '', '301', null, '{}', null, '12');
INSERT INTO `cms_content` VALUES ('314', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180529/1527574020792677.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '企业军训', null, null, '', '301', null, '{}', null, '12');
INSERT INTO `cms_content` VALUES ('315', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180529/1527574033588620.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '企业军训', null, null, '', '301', null, '{}', null, '12');
INSERT INTO `cms_content` VALUES ('316', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180529/1527574044820307.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '企业军训', null, null, '', '301', null, '{}', null, '12');
INSERT INTO `cms_content` VALUES ('317', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180529/1527574066695883.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '魔鬼训练营', null, null, '', '301', null, '{}', null, '12');
INSERT INTO `cms_content` VALUES ('318', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180529/1527574075323538.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '魔鬼训练营', null, null, '', '301', null, '{}', null, '12');
INSERT INTO `cms_content` VALUES ('319', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180529/1527574103347009.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '丹霞湖', null, null, '<p><span style=\"color: rgb(61, 61, 61); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; line-height: 28px; background-color: rgb(255, 255, 255);\">湖南君辉文化传播有限公司是拥有丰富的培训师资和课程设计实施经验,全国累计培训服务过企业已突破万家,成为国内培训总人数最多的体验式培训机构之一。致力于为各类组织提供全面的体验式培训解决方案。联系电话:18182121368</span></p>', '302', null, '{}', null, '12');
INSERT INTO `cms_content` VALUES ('320', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180529/1527574114691030.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '千龙湖度假村', null, null, '<p><span style=\"color: rgb(61, 61, 61); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; line-height: 28px; background-color: rgb(255, 255, 255);\">湖南君辉文化传播有限公司是拥有丰富的培训师资和课程设计实施经验,全国累计培训服务过企业已突破万家,成为国内培训总人数最多的体验式培训机构之一。致力于为各类组织提供全面的体验式培训解决方案。联系电话:18182121368</span></p>', '302', null, '{}', null, '12');
INSERT INTO `cms_content` VALUES ('321', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180529/1527574144482621.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '华瑞生态农庄', null, null, '<p><span style=\"color: rgb(61, 61, 61); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; line-height: 28px; background-color: rgb(255, 255, 255);\">湖南君辉文化传播有限公司是拥有丰富的培训师资和课程设计实施经验,全国累计培训服务过企业已突破万家,成为国内培训总人数最多的体验式培训机构之一。致力于为各类组织提供全面的体验式培训解决方案。联系电话:18182121368</span></p>', '302', null, '{}', null, '12');
INSERT INTO `cms_content` VALUES ('322', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180529/1527574159579492.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '大围山', null, null, '<p><span style=\"color: rgb(61, 61, 61); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; line-height: 28px; background-color: rgb(255, 255, 255);\">湖南君辉文化传播有限公司是拥有丰富的培训师资和课程设计实施经验,全国累计培训服务过企业已突破万家,成为国内培训总人数最多的体验式培训机构之一。致力于为各类组织提供全面的体验式培训解决方案。联系电话:18182121368</span></p>', '302', null, '{}', null, '12');
INSERT INTO `cms_content` VALUES ('323', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180529/1527574182735743.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '大明山庄', null, null, '<p><span style=\"color: rgb(61, 61, 61); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; line-height: 28px; background-color: rgb(255, 255, 255);\">湖南君辉文化传播有限公司是拥有丰富的培训师资和课程设计实施经验,全国累计培训服务过企业已突破万家,成为国内培训总人数最多的体验式培训机构之一。致力于为各类组织提供全面的体验式培训解决方案。联系电话:18182121368</span></p>', '302', null, '{}', null, '12');
INSERT INTO `cms_content` VALUES ('324', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '', null, null, null, null, null, null, null, '0', null, null, null, null, null, '军事拓展训练增强孩子与人沟通、团队协作能力', null, null, '<p><span style=\"color: rgb(51, 51, 51); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; line-height: 32px; background-color: rgb(255, 255, 255);\">  00后多是独生子女,在多个大人的呵护下长大。从而导致他们身上常出现自我、自私等通病,与人交流、沟通、协作的能力非常薄弱。给孩子报名参加 武汉拓展训练“少年军校”家长中,不少家长就提到了孩子存在这方面问题,希望在军校的集体生活,能让孩子在这方面的缺点得到改善,能力得到提高。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; line-height: 32px; background-color: rgb(255, 255, 255);\">  “娃娃不喜欢其他小朋友一起玩,总是喜欢一个人呆着。”给孩子报名参加了少年军校的刘女士说,孩子总是不太合群,因为在和其他孩子一起游戏、共 同完成某项任务时,他不知道该怎么办,也不知道自己该做什么,很多时候在游离在团队外面,久而久之,他就开始畏惧和其他小朋友一起。另一位给孩子报了名的 家长张先生说,男孩什么都好,就是有一点让家人头痛—内向。12岁了,总是不肯主动跟人打个招呼,就算有人跟他说话,他也话不多,一副胆怯的模样,所以连朋友都很少。</span></p>', '304', null, '{}', null, '12');
INSERT INTO `cms_content` VALUES ('325', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '', null, null, null, null, null, null, null, '0', null, null, null, null, null, '军事拓展训练营', null, null, '<p><span style=\"color: rgb(51, 51, 51); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; line-height: 32px; background-color: rgb(255, 255, 255);\">有人说 我们很勇敢,</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; line-height: 32px; background-color: rgb(255, 255, 255);\">  有人说 我们很无聊。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; line-height: 32px; background-color: rgb(255, 255, 255);\">  也有人说 我们是一群疯子,</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; line-height: 32px; background-color: rgb(255, 255, 255);\">  但是 有一种生活 你没有经历过不知道其中的艰辛。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; line-height: 32px; background-color: rgb(255, 255, 255);\">  有一种艰辛 你没有体会过不知道其中的快乐,</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; line-height: 32px; background-color: rgb(255, 255, 255);\">  有一种快乐 你没有拥有过不知道其中的纯粹。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; line-height: 32px; background-color: rgb(255, 255, 255);\">  那是汗水和泪水交织的日子,</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; line-height: 32px; background-color: rgb(255, 255, 255);\">  那是激情燃烧的岁月。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; line-height: 32px; background-color: rgb(255, 255, 255);\">  我们来自军事拓展训练营</span></p>', '304', null, '{}', null, '12');
INSERT INTO `cms_content` VALUES ('326', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '', null, null, null, null, null, null, null, '0', null, null, null, null, null, '拓展训练打造高绩效团队', null, null, '<p><span style=\"color: rgb(51, 51, 51); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; line-height: 32px; background-color: rgb(255, 255, 255);\">  为了提升团队的沟通协作能力、团队凝聚力,打造高绩效团队,同时提高团队中队员间的信任程度,使我们的企业员工更好的完成团队目标。公司举行了一次户外拓展训练,主办方是武汉拓展训练公司。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; line-height: 32px; background-color: rgb(255, 255, 255);\">  在教练的指导下分成了三个小队,每一个小队都必须有自己的队长,队旗,队徽,队名,口号,以及队歌。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; line-height: 32px; background-color: rgb(255, 255, 255);\">  达芬奇密码,需要我们每个小队所有队员在教练规定的时间内把它破解出来,当然咯,一个人的脑力是有限的,所以这个项目考验的是我们整个团队的组 织、执行以及合作能力;需要我们所有人共同去分工配合做到高的效率去完成任务。项目一开始,我们的队员就已经开始拿的拿手机拍照,拿的拿笔跟纸做记号, 一个个热火朝天的赶紧讨论起来,能不能做到高效率,这就得看我们的队长怎么分配工作啦。</span></p>', '304', null, '{}', null, '12');
INSERT INTO `cms_content` VALUES ('327', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '', null, null, null, null, null, null, null, '0', null, null, null, null, null, '拓展训练的显著特点', null, null, '<p><span style=\"color: rgb(51, 51, 51); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; line-height: 32px; background-color: rgb(255, 255, 255);\">  1、 综合活动性。拓展训练的所有项目都以体能活动为引导,引发出认知活动、情感活动、意志活动和交往活动,有明确的操作过程,要求学员全身心的投入。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; line-height: 32px; background-color: rgb(255, 255, 255);\">  2、 挑战极限。拓展训练的项目都具有一定的难度,表现在心理考验上,需要学员向自己的能力极限挑战,跨越“极限”。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; line-height: 32px; background-color: rgb(255, 255, 255);\">  3、 集体中的个性。拓展训练实行分组活动,强调集体合作。力图使每一名学员竭尽全力为集体争取荣誉,同时从集体中吸取巨大的力量和信心,在集体中显示个性。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; line-height: 32px; background-color: rgb(255, 255, 255);\">  4、 高峰体验。在克服困难,顺利完成课程要求以后,学员能够体会到发自内心的胜利感和自豪感,获得人生难得的高峰体验。</span></p>', '304', null, '{}', null, '12');
INSERT INTO `cms_content` VALUES ('405', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180528/1527484480939769.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '祛痘无痕精华液产品原理', null, null, '<p><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\">  宜草慕肤祛痘无痕精华液,提取草本精华,纯植物提炼,亲肤无刺激!</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\">  </span><br/><img src=\"http://web.hnjing.cn/Content/UploadFiles/image/20160805/20160805114233_7330.jpg\"/><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\">  </span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\">  </span><span style=\"margin: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px;\">功效:</span><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\">&nbsp;  </span><br/><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\">  </span><span style=\"margin: 0px; padding: 0px; font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; color: rgb(0, 102, 0);\"><strong style=\"margin: 0px; padding: 0px;\">1、保湿锁水&nbsp; 清爽舒适</strong></span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\">  </span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\">  触感柔滑,清爽不油腻,与肌肤迅速融合,令肌肤恢复健康状态,高纯透明质酸让肌肤莹润有光泽,滋养肌肤的同时可有效地提升肌肤细胞的锁水功能,帮助肌肤吸收水分及长时间保湿,使肌肤获得全天候的保护与滋养,让您倍感水润舒适。</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\">  </span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\">  </span><strong style=\"margin: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; white-space: normal;\"><span style=\"margin: 0px; padding: 0px; color: rgb(0, 102, 0);\">2、中药精华&nbsp; 痕迹去无踪</span></strong><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\">  </span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\">  精选多种中药疤痕修复植物精华,对创口起到隔离保护,防止创口反复感染、长期创面外露,肉芽组织过度增生,形成增生性疤痕或疤痕疙瘩,改善青春痘和痘印,让肌肤回复健康状态,平滑细致。</span></p>', '408', null, '{}', null, '13');
INSERT INTO `cms_content` VALUES ('406', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180528/1527484496372600.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '宜草慕肤清爽控油洁面乳深层控油', null, null, '<p><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\">  宜草慕肤清爽控油洁面乳深层控油,给你清爽光滑的肌肤!</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\">  </span><br/><img src=\"http://web.hnjing.cn/Content/UploadFiles/image/20160805/20160805114411_0616.jpg\"/><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\">  </span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\">  功效:</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\">  </span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\">  </span><strong style=\"margin: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; white-space: normal;\"><span style=\"margin: 0px; padding: 0px; color: rgb(0, 102, 0);\">1、深层清洁 清新舒爽</span></strong><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\">  </span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\">  清爽控油配方,质地温和的细白泡沫,能产生极佳的清洁卸妆效果,彻底清除面部残妆及堵塞毛孔的污垢油垢等有害物质,畅通毛孔呼吸,清新舒爽,无紧绷感;</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\">  </span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\">  </span><strong style=\"margin: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; white-space: normal;\"><span style=\"margin: 0px; padding: 0px; color: rgb(0, 102, 0);\">2、清除角质 抚平粗糙</span></strong><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\">  </span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\">  含北美金缕梅提取物可以调节皮脂分泌,清除废旧角质,抚平粗糙,展现细滑肌肤。</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\">  </span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\">  </span><strong style=\"margin: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; white-space: normal;\"><span style=\"margin: 0px; padding: 0px; color: rgb(0, 102, 0);\">3、中药精华&nbsp; 抑痘除痘</span></strong><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\">  </span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\">  精选多种中药祛痘植物精华,温和无刺激,抑制痤疮杆菌的滋生,改善青春痘,让肌肤回复健康状态,平滑细致。</span></p>', '408', null, '{}', null, '13');
INSERT INTO `cms_content` VALUES ('407', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180528/1527484518280106.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '宜草慕肤教你如何在线购买', null, null, '<p><img src=\"http://web.hnjing.cn/Content/UploadFiles/image/20160805/20160805114106_2637.jpg\"/><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\">  </span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\">  为方便您直接在线购买,给您介绍以下通道:</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\">  </span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\">  1.天猫:点击进入天猫店铺</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\">  </span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\">  2.京东:京东店铺尚在装修,敬请期待哦</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\">  </span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\">  3.关注微信公众号:沛诚生物护肤</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\">  </span><br/><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\">  扫扫访问微商城</span></p>', '409', null, '{}', null, '13');
INSERT INTO `cms_content` VALUES ('408', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180528/1527484577668402.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '较美1号', null, null, '<p><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\">湖南省沛诚生物科技有限公司是一家集化妆品研发与销售于一体的公司,采用线上多重推广及线下门店销售的运营模式,致力于打造高品质的护肤精品。电话:0731-85789659</span></p>', '403', null, '{}', null, '13');
INSERT INTO `cms_content` VALUES ('409', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180528/1527484589917647.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '较美2号', null, null, '', '403', null, '{}', null, '13');
INSERT INTO `cms_content` VALUES ('410', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180528/1527484601358853.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '使用产品前', null, null, '', '403', null, '{}', null, '13');
INSERT INTO `cms_content` VALUES ('411', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180528/1527484612267717.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '使用产品后', null, null, '', '403', null, '{}', null, '13');
INSERT INTO `cms_content` VALUES ('412', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180528/1527484695400082.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '祛痘无痕精华液', null, null, '<p><span style=\"color: rgb(102, 102, 102); font-family: &quot;microsoft YaHei UI&quot;; font-size: 14px; background-color: rgb(255, 255, 255);\">湖南省沛诚生物科技有限公司是一家集化妆品研发与销售于一体的公司,采用线上多重推广及线下门店销售的运营模式,致力于打造高品质的护肤精品。电话:0731-85789659</span></p>', '410', null, '{}', null, '13');
INSERT INTO `cms_content` VALUES ('413', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180528/1527484769638051.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '祛痘无痕精华液', null, null, '', '410', null, '{}', null, '13');
INSERT INTO `cms_content` VALUES ('414', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180528/1527484784743958.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '祛痘无痕修复凝胶(1)', null, null, '', '410', null, '{}', null, '13');
INSERT INTO `cms_content` VALUES ('415', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180528/1527484795581567.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '祛痘无痕精华液(1)', null, null, '', '410', null, '{}', null, '13');
INSERT INTO `cms_content` VALUES ('503', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180603/1528038279364738.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '厂房拆除', null, null, '', '507', null, '{}', null, '14');
INSERT INTO `cms_content` VALUES ('504', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180603/1528038291743073.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '厂房拆除', null, null, '', '507', null, '{}', null, '14');
INSERT INTO `cms_content` VALUES ('505', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180603/1528038305296870.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '房屋拆除', null, null, '', '507', null, '{}', null, '14');
INSERT INTO `cms_content` VALUES ('506', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180603/1528038318638424.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '房屋拆除', null, null, '', '507', null, '{}', null, '14');
INSERT INTO `cms_content` VALUES ('507', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180603/1528038330651228.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '打地板', null, null, '', '508', null, '{}', null, '14');
INSERT INTO `cms_content` VALUES ('508', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180603/1528038380268423.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '室内拆除', null, null, '', '508', null, '{}', null, '14');
INSERT INTO `cms_content` VALUES ('509', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180603/1528038391605485.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '室内拆除', null, null, '', '508', null, '{}', null, '14');
INSERT INTO `cms_content` VALUES ('510', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180603/1528038411177952.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '室内钻孔', null, null, '', '509', null, '{}', null, '14');
INSERT INTO `cms_content` VALUES ('511', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180603/1528038446348452.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '外墙粉刷', null, null, '', '514', null, '{}', null, '14');
INSERT INTO `cms_content` VALUES ('512', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180603/1528038471200911.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '钻孔打孔', null, null, '', '513', null, '{}', null, '14');
INSERT INTO `cms_content` VALUES ('513', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180603/1528038487404272.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '室内粉刷', null, null, '', '514', null, '{}', null, '14');
INSERT INTO `cms_content` VALUES ('514', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180603/1528038511740823.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '电线安装', null, null, '', '516', null, '{}', null, '14');
INSERT INTO `cms_content` VALUES ('515', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180603/1528038535762032.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '户外钻孔', null, null, '', '513', null, '{}', null, '14');
INSERT INTO `cms_content` VALUES ('516', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180603/1528038550441678.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '户外钻孔', null, null, '', '513', null, '{}', null, '14');
INSERT INTO `cms_content` VALUES ('517', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180603/1528038564489840.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '粉刷墙壁', null, null, '', '514', null, '{}', null, '14');
INSERT INTO `cms_content` VALUES ('518', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '', null, null, null, null, null, null, null, '0', null, null, null, null, null, '拆除工程施工方案', null, null, '<p><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">  </span><strong style=\"margin: 0px; padding: 0px; transition: all 300ms ease; color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"margin: 0px; padding: 0px; transition: all 300ms ease; color: rgb(229, 102, 0);\">一、施工准备</span></strong><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">  1了解拆除工程的图纸和资料。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">  2制定安全事故应急救援预案。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">  3对拆除施工人员进行安全技术交底。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">  4为拆除作业的作业办理意外伤害保险,为拆除作业人员准备齐全安全防护用品。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">  5拆除工程施工区域应设置硬质封闭围挡及醒目警示标志,围挡高度不应低于1.8M,非施工人员不得进入施工区。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">  6做好影响拆除工程安全施工的各种管线的切断、迁移工作。当建筑外测有架空线路或电缆线路时,应与有关部门取得联系,采取防护措施,确认安全后方可施工。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">  7当拆除工程对周围相邻建筑安全可能产生危险时,要采取相应保护措施,对建筑内的人员进行撤离安置。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">  8在拆除作业前,施工单位应检查建筑内各类管线情况,确认全部切断后方可施工。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">  9项目经理要对拆除工程的安全生产负全面领导责任。项目经理部应安有关规定设专职安全员,检查落实各项安全技术措施。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">  10根据拆除工程施工现场作业环境,应制定相应的消防安全措施。施工现场应设置消防车通道,保证充足的消防水源,配备足够的灭火器材。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">  </span><strong style=\"margin: 0px; padding: 0px; transition: all 300ms ease; color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"margin: 0px; padding: 0px; transition: all 300ms ease; color: rgb(229, 102, 0);\">二、施工方案及措施</span></strong><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">  1做好墙体拆除工程施工现场的围护。在拆除工程施工现场醒目位置设置施工标志牌、安全警示标志牌,采取可靠防护措施,实行封闭施工。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">  2严格按国家强制性标准、施工组织设计或拆除方案实施拆除施工作业。拆除前,应先切断电源,并关闭天然气。人工拆除通常应按自上而下、对称顺序进行,不得垂直交叉作业。作业面的孔洞应封闭。当拆除一部分时,应先采取加固措施,防止另一部分倒塌。拆除工程施工作业人员要正确穿戴安全帽等劳动保护用品,高处作业应系好安全带,不得冒险作业。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">  3在拆除施工作业过程中,如发现不明电线(缆)、管道等应停止施工,采取必要的应急措施,经处理后方可施工。如发现有害气体外溢、淹埋或人员伤亡事故,要及时向有关部门报告。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">  4进行拆除作业时,楼板上严禁人员聚集或堆放材料,作业人员应站在稳定的结构 或脚手架上操作,被拆除的构件应有安全的放置场所。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">  5人工拆除建筑墙体时,严禁采用掏掘或推倒的方法。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">  6拆除时对拆除物应采取有效的下落控制措施。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">  7拆除管道时,要在查清残留物的性质,并采取相应措施确保安全后,方可进行施工。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">  8制定安全技术管理建立安全技术档案。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">  9清运渣土的车辆应封闭或覆盖,出入现场时应有专人指挥。清运渣土的作业时间应遵守工程所在地的有关规定。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">  10拆除工程施工时,应有防止扬尘和降低噪声的措施。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">  11拆除工程完工后,应及时将渣土清运出场。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">  </span><strong style=\"margin: 0px; padding: 0px; transition: all 300ms ease; color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"margin: 0px; padding: 0px; transition: all 300ms ease; color: rgb(229, 102, 0);\">三、安全管理措施</span></strong></p>', '504', null, '{}', null, '14');
INSERT INTO `cms_content` VALUES ('519', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '', null, null, null, null, null, null, null, '0', null, null, null, null, null, '房屋拆除合同注意事项', null, null, '<p><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\"> 在城市的改造建设中,很容易遇到房屋拆除的问题,而这里,就会面对很多的问题,如拆除后补偿、安置等多种的问题,而这里,房屋拆除合同的签订十分的重要,如果稍不注意,可能就落入一些不良人士的陷井中,到时房屋拆,补偿又不来,很难再处理,因此,在进行房屋拆除合同的签订时,一定要多加注意,下面我们来了解下吧。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">  </span><strong style=\"margin: 0px; padding: 0px; transition: all 300ms ease; color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"margin: 0px; padding: 0px; transition: all 300ms ease; color: rgb(229, 102, 0);\">房屋拆除合同注意事项:</span></strong><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">  1、拆迁人与被拆迁人拆迁人拆迁人的名称、工商营业执照、税务证及其他法定资质证书,该拆迁项目的房屋拆迁许可证、建设项目批准文件、建设用地规划许可证、土地使用权批准文件等;被拆迁人被拆迁的房产产权证书、未取得产权证书的要提供建设规划许可证或当地建设管理部门、土管部门出具的证明材料、居委会(村委会)出具的证明材料,身份证明,户口本,受委托的应有委托人的公证委托书等。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">  2、征收补偿方式对拆迁补偿的标准无异议后拆迁人可以一次性向被征收人选择货币补偿,被征收人也可以选择房屋回迁,若协议回迁的要注明回迁的面积、楼层、及其他事项。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">  3、协调异议在确定征收范围后,被拆迁人不得在房屋征收范围内实施新建、扩建、改建房屋和改变房屋用途等不当增加补偿费用的行为;被拆迁征收人若对拆迁补偿协议有异议协商不</span></p>', '504', null, '{}', null, '14');
INSERT INTO `cms_content` VALUES ('520', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '', null, null, null, null, null, null, null, '0', null, null, null, null, null, '建筑拆除的一般规定', null, null, '<p><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">  ⑴建筑拆除施工应经有关部门审批,要由有拆除资质的施工队伍进行。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">  ⑵建设单位应提供被拆除建筑的详细图纸和相关资料,包括原施工过程中的设计变更及使用过程中的改建等全部资料。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">  ⑶施工单位应对作业区进行勘测调查,评估拆除过程中对相邻环境可能造成的影响,并选择安全的拆除方法。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">  ⑷建筑拆除施工要编制专项施工组织设计,其内容应包括下列各项:</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">  ①对作业区环境包括周围建筑、道路、管线、架空线路等,准备采取的措施说明;</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">  ②被拆除建筑的高度、结构类型以及结构受力简图;</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">  ③拆除方法设计及其安全措施;</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">  ④垃圾、废弃物的处理;</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">  ⑤采取减少对环境影响的措施,包括噪声、粉尘、水污染等;</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">  ⑥人员、设备、材料计划;</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">  ⑦施工总平面布置图。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">  ⑸建筑拆除施工前,要将通入该建筑的各种管道及电气线路切断。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">  ⑹建筑拆除作业区应设置围栏、警告标志,并设专人监护。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; font-size: 14px; background-color: rgb(255, 255, 255);\">  ⑺建筑拆除作业要有统一指挥人员,施工前应向全体作业人员按施工组织设计规定,进行岗位分工和岗位交底,使全体人员都清楚作业要求。</span></p>', '504', null, '{}', null, '14');
INSERT INTO `cms_content` VALUES ('603', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180603/1527995593633734.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '广场工程', null, null, '<p>长沙市绿轩园林绿化服务有限公司是一家专业从事园林绿化工程施工、绿化养护、绿化劳务清包、劳务输出并承接私家庭院、小区、企业厂区与政府机关的绿化养护(除草,病虫害防治,施肥,浇水及修剪造型等)。电话:15573172667</p>', '611', null, '{}', null, '15');
INSERT INTO `cms_content` VALUES ('604', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180603/1527995612689763.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '广场工程', null, null, '', '611', null, '{}', null, '15');
INSERT INTO `cms_content` VALUES ('605', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180603/1527995625873129.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '广场工程', null, null, '', '611', null, '{}', null, '15');
INSERT INTO `cms_content` VALUES ('606', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180603/1527995634846956.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '广场工程', null, null, '', '611', null, '{}', null, '15');
INSERT INTO `cms_content` VALUES ('607', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180603/1527995653361596.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '广场工程', null, null, '', '611', null, '{}', null, '15');
INSERT INTO `cms_content` VALUES ('608', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180603/1527995665897288.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '小区工程', null, null, '', '612', null, '{}', null, '15');
INSERT INTO `cms_content` VALUES ('609', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180603/1527995699619900.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '灌溉有哪些技术', null, null, '<p><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial;\">  灌溉技术大概可以分为一下几类:</span><br/><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial;\"> </span><strong style=\"margin: 0px; padding: 0px; transition: all 300ms ease; color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; white-space: normal;\"><span style=\"margin: 0px; padding: 0px; transition: all 300ms ease; color: rgb(0, 153, 0);\"> ① 漫灌。</span></strong><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial;\">漫灌是传统的灌溉方式。常要挖沟渠,以前用人工,后来用牲畜、拖拉机,植物在畦和陇沟中排成行或在苗床上生长,水沿着渠道进入农田,顺着陇沟或苗床边沿流入。也可以在田中用硬塑料管或铝管引水,在管上间隔距离开孔灌溉,用虹吸管连接渠道。</span><br/><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial;\"> </span><strong style=\"margin: 0px; padding: 0px; transition: all 300ms ease; color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; white-space: normal;\"><span style=\"margin: 0px; padding: 0px; transition: all 300ms ease; color: rgb(0, 153, 0);\"> ② 喷灌。</span></strong><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial;\">喷灌是由管道将水送到位于田地中的喷头中喷出,有高压和低压的区别,也可以分为固定式和移动式。固定式喷头安装在固定的地方,有的喷头安装在地表面高度,主要用于需要美观的地方,如高尔夫球场、跑马场草地灌溉、公园、墓地等</span><br/><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial;\">  </span><strong style=\"margin: 0px; padding: 0px; transition: all 300ms ease; color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; white-space: normal;\"><span style=\"margin: 0px; padding: 0px; transition: all 300ms ease; color: rgb(0, 153, 0);\">③ 微喷。</span></strong><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial;\">微喷灌是利用折射、旋转、或辐射式微型喷头将水均匀地喷洒到作物枝叶等区域的灌水形式,隶属于微灌范畴。微喷灌的工作压力低,流量小,既可以定时定量的增加土壤水分,又能提高空气湿度,调节局部小气候,广泛应用于蔬菜、花卉、果园、药材种植场所,以及扦插育苗、饲养场所等区域的加湿降温</span><br/><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial;\"> </span><strong style=\"margin: 0px; padding: 0px; transition: all 300ms ease; color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; white-space: normal;\"><span style=\"margin: 0px; padding: 0px; transition: all 300ms ease; color: rgb(0, 153, 0);\"> ④ 滴灌。</span></strong><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial;\">滴灌是将水一滴一滴地、均匀而又缓慢地滴入植物根系附近土壤中的灌溉形式,滴水流量小,水滴缓慢入土,可以最大限度地减少蒸发损失,如果再加上地膜覆盖,可以进一步减少蒸发,滴灌条件下除紧靠滴头下面的土壤水分处于饱和状态外,其它部位的土壤水分均处于非饱和状态,土壤水分主要借助毛管张力作用入渗和扩散</span><br/><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial;\"> </span><strong style=\"margin: 0px; padding: 0px; transition: all 300ms ease; color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; white-space: normal;\"><span style=\"margin: 0px; padding: 0px; transition: all 300ms ease; color: rgb(0, 153, 0);\"> ⑤ 渗灌。</span></strong><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial;\">渗灌技术已经在地下水位较高的地方应用许多年了,是人工将地下水位抬高,直接从底下为植物根系供水的方法。</span></p>', '603', null, '{}', null, '15');
INSERT INTO `cms_content` VALUES ('610', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180603/1527995714243079.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '名贵树木如何预防病虫害对健康林木不会造成影响', null, null, '<p><strong style=\"margin: 0px; padding: 0px; transition: all 300ms ease; color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; white-space: normal;\"><span style=\"margin: 0px; padding: 0px; transition: all 300ms ease; color: rgb(0, 153, 0);\">  林木病害有传染性病害和非传染性病害两大类</span></strong><br/><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial;\">  林木病虫害的发生与林木的生长状况、病菌数量、林木生长环境等有着密切的联系。具有传染性的病虫害一般是由病毒、真菌、线虫等微生物引起的,且传播迅速,能够传染影响健康树木,是检疫性防治类的病虫害。不具有传染性的病虫害是指的药伤、烟伤等,不具备传播性,对健康林木不会造成影响。</span><br/><br/><strong style=\"margin: 0px; padding: 0px; transition: all 300ms ease; color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; white-space: normal;\"><span style=\"margin: 0px; padding: 0px; transition: all 300ms ease; color: rgb(0, 153, 0);\">  林木的生长环境和品种</span></strong><br/><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial;\">  树木病虫害防治的预防工作对于林业保护而言十分重要,对于防治工作的关注程度,将会对林木的成活、成材产生直接的影响。名贵树木养护林业的病虫害还与林木的种类以及生长环境息息相关。引进新物种,在使得原来的生物链更加丰富的同时,也会带来病虫害,例如:江西省目前进行的绿化项目中种植了大量的杨树,引起了杨树病虫害,这对于林木生长和绿化工程都产生了不利影响。</span><br/><br/><strong style=\"margin: 0px; padding: 0px; transition: all 300ms ease; color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; white-space: normal;\"><span style=\"margin: 0px; padding: 0px; transition: all 300ms ease; color: rgb(0, 153, 0);\">  2 林木病虫害的防治措施</span></strong><br/><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial;\">  </span><strong style=\"margin: 0px; padding: 0px; transition: all 300ms ease; color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; white-space: normal;\">生物防治</strong><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial;\">  过去我们防止病虫害主要依靠化学农药,虽然这种方式当时的效果很好,但是时间久了之后病虫会存在抗性的问题,农药残留也会对土壤造成污染。不过现在,可以利用有益生物来彻底治理森林病虫害了。这种方式不仅可以减少资金投入、节约能源,而且不会对林木的生长环境造成不利影响,能够长久的发挥防治作用,这是今后防治林木病虫害工作的主攻方向,使用的微生物制剂包括昆虫病毒、苏云金杆菌、白僵菌等。我国的微生物制剂,尤其是白僵菌,其产量和使用面积名列世界前茅。但是,微生物制剂的生产设备以及生产工艺都比较老旧,因此我国目前还没有一个规范标准,使得制剂的质量参差不齐,导致在实际使用环节存在效果差等诸多情况。</span></p>', '603', null, '{}', null, '15');
INSERT INTO `cms_content` VALUES ('611', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180603/1527995728400470.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '树木病虫害防治的主要特点', null, null, '<p><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial;\">  近年来树木病虫害防治表现出以下几个特质:第一,常发性的林木病虫害发生面积仍居于高位,且呈出上升的趋势;第二,偶发性的林木病虫害暴发面积大;第三,危险性病虫害蔓延迅速;第四,多种次要害虫在某些地方上升为主要害虫;第五,重大危害的病虫种类不断增多;第六,经济林病虫危害日趋严重。</span><br/><br/><strong style=\"margin: 0px; padding: 0px; transition: all 300ms ease; color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; white-space: normal;\"><span style=\"margin: 0px; padding: 0px; transition: all 300ms ease; color: rgb(0, 153, 0);\">  1.林木病虫害发生的原因</span></strong><br/><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial;\">  众多因素促成了林木病虫害的高发。首先,在适宜的气候条件下,森林中的病毒、细菌和寄生性种子类植物的数量增加,导致害虫大量生长繁殖,继而病虫害传播速度加大;第二,随着社会的发展许多林业被耕地所占用,耕地面积增多且林地与耕地的交接带扩大,导致了病虫害更易向森林蔓延且种类增多;另外,林业生产的发展使得人工林木面积不断扩大,特别是纯林面积的增长也大大降低了林木抵御病虫害的能力。</span><br/><br/><strong style=\"margin: 0px; padding: 0px; transition: all 300ms ease; color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; white-space: normal;\"><span style=\"margin: 0px; padding: 0px; transition: all 300ms ease; color: rgb(0, 153, 0);\">  2.林木病虫害种类及其特点</span></strong><br/><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial;\">  林木病虫害按致病因素可分为理化因素损害、微生物致病和各种虫害。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial;\">  理化因素致病主要有以下几类。例如,干旱导致的树木萎蔫、干枯;酸雨使树叶出现魔块、槐色等树木酸害症状;农药使用过量时树木可能叶子枯焦、落花、落果;针对这些理化损害,浇水补充水分、污染源消除、农药被降解稀释后症状就会减轻或消失。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial;\">  微生物致病主要包括真菌、细菌、病毒、菌质体四种。细菌和真菌发病症状相似,主要表现为发病部位出现斑点、溃疡或萎蔫、畸形以及附着霉状物、白粉、锈粉等;病毒损害树木症状主要包括叶片发黄、发皱、畸形、坏死等;菌质体病害树木可出现黄化、丛枝等病症。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial;\">  林木虫害种类众多,按侵害部位分主要可分为根部害虫、干部害虫、枝梢害虫叶部害虫四类。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial;\">  根部害虫生活在土壤,以刚发芽的种子或者幼苗的根、茎、幼芽为食也可蛀入幼树根内取食;干部害虫常在林木受自然灾害而生长趋弱时乘虚而入,可导致树木大面积死亡;枝梢害虫包括刺吸害虫和钻蛀害虫,主要引起树木枝叶萎缩和枯黄,主干扭曲畸形,顶梢丛生,影响木材利用价值,甚至造成林木枯死。叶部害虫则受天敌、气候等因素的影响灾害发生有明显的周期性或爆发性,蔓延速度快、范围广。</span></p>', '603', null, '{}', null, '15');
INSERT INTO `cms_content` VALUES ('612', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180603/1527995778259392.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '柑橘全爪螨', null, null, '<p><span style=\"color: rgb(61, 61, 61); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial;\">  </span><strong style=\"margin: 0px; padding: 0px; transition: all 300ms ease; color: rgb(61, 61, 61); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; white-space: normal;\"><span style=\"margin: 0px; padding: 0px; transition: all 300ms ease; color: rgb(0, 153, 0);\">(1)形态:</span></strong><span style=\"color: rgb(61, 61, 61); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial;\">雌成螨体广卵圆形,背隆起,暗红色或紫红色,体背有瘤,上生白色刚毛,足 4对,爪状,爪间突发达。雄成螨体略小于雌成螨,腹末略尖,成菱形,体鲜红色或棕色,足较长,4 对。</span><br/><br/><span style=\"color: rgb(61, 61, 61); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial;\"> </span><strong style=\"margin: 0px; padding: 0px; transition: all 300ms ease; color: rgb(61, 61, 61); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial; white-space: normal;\"><span style=\"margin: 0px; padding: 0px; transition: all 300ms ease; color: rgb(0, 153, 0);\"> (2)防治方法:</span></strong><span style=\"color: rgb(61, 61, 61); font-family: &quot;Microsoft Yahei&quot;, Thmano, Arial;\">成年树应加强早春和晚秋的防治;苗圃和幼树,除春秋两季外,还应加强冬季的防治工作。对柑橘全爪螨必须采用综合防治方法,即前期要采取药剂防治工作,后期保护利用天敌,全年加强养护管理,增强树势的原则。冬季可喷 20%杀螨酯可湿性粉剂 600-800倍液,有良效。石硫合剂在冬季用 1-2 波美度,春季用 0.3-0.5 波美度,对天敌捕食螨比较安全。4 月上旬可每周喷一次 20%乐果,或 40%氧化乐果,或 75%辛硫磷,或 280%敌敌畏,或20%双甲脒乳剂,连续 2-3 次,对成螨和幼蟥均有效果。近年来,推广 73%克螨特乳油 4000M液,药效可维持 24 天左右,效果良好。在一时买不到合适的农药时,右喷射 20 型 选衣粉(夏季用 300-500 倍液),有时防效也不错。在防治该螨时,不宜使用拟除虫菊酯类农药,因这类药剂对柑橘全爪螨的杀来作用不够理想,而药应轮换使用可混用,既可增进杀螨效果,又能避免产生抗药性。利用氧化乐果在幼株根区施药的效果也不错,既能杀螨,又能保护天敌。</span></p>', '607', null, '{}', null, '15');
INSERT INTO `cms_content` VALUES ('613', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180603/1527995789420118.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '黄刺蛾', null, null, '', '607', null, '{}', null, '15');
INSERT INTO `cms_content` VALUES ('614', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180603/1527995799725052.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '介壳虫', null, null, '', '607', null, '{}', null, '15');
INSERT INTO `cms_content` VALUES ('615', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180603/1527995828615324.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '树木防治服务', null, null, '', '608', null, '{}', null, '15');
INSERT INTO `cms_content` VALUES ('616', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '2020-03-20 13:35:27', '1', null, null, null, '/static/upload/image/20180603/1527995839591584.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '树木防治服务', null, null, '', '608', null, '{}', null, '15');
INSERT INTO `cms_content` VALUES ('704', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, null, null, '/static/upload/image/20180529/1527560216827057.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '厂房', null, null, '<p><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; background-color: rgb(255, 255, 255);\">长沙天和制药机械设备有限公司是一家主营中药制丸机、压片机、粉碎机、切片机;糖包衣机、胶囊包装机、自动煎药包装一体机等制药机械的企业。联系方式:400-8551-633</span></p>', '707', null, '{}', null, '16');
INSERT INTO `cms_content` VALUES ('705', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, null, null, '/static/upload/image/20180529/1527560243857025.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '厂房', null, null, '<p><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; background-color: rgb(255, 255, 255);\">长沙天和制药机械设备有限公司是一家主营中药制丸机、压片机、粉碎机、切片机;糖包衣机、胶囊包装机、自动煎药包装一体机等制药机械的企业。联系方式:400-8551-633</span></p>', '707', null, '{}', null, '16');
INSERT INTO `cms_content` VALUES ('706', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, null, null, '/static/upload/image/20180529/1527562760864334.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '教你如何判断药丸是否变质?', null, null, '<p><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; background-color: rgb(255, 255, 255);\">  制丸机丸药的保存应密闭防潮,一般情况下,置于室内阴凉干燥处即可。但往往因为存放方式不当或存放时间过长等原因,导致丸药腐败变质。已经变质的丸药不能再服用,因其已完全失去药效,不但不能治病,还可能引起新的疾病。所以,制丸机对变质丸药的识别与鉴定便显得至关重要。</span><br/><br/><br/><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; background-color: rgb(255, 255, 255);\">  那么,如何识别制丸机丸药是否变质呢?除了查看其生产日期外,还可以从以下3个方面入手:</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; background-color: rgb(255, 255, 255);\">  </span><strong style=\"margin: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"margin: 0px; padding: 0px; color: rgb(0, 51, 153);\">一看:</span></strong><br/><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; background-color: rgb(255, 255, 255);\">  首先看丸药外部的包裹物是否异常,如外包装小纸盒或蜡壳已经霉变,那么里面的丸物十有八九也已不新鲜了。其次看外观色泽,正常的蜜丸表面应光滑圆润,呈棕黄色或黑棕色,以朱砂为衣或金箔为衣者分别呈朱红色或金黄色,但贮存日久或包装不严密的蜜丸可因其水分的失去而变硬,表面无光滑润泽感,贮存不当或制作不卫生时,亦常常会有生虫或霉变现象。</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; background-color: rgb(255, 255, 255);\">  </span><strong style=\"margin: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"margin: 0px; padding: 0px; color: rgb(0, 51, 153);\">二嗅:</span></strong><br/><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; background-color: rgb(255, 255, 255);\">  正常新鲜的丸药有一股特殊的中药香味,如是蜜丸的话,还应当还有蜂蜜的香味。若药丸有怪味、酸腐味而没有正常的中药味,则表示已经变质。</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; background-color: rgb(255, 255, 255);\">  </span><strong style=\"margin: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"margin: 0px; padding: 0px; color: rgb(0, 51, 153);\">三尝:</span></strong><br/><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; background-color: rgb(255, 255, 255);\">  直接用嘴尝,通过味觉予以判断。正常的药丸药味浓郁,变质的药丸有酸腐味,无发粘感,晨起空腹服药时,感觉更是如此,应立刻停止服用</span></p>', '704', null, '{}', null, '16');
INSERT INTO `cms_content` VALUES ('707', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, null, null, '/static/upload/image/20180529/1527562789822576.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '中药制丸机工作人员使用须知', null, null, '<p><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; background-color: rgb(255, 255, 255);\">  中药制丸机可以制作蜜丸、浓缩丸、水蜜丸、水丸等类型的丸子,在这些丸子中,水丸的制作要求是最高的,在制作的时候要特别注意制作的过程,物料的粘合性与细度很重要,如果粘性不够可以适当添加粘合剂。使用过程中一些注意事项工作人员需要清楚,否则将会影响中药制丸机工作寿命,主要如下几点:</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; background-color: rgb(255, 255, 255);\">  </span><strong style=\"margin: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"margin: 0px; padding: 0px; color: rgb(0, 51, 153);\">1、清洁频次:</span></strong><br/><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; background-color: rgb(255, 255, 255);\">  (1)生产前、生产结束后,清洁消毒一次;</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; background-color: rgb(255, 255, 255);\">  (2)更换品种时必须按本程序清洁消毒;</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; background-color: rgb(255, 255, 255);\">  (3)维修后必须彻底清洁消毒。</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; background-color: rgb(255, 255, 255);\">  </span><strong style=\"margin: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"margin: 0px; padding: 0px; color: rgb(0, 51, 153);\">2、清洁工具:</span></strong><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; background-color: rgb(255, 255, 255);\">水盆、毛刷、镊子、不锈钢刀、清洁布、橡胶手套。</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; background-color: rgb(255, 255, 255);\">  </span><strong style=\"margin: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"margin: 0px; padding: 0px; color: rgb(0, 51, 153);\">3、清洁剂、消毒剂:</span></strong><br/><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; background-color: rgb(255, 255, 255);\">  (1)清洁剂:5%洗涤剂溶液;</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; background-color: rgb(255, 255, 255);\">  (2)消毒剂:75%的乙醇溶液或0.1%的新洁尔灭溶液,每月交替使用。</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; background-color: rgb(255, 255, 255);\">  </span><strong style=\"margin: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"margin: 0px; padding: 0px; color: rgb(0, 51, 153);\">4、清洁地点:</span></strong><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; background-color: rgb(255, 255, 255);\">就地清洁。拆下的部件移至工器具清洗间清洁。</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; background-color: rgb(255, 255, 255);\">  </span><strong style=\"margin: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"margin: 0px; padding: 0px; color: rgb(0, 51, 153);\">5、清洁方法</span></strong><br/><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; background-color: rgb(255, 255, 255);\">  (1)生产操作前,用清洁布清洁制丸机表面。</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; background-color: rgb(255, 255, 255);\">  (2)生产结束后,光关闭所有电源,再进行清洁:</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; background-color: rgb(255, 255, 255);\">  ①将制条、饲服机减速到零,关闭搓丸、伺服电机。拿下出条筒内帽,将制条变频开至10Hz以下挤出料头回收,最后将制条变频降至零,并关闭电源。</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; background-color: rgb(255, 255, 255);\">  ②拿出料仓中推进器、内帽等,用饮用水冲洗。</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; background-color: rgb(255, 255, 255);\">  ③将翻板、刀具、毛刷卸下用饮用水冲洗。</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; background-color: rgb(255, 255, 255);\">  ④在卸下上述部件后,可用清洁布将料仓擦洗,擦洗时要注意,防止水流入机架内部电器中。</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; background-color: rgb(255, 255, 255);\">  ⑤将整机用清洁布擦洗,必要时使用液体洗涤剂。</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; background-color: rgb(255, 255, 255);\">  ⑥清洁各部件及整机均需用饮用水清洗三次,纯化水清洗二次,然后用干燥清洁布蘸75%乙醇消毒。</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; background-color: rgb(255, 255, 255);\">  (3)清洁完毕后填写清洁记录.并请QA检查员检查清洁情况,确认合格后,签字并贴挂“已清洁”状念标志。</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; background-color: rgb(255, 255, 255);\">  </span><strong style=\"margin: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"margin: 0px; padding: 0px; color: rgb(0, 51, 153);\">6、效果评价:</span></strong><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; background-color: rgb(255, 255, 255);\">机身表面无污迹,出料口和推进器无残留药料。</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; background-color: rgb(255, 255, 255);\">  </span><strong style=\"margin: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"margin: 0px; padding: 0px; color: rgb(0, 51, 153);\">7、注意事项:</span></strong><br/><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; background-color: rgb(255, 255, 255);\">  (1)完成上述清洗时须一个人操作设备,避免多人操作设备,引发事故,并要保持断电;</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; background-color: rgb(255, 255, 255);\">  (2)清洁好的配件放在固定位置,以防乱拿或碰伤等事故出现;</span><br/><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; background-color: rgb(255, 255, 255);\">  (3)清洁触摸屏不能用乙醇、汽油等化学稀料擦拭,以免损坏触摸屏表面。</span></p>', '704', null, '{}', null, '16');
INSERT INTO `cms_content` VALUES ('708', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, null, null, '/static/upload/image/20180529/1527562817972223.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '中药制丸机制水丸不成形的原由', null, null, '<p><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; background-color: rgb(255, 255, 255);\">  一般使用中药制丸机能够制作出水丸,但是很多人在使用制丸机制作水丸的过程中,因为没有考虑到很多因素,导致制作出来的水丸没有预想中这么理想,甚至会出现无法形成水丸的现象。</span><br/><br/><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; background-color: rgb(255, 255, 255);\">  其实</span><span style=\"margin: 0px; padding: 0px; font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; color: rgb(0, 51, 153); background-color: rgb(255, 255, 255);\"><strong style=\"margin: 0px; padding: 0px;\">中药制丸机可以制作蜜丸、浓缩丸、水蜜丸、水丸等类型的丸子</strong></span><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; background-color: rgb(255, 255, 255);\">,在这些丸子中,水丸的制作要求是最高的,在制作的时候要特别注意制作的过程,物料的粘合性与细度很重要,如果粘性不够可以适当添加粘合剂。</span><br/><br/><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; background-color: rgb(255, 255, 255);\">  其次,出条的规格与模具规格不配套也会影响制丸的效果。最后在使用机器大批量制作中药水丸最好能够配合烘干设备,这样才能能让药丸受热均匀</span><span style=\"margin: 0px; padding: 0px; font-family: &#39;Microsoft Yahei&#39;, Thmano, Arial; font-size: 14px; line-height: 26px; color: rgb(0, 51, 153); background-color: rgb(255, 255, 255);\">。在使用中药制丸机制作水丸时,一定要注意使用食用水,这样才能制作出满意的中药丸子。</span></p>', '704', null, '{}', null, '16');
INSERT INTO `cms_content` VALUES ('709', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, null, null, '/static/upload/image/20180529/1527562849313811.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '厂房', null, null, '', '707', null, '{}', null, '16');
INSERT INTO `cms_content` VALUES ('710', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, null, null, '/static/upload/image/20180529/1527562869358481.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '厂房', null, null, '', '707', null, '{}', null, '16');
INSERT INTO `cms_content` VALUES ('711', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, null, null, '/static/upload/image/20180529/1527562891150120.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '厂房', null, null, '', '707', null, '{}', null, '16');
INSERT INTO `cms_content` VALUES ('712', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, null, null, '/static/upload/image/20180529/1527563025518709.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '全自动制丸机(不要牵条,垂直下料)', null, null, '', '709', null, '{}', null, '16');
INSERT INTO `cms_content` VALUES ('713', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, null, null, '/static/upload/image/20180529/1527563044911107.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '全自动中药制丸机(牵条)型', null, null, '', '709', null, '{}', null, '16');
INSERT INTO `cms_content` VALUES ('714', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, null, null, '/static/upload/image/20180529/1527563061715428.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '全自动中药制丸机(垂直下料,不要牵条,出药1-4根)', null, null, '', '709', null, '{}', null, '16');
INSERT INTO `cms_content` VALUES ('715', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, null, null, '/static/upload/image/20180529/1527563079413149.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '新型全自动制丸机DZ-2D', null, null, '', '709', null, '{}', null, '16');
INSERT INTO `cms_content` VALUES ('716', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, null, null, '/static/upload/image/20180529/1527563094893178.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '分体式中药制丸机', null, null, '', '709', null, '{}', null, '16');
INSERT INTO `cms_content` VALUES ('717', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, null, null, '/static/upload/image/20180529/1527563110354005.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '全自动大蜜丸机WZ-100', null, null, '', '709', null, '{}', null, '16');
INSERT INTO `cms_content` VALUES ('718', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, null, null, '/static/upload/image/20180529/1527563125343394.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '大蜜丸机', null, null, '', '709', null, '{}', null, '16');
INSERT INTO `cms_content` VALUES ('719', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, null, null, '/static/upload/image/20180529/1527563140174654.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '丸子成品', null, null, '', '709', null, '{}', null, '16');
INSERT INTO `cms_content` VALUES ('720', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '2020-03-20 11:08:17', '1', null, null, null, '/static/upload/image/20180529/1527563153862493.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '小型制丸机成品', null, null, '', '709', null, '{}', null, '16');
INSERT INTO `cms_content` VALUES ('800', '2020-10-14 11:15:35', '2021-03-19 09:50:06', '2020-10-14 11:15:48', '1', null, null, null, '/static/upload/1-1FR9194A4103.jpg', null, null, null, null, null, null, null, '0', null, null, null, null, null, '感恩成长,梦想启航', null, null, null, '806', null, '{}', null, '17');
-- ----------------------------
-- Table structure for `cms_form`
-- ----------------------------
DROP TABLE IF EXISTS `cms_form`;
CREATE TABLE `cms_form` (
`id` bigint(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
`createDate` datetime NOT NULL COMMENT '创建日期',
`updateDate` datetime NOT NULL COMMENT '修改日期',
`name` varchar(255) DEFAULT NULL COMMENT '名称',
`tableName` varchar(255) DEFAULT NULL COMMENT '表名称',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='表单表';
-- ----------------------------
-- Records of cms_form
-- ----------------------------
INSERT INTO `cms_form` VALUES ('1', '2020-08-12 18:27:05', '2020-08-12 18:27:05', '测试', 'cms_test');
-- ----------------------------
-- Table structure for `cms_form_field`
-- ----------------------------
DROP TABLE IF EXISTS `cms_form_field`;
CREATE TABLE `cms_form_field` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
`createDate` datetime NOT NULL COMMENT '创建日期',
`updateDate` datetime NOT NULL COMMENT '修改日期',
`name` varchar(255) DEFAULT NULL COMMENT '名称',
`sort` int(11) DEFAULT NULL,
`alias` varchar(255) DEFAULT NULL COMMENT '字段描述',
`formId` int(11) DEFAULT NULL COMMENT '表单ID',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='内容字段表';
-- ----------------------------
-- Records of cms_form_field
-- ----------------------------
INSERT INTO `cms_form_field` VALUES ('1', '2020-08-12 18:27:25', '2020-08-12 18:27:25', 'khxm', '1', '客户姓名', '1');
-- ----------------------------
-- Table structure for `cms_friend_link`
-- ----------------------------
DROP TABLE IF EXISTS `cms_friend_link`;
CREATE TABLE `cms_friend_link` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
`createDate` datetime NOT NULL COMMENT '创建日期',
`updateDate` datetime NOT NULL COMMENT '修改日期',
`sort` int(11) DEFAULT NULL COMMENT '排序',
`logo` varchar(255) DEFAULT NULL COMMENT '图片',
`name` varchar(255) DEFAULT NULL COMMENT '名称',
`url` varchar(255) DEFAULT NULL COMMENT '链接地址',
`gid` int(11) DEFAULT NULL COMMENT '分组',
`siteId` int(11) DEFAULT NULL COMMENT '站点ID',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='友情链接表';
-- ----------------------------
-- Records of cms_friend_link
-- ----------------------------
INSERT INTO `cms_friend_link` VALUES ('1', '2018-07-18 11:56:29', '2018-07-23 10:44:28', null, null, '百度', 'http://www.baidu.com', '1', '1');
INSERT INTO `cms_friend_link` VALUES ('2', '2019-02-26 14:24:11', '2019-02-26 14:24:13', null, null, 'Baidu', 'http://www.baidu.com', '2', '2');
-- ----------------------------
-- Table structure for `cms_guestbook`
-- ----------------------------
DROP TABLE IF EXISTS `cms_guestbook`;
CREATE TABLE `cms_guestbook` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
`createDate` datetime NOT NULL COMMENT '创建日期',
`updateDate` datetime NOT NULL COMMENT '修改日期',
`contact` varchar(255) DEFAULT NULL COMMENT '联系人',
`mobile` varchar(255) DEFAULT NULL COMMENT '联系电话',
`content` varchar(255) DEFAULT NULL COMMENT '留言内容',
`ip` varchar(255) DEFAULT NULL COMMENT 'IP地址',
`replyContent` varchar(255) DEFAULT NULL COMMENT '回复内容',
`replyDate` datetime DEFAULT NULL,
`status` int(11) DEFAULT NULL COMMENT '头像',
`siteId` int(11) DEFAULT NULL COMMENT '站点ID',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=179 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='会员表';
-- ----------------------------
-- Records of cms_guestbook
-- ----------------------------
INSERT INTO `cms_guestbook` VALUES ('79', '2019-12-13 10:36:59', '2019-12-13 10:36:59', '12', '18888888888', '', null, null, null, null, '1');
INSERT INTO `cms_guestbook` VALUES ('80', '2020-02-10 20:54:26', '2020-02-10 20:54:26', 'eleoinelf@parkll.xyz', '82455187991', 'Propecia Testiculos http://abuycialisb.com - tadalafil cialis from india Dapoxetina Alternativa <a href=http://abuycialisb.com>canadian pharmacy cialis 20mg</a> Cialis 20 Online Apotheke ', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('81', '2020-06-05 15:55:11', '2020-06-05 15:55:11', '1111', '1111', '1111', null, null, null, null, '10');
INSERT INTO `cms_guestbook` VALUES ('82', '2020-06-05 15:59:01', '2020-06-05 15:59:01', 'aaaa', 'bbb', 'ccc', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('83', '2020-06-16 13:36:19', '2020-06-16 13:36:19', 'eregreete@belan.website', '86548346234', 'Prix Cialis En France https://cheapcialisll.com/ - Cheap Cialis Over The Conter Chlamydia Treatment Amoxicillin <a href=https://cheapcialisll.com/#>Cialis</a> Amoxicillin Threat Meningitis ', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('84', '2020-06-18 03:42:47', '2020-06-18 03:42:47', 'eregreete@belan.website', '87747382731', 'Precio Del Kamagra https://agenericcialise.com/ - buy cialis uk Levitra Online Purchase <a href=https://agenericcialise.com/#>buy cialis canada</a> Cheapest Desyrel Without A Prescription ', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('85', '2020-06-25 18:13:55', '2020-06-25 18:13:55', 'Obedink@brendl.xyz', '87857387792', 'Buying Disulfiram https://bbuycialisss.com/ - Buy Cialis Precio Viagra Hombre <a href=https://bbuycialisss.com/#>Buy Cialis</a> Propecia Canadian ', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('86', '2020-06-27 20:05:24', '2020-06-27 20:05:24', 'Obedink@brendl.xyz', '84138391111', 'Purchase Flagyl Prescription https://cialibuy.com/ - buy cialis online using paypal Where To Buy Amoxicillin 250mg <a href=https://cialibuy.com/#>cialis 5 mg best price usa</a> Amoxicillin With Milk ', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('87', '2020-07-07 04:35:26', '2020-07-07 04:35:26', 'Loosuro@belan.website', '89234715931', 'Buy Novladex Wirers https://ascialis.com/# - Cialis wracerlelt buy accutane for acne Spooscottoda <a href=https://ascialis.com/#>buy generic cialis online cheap</a> Binoionith Amoxicillin For Animals No Prescription ', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('88', '2020-07-12 19:56:24', '2020-07-12 19:56:24', 'Flooropig@brendl.xyz', '89127873478', 'Cialis Bologna atrops https://acialisd.com/# - Cialis Brofaw Pyridium Urinary Burning DueteUntogue <a href=https://acialisd.com/#>Cialis</a> Apompreape Cialis Viagra Gratis ', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('89', '2020-07-13 03:31:44', '2020-07-13 03:31:44', 'Flooropig@brendl.xyz', '84117864868', 'Zithromax Pneumonia Kids atrops https://acialisd.com/# - cialis generic name Brofaw How Long Before Zithromax Works DueteUntogue <a href=https://acialisd.com/#>generic for cialis</a> Apompreape Cailis Over Night Deiieving ', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('90', '2020-07-17 17:18:31', '2020-07-17 17:18:31', '111', '12345678901', '111', null, null, null, null, '10');
INSERT INTO `cms_guestbook` VALUES ('91', '2020-08-11 15:47:49', '2020-08-11 15:47:49', 'adojewade@afmail.xyz', '82352426557', 'Levitra Orosolubile ecocoxinny https://apcialiss.com/ - where to buy cialis online safely Gowcence Isotretinoin 10mg Where To Buy crobosocob <a href=https://apcialiss.com/#>generic cialis tadalafil</a> Drextetexerm cialis commercial list ', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('92', '2020-08-17 21:48:10', '2020-08-17 21:48:10', 'adojewade@afmail.xyz', '87668841177', 'Generic Flagyl In Kansas City Wirers https://cialiser.com/ - cialis order online wracerlelt Purchasing Viagra Online From Canada Spooscottoda <a href=https://cialiser.com/#>cheapest place to buy cialis</a> Binoionith Cephalexin Fish Flex Forum ', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('93', '2020-09-02 07:37:39', '2020-09-02 07:37:39', 'sporttime2020@rambler.ru', '83841693431', 'вполне себе годнота \r\n_________________ \r\n<a href=\"https://azino777.onlinerealtopmoneygames.xyz/igrovye-avtomaty-v-onlayn-kazino-777-original-igrat-na-dengi/\">Игровые автоматы в онлайн казино 777 оригинал играть на деньги</a>', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('94', '2020-09-02 09:34:00', '2020-09-02 09:34:00', 'Brewaylew@anmail.xyz', '84981217958', 'Donde Se Puede Comprar Viagra Wirers https://biracialism.com/ - Cialis wracerlelt Tamsulosin Hcl 0.4 Mg Cap Canada Spooscottoda <a href=https://biracialism.com/#>buy cialis online cheap</a> Binoionith Cialis Generic Safe ', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('95', '2020-09-02 21:31:51', '2020-09-02 21:31:51', 'oeiveliso@kjhsdf.safffsmail.com', '84659837535', 'http://mewkid.net/when-is-xuxlya/ - Amoxicillin No Prescription <a href=\"http://mewkid.net/when-is-xuxlya/\">Amoxicillin 500 Mg</a> igg.qbmq.cms.jrecms.com.vjw.kd http://mewkid.net/when-is-xuxlya/', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('96', '2020-09-02 22:20:21', '2020-09-02 22:20:21', 'envoteu@kjhsdf.safffsmail.com', '82712311394', 'http://mewkid.net/when-is-xuxlya/ - Amoxicillin 500mg Capsules <a href=\"http://mewkid.net/when-is-xuxlya/\">Buy Amoxicillin</a> zut.jwuk.cms.jrecms.com.vke.no http://mewkid.net/when-is-xuxlya/', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('97', '2020-09-02 23:08:06', '2020-09-02 23:08:06', 'gneguru@kjhsdf.safffsmail.com', '81936721441', 'http://mewkid.net/when-is-xuxlya/ - Buy Amoxicillin Online <a href=\"http://mewkid.net/when-is-xuxlya/\">Buy Amoxicillin Online</a> bdy.xlic.cms.jrecms.com.olb.ff http://mewkid.net/when-is-xuxlya/', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('98', '2020-09-02 23:36:35', '2020-09-02 23:36:35', 'ibodoj@kjhsdf.safffsmail.com', '88175859958', 'http://mewkid.net/when-is-xuxlya/ - Amoxicillin 500mg Capsules <a href=\"http://mewkid.net/when-is-xuxlya/\">18</a> maa.uqxx.cms.jrecms.com.lwb.zv http://mewkid.net/when-is-xuxlya/', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('99', '2020-09-03 00:00:42', '2020-09-03 00:00:42', 'igvatemko@kjhsdf.safffsmail.com', '83973348169', 'http://mewkid.net/when-is-xuxlya/ - Amoxicillin <a href=\"http://mewkid.net/when-is-xuxlya/\">Amoxicillin 500mg Capsules</a> udi.rhyl.cms.jrecms.com.ocz.ok http://mewkid.net/when-is-xuxlya/', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('100', '2020-09-03 00:50:43', '2020-09-03 00:50:43', 'etakaja@kjhsdf.safffsmail.com', '89157147881', 'http://mewkid.net/when-is-xuxlya/ - Amoxicillin 500mg Dosage <a href=\"http://mewkid.net/when-is-xuxlya/\">Buy Amoxicillin</a> ogt.rynp.cms.jrecms.com.ypa.xl http://mewkid.net/when-is-xuxlya/', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('101', '2020-09-03 01:34:26', '2020-09-03 01:34:26', 'owunuwo@kjhsdf.safffsmail.com', '85396864239', 'http://mewkid.net/when-is-xuxlya/ - Buy Amoxil <a href=\"http://mewkid.net/when-is-xuxlya/\">Amoxicillin Without Prescription</a> arc.nhur.cms.jrecms.com.xzo.uu http://mewkid.net/when-is-xuxlya/', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('102', '2020-09-03 03:03:20', '2020-09-03 03:03:20', 'ekujudow@kjhsdf.safffsmail.com', '89939538275', 'http://mewkid.net/when-is-xuxlya/ - Amoxicillin 500mg Capsules <a href=\"http://mewkid.net/when-is-xuxlya/\">Amoxicillin No Prescription</a> rzo.sagn.cms.jrecms.com.wyi.rj http://mewkid.net/when-is-xuxlya/', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('103', '2020-09-03 03:30:08', '2020-09-03 03:30:08', 'uyegboyue@kjhsdf.safffsmail.com', '83557418268', 'http://mewkid.net/when-is-xuxlya/ - 18 <a href=\"http://mewkid.net/when-is-xuxlya/\">Amoxicillin No Prescription</a> yjl.djax.cms.jrecms.com.yns.tt http://mewkid.net/when-is-xuxlya/', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('104', '2020-09-03 03:51:33', '2020-09-03 03:51:33', 'unolqcet@kjhsdf.safffsmail.com', '88983611982', 'http://mewkid.net/when-is-xuxlya/ - Buy Amoxicillin Online <a href=\"http://mewkid.net/when-is-xuxlya/\">Buy Amoxicillin Online</a> eqo.lhlp.cms.jrecms.com.hls.rv http://mewkid.net/when-is-xuxlya/', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('105', '2020-09-03 04:38:14', '2020-09-03 04:38:14', 'uzoraku@kjhsdf.safffsmail.com', '89334631617', 'http://mewkid.net/when-is-xuxlya/ - Buy Amoxil Online <a href=\"http://mewkid.net/when-is-xuxlya/\">Amoxicillin Without Prescription</a> ioc.yuzf.cms.jrecms.com.pbo.hc http://mewkid.net/when-is-xuxlya/', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('106', '2020-09-03 05:04:58', '2020-09-03 05:04:58', 'igvalaf@kjhsdf.safffsmail.com', '89355553336', 'http://mewkid.net/when-is-xuxlya/ - Amoxicillin <a href=\"http://mewkid.net/when-is-xuxlya/\">Amoxicillin</a> bxl.itsd.cms.jrecms.com.yck.pl http://mewkid.net/when-is-xuxlya/', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('107', '2020-09-03 05:25:53', '2020-09-03 05:25:53', 'atluapfod@kjhsdf.safffsmail.com', '87754896269', 'http://mewkid.net/when-is-xuxlya/ - Amoxicillin 500mg Capsules <a href=\"http://mewkid.net/when-is-xuxlya/\">Amoxicillin</a> eii.irfj.cms.jrecms.com.air.lr http://mewkid.net/when-is-xuxlya/', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('108', '2020-09-03 06:13:13', '2020-09-03 06:13:13', 'aysamuyax@kjhsdf.safffsmail.com', '89588663756', 'http://mewkid.net/when-is-xuxlya/ - Amoxicillin 500mg Dosage <a href=\"http://mewkid.net/when-is-xuxlya/\">Amoxicillin Online</a> unl.nbef.cms.jrecms.com.yci.qj http://mewkid.net/when-is-xuxlya/', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('109', '2020-09-03 07:01:20', '2020-09-03 07:01:20', 'iaxozikuz@kjhsdf.safffsmail.com', '86656211199', 'http://mewkid.net/when-is-xuxlya/ - Amoxicillin 500mg Capsules <a href=\"http://mewkid.net/when-is-xuxlya/\">Amoxicillin 500mg</a> gxk.cubd.cms.jrecms.com.hxs.ke http://mewkid.net/when-is-xuxlya/', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('110', '2020-09-03 07:48:33', '2020-09-03 07:48:33', 'urnovodom@kjhsdf.safffsmail.com', '82291467679', 'http://mewkid.net/when-is-xuxlya/ - Buy Amoxicillin Online <a href=\"http://mewkid.net/when-is-xuxlya/\">Buy Amoxicillin Online</a> kci.qxat.cms.jrecms.com.lix.ks http://mewkid.net/when-is-xuxlya/', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('111', '2020-09-04 18:09:21', '2020-09-04 18:09:21', 'sportmixtop@rambler.ru', '84912589229', 'Годнота \r\n_________________ \r\n<a href=\"https://rucasino.playrealtopmoneygame.xyz/onlayn-kazino-888-bonus-za-registraciyu-dengi-na-schet/\">Онлайн казино 888 бонус за регистрацию деньги на счет</a>', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('112', '2020-09-04 18:10:34', '2020-09-04 18:10:34', 'maxsport2020@rambler.ru', '89395656478', 'Спасибо, давно искал \r\n_________________ \r\n<a href=\"https://tr.shopub.academy/sekabet-bahis-geГ§miЕџi/\">iddaa en iyi tahminci </a>', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('113', '2020-09-05 15:50:54', '2020-09-05 15:50:54', 'nameee@gmail.com', '82482946157', 'viagra and meth what happened <a href=\"https://judrxstore.com/\">viagra is doomed the picture girl on the picture</a> does beer affect viagra https://judrxstore.com/', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('114', '2020-09-06 15:16:52', '2020-09-06 15:16:52', 'em7evg@gmail.com', '85513478289', '<a href=http://1541.ru/cms/reklama.php>Живу в интернет рекламе с 1993 г. Реклама в Adwords, YouTube, Facebook, instagram - Отстой на 99,9%. Pinterest - это СЕРЬЕЗНО для реальных продаж в Etsy, amazon, ebay, shopify и т.д. Цена от 400 usd за месяц</a>', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('115', '2020-09-06 15:58:55', '2020-09-06 15:58:55', 'prohorovaula95@gmail.com', '89263187858', 'https://yandex.ru/search/?text=порно%20365%20http%3A%2F%2F365porno.pro%2F&lr=10519&clid=1882628', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('116', '2020-09-06 18:23:21', '2020-09-06 18:23:21', 'millicente6768@mix-mail.online\r\n', '83271915851', '<a href=https://td-l-market.ru/shop/product/kosilka-tsepovaya-agl-145>трактор гидравлический</a> или <a href=https://td-l-market.ru/fotogalereya>купить прицеп одноосный тракторный</a> \r\n \r\nhttps://td-l-market.ru/fotogalereya', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('117', '2020-09-07 00:14:04', '2020-09-07 00:14:04', 'aleksandrkaskadov88@gmail.com', '89262424597', 'https://yandex.ru/search/?text=русское%20порно%20http%3A%2F%2Frasha-porno.com&lr=10519&clid=1882628', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('118', '2020-09-08 02:44:06', '2020-09-08 02:44:06', 'jackieWaipt@vidsourse.com', '88413118892', ' \r\n', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('119', '2020-09-09 07:31:05', '2020-09-09 07:31:05', 'parciathedm@gmail.com', '84196476115', 'download the crow and the butterfly shinedown \r\n<a href=http://reirerudofu47.myvnc.com/389.html>univalve </a> \r\ntoxic shame silent movie free mp3 download \r\nhttp://peitsugotose48.zapto.org/457.html', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('120', '2020-09-09 08:50:29', '2020-09-09 08:50:29', 'litonolovb@gmail.com', '81793515532', 'https://yandex.ru/search/?clid=1882628&text=порно%20трах%20http%3A%2F%2Fporno-traha.com%2F&l10n=ru&lr=10519', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('121', '2020-09-09 08:50:30', '2020-09-09 08:50:30', 'fidulovae@gmail.com', '89119439421', 'https://yandex.ru/search/?clid=1882628&text=порно%20новинки%20http%3A%2F%2Fporno-novinka.com%2F&l10n=ru&lr=10519', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('122', '2020-09-10 00:50:28', '2020-09-10 00:50:28', 'spetsdo@bk.ru', '81937166992', ' \r\n<a href=https://specdo.ru/ad/prodazha-spetstekhniki,152/prodayu_kamaz_6520_multilift_1134899056,1025>камаз мультилифт аренда</a>', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('123', '2020-09-10 14:25:45', '2020-09-10 14:25:45', 'asfwe4fegrd3443@gmail.com', '84918195995', ' \r\nonline casino Sol https://sol-casino777.xyz онлайн казино Сол Официальный сайт \r\n', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('124', '2020-09-11 03:10:49', '2020-09-11 03:10:49', 'dorovaslavina1995@rambler.ru', '89312922834', '<b><a href=https://corporateseo.ru/>заказать директ екатеринбург</a></b> \r\n<b><a href=https://corporateseo.ru/>заказать рекламу в яндекс директ цена екатеринбург</a></b> \r\n<b><a href=https://corporateseo.ru/>услуги через директ екатеринбург</a></b>', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('125', '2020-09-13 21:55:31', '2020-09-13 21:55:31', 'podlikana@mail.ru', '87174579829', '<a href=https://megaremont.pro/podolsk-restavratsiya-vann/emalirovka>Enameling bath</a>', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('126', '2020-09-13 23:30:52', '2020-09-13 23:30:52', 'pogorskajmaria@gmail.com', '89038157602', 'Small investments can bring tons of dollars fast. \r\nLink - https://moneylinks.page.link/6SuK', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('127', '2020-09-17 11:24:40', '2020-09-17 11:24:40', 'sofakiseleva1968@autorambler.ru', '83952472995', null, null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('128', '2020-09-18 21:59:02', '2020-09-18 21:59:02', '05johnsmith@mail.ru', '89922252144', ' половой член (от латинского erigo, erectum - поднимать, возводить, сооружать) в объёме с резким повышением его упругости : Понятия https://big-penis.com.ru/80.html - Эрекция Третья фаза эрекции', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('129', '2020-09-19 22:34:34', '2020-09-19 22:34:34', 'facheeva@mail.ru', '87139773951', '<a href=https://megaremont.pro/domodedovo-restavratsiya-vann>Restoration of enamel baths in Domodedovo</a>', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('130', '2020-09-20 07:06:13', '2020-09-20 07:06:13', 'an.to.nzu.eev34@gmail.com', '87239747254', ' \r\nYou have made some really good points there. I checked on the net for more information about the issue and found most people will go along with your views on this site. cumpra.infoforwomen.be/map18.php matberedare med mixer', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('131', '2020-09-21 00:23:59', '2020-09-21 00:23:59', 'vitya.ananasenko.93@mail.ru', '85712635436', 'Thank you very much for the information provided \r\nI\'m very impressed', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('132', '2020-09-21 00:23:59', '2020-09-21 00:23:59', 'morozova.kakoloak.88@mail.ru', '81521866273', 'Very interesting to read you \r\nGood luck to you', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('133', '2020-09-21 15:41:36', '2020-09-21 15:41:36', 'doompetrody@gmail.com', '81556228239', ' \r\nПереходите по ссылке: <a href=\"https://hydra2weq.com\" title=\"гидра сайт покупок\">гидра сайт покупок</a> - и бросайте употреблять разные гадости не губите свое здоровье.', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('134', '2020-09-22 06:02:02', '2020-09-22 06:02:02', 'bobrovkonstantinltjp@mail.ru', '88613486721', 'Подоконники купить \r\n<a href=https://sill.store>Подоконники</a>', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('135', '2020-09-23 21:30:22', '2020-09-23 21:30:22', 'prokhorovaleksandrovf@mail.ru', '85972519479', 'автономное освещение \r\n \r\n<a href=https://sun-shines.ru/>автономные солнечно ветровые</a>', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('136', '2020-09-25 07:03:58', '2020-09-25 07:03:58', 'efimovvladimiraphg@mail.ru', '88492684449', 'авиабилеты \r\n \r\nПокупайте по ссылке <a href=https://uletay.net/>поиск билетов на самолет</a> через авиа-поиск Uletay.net', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('137', '2020-09-27 21:44:16', '2020-09-27 21:44:16', 'atrurfomka@gmail.com', '84994767746', 'dickagign', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('138', '2020-09-28 01:36:30', '2020-09-28 01:36:30', 'demidovaleksandrkks@mail.ru', '86428544211', '1xbet официальный \r\n \r\nПо ссылке на сайт <a href=https://zerkalo-1xbet.com/>1xbet зеркало скачать</a> вы найдет зеркало 1xbet, и сможете скачаь его.', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('139', '2020-09-29 06:07:17', '2020-09-29 06:07:17', 'Brewaylew@anmail.xyz', '81289743833', 'Cialis Pour Femme En Pharmacie Wirers https://biracialism.com/ - cheap generic cialis wracerlelt alternativa a viagra Spooscottoda <a href=https://biracialism.com/#>Cialis</a> Binoionith Generic Viagra Deals ', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('140', '2020-09-30 07:29:13', '2020-09-30 07:29:13', 'em7evg@gmail.com', '84573132164', 'Примеры продаж на Etsy через Pinterest https://youtu.be/qg-3C_7W1kM после ужасающего падения количества посетителей в месяц', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('141', '2020-09-30 07:29:16', '2020-09-30 07:29:16', 'em7evg@gmail.com', '85397711264', 'Примеры продаж wooden handmade - 1000 в месяц - на Etsy через Pinterest https://youtu.be/qg-3C_7W1kM после ужасающего падения количества посетителей в месяц', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('142', '2020-09-30 14:52:10', '2020-09-30 14:52:10', 'em7evg@gmail.com', '83617152779', 'Смотрите онлайн фильмы хорошего качества в приятной обстановке и в удобное для вас время на http://filmozavr.com Watch movies online in good quality, in a pleasant environment, and at any time on http://filmozavr.com ', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('143', '2020-09-30 15:15:44', '2020-09-30 15:15:44', 'ila964449@gmail.com', '82236235293', 'Порно фото голых девушек https://erofotki.club/photo/bassejn/ эротика и секс с ебливыми женщинами \r\n \r\n<a href=https://erofotki.club/photo/>картинки где девушки голые</a> ', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('144', '2020-09-30 15:15:45', '2020-09-30 15:15:45', 'fodolovanina@gmail.com', '88927634827', 'Голые девушки и красивые женщины https://fotosos.xyz/foto/krempaj/ Фото эротика - Fotosos \r\n \r\n<a href=https://fotosos.xyz/foto/>фото девушек после секса</a> ', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('145', '2020-09-30 16:56:06', '2020-09-30 16:56:06', 'roiclanoceepov@gmail.com', '86933347314', 'Blackgirlagign', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('146', '2020-09-30 19:09:06', '2020-09-30 19:09:06', 'semenovdeniscju@mail.ru', '84753357373', 'сухая стяжка пола в самаре \r\n \r\n<a href=https://masterpol63.ru/>сухой пол кнауф в самаре</a>', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('147', '2020-09-30 20:59:15', '2020-09-30 20:59:15', 'ser.ge.yn.o.v.i.ko.v20..1.97.7.@gmail.com', '81566339254', 'Регистрация', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('148', '2020-09-30 23:44:30', '2020-09-30 23:44:30', 'he.n.taiwo.r.l.d.pi.ctu.res5@gdemoy.site', '82711344746', '<a href=https://vyvod24.ru/lechenie-igromanii/>Лечение игромании в наркологической клинике Вывод24</a>', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('149', '2020-10-01 03:15:08', '2020-10-01 03:15:08', 'aidanshanovna11@gmail.com', '89035896545', 'The financial Robot is your # 1 expert of making money. \r\nLink - https://moneylinks.page.link/6SuK', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('150', '2020-10-03 04:20:37', '2020-10-03 04:20:37', 'lera_egorova_pic633k@mail.ru', '84536318184', 'Привет', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('151', '2020-10-03 16:12:04', '2020-10-03 16:12:04', 'vasijliynaliev@gmail.com', '88396372778', 'gtnzagign', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('152', '2020-10-08 08:01:39', '2020-10-08 08:01:39', 'kromovi999@gmail.com', '82282219636', 'Телочки! https://telochki.top/categories/popki/ Эротические фото голых девушек \r\n \r\n \r\n \r\n<a href=https://telochki.top/>секс утром фото</a> ', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('153', '2020-10-09 16:34:58', '2020-10-09 16:34:58', 'nkvoron33@gmail.com', '82947374283', 'Ruslanaagign', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('154', '2020-10-09 21:31:46', '2020-10-09 21:31:46', 'braoish34@gmx.ch', '89030949775', 'Even a child knows how to make $100 today with the help of this robot. \r\nLink - - https://moneylinks.page.link/6SuK', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('155', '2020-10-10 20:12:35', '2020-10-10 20:12:35', 'yusta.sb.u.lki.n@gmail.com', '89687955894', 'Спасибо за совет все нашлось тут! \r\n \r\n<a href=https://5-xl.ru/category/ob-anonimnosti-v-seti-i-prochee/>ОБ АНОНИМНОСТИ В СЕТИ И ПРОЧЕЕ</a>', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('156', '2020-10-11 02:43:20', '2020-10-11 02:43:20', 'pedrogomez125@gmail.com', '84992618573', 'Excellent. http://pielabergensmalm.tk Townhomes Site ', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('157', '2020-10-11 23:43:39', '2020-10-11 23:43:39', 'm.o.z.e.llo.c.re.di.tt@gmail.com', '86451129972', '<a href=\"http://kredit-pod-zalog.mozello.ru/uslugikredit-pod-zalog-kvartiry\">Кредит под залог дома</a>\r\n', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('158', '2020-10-12 02:29:37', '2020-10-12 02:29:37', 'lago@gmx.ch', '89030357475', 'Make thousands of bucks. Financial robot will help you to do it! \r\nLink - - https://moneylinks.page.link/6SuK', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('159', '2020-10-12 09:00:36', '2020-10-12 09:00:36', 'damir.markelov.89@mail.ru', '85846963672', 'меллер подоконники купить \r\n \r\n<a href=https://sill.store>купить подоконник данке в спб</a>', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('160', '2020-10-12 11:52:54', '2020-10-12 11:52:54', 's.e.rafi.mt.ar.a.s.o.v.1.9.9.8@gmail.com', '81281757957', 'hola.mia/ any conter artanis going up kaelthas will stay yellow stolen beware europe triple xsmass/s www.cutt.us/rpDIL', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('161', '2020-10-12 14:35:04', '2020-10-12 14:35:04', 'is6868578@gmail.com', '81212265311', 'Lannykotagign', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('162', '2020-10-12 19:34:31', '2020-10-12 19:34:31', 'abramovviktornck@mail.ru', '86822226975', 'биокамин \r\n \r\n<a href=http://биокамин.рф>биокамин купить</a>', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('163', '2020-10-12 22:57:13', '2020-10-12 22:57:13', 'bashirovantonljl@mail.ru', '85599248182', 'Подоконники купить \r\n \r\n<a href=https://sill.store>подоконник глянцевый купить</a>', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('164', '2020-10-13 03:53:08', '2020-10-13 03:53:08', 'petya.roshchin.85@mail.ru', '89545567598', 'алиэкспресс \r\n \r\nПерейдите по ссылке <a href=https://aliexpress-kabinet-online.ru/>отследить посылку с алиэкспресс</a> и получайте бонусы от алиэкспресс.', null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('165', '2020-10-13 10:24:52', '2020-10-13 10:24:52', '1@sh1371291.a.had.su', '85261784166', null, null, null, null, null, '2');
INSERT INTO `cms_guestbook` VALUES ('166', '2020-10-18 23:15:26', '2020-10-18 23:15:26', 'dfdf', 'dfd', 'df', null, null, null, null, '10');
INSERT INTO `cms_guestbook` VALUES ('167', '2020-10-26 22:26:33', '2020-10-26 22:26:33', '11123', '13187890874', 'aa', null, null, null, null, '10');
INSERT INTO `cms_guestbook` VALUES ('168', '2021-01-19 15:57:58', '2021-01-19 15:57:58', 'hello', '15098756846', '11', null, null, null, null, '10');
INSERT INTO `cms_guestbook` VALUES ('169', '2021-01-19 15:59:08', '2021-01-19 15:59:08', '11', '15098756846', 'ohayo', null, null, null, null, '10');
INSERT INTO `cms_guestbook` VALUES ('170', '2021-01-19 15:59:42', '2021-01-19 15:59:42', 'world', '15098756846', 'aaa', null, null, null, null, '10');
INSERT INTO `cms_guestbook` VALUES ('171', '2021-01-19 17:11:19', '2021-01-19 17:11:19', '11', '150942568756', '请输入留言内容', null, null, null, null, '10');
INSERT INTO `cms_guestbook` VALUES ('172', '2021-01-19 17:14:23', '2021-01-19 17:14:23', '11', '150942568756', '请输入留言内容', null, null, null, null, '10');
INSERT INTO `cms_guestbook` VALUES ('173', '2021-01-19 17:16:30', '2021-01-19 17:16:30', '11', '150942568756', '11', null, null, null, null, '10');
INSERT INTO `cms_guestbook` VALUES ('174', '2021-01-19 17:18:17', '2021-01-19 17:18:17', '11', '15098756846', '11', null, null, null, null, '10');
INSERT INTO `cms_guestbook` VALUES ('175', '2021-01-19 17:22:44', '2021-01-19 17:22:44', 'hello', '15098268412', 'hello', null, null, null, null, '10');
INSERT INTO `cms_guestbook` VALUES ('176', '2021-01-19 17:23:18', '2021-01-19 17:23:18', 'bbb', '15098268412', 'bbb', null, null, null, null, '10');
INSERT INTO `cms_guestbook` VALUES ('177', '2021-02-04 09:29:53', '2021-02-04 09:29:53', '5465', '46584', '411', null, null, null, null, '10');
INSERT INTO `cms_guestbook` VALUES ('178', '2021-03-02 21:28:55', '2021-03-02 21:28:55', 'eeee', '1111111222233', '请问威尔肯ii哦里路德', null, null, null, null, '10');
-- ----------------------------
-- Table structure for `cms_menu`
-- ----------------------------
DROP TABLE IF EXISTS `cms_menu`;
CREATE TABLE `cms_menu` (
`id` bigint(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
`createDate` datetime NOT NULL COMMENT '创建日期',
`updateDate` datetime NOT NULL COMMENT '修改日期',
`sort` int(11) DEFAULT NULL COMMENT '排序',
`grade` int(11) DEFAULT NULL COMMENT '等级',
`treePath` varchar(255) DEFAULT NULL COMMENT '树结构路径',
`code` varchar(255) DEFAULT NULL COMMENT '编号',
`name` varchar(255) DEFAULT NULL COMMENT '名称',
`type` int(11) DEFAULT NULL COMMENT '类型',
`parentId` bigint(11) DEFAULT NULL COMMENT '父菜单ID',
`url` varchar(255) DEFAULT NULL COMMENT '地址',
`icon` varchar(255) DEFAULT NULL COMMENT '图标',
`isShow` bit(1) DEFAULT NULL COMMENT '是否显示',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8 COMMENT='菜单表';
-- ----------------------------
-- Records of cms_menu
-- ----------------------------
INSERT INTO `cms_menu` VALUES ('1', '2019-11-18 17:40:10', '2021-03-19 09:50:17', null, '0', ',', null, '全局配置', '1', null, '#', 'fa-folder', '');
INSERT INTO `cms_menu` VALUES ('2', '2019-11-18 17:40:10', '2019-11-18 17:40:10', null, '1', ',1,', 'setup', '配置参数', '2', '1', '/admin/setup', null, '');
INSERT INTO `cms_menu` VALUES ('3', '2019-11-18 17:41:30', '2019-11-18 17:41:33', null, '1', ',1,', 'model', '模型管理', '2', '1', '/admin/model', null, '');
INSERT INTO `cms_menu` VALUES ('5', '2019-11-20 16:35:28', '2019-11-20 16:35:31', null, '0', ',', null, '基础内容', '1', null, '#', 'fa-folder', '');
INSERT INTO `cms_menu` VALUES ('6', '2019-11-20 16:36:09', '2019-11-20 16:36:05', null, '1', ',5,', 'web', '网站信息', '2', '5', '/admin/web', null, '');
INSERT INTO `cms_menu` VALUES ('7', '2019-11-20 16:49:12', '2019-11-20 16:49:14', null, '1', ',5,', 'company', '公司信息', '2', '5', '/admin/company', null, '');
INSERT INTO `cms_menu` VALUES ('8', '2019-11-20 16:50:30', '2019-11-20 16:50:32', null, '1', ',5,', 'category', '内容栏目', '2', '5', '/admin/category', null, '');
INSERT INTO `cms_menu` VALUES ('9', '2019-11-20 16:52:12', '2019-11-20 16:52:15', null, '0', ',', '', '内容管理', '1', null, '#', 'fa-folder', '');
INSERT INTO `cms_menu` VALUES ('10', '2019-11-20 16:54:36', '2019-11-20 16:54:38', null, '0', ',', null, '扩展内容', '1', null, '#', 'fa-folder', '');
INSERT INTO `cms_menu` VALUES ('11', '2019-11-20 16:55:51', '2019-11-20 16:55:48', null, '1', ',10,', 'guestbook', '留言信息', '2', '10', '/admin/guestbook', null, '');
INSERT INTO `cms_menu` VALUES ('12', '2019-11-20 17:06:32', '2019-11-20 17:06:35', null, '1', ',10,', 'slide', '轮播图片', '2', '10', '/admin/slide', null, '');
INSERT INTO `cms_menu` VALUES ('13', '2019-11-20 17:07:40', '2019-11-20 17:07:43', null, '1', ',10,', 'friendLink', '友情链接', '2', '10', '/admin/friend_link', null, '');
INSERT INTO `cms_menu` VALUES ('14', '2019-11-20 17:08:43', '2019-11-20 17:08:46', null, '1', ',10,', 'form', '自定义表', '2', '10', '/admin/form', null, '');
INSERT INTO `cms_menu` VALUES ('15', '2019-11-20 17:10:31', '2019-11-20 17:10:33', null, '1', ',10,', 'formData', '自定义数据', '2', '10', '/admin/form_data', null, '');
INSERT INTO `cms_menu` VALUES ('16', '2019-12-06 10:42:02', '2019-12-06 10:41:59', null, '0', ',', null, '公众号管理', '1', null, '#', 'fa-folder', '');
INSERT INTO `cms_menu` VALUES ('17', '2019-12-06 10:43:30', '2019-12-06 10:43:27', null, '1', ',16,', 'wechatMenu', '微信菜单', '2', '16', '/admin/wechat_menu', null, '');
INSERT INTO `cms_menu` VALUES ('18', '2019-11-20 17:38:20', '2019-11-20 17:38:22', null, '0', ',', null, '系统管理', '1', null, '#', 'fa-folder', '');
INSERT INTO `cms_menu` VALUES ('19', '2019-11-20 17:38:57', '2019-11-20 17:38:59', null, '1', ',18,', 'site', '站点管理', '2', '18', '/admin/site', null, '');
INSERT INTO `cms_menu` VALUES ('20', '2019-11-20 17:43:43', '2019-11-20 17:43:40', null, '1', ',18,', 'role', '系统角色', '2', '18', '/admin/role', null, '');
INSERT INTO `cms_menu` VALUES ('21', '2019-11-20 17:44:25', '2019-11-20 17:44:27', null, '1', ',18,', 'admin', '系统用户', '2', '18', '/admin/admin', null, '');
INSERT INTO `cms_menu` VALUES ('22', '2019-11-20 17:45:08', '2019-11-20 17:45:10', null, '1', ',18,', 'database', '数据库管理', '2', '18', '/admin/database', null, '');
INSERT INTO `cms_menu` VALUES ('23', '2019-12-06 09:55:24', '2019-12-06 09:55:27', null, '1', ',18,', 'template', '模板管理', '2', '18', '/admin/template', null, '');
INSERT INTO `cms_menu` VALUES ('24', '2019-12-07 13:57:53', '2019-12-07 13:57:57', null, '1', ',18,', 'menu', '菜单管理', '2', '18', '/admin/menu', null, '');
INSERT INTO `cms_menu` VALUES ('25', '2021-03-19 16:45:25', '2021-03-19 16:45:30', null, '1', ',9,', 'content', '内容数据', '2', '9', '/admin/content', null, '');
INSERT INTO `cms_menu` VALUES ('26', '2021-03-19 17:17:01', '2021-03-19 17:16:58', null, '1', ',9,', 'tag', '标签管理', '2', '9', '/admin/tag', null, '');
-- ----------------------------
-- Table structure for `cms_model`
-- ----------------------------
DROP TABLE IF EXISTS `cms_model`;
CREATE TABLE `cms_model` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
`createDate` datetime NOT NULL COMMENT '创建日期',
`updateDate` datetime NOT NULL COMMENT '修改日期',
`name` varchar(255) DEFAULT NULL COMMENT '名称',
`type` int(11) DEFAULT NULL COMMENT '类型',
`listTemplate` varchar(255) DEFAULT NULL COMMENT '列表模板',
`detailTemplate` varchar(255) DEFAULT NULL COMMENT '详情模板',
`status` int(11) DEFAULT NULL COMMENT '状态',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='内容模型表';
-- ----------------------------
-- Records of cms_model
-- ----------------------------
INSERT INTO `cms_model` VALUES ('1', '2018-06-14 14:32:01', '2018-06-14 14:32:04', '产品', '2', 'product_list.html', 'product_detail.html', '1');
INSERT INTO `cms_model` VALUES ('2', '2018-06-14 14:33:46', '2018-10-25 06:59:58', '新闻', '2', 'news_list.html', 'news_detail.html', '1');
INSERT INTO `cms_model` VALUES ('3', '2018-06-14 14:33:47', '2020-11-06 20:15:03', '视频', '2', 'video_list.html', 'video_detail.html', '1');
INSERT INTO `cms_model` VALUES ('4', '2019-12-12 11:24:00', '2020-10-07 22:48:42', '专题', '1', null, null, '1');
INSERT INTO `cms_model` VALUES ('5', '2020-11-06 20:25:21', '2020-11-06 20:25:21', '案例', '2', null, null, '1');
-- ----------------------------
-- Table structure for `cms_model_field`
-- ----------------------------
DROP TABLE IF EXISTS `cms_model_field`;
CREATE TABLE `cms_model_field` (
`id` bigint(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
`createDate` datetime NOT NULL COMMENT '创建日期',
`updateDate` datetime NOT NULL COMMENT '修改日期',
`name` varchar(255) DEFAULT NULL COMMENT '名称',
`sort` int(11) DEFAULT NULL COMMENT '排序',
`type` varchar(255) DEFAULT NULL COMMENT '类型',
`alias` varchar(255) DEFAULT NULL COMMENT '字段描述',
`value` text COMMENT '选择按钮值',
`modelId` bigint(11) DEFAULT NULL COMMENT '模型ID',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=26 DEFAULT CHARSET=utf8 COMMENT='内容字段表';
-- ----------------------------
-- Records of cms_model_field
-- ----------------------------
INSERT INTO `cms_model_field` VALUES ('1', '2019-02-23 11:35:08', '2019-02-23 11:35:10', 'videoPic', '1', 'file', '视频封面', '', '3');
INSERT INTO `cms_model_field` VALUES ('2', '2019-02-23 11:35:49', '2019-02-23 11:35:51', 'videoFile', '2', 'file', '视频文件', '', '3');
INSERT INTO `cms_model_field` VALUES ('23', '2019-12-28 15:38:22', '2019-12-28 15:38:22', 'leixing', null, 'select', '类型', '基础版,专业版,旗舰版', '1');
INSERT INTO `cms_model_field` VALUES ('24', '2019-12-28 15:38:49', '2019-12-28 15:38:49', 'yanse', null, 'radio', '颜色', '红色,橙色,黄色,绿色,蓝色,紫色', '1');
INSERT INTO `cms_model_field` VALUES ('25', '2019-12-28 15:39:10', '2019-12-28 15:39:10', 'jiage', null, 'input', '价格', null, '1');
-- ----------------------------
-- Table structure for `cms_role`
-- ----------------------------
DROP TABLE IF EXISTS `cms_role`;
CREATE TABLE `cms_role` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
`createDate` datetime NOT NULL COMMENT '创建日期',
`updateDate` datetime NOT NULL COMMENT '修改日期',
`name` varchar(255) DEFAULT NULL COMMENT '角色名称',
`isSystem` bit(1) DEFAULT NULL COMMENT '是否系统内置',
`remark` varchar(255) DEFAULT NULL COMMENT '角色描述',
`permission` text COMMENT '权限',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='会员表';
-- ----------------------------
-- Records of cms_role
-- ----------------------------
INSERT INTO `cms_role` VALUES ('1', '2019-04-28 15:14:39', '2019-04-28 15:36:46', '管理员', '', '系统默认角色', '[]');
-- ----------------------------
-- Table structure for `cms_role_site`
-- ----------------------------
DROP TABLE IF EXISTS `cms_role_site`;
CREATE TABLE `cms_role_site` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
`siteId` int(11) DEFAULT NULL COMMENT '角色名称',
`roleId` int(11) DEFAULT NULL COMMENT '角色描述',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='会员表';
-- ----------------------------
-- Records of cms_role_site
-- ----------------------------
INSERT INTO `cms_role_site` VALUES ('1', '1', '1');
INSERT INTO `cms_role_site` VALUES ('2', '2', '1');
INSERT INTO `cms_role_site` VALUES ('3', '10', '1');
INSERT INTO `cms_role_site` VALUES ('4', '11', '1');
INSERT INTO `cms_role_site` VALUES ('5', '12', '1');
INSERT INTO `cms_role_site` VALUES ('6', '13', '1');
INSERT INTO `cms_role_site` VALUES ('7', '14', '1');
INSERT INTO `cms_role_site` VALUES ('8', '15', '1');
INSERT INTO `cms_role_site` VALUES ('9', '16', '1');
INSERT INTO `cms_role_site` VALUES ('10', '17', '1');
-- ----------------------------
-- Table structure for `cms_setup`
-- ----------------------------
DROP TABLE IF EXISTS `cms_setup`;
CREATE TABLE `cms_setup` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
`name` varchar(255) NOT NULL COMMENT '名称',
`value` varchar(255) DEFAULT NULL COMMENT '值',
`remark` varchar(255) DEFAULT NULL COMMENT '描述文本',
`sort` int(11) DEFAULT NULL COMMENT '排序',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of cms_setup
-- ----------------------------
INSERT INTO `cms_setup` VALUES ('1', 'isWatermarkEnabled', 'false', '是否开启水印', null);
INSERT INTO `cms_setup` VALUES ('2', 'watermarkImage', '/static/images/watermark.png', '水印图片', null);
INSERT INTO `cms_setup` VALUES ('3', 'watermarkPosition', 'no', '水印位置', null);
INSERT INTO `cms_setup` VALUES ('4', 'isCacheEnabled', 'true', '是否开启缓存', null);
-- ----------------------------
-- Table structure for `cms_site`
-- ----------------------------
DROP TABLE IF EXISTS `cms_site`;
CREATE TABLE `cms_site` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
`createDate` datetime NOT NULL COMMENT '创建日期',
`updateDate` datetime DEFAULT NULL COMMENT '修改日期',
`protocol` varchar(255) DEFAULT NULL COMMENT '协议',
`pcTemplate` varchar(255) DEFAULT NULL COMMENT '站点PC端模板',
`mobileTemplate` varchar(255) DEFAULT NULL COMMENT '站点手机端端模板',
`isDefault` bit(1) DEFAULT NULL COMMENT '是否默认',
`name` varchar(255) DEFAULT NULL COMMENT '名称',
`cat` varchar(255) DEFAULT NULL COMMENT 'URL目录',
`domain` varchar(255) DEFAULT NULL COMMENT '域名',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of cms_site
-- ----------------------------
INSERT INTO `cms_site` VALUES ('1', '2019-08-24 15:52:12', '2020-06-17 11:31:55', null, 'default_cn', null, '', '默认中文模板', 'default_cn', null);
INSERT INTO `cms_site` VALUES ('2', '2019-08-24 15:54:09', '2021-02-28 16:35:27', null, 'default_en', null, '', '默认英文模板', 'default_en', null);
INSERT INTO `cms_site` VALUES ('10', '2019-12-25 18:41:02', '2021-03-23 09:18:03', null, 'qyjt_moban1', null, '', '科技公司网站模板', '', null);
INSERT INTO `cms_site` VALUES ('11', '2020-03-16 17:14:26', '2021-03-23 09:18:03', null, 'qyjt_moban2', null, '', '化工及材料公司网站模板', 'qyjt_moban2', null);
INSERT INTO `cms_site` VALUES ('12', '2020-03-20 14:30:03', '2020-03-20 14:30:32', null, 'qyjt_moban3', null, '', '教育培训机构或学校网站模板', 'qyjt_moban3', null);
INSERT INTO `cms_site` VALUES ('13', '2020-03-23 11:19:15', '2020-03-23 11:19:17', null, 'qyjt_moban4', null, '', '生活服务类公司网站模板', 'qyjt_moban4', null);
INSERT INTO `cms_site` VALUES ('14', '2020-03-23 11:25:23', '2020-10-07 22:54:59', null, 'qyjt_moban5', null, '', '建筑及装修类公司网站模板', 'qyjt_moban5', null);
INSERT INTO `cms_site` VALUES ('15', '2020-03-23 15:21:29', '2020-10-10 15:05:21', null, 'qyjt_moban6', null, '', '农林牧渔类公司网站模板', 'qyjt_moban6', null);
INSERT INTO `cms_site` VALUES ('16', '2020-03-27 13:37:28', '2020-10-07 23:21:00', null, 'qyjt_moban7', null, '', '机械设备制造类公司网站模板', 'qyjt_moban7', null);
INSERT INTO `cms_site` VALUES ('17', '2020-09-30 10:57:05', '2020-10-13 12:26:40', null, 'yljy_moban1', null, '', '某某教育集团培训学校', 'yljy_moban1', null);
INSERT INTO `cms_site` VALUES ('18', '2020-10-15 15:32:04', '2021-02-28 16:35:23', null, 'yljy_moban2', null, '', '高端音乐艺术教育培训类响应式网站模板', 'yljy_moban2', null);
-- ----------------------------
-- Table structure for `cms_slide`
-- ----------------------------
DROP TABLE IF EXISTS `cms_slide`;
CREATE TABLE `cms_slide` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
`createDate` datetime NOT NULL COMMENT '创建日期',
`updateDate` datetime NOT NULL COMMENT '修改日期',
`sort` int(11) DEFAULT NULL COMMENT '排序',
`subtitle` varchar(255) DEFAULT NULL COMMENT '副标题',
`image` varchar(255) DEFAULT NULL COMMENT '图片',
`title` varchar(255) DEFAULT NULL COMMENT '标题',
`url` varchar(255) DEFAULT NULL COMMENT '链接地址',
`gid` int(11) DEFAULT NULL COMMENT '分组',
`siteId` int(11) DEFAULT NULL COMMENT '站点ID',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=79 DEFAULT CHARSET=utf8 COMMENT='广告表';
-- ----------------------------
-- Records of cms_slide
-- ----------------------------
INSERT INTO `cms_slide` VALUES ('1', '2018-12-18 08:44:50', '2018-12-18 08:44:50', null, null, '/static/upload/banner1.png', '图片1', null, '1', '1');
INSERT INTO `cms_slide` VALUES ('2', '2018-12-18 08:45:03', '2018-12-18 08:45:03', null, null, '/static/upload/banner2.png', '图片2', null, '1', '1');
INSERT INTO `cms_slide` VALUES ('3', '2019-02-26 14:44:19', '2019-02-26 14:44:21', null, null, '/static/upload/banner1.png', 'pic1', null, '1', '2');
INSERT INTO `cms_slide` VALUES ('4', '2019-02-26 14:44:53', '2019-02-26 14:44:56', null, null, '/static/upload/banner2.png', 'pic2', null, '1', '2');
INSERT INTO `cms_slide` VALUES ('10', '2019-12-27 11:23:13', '2019-12-27 11:23:11', null, '永久开源、免费的JAVA建站系统', '/static/upload/image/20180412/1523500997605565.jpg', 'JreCms', null, '1', '10');
INSERT INTO `cms_slide` VALUES ('11', '2019-12-27 11:24:39', '2019-12-27 11:24:37', null, '高效、简洁、强悍的JAVA建站源码', '/static/upload/image/20180412/1523501147676550.jpg', 'JreCms', null, '1', '10');
INSERT INTO `cms_slide` VALUES ('20', '2020-03-17 14:36:43', '2020-03-17 14:36:40', null, '', '/static/upload/image/20180524/1527128016323528.jpg', '', null, '1', '11');
INSERT INTO `cms_slide` VALUES ('21', '2020-03-17 14:37:12', '2020-03-17 14:37:15', null, '', '/static/upload/image/20180524/1527128019600232.jpg', '', null, '1', '11');
INSERT INTO `cms_slide` VALUES ('22', '2020-03-17 14:37:56', '2020-03-17 14:37:53', null, null, '/static/upload/image/20180524/1527128035928339.jpg', '', null, '2', '11');
INSERT INTO `cms_slide` VALUES ('23', '2020-03-17 14:38:16', '2020-03-17 14:38:14', null, null, '/static/upload/image/20180524/1527128041916397.jpg', '', null, '2', '11');
INSERT INTO `cms_slide` VALUES ('24', '2020-03-20 13:42:06', '2020-03-20 13:42:08', null, null, '/static/upload/image/20180524/1527128012381076.jpg', null, null, '1', '11');
INSERT INTO `cms_slide` VALUES ('25', '2020-03-20 13:43:16', '2020-03-20 13:43:13', null, null, '/static/upload/image/20180524/1527128045342873.jpg', null, null, '2', '11');
INSERT INTO `cms_slide` VALUES ('30', '2020-03-20 13:43:16', '2020-03-20 13:43:16', null, null, '/static/upload/image/20180529/1527569924495485.jpg', null, null, '1', '12');
INSERT INTO `cms_slide` VALUES ('31', '2020-03-20 13:43:16', '2020-03-20 13:43:16', null, null, '/static/upload/image/20180529/1527569929593100.jpg', null, null, '1', '12');
INSERT INTO `cms_slide` VALUES ('32', '2020-03-20 13:43:16', '2020-03-20 13:43:16', null, null, '/static/upload/image/20180529/1527569933567340.jpg', null, null, '1', '12');
INSERT INTO `cms_slide` VALUES ('33', '2020-03-20 13:43:16', '2020-03-20 13:43:16', null, null, '/static/upload/image/20180529/1527570193861140.jpg', null, null, '2', '12');
INSERT INTO `cms_slide` VALUES ('34', '2020-03-20 13:43:16', '2020-03-20 13:43:16', null, null, '/static/upload/image/20180529/1527570198885598.jpg', null, null, '2', '12');
INSERT INTO `cms_slide` VALUES ('35', '2020-03-20 13:43:16', '2020-03-20 13:43:16', null, null, '/static/upload/image/20180529/1527570203957770.jpg', null, null, '2', '12');
INSERT INTO `cms_slide` VALUES ('40', '2020-03-20 13:43:16', '2020-10-07 22:50:11', null, null, '/static/upload/image/20180528/1527478126717559.jpg', null, '/static/upload/image/20180528/1527478126717559.jpg', '1', '13');
INSERT INTO `cms_slide` VALUES ('41', '2020-03-20 13:43:16', '2020-03-20 13:43:16', null, null, '/static/upload/image/20180528/1527478131643985.jpg', null, null, '1', '13');
INSERT INTO `cms_slide` VALUES ('42', '2020-03-20 13:43:16', '2020-03-20 13:43:16', null, null, '/static/upload/image/20180528/1527478135684834.jpg', null, null, '1', '13');
INSERT INTO `cms_slide` VALUES ('43', '2020-03-20 13:43:16', '2020-03-20 13:43:16', null, null, '/static/upload/image/20180528/1527478152613757.jpg', null, null, '2', '13');
INSERT INTO `cms_slide` VALUES ('44', '2020-03-20 13:43:16', '2020-03-20 13:43:16', null, null, '/static/upload/image/20180528/1527478156819937.jpg', null, null, '2', '13');
INSERT INTO `cms_slide` VALUES ('45', '2020-03-20 13:43:16', '2020-03-20 13:43:16', null, null, '/static/upload/image/20180528/1527478161864758.jpg', null, null, '2', '13');
INSERT INTO `cms_slide` VALUES ('50', '2020-03-20 13:43:16', '2020-03-20 13:43:16', null, null, '/static/upload/image/20180603/1528035157682653.jpg', null, null, '1', '14');
INSERT INTO `cms_slide` VALUES ('51', '2020-03-20 13:43:16', '2020-03-20 13:43:16', null, null, '/static/upload/image/20180603/1528035161585361.jpg', null, null, '1', '14');
INSERT INTO `cms_slide` VALUES ('52', '2020-03-20 13:43:16', '2020-03-20 13:43:16', null, null, '/static/upload/image/20180603/1528035165939651.jpg', null, null, '1', '14');
INSERT INTO `cms_slide` VALUES ('53', '2020-03-20 13:43:16', '2020-03-20 13:43:16', null, null, '/static/upload/image/20180603/1528036213239553.jpg', null, null, '2', '14');
INSERT INTO `cms_slide` VALUES ('54', '2020-03-20 13:43:16', '2020-03-20 13:43:16', null, null, '/static/upload/image/20180603/1528036219173634.jpg', null, null, '2', '14');
INSERT INTO `cms_slide` VALUES ('55', '2020-03-20 13:43:16', '2020-03-20 13:43:16', null, null, '/static/upload/image/20180603/1528036227582042.jpg', null, null, '2', '14');
INSERT INTO `cms_slide` VALUES ('60', '2020-03-20 13:43:16', '2020-03-20 13:43:16', null, null, '/static/upload/image/20180603/1527990259660359.jpg', null, null, '1', '15');
INSERT INTO `cms_slide` VALUES ('61', '2020-03-20 13:43:16', '2020-03-20 13:43:16', null, null, '/static/upload/image/20180603/1527990264767487.jpg', null, null, '1', '15');
INSERT INTO `cms_slide` VALUES ('62', '2020-03-20 13:43:16', '2020-03-20 13:43:16', null, null, '/static/upload/image/20180603/1527990271440764.jpg', null, null, '1', '15');
INSERT INTO `cms_slide` VALUES ('63', '2020-03-20 13:43:16', '2020-03-20 13:43:16', null, null, '/static/upload/image/20180603/1527991911823460.jpg', null, null, '2', '15');
INSERT INTO `cms_slide` VALUES ('64', '2020-03-20 13:43:16', '2020-03-20 13:43:16', null, null, '/static/upload/image/20180603/1527991916523706.jpg', null, null, '2', '15');
INSERT INTO `cms_slide` VALUES ('65', '2020-03-20 13:43:16', '2020-03-20 13:43:16', null, null, '/static/upload/image/20180603/1527991920527858.jpg', null, null, '2', '15');
INSERT INTO `cms_slide` VALUES ('70', '2020-03-20 13:43:16', '2020-03-20 13:43:16', null, null, '/static/upload/image/20180528/1527519583487456.jpg', null, null, '1', '16');
INSERT INTO `cms_slide` VALUES ('71', '2020-03-20 13:43:16', '2020-03-20 13:43:16', null, null, '/static/upload/image/20180528/1527519587830439.jpg', null, null, '1', '16');
INSERT INTO `cms_slide` VALUES ('72', '2020-03-20 13:43:16', '2020-03-20 13:43:16', null, null, '/static/upload/image/20180528/1527519591396943.jpg', null, null, '1', '16');
INSERT INTO `cms_slide` VALUES ('73', '2020-03-20 13:43:16', '2020-03-20 13:43:16', null, null, '/static/upload/image/20180528/1527520497169412.jpg', null, null, '2', '16');
INSERT INTO `cms_slide` VALUES ('74', '2020-03-20 13:43:16', '2020-03-20 13:43:16', null, null, '/static/upload/image/20180528/1527520503557611.jpg', null, null, '2', '16');
INSERT INTO `cms_slide` VALUES ('75', '2020-03-20 13:43:16', '2020-03-20 13:43:16', null, null, '/static/upload/image/20180528/1527520508101999.jpg', null, null, '2', '16');
INSERT INTO `cms_slide` VALUES ('76', '2020-10-14 10:29:12', '2020-10-14 10:29:15', null, null, '/templates/yljy_moban1/static/images/1-1FS0095P50-L.jpg', null, null, '1', '17');
INSERT INTO `cms_slide` VALUES ('77', '2020-10-14 10:40:51', '2020-10-14 10:40:54', null, null, '/templates/yljy_moban1/static/images/1-1FS0095K20-L.jpg', null, null, '1', '17');
INSERT INTO `cms_slide` VALUES ('78', '2020-10-14 10:41:35', '2020-10-14 10:41:38', null, null, '/templates/yljy_moban1/static/images/1-1FS00956130-L.jpg', null, null, '1', '17');
-- ----------------------------
-- Table structure for `cms_tag`
-- ----------------------------
DROP TABLE IF EXISTS `cms_tag`;
CREATE TABLE `cms_tag` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`createDate` datetime NOT NULL,
`updateDate` datetime NOT NULL,
`name` varchar(255) DEFAULT NULL,
`cat` varchar(255) DEFAULT NULL,
`siteId` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of cms_tag
-- ----------------------------
INSERT INTO `cms_tag` VALUES ('3', '2021-03-21 15:58:16', '2021-03-21 15:58:16', 'JAVA网站', null, '10');
-- ----------------------------
-- Table structure for `cms_test`
-- ----------------------------
DROP TABLE IF EXISTS `cms_test`;
CREATE TABLE `cms_test` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`createDate` datetime NOT NULL,
`updateDate` datetime NOT NULL,
`khxm` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of cms_test
-- ----------------------------
INSERT INTO `cms_test` VALUES ('1', '2020-08-13 11:22:08', '2020-08-13 11:22:08', '测试');
INSERT INTO `cms_test` VALUES ('2', '2020-08-13 11:22:16', '2020-08-13 11:22:16', '测试');
INSERT INTO `cms_test` VALUES ('3', '2020-08-13 11:22:46', '2020-10-07 22:50:52', '测试2');
INSERT INTO `cms_test` VALUES ('4', '2020-08-13 11:22:47', '2020-11-07 23:13:18', '测试1');
-- ----------------------------
-- Table structure for `cms_web`
-- ----------------------------
DROP TABLE IF EXISTS `cms_web`;
CREATE TABLE `cms_web` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
`domain` varchar(255) DEFAULT NULL COMMENT '站点域名',
`logo` varchar(255) DEFAULT NULL COMMENT '网站logo',
`subtitle` varchar(255) DEFAULT NULL COMMENT '站点副标题',
`title` varchar(255) DEFAULT NULL COMMENT '站点标题',
`keywords` varchar(255) DEFAULT NULL COMMENT '网站关键词',
`description` varchar(255) DEFAULT NULL COMMENT '网站描述',
`icp` varchar(255) DEFAULT NULL COMMENT '站点备案',
`statistical` text COMMENT '统计代码',
`copyright` varchar(255) DEFAULT NULL COMMENT '版权',
`siteId` int(11) DEFAULT NULL COMMENT '站点ID',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of cms_web
-- ----------------------------
INSERT INTO `cms_web` VALUES ('1', 'http://www.jrecms.com', '/static/upload/logo.png', '', 'JreCms,JavaCms,Java内容管理系统,网站建设,网站开发,微信公众号开发,微信小程序开发,微信APP开发,webapp开发', 'JreCms,JavaCms,Java内容管理系统,互联网建站平台,网站建设,网站开发,微信公众号开发,微信小程序开发,微信APP开发,webapp开发', 'JreCms,JavaCms,Java内容管理系统,互联网建站平台,网站建设,网站开发,微信公众号开发,微信小程序开发,微信APP开发,webapp开发,省时省力省心,标准化制作流程,让您建站无忧', null, null, null, '1');
INSERT INTO `cms_web` VALUES ('2', 'http://www.jrecms.com', '/static/upload/logo.png', null, 'JreCms,JavaCms,Java内容管理系统,网站建设,网站开发,微信公众号开发,微信小程序开发,微信APP开发,webapp开发', 'JreCms,JavaCms,Java内容管理系统,互联网建站平台,网站建设,网站开发,微信公众号开发,微信小程序开发,微信APP开发,webapp开发', 'JreCms,JavaCms,Java内容管理系统,互联网建站平台,网站建设,网站开发,微信公众号开发,微信小程序开发,微信APP开发,webapp开发,省时省力省心,标准化制作流程,让您建站无忧', null, null, null, '2');
INSERT INTO `cms_web` VALUES ('10', 'http://www.jrecms.com', '/static/upload/logo.png', null, 'JreCms,JavaCms,Java内容管理系统,网站建设,网站开发,微信公众号开发,微信小程序开发,微信APP开发,webapp开发', 'JreCms,JavaCms,Java内容管理系统,互联网建站平台,网站建设,网站开发,微信公众号开发,微信小程序开发,微信APP开发,webapp开发', 'JreCms,JavaCms,Java内容管理系统,互联网建站平台,网站建设,网站开发,微信公众号开发,微信小程序开发,微信APP开发,webapp开发,省时省力省心,标准化制作流程,让您建站无忧', null, null, null, '10');
INSERT INTO `cms_web` VALUES ('11', 'http://www.jrecms.com', '/static/upload/image/20180530/1527645578894624.png', null, 'JreCms,JavaCms,Java内容管理系统,网站建设,网站开发,微信公众号开发,微信小程序开发,微信APP开发,webapp开发', 'JreCms,JavaCms,Java内容管理系统,互联网建站平台,网站建设,网站开发,微信公众号开发,微信小程序开发,微信APP开发,webapp开发', 'JreCms,JavaCms,Java内容管理系统,互联网建站平台,网站建设,网站开发,微信公众号开发,微信小程序开发,微信APP开发,webapp开发,省时省力省心,标准化制作流程,让您建站无忧', null, null, null, '11');
INSERT INTO `cms_web` VALUES ('12', 'http://www.jrecms.com', '/static/upload/image/20180531/1527700968811978.png', null, 'JreCms,JavaCms,Java内容管理系统,网站建设,网站开发,微信公众号开发,微信小程序开发,微信APP开发,webapp开发', 'JreCms,JavaCms,Java内容管理系统,互联网建站平台,网站建设,网站开发,微信公众号开发,微信小程序开发,微信APP开发,webapp开发', 'JreCms,JavaCms,Java内容管理系统,互联网建站平台,网站建设,网站开发,微信公众号开发,微信小程序开发,微信APP开发,webapp开发,省时省力省心,标准化制作流程,让您建站无忧', null, null, null, '12');
INSERT INTO `cms_web` VALUES ('13', 'http://www.jrecms.com', '/static/upload/image/20180531/1527705708296596.png', null, 'JreCms,JavaCms,Java内容管理系统,网站建设,网站开发,微信公众号开发,微信小程序开发,微信APP开发,webapp开发', 'JreCms,JavaCms,Java内容管理系统,互联网建站平台,网站建设,网站开发,微信公众号开发,微信小程序开发,微信APP开发,webapp开发', 'JreCms,JavaCms,Java内容管理系统,互联网建站平台,网站建设,网站开发,微信公众号开发,微信小程序开发,微信APP开发,webapp开发,省时省力省心,标准化制作流程,让您建站无忧', null, null, null, '13');
INSERT INTO `cms_web` VALUES ('14', 'http://www.jrecms.com', '/static/upload/image/20180604/1528088310443039.png', null, 'JreCms,JavaCms,Java内容管理系统,网站建设,网站开发,微信公众号开发,微信小程序开发,微信APP开发,webapp开发', 'JreCms,JavaCms,Java内容管理系统,互联网建站平台,网站建设,网站开发,微信公众号开发,微信小程序开发,微信APP开发,webapp开发', 'JreCms,JavaCms,Java内容管理系统,互联网建站平台,网站建设,网站开发,微信公众号开发,微信小程序开发,微信APP开发,webapp开发,省时省力省心,标准化制作流程,让您建站无忧', null, null, null, '14');
INSERT INTO `cms_web` VALUES ('15', 'http://www.jrecms.com', '/static/upload/image/20180604/1528087104413066.png', null, 'JreCms,JavaCms,Java内容管理系统,网站建设,网站开发,微信公众号开发,微信小程序开发,微信APP开发,webapp开发', 'JreCms,JavaCms,Java内容管理系统,互联网建站平台,网站建设,网站开发,微信公众号开发,微信小程序开发,微信APP开发,webapp开发', 'JreCms,JavaCms,Java内容管理系统,互联网建站平台,网站建设,网站开发,微信公众号开发,微信小程序开发,微信APP开发,webapp开发,省时省力省心,标准化制作流程,让您建站无忧', null, null, null, '15');
INSERT INTO `cms_web` VALUES ('16', 'http://www.jrecms.com', '/static/upload/image/20180531/1527707493144292.png', null, 'JreCms,JavaCms,Java内容管理系统,网站建设,网站开发,微信公众号开发,微信小程序开发,微信APP开发,webapp开发', 'JreCms,JavaCms,Java内容管理系统,互联网建站平台,网站建设,网站开发,微信公众号开发,微信小程序开发,微信APP开发,webapp开发', 'JreCms,JavaCms,Java内容管理系统,互联网建站平台,网站建设,网站开发,微信公众号开发,微信小程序开发,微信APP开发,webapp开发,省时省力省心,标准化制作流程,让您建站无忧', null, null, null, '16');
INSERT INTO `cms_web` VALUES ('17', 'http://www.jrecms.com', '/templates/yljy_moban1/static/images/logo.png', null, 'JreCms,JavaCms,Java内容管理系统,网站建设,网站开发,微信公众号开发,微信小程序开发,微信APP开发,webapp开发', 'JreCms,JavaCms,Java内容管理系统,互联网建站平台,网站建设,网站开发,微信公众号开发,微信小程序开发,微信APP开发,webapp开发', 'JreCms,JavaCms,Java内容管理系统,互联网建站平台,网站建设,网站开发,微信公众号开发,微信小程序开发,微信APP开发,webapp开发,省时省力省心,标准化制作流程,让您建站无忧', null, null, null, '17');
INSERT INTO `cms_web` VALUES ('18', 'http://www.jrecms.com', '/templates/yljy_moban2/static/images/logo.png', null, 'JreCms,JavaCms,Java内容管理系统,网站建设,网站开发,微信公众号开发,微信小程序开发,微信APP开发,webapp开发', 'JreCms,JavaCms,Java内容管理系统,互联网建站平台,网站建设,网站开发,微信公众号开发,微信小程序开发,微信APP开发,webapp开发', 'JreCms,JavaCms,Java内容管理系统,互联网建站平台,网站建设,网站开发,微信公众号开发,微信小程序开发,微信APP开发,webapp开发,省时省力省心,标准化制作流程,让您建站无忧', null, null, null, '18');
-- ----------------------------
-- Table structure for `cms_wechat_menu`
-- ----------------------------
DROP TABLE IF EXISTS `cms_wechat_menu`;
CREATE TABLE `cms_wechat_menu` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
`createDate` datetime NOT NULL COMMENT '创建日期',
`updateDate` datetime NOT NULL COMMENT '修改日期',
`parentId` int(11) DEFAULT NULL COMMENT '父菜单ID',
`sort` int(11) DEFAULT NULL COMMENT '排序',
`name` varchar(255) DEFAULT NULL COMMENT '名称',
`type` varchar(255) DEFAULT NULL COMMENT '类型',
`keywords` varchar(255) DEFAULT NULL COMMENT '关键词',
`url` varchar(255) DEFAULT NULL COMMENT '链接地址',
`miniappid` varchar(255) DEFAULT NULL COMMENT '小程序appid',
`miniurl` varchar(255) DEFAULT NULL COMMENT '小程序备用网页url',
`minipath` varchar(255) DEFAULT NULL COMMENT '小程序路径',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='微信菜单表';
-- ----------------------------
-- Records of cms_wechat_menu
-- ----------------------------
INSERT INTO `cms_wechat_menu` VALUES ('1', '2020-11-09 16:28:47', '2020-11-09 16:29:12', null, null, 'ccc', 'click', '去去去', null, null, null, null);
INSERT INTO `cms_wechat_menu` VALUES ('2', '2020-11-09 16:29:12', '2020-11-09 16:29:12', null, null, 'www', 'click', 'wwww', null, null, null, null);
Java
1
https://gitee.com/dwxxd/JFinalcms.git
git@gitee.com:dwxxd/JFinalcms.git
dwxxd
JFinalcms
JFinalCMS
master

搜索帮助