msopen/doc/mcms-5.1.sql

831 lines
435 KiB
MySQL
Raw Normal View History

2020-06-29 14:33:46 +08:00
/*
Navicat MySQL Data Transfer
Source Server : localhost
Source Server Type : MySQL
Source Server Version : 50720
Source Host : localhost:3306
Source Schema : mcms-5.1
Target Server Type : MySQL
Target Server Version : 50720
File Encoding : 65001
Date: 29/06/2020 14:31:53
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for app
-- ----------------------------
DROP TABLE IF EXISTS `app`;
CREATE TABLE `app` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '站点id',
`app_name` varchar(60) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '站点名称',
`app_url` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '站点域名,多个回车换行显示',
`app_logo` varchar(4000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '网站logo',
`app_keyword` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '站点关键字',
`app_copyright` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '站点版权信息',
`app_style` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '站点风格',
`app_description` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '描述',
`app_datetime` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`app_mobile_style` varchar(11) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '移动端风格',
`app_pay_date` datetime(0) NULL DEFAULT NULL COMMENT '应用续费时间',
`app_pay` varchar(300) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '费用清单',
`app_state` int(1) UNSIGNED NOT NULL DEFAULT 0 COMMENT '0运行中 1已停止 ',
`app_mobile_state` int(1) UNSIGNED NOT NULL DEFAULT 0 COMMENT '0启用 1停用',
`app_login_page` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`del` int(1) NULL DEFAULT NULL,
`update_date` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
`update_by` int(11) NULL DEFAULT NULL COMMENT '修改人',
`create_date` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`create_by` int(11) NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '应用表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of app
-- ----------------------------
INSERT INTO `app` VALUES (1, 'MCMS-OPEN', 'http://localhost:8080/ms-mcms\r\n', '[{\"path\":\"/upload/1/appLogo/1578375538540.jpg\"}]', '铭飞MCMS', '版权所有 ©铭飞科技有限公司2012-2019 保留一切权利。', 'default', '铭飞MCMS', NULL, '', '2019-11-16 00:00:00', '', 0, 1, '', NULL, NULL, NULL, NULL, NULL);
-- ----------------------------
-- Table structure for cms_category
-- ----------------------------
DROP TABLE IF EXISTS `cms_category`;
CREATE TABLE `cms_category` (
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT,
`category_title` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '栏目管理名称',
`category_img` varchar(2000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '缩略图',
`category_flag` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '栏目属性',
`category_descrip` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '栏目管理描述',
`category_keyword` varchar(300) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '栏目管理关键字',
`category_path` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '栏目路径',
`category_parent_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '父类型编号',
`dict_id` int(11) NULL DEFAULT NULL COMMENT '字典对应编号',
`app_id` int(11) NULL DEFAULT NULL COMMENT '应用编号',
`category_manager_id` int(11) NULL DEFAULT NULL COMMENT '发布用户id',
`category_datetime` datetime(0) NULL DEFAULT NULL COMMENT '类别发布时间',
`mdiy_model_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '栏目管理的内容模型id',
`category_diy_url` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '自定义链接',
`category_url` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '内容模板',
`category_list_url` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '列表模板',
`category_sort` int(11) NULL DEFAULT NULL COMMENT '自定义顺序',
`category_type` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '栏目管理属性',
`category_id` varchar(4000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属栏目',
`del` int(1) NULL DEFAULT 0 COMMENT '删除标记',
`update_date` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
`update_by` int(11) NULL DEFAULT NULL COMMENT '修改人',
`create_date` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`create_by` int(11) NULL DEFAULT NULL COMMENT '创建人',
`category_pinyin` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 150 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '分类' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of cms_category
-- ----------------------------
INSERT INTO `cms_category` VALUES (19, '联系我们', NULL, NULL, '', '', '/19', NULL, 0, 1, 50, '2015-09-01 15:31:30', '0', NULL, 'contact.htm', 'contact.htm', 0, '2', '0', 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `cms_category` VALUES (23, '常见问题', NULL, NULL, '', '', '/23', NULL, 0, 1, 50, '2015-09-01 15:33:54', '0', NULL, 'about.htm', 'liebiao.htm', 0, '1', '0', 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `cms_category` VALUES (33, '投资', NULL, NULL, '', '', '/33', NULL, 0, 1, 50, '2015-09-02 00:32:02', '0', NULL, 'detail.htm', 'list.htm', 0, '1', '0', 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `cms_category` VALUES (52, '招商加盟', NULL, NULL, '', '', '/52', NULL, 0, 1, 50, '2016-03-15 17:35:38', '0', NULL, 'about.htm', 'about.htm', 0, '2', '0', 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `cms_category` VALUES (53, '关于我们', NULL, NULL, '', '', '/53', NULL, 0, 1, 50, '2016-03-16 17:16:11', '0', NULL, 'about.htm', 'about.htm', 0, '2', '0', 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `cms_category` VALUES (59, '新闻中心', NULL, NULL, '您可以通过以下新闻与公司动态进一步了解我们。我们所签约的客户无论他们的项目是大或者是小我们都将提供100%的服务', '', '/59', NULL, 0, 1, 50, '2016-03-26 13:18:53', '0', NULL, 'news-show.htm', 'news-list.htm', 0, '1', '0', 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `cms_category` VALUES (61, '客户案例', NULL, NULL, '新颖的设计方案,大胆的革新思想,灵活的运用最新技术,是品网视觉的特点,我们只做有灵魂的设计', '', '/61', NULL, 0, 1, 50, '2016-03-26 13:26:34', '0', NULL, 'case-show.htm', 'case-list.htm', 0, '1', '0', 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `cms_category` VALUES (62, '新闻', NULL, NULL, '您可以通过以下新闻与公司动态进一步了解我们。我们所签约的客户无论他们的项目是大或者是小我们都将提供100%的服务', '', '/62', NULL, 0, 1, 50, '2016-03-26 13:27:39', '0', NULL, 'news-show.htm', 'news-list.htm', 0, '1', '0', 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `cms_category` VALUES (63, '服务', NULL, NULL, '我们为您提供网站策划、网页设计、程序开发、网站推广、域名注册、虚拟主机、企业邮箱等网站建设相关服务为您提供iOS/Android/Windows Phone等移动平台的APP应用开发为您提供办公系统、客户关系管理系统、电子政务系统等行业应用系统的开发为您提供软件定制开发和系统集成服务。', '建站资源共享学习平台!', '/63', NULL, 0, 1, 50, '2016-03-26 13:29:07', '0', NULL, 'service.htm', 'service.htm', 0, '2', '0', 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `cms_category` VALUES (65, '网站设计', NULL, NULL, '新颖的设计方案,大胆的革新思想,灵活的运用最新技术,是品网视觉的特点,我们只做有灵魂的设计', '精选案例展示', '/61/65', '61', 0, 1, 50, '2016-03-26 14:34:49', '0', NULL, 'case-show.htm', 'case-list.htm', 3, '1', '61', 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `cms_category` VALUES (66, '手机应用', NULL, NULL, '新颖的设计方案,大胆的革新思想,灵活的运用最新技术,是品网视觉的特点,我们只做有灵魂的设计', '精选案例展示', '/61/66', '61', 0, 1, 50, '2016-03-26 14:35:49', '0', NULL, 'case-show.htm', 'case-list.htm', 1, '1', '61', 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `cms_category` VALUES (67, '平面设计', NULL, NULL, '新颖的设计方案,大胆的革新思想,灵活的运用最新技术,是品网视觉的特点,我们只做有灵魂的设计', '精选案例展示', '/61/67', '61', 0, 1, 50, '2016-03-26 14:36:15', '0', NULL, 'case-show.htm', 'case-list.htm', 2, '1', '61', 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `cms_category` VALUES (68, '公司新闻', NULL, NULL, '您可以通过以下新闻与公司动态进一步了解我们。我们所签约的客户无论他们的项目是大或者是小我们都将提供100%的服务', '', '/59/68', '59', 0, 1, 50, '2016-03-27 09:39:22', '0', NULL, 'news-show.htm', 'news-list.htm', 3, '1', '59', 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `cms_category` VALUES (69, '行业新闻', NULL, NULL, '', '', '/59/69', '59', 0, 1, 50, '2016-03-27 09:39:48', '0', NULL, 'news-show.htm', 'news-list.htm', 2, '1', '59', 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `cms_category` VALUES (70, '最新动态', NULL, NULL, '新闻中心', '', '/59/70', '59', 0, 1, 50, '2016-03-27 09:40:22', '0', NULL, 'news-show.htm', 'news-list.htm', 1, '1', '59', 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `cms_category` VALUES (83, '研发团队', NULL, NULL, '您可以通过以下新闻与公司动态进一步了解我们。我们所签约的客户无论他们的项目是大或者是小我们都将提供100%的服务', '', '/62/83', '62', 0, 1, 50, '2016-03-28 16:51:31', '0', NULL, 'news-show.htm', 'news-list.htm', 2, '1', '62', 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `cms_category` VALUES (84, '研发成果', NULL, NULL, '专业提供网站模板,网页模板,教程培训,程序插件,网站素材等建站资源。设计者:如果您是模板设计师,插件制作者。我们致力于打造一个优秀的建站资源共享学习平台!您可以在这里放心出售您的模板和插件,我们提供版权保护。购买者:购买本站资源,我们提供“三重保障”(担保交易+人工介入+售后服务),保障购买者的合法权益。织梦猫已经上路,我们将为此不懈努', '专业提供网站模板,网页模板,教程培训,程序插件,网站素材等建站资源。我们致力于打造一个优秀的建站资源共享学习平台!', '/62/84', '62', 0, 1, 50, '2016-03-28 16:54:29', '0', NULL, 'news-show.htm', 'news-list.htm', 1, '1', '62', 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `cms_category` VALUES (87, '客户的声音', NULL, NULL, '', '', '/87', NULL, 0, 1, 50, '2016-03-30 10:27:42', '0', NULL, 'solution.htm', 'about.htm', 0, '2', '0', 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `cms_category` VALUES (93, '关于我们', NULL, NULL, '关于我们', '关于我们', '/93', NULL, 0, 1, 50, '2016-04-11 19:52:30', '0', NULL, 'about.htm', 'about.htm', 0, '2', '0', 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `cms_category` VALUES (94, '主营业务', NULL, NULL, '关于我们', '关于我们', '/93/94', '93', 0, 1, 50, '2016-04-11 19:54:05', '0', NULL, 'about.htm', 'about.htm', 5, '2', '93', 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `cms_category` VALUES (95, '企业文化', NULL, NULL, '关于我们', '关于我们', '/93/95', '93', 0, 1, 50, '2016-04-11 19:54:43', '0', NULL, 'about.htm', 'about-list.htm', 4, '2', '93', 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `cms_category` VALUES (96, '资质荣誉', NULL, NULL, '', '', '/93/96', '93', 0, 1, 50, '2016-04-11 19:55:18', '0', NULL, 'about.htm', 'news-list.htm', 0, '2', '93', 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `cms_category` VALUES (97, '合作伙伴', NULL, NULL, '', '', '/93/97', '93', 0, 1, 50, '2016-04-11 19:55:41', '0', NULL, 'about.htm', 'about.htm', 0, '2', '93', 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `cms_category` VALUES (98, '企业优势', NULL, NULL, '生态农庄', '关于我们', '/93/98', '93', 0, 1, 50, '2016-04-11 19:56:04', '0', NULL, 'about.htm', 'about.htm', 0, '2', '93', 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `cms_category` VALUES (99, '服务项目', NULL, NULL, '', '', '/99', NULL, 0, 1, 50, '2016-04-11 20:32:40', '0', NULL, 'service.htm', 'product.htm', 0, '2', '0', 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `cms_category` VALUES (100, '首页幻灯', NULL, NULL, '', '', '/100', NULL, 0, 1, 50, '2016-04-11 20:56:40', '0', NULL, 'about.htm', 'about.htm', 0, '1', '0', 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `cms_category` VALUES (101, ' 全案设计', NULL, NULL, '品牌策划年度服务是岳派品牌机构的主要服务方式之一,以一年或更长时间作为服务周期,为企业进行有计划、有步骤的策划、设计、执行等,进行一体化品牌策划推广服务。', '专业服务', '/99/101', '99', 0, 1, 50, '2016-04-11 21:04:41', '0', NULL, 'servise.htm', 'about-list.htm', 3, '2', '99', 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `cms_category` VALUES (102, '企业形象设计', NULL, NULL, 'LOGO 标志设计 VIS设计 宣传物料设计视觉是人们接受外部信息的最重要和最主要的通道。设计科学、实施有利的视觉识别,是传播企业经营理念、建立企业知名度、塑造企业形象的快速便捷之途', '专业服务', '/99/102', '99', 0, 1, 50, '2016-04-11 21:05:11', '0', NULL, 'servise.htm', 'about-list.htm', 4, '2', '99', 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `cms_category` VALUES (103, '产品包装设计', NULL, NULL, '竞争的优势不仅在于产品,也源于产品包装的设计,一个产品的包装直接影响顾客购买心理,产品的包装是最直接的广告 ,由表及里是自然界认识事物不变的定律。', '专业服务', '/99/103', '99', 0, 1, 50, '2016-04-11 21:05:42', '0', NULL, 'servise.htm', 'news-list.htm', 2, '2', '99', 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `cms_category` VALUES (104, '连锁店设计', NULL, NULL, '连锁店的CI和一般企业的作法有相当大的差异最主要的因素就是与目标接触的场合不同。连锁店与消费者之间最常发生的接触就是在门店创造视觉的个性化与标准化来\r\n加深人们的印象', '专业服务', '/99/104', '99', 0, 1, 50, '2016-04-11 21:05:57', '0', NULL, 'servise.htm', 'news-list.htm', 0, '2', '99', 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `cms_category` VALUES (106, '产品列表', '[]', NULL, '新颖的设计方案,大胆的革新思想,灵活的运用最新技术,是品网视觉的特点,我们只做有灵魂的设计', '我们的作品', '/106', NULL, 0, 1, 50, '2016-04-11 21:15:27', '0', NULL, 'product-show.htm', 'product-list.htm', 0, '1', '', 0, '2019-12-28 14:37:22', NULL, NULL, NULL, NULL);
INSERT INTO `cms_category` VALUES (107, '产品一类', NULL, NULL, '新颖的设计方案,大胆的革新思想,灵活的运用最新技术,是品网视觉的特点,我们只做有灵魂的设计', '我们的作品', '/106/107', '106', 0, 1, 50, '2016-04-11 21:15:43', '0', NULL, 'product-show.htm', 'product-list.htm', 2, '1', '106', 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `cms_category` VALUES (108, '产品二类', NULL, NULL, '', '', '/106/108', '106', 0, 1, 50, '2016-04-11 21:16:21', '0', NULL, 'product-show.htm', 'product-list.htm', 1, '1', '106', 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `cms_category` VALUES (115, '专家研究院', NULL, NULL, '', '', '/115', NULL, 0, 1, 50, '2016-04-11 21:29:24', '0', NULL, 'show.htm', 'service.htm', 0, '1', '0', 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `cms_category` VALUES (133, '网站优化', NULL, NULL, '关于我们', '网站设计 网站制作 网站维护 网站改版', '/53/133', '53', 0, 1, 50, '2016-04-17 18:32:05', '0', NULL, 'about.htm', NULL, 3, '2', '53', 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `cms_category` VALUES (134, '网络营销', NULL, NULL, '', '网站整站优化 网页结构优化 网站关键词优化', '/53/134', '53', 0, 1, 50, '2016-04-17 18:33:01', '0', NULL, 'about.htm', NULL, 2, '2', '53', 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `cms_category` VALUES (135, '域名注册', NULL, NULL, '关于我们', '英文国际域名 英文国内域名 中文国际域名 中文国内域名', '/53/135', '53', 0, 1, 50, '2016-04-17 18:33:47', '0', NULL, 'about.htm', NULL, 1, '2', '53', 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `cms_category` VALUES (136, '优化报价', NULL, NULL, '联系我们', '', '/52/136', '52', 0, 1, 50, '2016-04-17 21:13:17', '0', NULL, 'about.htm', 'about.htm', 0, '2', '52', 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `cms_category` VALUES (138, '服务中心', NULL, NULL, '我们为您提供网站策划、网页设计、程序开发、网站推广、域名注册、虚拟主机、企业邮箱等网站建设相关服务为您提供iOS/Android/Windows Phone等移动平台的APP应用开发为您提供办公系统、客户关系管理系统、电子政务系统等行业应用系统的开发为您提供软件定制开发和系统集成服务。', '', '/63/138', '63', 0, 1, 50, '2016-04-29 17:15:49', '0', NULL, 'service.htm', 'service.htm', 0, '2', '63', 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `cms_category` VALUES (141, '联系我们', NULL, NULL, '', '', '/19/141', '19', 0, 1, 50, '2016-05-04 14:42:07', '0', NULL, 'contact.htm', 'contact.htm', 2, '2', '19', 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `cms_category` VALUES (142, '在线留言', NULL, NULL, '', '', '/19/142', '19', 0, 1, 50, '2016-05-04 14:42:31', '0', NULL, 'advice.htm', NULL, 1, '2', '19', 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `cms_category` VALUES (146, '人才招聘', '[]', '', '', '', '/146', NULL, 0, 1, 50, '2016-05-19 17:49:37', '0', NULL, 'about.htm', 'about.htm', 0, '2', '', 0, '2020-01-09 11:21:38', NULL, NULL, NULL, NULL);
INSERT INTO `cms_category` VALUES (147, '长图', NULL, NULL, '', '', '/100/147', '100', 0, 1, 50, '2016-06-02 17:23:49', '0', NULL, 'index.html', 'index.html', 0, '1', '100', 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `cms_category` VALUES (148, '短图', NULL, NULL, '', '', '/100/148', '100', 0, 1, 50, '2016-06-02 17:24:21', '0', NULL, 'index.html', 'index.html', 0, '1', '100', 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `cms_category` VALUES (149, '网站案例', '[]', NULL, '', '', '/149', NULL, 0, 1, 50, '2018-07-09 11:07:41', NULL, NULL, 'case-list.htm', 'case-list.htm', 1, '1', '', 0, '2019-12-28 17:49:38', NULL, NULL, NULL, NULL);
-- ----------------------------
-- Table structure for cms_content
-- ----------------------------
DROP TABLE IF EXISTS `cms_content`;
CREATE TABLE `cms_content` (
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT,
`app_id` int(11) NULL DEFAULT NULL COMMENT '文章管理的应用id',
`content_title` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '文章标题',
`content_category_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属栏目',
`content_url` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '文章跳转链接地址',
`content_details` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '文章内容',
`content_keyword` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '关键字',
`content_description` varchar(400) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '描述',
`content_img` varchar(1000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '文章缩略图',
`content_sort` int(11) NULL DEFAULT NULL COMMENT '自定义顺序',
`content_datetime` datetime(0) NULL DEFAULT NULL COMMENT '发布时间',
`content_source` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '文章来源',
`content_author` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '文章作者',
`content_display` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否显示',
`content_type` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '文章类型',
`content_hit` bigint(22) NULL DEFAULT NULL COMMENT '点击次数',
`del` int(1) NULL DEFAULT 0 COMMENT '删除标记',
`update_date` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
`update_by` int(11) NULL DEFAULT NULL COMMENT '修改人',
`create_date` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`create_by` int(11) NULL DEFAULT NULL COMMENT '创建人',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 223 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '文章' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of cms_content
-- ----------------------------
INSERT INTO `cms_content` VALUES (24, 1, '关于我们', '19', '/19\\index.html', '<p>&nbsp; 公司于2012年3月8日已正式向《景德镇市工商行政管理局》领取营业 &nbsp; 执照。</p><p>&nbsp; 公司名称:景德镇铭飞科技有限公司</p><p>&nbsp; 经营范围:计算机系统服务及技术开发、咨询服务</p><p><br/></p>', '公司于2012年3月8日已正式向《景德镇市工商行政管理局》领取营业 执照。\r\n 公司名称:景德镇铭飞科技有限公司\r\n 经营范围:计算机系统服务及技术开发、咨询服务', ' 公司于2012年3月8日已正式向《景德镇市工商行政管理局》领取营业 执照。\r\n 公司名称:景德镇铭飞科技有限公司\r\n 经营范围:计算机系统服务及技术开发、咨询服务', '', 0, '2028-01-01 00:00:00', '铭飞科技', '铭飞科技', '0', 'c,', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (36, 1, '网站建设', '53', '/53\\index.html', '<p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px; line-height: 24px; color: rgb(68, 68, 68); font-family: Verdana, Arial, Tahoma; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"padding: 0px; margin: 0px; font-size: 14px;\">网站整体策划</span></p><p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px; line-height: 24px; color: rgb(68, 68, 68); font-family: Verdana, Arial, Tahoma; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\">企业网站建设目的何在?如何充分挖掘互联网络的资源和优势,如何合理地组织网站内容与功能从而达到客户的需求?<br style=\"padding: 0px; margin: 0px;\"/>我们将根据市场分析、客户产品及服务的优势、竞争对手分析等等有效的确立网站定位。根据相关需求分析获得相应网站运营策略在网站建立之初我们就网站VI形象、网站营销手段、运营模式、网站发展前景等等进行定位。</p><p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px; line-height: 24px; color: rgb(68, 68, 68); font-family: Verdana, Arial, Tahoma; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\">&nbsp;</p><p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px; line-height: 24px; color: rgb(68, 68, 68); font-family: Verdana, Arial, Tahoma; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"padding: 0px; margin: 0px; font-size: 14px;\">网站设计&nbsp;<span style=\"padding: 0px; margin: 0px; color: rgb(255, 0, 0);\">DESIGN</span></span></p><p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px; line-height: 24px; color: rgb(68, 68, 68); font-family: Verdana, Arial, Tahoma; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\">网络媒体不同于传统媒体,如果在网站设计的时候仅仅是将文字和图片做一个简单堆积和展示的话,这样的网站跟一片丢落在街头的破旧宣传资料没有任何区别。客户往往通过企业网站就留下了对企业的第一印象,这个第一印象是决定客户是否与你合作的重要因素。<br style=\"padding: 0px; margin: 0px;\"/>所以在浏览者的角度我们分析企业特点和品牌内涵完美的通过网站体现企业形象并严格采用W3C国际标准进行网站设计采用DIV+CSS构 架,不但使您的网站具备足够的扩展性,您网站的速度、兼容性、友好性也都会显著提高,更主要的是,代码和表现分离的方式让您的网站改版变得更容易,而针对 SEO搜索引擎优化的工作也变得更加的畅通。</p><p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px; line-height: 24px; color: rgb(68, 68, 68); font-family: Verdana, Arial, Tahoma; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\">&nbsp;</p><p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px; line-height: 24px; color: rgb(68, 68, 68); font-family: Verdana, Arial, Tahoma; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"padding: 0px; margin: 0px; font-size: 14px;\">网站建设售后服务&nbsp;<span style=\"padding: 0px; margin: 0px; color: rgb(255, 0, 0);\">SALES</span></span></p><p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px; line-height: 24px; color: rgb(68, 68, 68); font-family: Verdana, Arial, Tahoma; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\">网站建设专家致力于为客户提供优质的产品及服务。为了多渠道的了解客户的需求,快速响应个性化需要,不断完善售后服务工作,我们客户服务管理部在此为您搭建了这个沟通的平台,我们希望通过网络加强与客户的交流。<br style=\"padding: 0px; margin: 0px;\"/>完善的售后服务是公司信誉的保障和服务趋于完善与成熟的象征因此我们<E68891>
INSERT INTO `cms_content` VALUES (37, 1, '人才招聘', '146', '/54\\37.html', '<p class=\"font_b font_14\" style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-weight: bold; font-size: 14px; color: rgb(51, 51, 51); font-family: 微软雅黑; line-height: 21px; white-space: normal; background-repeat: no-repeat;\">*&nbsp;&nbsp;以人为本,人尽其才&quot;的原则<br/>*&nbsp;&nbsp;德才兼备,德为先&nbsp;<br/>*&nbsp;&nbsp;内部提拔,给员工一个上升的空间<br/>*&nbsp;&nbsp;绩效考核制度,倡导&quot;能者上,庸者下&quot;的淘汰机制</p><p class=\"font_b font_14\" style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-weight: bold; font-size: 14px; color: rgb(51, 51, 51); font-family: 微软雅黑; line-height: 21px; white-space: normal; background-repeat: no-repeat;\">&nbsp;</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 12px; line-height: 21px; white-space: normal; background-repeat: no-repeat;\">一个企业的竞争力归结到底是人才的竞争力。荣超物业本着&quot;以人为本,人尽其才&quot;的原则,为有志于物业管理行业发展的人才提供一个发展的舞台。在人才招聘中,结合每位应聘者的素质、品格、经验进行综合评价,遵循公平、平等、竞争、择优以及双向选择的原则。</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 12px; line-height: 21px; white-space: normal; background-repeat: no-repeat;\">&nbsp;</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 12px; line-height: 21px; white-space: normal; background-repeat: no-repeat;\">企业内部的竞聘、晋升机制,为员工提供了公平竞争的机会。通过挖掘企业内部的人才,调动内部人员的潜力和积极性,促进了优秀人才脱颖而出,实现人力资源的合理配置,把&quot;合适的人放在合适的地方&quot;。</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 12px; line-height: 21px; white-space: normal; background-repeat: no-repeat;\">&nbsp;</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 12px; line-height: 21px; white-space: normal; background-repeat: no-repeat;\">建立客观公正的考核制度,是人才使用的一个重要人力资源措施。考核突出对每位员工的工作绩效、工作态度和工作能力进行考评,以提高团队的整体绩效和提高企业的管理服务水平,并倡导&quot;能者上,庸者下&quot;的淘汰机制。</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 12px; line-height: 21px; white-space: normal; background-repeat: no-repeat;\">&nbsp;</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 12px; line-height: 21px; white-space: normal; background-repeat: no-repeat;\">企业致力于创造一个员工于企业共同发展的空间和平台,荣超物业期待您的加盟,企业的发展将为您的加入而更为精彩!</p><p><br/></p>', '', '企业内部的竞聘、晋升机制,为员工提供了公平竞争的机会。通过挖掘企业内部的人才,调动内部人员的潜力和积极性,促进了优秀人才脱颖而出,实现人力资源的合理配置,把\"合适的人放在合适的地方\"。', '', 0, '2028-01-01 00:00:00', 'MS', '火星猿', '0', '', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (52, 1, '响应式Web设计的9项基本原则', '65', '/61/65\\52.html', '<p>响应式web设计对于解决多类型屏幕问题来说是个不错方案但从印刷的角度来看其却存在着很多的困难。没有固定的页面尺寸、没有毫米或英寸没有任何物 理限制,让人感到无从下手。随着建立网站可用的各种小工具越来越多,像素设计局限于桌面和移动端也已经成为历史。因此,现在就让我们来说明一下如何运用响 应式web设计的各项基本原则来实现而不是抗拒流畅的网页体验。为了简单起见我们将着重讲布局</p>', '', '响应式web设计对于解决多类型屏幕问题来说是个', '[{\"path\":\"/upload/article/1/1458980355125.png\"}]', 0, '2028-01-01 00:00:00', '来自火星的程序猿', 'MS', '0', 'f,', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (53, 1, '导航设计模式的重要意义', '65', '/61/65\\53.html', '<p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 14px; vertical-align: baseline; font-stretch: normal; font-family: &#39;Open Sans&#39;, sans-serif; line-height: 23px; color: rgb(114, 114, 114); white-space: normal; background: rgb(255, 255, 255);\"><strong style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;\">Gmai</strong>就 是单页应用的一个很好的例子其将多项操作融入了一个单独的“页面”中。单页设计的趋势是这一UI模式中相对不太高端的一种实现方式在这一设计模式下 所有内容均可通过同一页面访问。这一模式可以让浏览变得更快、响应更迅速从而让桌面与web应用之间的界限不再如此分明。</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 14px; vertical-align: baseline; font-stretch: normal; font-family: &#39;Open Sans&#39;, sans-serif; line-height: 23px; color: rgb(114, 114, 114); white-space: normal; background: rgb(255, 255, 255);\">&nbsp;</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 14px; vertical-align: baseline; font-stretch: normal; font-family: &#39;Open Sans&#39;, sans-serif; line-height: 23px; color: rgb(114, 114, 114); white-space: normal; background: rgb(255, 255, 255);\">对于Spotify等web应用考虑到用户有时会在背景播放音乐的同时浏览其他音乐这时单页应用模式的重要性就愈发凸显通过使用单页应用用户就无需对页面进行重新加载也不会造成音乐停止播放。</p><p><span style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 14px; vertical-align: baseline; color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; line-height: 23px; background: rgb(255, 255, 255);\">在 使用单页应用时需要考虑的一个问题就是URL结构。由于内容使用JavaScript动态加载URL会失去作用如果设计不当还会造成无法访问特定视 图。Gmail和Twitter等应用通过为每个视图生成专门的URL来克服这一问题这一方法还能够解决浏览器后退按钮失效的问题。</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 14px; vertical-align: baseline; font-stretch: normal; font-family: &#39;Open Sans&#39;, sans-serif; line-height: 23px; color: rgb(114, 114, 114); white-space: normal; background: rgb(255, 255, 255);\"><br/></p><p><br/></p>', '', 'Gmai 就 是单页应用的一个很好的例子,其将多项', '[{\"path\":\"/upload/article/1/1458981328236.jpeg\"}]', 0, '2028-01-01 00:00:00', '来自火星的程序猿', 'MS', '0', 'c,', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (54, 1, '如何进行可用性启发式评估', '67', '/61/67\\54.html', '<p><span style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; color: rgb(51, 51, 51); background: transparent;\"><span style=\"font-family:Verdana, 宋体;margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;\"><span style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;\">用 户体验只有在渗透入从创意到开发测试等产品开发的各个阶段时才能发挥最佳效果。当通常来说事情没这么简单,用户体验专家需要反复对已经完成的产品进行优化 才能使其达到我们口中所说的“用户友好”水平。但是,亡羊补牢,为时未晚。对现有网站进行用户体验优化也有自己的好处和缺点。好处是你可以获得更多真实用 户数据和统计信息方便进行用户调研,但另一方面,也会遇到很多变革的阻力,特别是在你要换掉用户“心爱的宝贝”的时候。</span></span></span></p><p><span style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 14px; vertical-align: baseline; font-family: &#39;Open Sans&#39;, sans-serif; line-height: 23px; color: rgb(127, 127, 127); background: rgb(255, 255, 255);\"><span style=\"font-family:微软雅黑,;margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;\"><span style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 16px; vertical-align: baseline; background: transparent;\">作为用户体验专家,你可以自由选择调研的方法,甚至可以使用超越传统工具的方法,但是今天,我想回归简单,谈一谈启发式评估方法。</span></span></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 14px; vertical-align: baseline; font-stretch: normal; font-family: &#39;Open Sans&#39;, sans-serif; line-height: 23px; color: rgb(114, 114, 114); white-space: normal; background: rgb(255, 255, 255);\"><br/></p><p><br/></p>', '', '用 户体验只有在渗透入从创意到开发测试等产品', '[{\"path\":\"/upload/article/1/1458981122379.png\"}]', 0, '2028-01-01 00:00:00', '来自火星的程序猿', 'MS', '0', '', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (55, 1, '响应式Web设计的9项基本原则', '67', '/61/67\\55.html', '<p><span style=\"color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; font-size: 14px; line-height: 23px; background-color: rgb(255, 255, 255);\">想象一下走进一个狭小拥挤,遍地垃圾的商店。店员不停怂恿你买自己不想要的东西。在这种情况下,你肯定会马上转身离开去别家。如果有人给你压力,逼迫你在充满敌意的环境下快速做出抉择,你会自然而然的失去信任感。这一点也适用于网络。</span><br style=\"color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; font-size: 14px; line-height: 23px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; font-size: 14px; line-height: 23px; white-space: normal; background-color: rgb(255, 255, 255);\"/><span style=\"color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; font-size: 14px; line-height: 23px; background-color: rgb(255, 255, 255);\">网上充满着向你推销各种服务和产品的人。用户要先信任你才能考虑从你那购买产品或服务。下面列出了10个比较流行的让用户相信、信任你登陆页面的方法。你可以借鉴或者干脆照搬这些方法为你的网上业务建立起值得信赖的网站。</span><br style=\"color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; font-size: 14px; line-height: 23px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; font-size: 14px; line-height: 23px; white-space: normal; background-color: rgb(255, 255, 255);\"/><strong style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 14px; vertical-align: baseline; color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; line-height: 23px; white-space: normal; background: rgb(255, 255, 255);\">1.快速表现价值</strong><br style=\"color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; font-size: 14px; line-height: 23px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; font-size: 14px; line-height: 23px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; font-size: 14px; line-height: 23px; white-space: normal; background-color: rgb(255, 255, 255);\"/><span style=\"color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; font-size: 14px; line-height: 23px; background-color: rgb(255, 255, 255);\">每个来到你登陆页面的用户都会问同一个问题:你能给我带来什么好处?你需要让他们立刻看到你所能提供的价值。使用显眼的标题说明你所能提供的内容,以及你 与竞争对手的不同之处在哪。但是不要太过于强调你自己和你的公司,否则可能会让用户反感而离开。应当着重强调你如何满足用户的需求。</span></p>', '', '想象一下走进一个狭小拥挤,遍地垃圾的商店。店', '[{\"path\":\"/upload/article/1/1458981072779.jpg\"}]', 0, '2028-01-01 00:00:00', '来自火星的程序猿', 'MS', '0', 'h,', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (56, 1, '原生App切图的那些事儿', '66', '/61/66\\56.html', '<p><span style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; color: rgb(120, 120, 120); background: transparent;\"><span style=\"font-family:Tahoma, simsun;margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;\"><span style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 12px; vertical-align: baseline; background: transparent;\">最小的分辨率是320x480我们把这个尺寸定为基准界面尺寸baseline基准尺寸所用的图标定为1倍图1x。</span></span></span></p><p><br style=\"color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; font-size: 14px; line-height: 23px; white-space: normal; background-color: rgb(255, 255, 255);\"/></p><p><span style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; color: rgb(120, 120, 120); background: transparent;\"><span style=\"font-family:Tahoma, simsun;margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;\"><span style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 12px; vertical-align: baseline; background: transparent;\">在 实际设计过程中为了降低设计成本一般拿设备最高的分辨率作为设计稿的原始尺寸拿iphone来说就是iphone5或5s的640x1136啦当 然也可以用iphone4或4s的640x960因为宽度都是640px他们切图的标准是一样的。显然以1倍图的基准尺寸宽320px为相对的 参考依据宽640px的设计稿以原始尺寸切出来的图标称为2倍图2x。</span></span></span></p><p>&nbsp;</p><p><span style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; color: rgb(120, 120, 120); background: transparent;\"><span style=\"font-family:Tahoma, simsun;margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;\"><span style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 12px; vertical-align: baseline; background: transparent;\">有人可能会问为什么不拿320px作为设计稿的原始尺寸呢因为1倍图放大成为2倍图远比2倍图缩小成1倍图来得模糊</span></span></span></p><p>&nbsp;</p><p><span style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; color: rgb(120, 120, 120); background: transparent;\"><span style=\"font-family:Tahoma, simsun;margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;\"><span style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 12px; vertical-align: baseline; background: transparent;\">于是在不考虑iphone6和iphone 6 plus的情况下为了适配iphone每个图标需要切两份。</span></span></span></p><p>&nbsp;</p><p><strong style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 14px; vertical-align: baseline; color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; line-height: 23px; white-space: normal; background: rgb(255, 255, 255);\"><span style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;\">Android - 更为繁多的界面尺寸</span></strong><br style=\"color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; font-size: 14px; line-height: 23px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; font-size: 14px; line-height: 23px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; font-size: 14px; line-height: 23px; white-space: normal; background-color: rgb(255, 255, 255);\"/></p><p><span style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align:
INSERT INTO `cms_content` VALUES (57, 1, '11个小妙招激发你的灵感', '65', '/61/65\\57.html', '<p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 14px; vertical-align: baseline; font-stretch: normal; font-family: &#39;Open Sans&#39;, sans-serif; line-height: 24px; color: rgb(114, 114, 114); white-space: normal; background: rgb(255, 255, 255);\">感到自己深陷千篇一律的设计泥潭无法自拔?</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 14px; vertical-align: baseline; font-stretch: normal; font-family: &#39;Open Sans&#39;, sans-serif; line-height: 24px; color: rgb(114, 114, 114); white-space: normal; background: rgb(255, 255, 255);\">Stylorouge的Rob OConnor为你送上下面几条建议帮助你解放自己的想象力。</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 14px; vertical-align: baseline; font-stretch: normal; font-family: &#39;Open Sans&#39;, sans-serif; line-height: 26px; color: rgb(114, 114, 114); white-space: normal; background: rgb(255, 255, 255);\">找不到设计灵感?项目在眼前却不知道如何着手或者找不到合适的入手角度?挣扎着想克服阻拦创意的屏障?</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 14px; vertical-align: baseline; font-stretch: normal; font-family: &#39;Open Sans&#39;, sans-serif; line-height: 26px; color: rgb(114, 114, 114); white-space: normal; background: rgb(255, 255, 255);\">别着急,哪怕是最优秀的设计师也会碰上这些问题。你只需要找到方法让大脑重回战斗状态,创意就会源源不断滚滚而来。下面,我们为你整理了一系列能帮助你有效进行头脑风暴的小建议,另外还有五个绝妙的应用协助你捋清头脑风暴的流程。</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 14px; vertical-align: baseline; font-stretch: normal; font-family: &#39;Open Sans&#39;, sans-serif; line-height: 23px; color: rgb(114, 114, 114); white-space: normal; background: rgb(255, 255, 255);\"><br/></p><p><br/></p>', '', '感到自己深陷千篇一律的设计泥潭无法自拔? Sty', '[{\"path\":\"/upload/article/1/1458980990018.jpeg\"}]', 0, '2028-01-01 00:00:00', '来自火星的程序猿', 'MS', '0', 'p,h,', 1, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (58, 1, '5项提高产品设计的交互模式', '65', '/61/65\\58.html', '<p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 14px; vertical-align: baseline; font-stretch: normal; font-family: &#39;Open Sans&#39;, sans-serif; line-height: 23px; color: rgb(114, 114, 114); white-space: normal; background: rgb(255, 255, 255);\">在这个简短的移动端设计模式系列文章的前几篇中,我为大家介绍了几个能够解决开发期间所产生问题的常见设计模式,大家也学到了什么是设计模式,其基本组成 部分有什么,使用它们解决问题的最佳方法都有哪些,以及表单、图片集架构、搜索功能和交互建议等各种问题。另外,大家应该还了解了避免<br/>作为本系列的终篇我将为大家概括性地介绍5种流行移动应用中常见的界面设计模式以供大家在自己的项目中参考。这些设计模式有助于大家提高设计的可用性让界面变得更加直观。文章将侧重介绍能够帮助大家进行下列各方面设计的模式<br/>· 社交分享<br/>· 通知<br/>· 弹窗<br/>· 内容更新<br/>· 用户互动(滑动、点击等)</p><p><br/></p>', '', '在这个简短的移动端设计模式系列文章的前几篇中', '[{\"path\":\"/upload/article/1/1458980956132.jpeg\"}]', 0, '2028-01-01 00:00:00', '来自火星的程序猿', 'MS', '0', '', 1, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (59, 1, '在网页设计中运用柔和色调', '65', '/61/65\\59.html', '<p>网页中的柔和色调的使用,不止是近来的趋势,这是一项设计师使用多年的技巧,用来创造有冲击力的视觉效果。</p><p><br style=\"color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; font-size: 14px; line-height: 23px; white-space: normal; background-color: rgb(255, 255, 255);\"/></p><p>当你听到“柔和”一词,想到的可能是淡粉色、淡蓝色、淡黄色,不过这种配色远不止这些颜色。柔和并不一定要感觉像新生儿一样。通过某些适当的方式,配合其他元素,这些色调也可以相当鲜明。</p><p><br style=\"color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; font-size: 14px; line-height: 23px; white-space: normal; background-color: rgb(255, 255, 255);\"/></p><p>下面我们从优秀的案例网站出发了解10种在网页设计中运用柔和色调的方法。</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 14px; vertical-align: baseline; font-stretch: normal; font-family: &#39;Open Sans&#39;, sans-serif; line-height: 23px; color: rgb(114, 114, 114); white-space: normal; background: rgb(255, 255, 255);\"><br/></p><p><br/></p>', '', '网页中的柔和色调的使用,不止是近来的趋势,这', '[{\"path\":\"/upload/article/1/1458980935362.jpg\"}]', 0, '2028-01-01 00:00:00', '来自火星的程序猿', 'MS', '0', '', 1, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (60, 1, '细数那些精彩纷呈的引导页', '65', '/61/65\\60.html', '<p><span style=\"color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; font-size: 14px; line-height: 23px; background-color: rgb(255, 255, 255);\">随着苹果ios8的发布可以看到App store货架上众多主流App迫不及待地向人们展示产品视频预览接下去会是被设计师、市场宣传相继关注的焦点产品宣传的下一轮引爆点。作为能在 App store上先发触达地形成前期推广的视频预览又会否影响到App安装完毕后的引导页呈现我们不得而知。鉴于两者形式的展现间隔于安装App前后 多少会规避重复性。不管怎样趁着手机App和扁平风热潮一起来细数归纳下对手机引导页的所见所想。 早期我们会见到比较多成熟的PC软件或者网页产品的产品安装包或新特性指引页。近几年在移动端平台上兴起了各种门类形式精彩纷呈的引导页。</span></p>', '', '随着苹果ios8的发布可以看到App store货架上', '[{\"path\":\"/upload/article/1/1458980789639.png\"}]', 0, '2028-01-01 00:00:00', '来自火星的程序猿', 'MS', '0', '', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (61, 1, '从摄影的角度看设计', '65', '/61/65\\61.html', '<p>一幅好照片要把观众的注意力吸引到趣味中心&amp;mdash;&amp;mdash;被摄主体上。无论是拍什么 类型的照片,都会有一个主体你喜欢拍人物,拍生态,这些都不是问题,但是一旦主体被模糊,欣赏照片时就会忽略照片的主体,这样的照片是不失败不完美的,因 为真正想让观众看的东西并没有一眼看到。例如婚纱照,主体肯定是人物新娘和新郎。如果目光都被新娘后面的景色吸引,而不是新娘,这肯定不会是我们想照的。</p><p>&nbsp;</p><p>&nbsp; &nbsp;&nbsp;&nbsp;网页设计师的重要任务不是根据内容做出网页而是根据用户需求设计出让用户喜欢并积极使用的网页能够让用户知道并去使用网站的新产品or关键点 or有价值的信息那么如何突出这些点如何让用户看到网页的&amp;ldquo;G点&amp;rdquo;,有让用户点击或者传播的欲望?突出设计 的重点就如同突出摄影的被摄主体一样,把控视觉的重点,你的设计一定会非常精彩。</p><p>&nbsp;</p><p>&nbsp; &nbsp;&nbsp;&nbsp;下面我将通过几种突出被摄重点的摄影方法来诠释设计与摄影的微妙关系。</p><p>&nbsp;</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 14px; vertical-align: baseline; font-stretch: normal; font-family: &#39;Open Sans&#39;, sans-serif; line-height: 23px; color: rgb(114, 114, 114); white-space: normal; background: rgb(255, 255, 255);\"><br/></p><p><br/></p>', '', '一幅好照片要把观众的注意力吸引到趣味中心mdas', '[{\"path\":\"/upload/article/1/1458980625909.jpg\"}]', 0, '2028-01-01 00:00:00', '来自火星的程序猿', 'MS', '0', '', 1, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (62, 1, '国内java开源商城系统', '65', '/61/65\\62.html', '<p style=\"box-sizing: border-box; margin-top: 8px; margin-bottom: 8px; font-size: 12.5px; color: rgb(51, 51, 51); line-height: 22.5px; white-space: normal; padding: 0px; letter-spacing: 0.5px; word-wrap: break-word; word-break: break-all; font-family: &#39;Microsoft YaHei&#39;, Verdana, sans-serif, 宋体; text-indent: 28px; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; padding: 0px; margin: 0px; font-family: 微软雅黑; font-size: 14px;\">MCMS(http://ms.mingsoft.net)是企业创立初期很好的基础框架,不仅可以实现和现有系统的对接而且有大量的插件模版可以使用。</span></p><p style=\"box-sizing: border-box; margin-top: 8px; margin-bottom: 8px; font-size: 12.5px; color: rgb(51, 51, 51); line-height: 22.5px; white-space: normal; padding: 0px; letter-spacing: 0.5px; word-wrap: break-word; word-break: break-all; font-family: &#39;Microsoft YaHei&#39;, Verdana, sans-serif, 宋体; text-indent: 28px; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; padding: 0px; margin: 0px; font-family: 微软雅黑; font-size: 14px;\">MS平台开发团队承诺MCMS内容管理系统永久完整开源免费(这真是极好的)下面就简单的给大家介绍一下MS平台和MCMS为什么如此之快。</span></p><p style=\"box-sizing: border-box; margin-top: 8px; margin-bottom: 8px; font-size: 12.5px; color: rgb(51, 51, 51); line-height: 22.5px; white-space: normal; padding: 0px; letter-spacing: 0.5px; word-wrap: break-word; word-break: break-all; font-family: &#39;Microsoft YaHei&#39;, Verdana, sans-serif, 宋体; text-indent: 28px; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; padding: 0px; margin: 0px; font-family: 微软雅黑; font-size: 14px;\">MS平台是铭飞团队经过三年的研发最终以MCMS为基础集商城、论坛、分期、会员、支付、积分、微信等系统于一体的插件式系统。并实现了淘宝、京东、苏宁、国美等第三方电商平台数据接口的统一。平台中的小插件如邮件推送、短信接口、定时任务、促销活动、数据采集等非常丰富。</span></p><p style=\"box-sizing: border-box; margin-top: 8px; margin-bottom: 8px; font-size: 12.5px; color: rgb(51, 51, 51); line-height: 22.5px; white-space: normal; padding: 0px; letter-spacing: 0.5px; word-wrap: break-word; word-break: break-all; font-family: &#39;Microsoft YaHei&#39;, Verdana, sans-serif, 宋体; text-indent: 28px; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; padding: 0px; margin: 0px; font-family: 微软雅黑; font-size: 14px;\">MCMS的模版采用标签式开发上手非常快。</span></p><p style=\"box-sizing: border-box; margin-top: 8px; margin-bottom: 8px; font-size: 12.5px; color: rgb(51, 51, 51); line-height: 22.5px; white-space: normal; padding: 0px; letter-spacing: 0.5px; word-wrap: break-word; word-break: break-all; font-family: &#39;Microsoft YaHei&#39;, Verdana, sans-serif, 宋体; text-indent: 28px; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; padding: 0px; margin: 0px; font-family: 微软雅黑; font-size: 14px;\">对于技术小白来说不仅避开了学习复杂的高级开发语言,而且MStore有大量成熟的模版直接下载之后换换图片和内容就可以使用,要是需要调整只需要写简单的标签就可以。</span></p><p style=\"box-sizing: border-box; margin-top: 8px; margin-bottom: 8px; font-size: 12.5px; color: rgb(51, 51, 51); line-height: 22.5px; white-space: normal; padding: 0px; letter-spacing: 0.5px; word-wrap: break-word; word-break: break-all; font-family: &#39;Microsoft YaHei&#39;, Verdana, sans-serif, 宋体; text-indent: 28px; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; padding: 0px; margin: 0px; font-family: 微软雅黑; font-size: 14px;\">对于前端工程师来说只需要写好页面样式并在页面内容<E58685><E5AEB9>
INSERT INTO `cms_content` VALUES (63, 1, '国内java开源 cms系统', '65', '/61/65\\63.html', '<p style=\"box-sizing: border-box; margin-top: 8px; margin-bottom: 8px; font-size: 12.5px; color: rgb(51, 51, 51); line-height: 22.5px; white-space: normal; padding: 0px; letter-spacing: 0.5px; word-wrap: break-word; word-break: break-all; font-family: &#39;Microsoft YaHei&#39;, Verdana, sans-serif, 宋体; text-indent: 28px; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; padding: 0px; margin: 0px; font-family: 微软雅黑; font-size: 14px;\">MCMS(http://ms.mingsoft.net)是企业创立初期很好的基础框架,不仅可以实现和现有系统的对接而且有大量的插件模版可以使用。</span></p><p style=\"box-sizing: border-box; margin-top: 8px; margin-bottom: 8px; font-size: 12.5px; color: rgb(51, 51, 51); line-height: 22.5px; white-space: normal; padding: 0px; letter-spacing: 0.5px; word-wrap: break-word; word-break: break-all; font-family: &#39;Microsoft YaHei&#39;, Verdana, sans-serif, 宋体; text-indent: 28px; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; padding: 0px; margin: 0px; font-family: 微软雅黑; font-size: 14px;\">MS平台开发团队承诺MCMS内容管理系统永久完整开源免费(这真是极好的)下面就简单的给大家介绍一下MS平台和MCMS为什么如此之快。</span></p><p style=\"box-sizing: border-box; margin-top: 8px; margin-bottom: 8px; font-size: 12.5px; color: rgb(51, 51, 51); line-height: 22.5px; white-space: normal; padding: 0px; letter-spacing: 0.5px; word-wrap: break-word; word-break: break-all; font-family: &#39;Microsoft YaHei&#39;, Verdana, sans-serif, 宋体; text-indent: 28px; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; padding: 0px; margin: 0px; font-family: 微软雅黑; font-size: 14px;\">MS平台是铭飞团队经过多年的研发最终以MCMS为基础集商城、论坛、分期、会员、支付、积分、微信等系统于一体的插件式系统。并实现了淘宝、京东、苏宁、国美等第三方电商平台数据接口的统一。平台中的小插件如邮件推送、短信接口、定时任务、促销活动、数据采集等非常丰富。</span></p><p style=\"box-sizing: border-box; margin-top: 8px; margin-bottom: 8px; font-size: 12.5px; color: rgb(51, 51, 51); line-height: 22.5px; white-space: normal; padding: 0px; letter-spacing: 0.5px; word-wrap: break-word; word-break: break-all; font-family: &#39;Microsoft YaHei&#39;, Verdana, sans-serif, 宋体; text-indent: 28px; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; padding: 0px; margin: 0px; font-family: 微软雅黑; font-size: 14px;\">MCMS的模版采用标签式开发上手非常快。</span></p><p style=\"box-sizing: border-box; margin-top: 8px; margin-bottom: 8px; font-size: 12.5px; color: rgb(51, 51, 51); line-height: 22.5px; white-space: normal; padding: 0px; letter-spacing: 0.5px; word-wrap: break-word; word-break: break-all; font-family: &#39;Microsoft YaHei&#39;, Verdana, sans-serif, 宋体; text-indent: 28px; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; padding: 0px; margin: 0px; font-family: 微软雅黑; font-size: 14px;\">对于技术小白来说不仅避开了学习复杂的高级开发语言,而且MStore有大量成熟的模版直接下载之后换换图片和内容就可以使用,要是需要调整只需要写简单的标签就可以。</span></p><p style=\"box-sizing: border-box; margin-top: 8px; margin-bottom: 8px; font-size: 12.5px; color: rgb(51, 51, 51); line-height: 22.5px; white-space: normal; padding: 0px; letter-spacing: 0.5px; word-wrap: break-word; word-break: break-all; font-family: &#39;Microsoft YaHei&#39;, Verdana, sans-serif, 宋体; text-indent: 28px; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; padding: 0px; margin: 0px; font-family: 微软雅黑; font-size: 14px;\">对于前端工程师来说只需要写好页面样式并在页面内容部<E5AEB9>
INSERT INTO `cms_content` VALUES (70, 1, '2015年 铭飞MCms获得最热门开源项目第40位', '69', '/59/69\\70.html', '<p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15pt; font-size: 14px; color: rgb(102, 102, 102); line-height: 22.4px; white-space: normal; padding: 0px; font-family: Verdana, sans-serif, 宋体;\">自 Git@OSC 上线以来受到广大开源作者的喜爱。值此新年之际,开源中国整理出 Git@OSC 最热门开源项目 Top50对 Git@OSC 的发展至今所取得的成绩进行总结。此榜单主要通过开源项目的 Watch、Star、Fork 数量来评定,项目类型不尽相同,难免有纰漏,如有遗漏或者不妥之处,希望大家批评指正。若您对 Git@OSC 未来的发展有何意见或者建议,也欢迎在评论区留言告诉我们。<br style=\"box-sizing: border-box; margin: 0px; padding: 0px;\"/></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15pt; font-size: 14px; color: rgb(102, 102, 102); line-height: 22.4px; white-space: normal; padding: 0px; font-family: Verdana, sans-serif, 宋体;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px;\">下面是项目列表:</strong></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15pt; font-size: 14px; color: rgb(102, 102, 102); line-height: 22.4px; white-space: normal; padding: 0px; font-family: Verdana, sans-serif, 宋体;\">1、<a target=\"_blank\" href=\"http://git.oschina.net/jfinal/jfinal\" rel=\"nofollow\" style=\"box-sizing: border-box; color: rgb(62, 98, 166); text-decoration: none; -webkit-transition: all 0.5s; transition: all 0.5s; margin: 0px; padding: 0px; outline: 0px; background-color: transparent;\">JFinal</a></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15pt; font-size: 14px; color: rgb(102, 102, 102); line-height: 22.4px; white-space: normal; padding: 0px; font-family: Verdana, sans-serif, 宋体; \">项 目简介JFinal 是基于 Java 语言的极速 WEB + ORM 框架其核心设计目标是开发迅速、代码量少、学习简单、功能强大、轻量级、易扩展、Restful。在拥有Java语言所有优势的同时再拥有ruby、 python、php等动态语言的开发效率为您节约更多时间去陪恋人、家人和朋友 :)</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15pt; font-size: 14px; color: rgb(102, 102, 102); line-height: 22.4px; white-space: normal; padding: 0px; font-family: Verdana, sans-serif, 宋体;\">2、<a target=\"_blank\" href=\"http://git.oschina.net/jeecg/jeewx\" rel=\"nofollow\" style=\"box-sizing: border-box; color: rgb(62, 98, 166); text-decoration: none; -webkit-transition: all 0.5s; transition: all 0.5s; margin: 0px; padding: 0px; outline: 0px; background-color: transparent;\">jeewx</a></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15pt; font-size: 14px; color: rgb(102, 102, 102); line-height: 22.4px; white-space: normal; padding: 0px; font-family: Verdana, sans-serif, 宋体;\">项目简介免费开源JAVA微信管家平台实现了微信平台的基础功能便于用户二次开发。JEEWX支持微信第三方平台全网发布、支持微信插件开发机制可轻松集成微信H5插件。</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15pt; font-size: 14px; color: rgb(102, 102, 102); line-height: 22.4px; white-space: normal; padding: 0px; font-family: Verdana, sans-serif, 宋体;\">3、<a target=\"_blank\" href=\"http://git.oschina.net/tinyframework/tiny\" rel=\"nofollow\" style=\"box-sizing: border-box; color: rgb(62, 98, 166); text-decoration: none; -webkit-transition: all 0.5s; transition: all 0.5s; margin: 0px; padding: 0px; outline: 0px; background-color: transparent;\">tiny</a><br style=\"box-sizing: border-box; margin: 0px; padding: 0px;\"/></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15pt; font-size: 14px; color: rgb(102, 102, 102); line-height: 22.4px; white-space: normal; padding: 0px; font-family: Verdana, sans-serif, 宋<>
INSERT INTO `cms_content` VALUES (71, 1, '国内java开源 cms系统', '68', '/59/68\\71.html', '<p style=\"box-sizing: border-box; margin-top: 8px; margin-bottom: 8px; font-size: 12.5px; color: rgb(51, 51, 51); line-height: 22.5px; white-space: normal; padding: 0px; letter-spacing: 0.5px; word-wrap: break-word; word-break: break-all; font-family: &#39;Microsoft YaHei&#39;, Verdana, sans-serif, 宋体; text-indent: 28px;\"><span style=\"box-sizing: border-box; padding: 0px; margin: 0px; font-family: 微软雅黑; font-size: 14px;\">MCMS(http://ms.mingsoft.net)是企业创立初期很好的基础框架,不仅可以实现和现有系统的对接而且有大量的插件模版可以使用。</span></p><p style=\"box-sizing: border-box; margin-top: 8px; margin-bottom: 8px; font-size: 12.5px; color: rgb(51, 51, 51); line-height: 22.5px; white-space: normal; padding: 0px; letter-spacing: 0.5px; word-wrap: break-word; word-break: break-all; font-family: &#39;Microsoft YaHei&#39;, Verdana, sans-serif, 宋体; text-indent: 28px;\"><span style=\"box-sizing: border-box; padding: 0px; margin: 0px; font-family: 微软雅黑; font-size: 14px;\">MS平台开发团队承诺MCMS内容管理系统永久完整开源免费(这真是极好的)下面就简单的给大家介绍一下MS平台和MCMS为什么如此之快。</span></p><p style=\"box-sizing: border-box; margin-top: 8px; margin-bottom: 8px; font-size: 12.5px; color: rgb(51, 51, 51); line-height: 22.5px; white-space: normal; padding: 0px; letter-spacing: 0.5px; word-wrap: break-word; word-break: break-all; font-family: &#39;Microsoft YaHei&#39;, Verdana, sans-serif, 宋体; text-indent: 28px;\"><span style=\"box-sizing: border-box; padding: 0px; margin: 0px; font-family: 微软雅黑; font-size: 14px;\">MS平台是铭飞团队经过多年的研发最终以MCMS为基础集商城、论坛、分期、会员、支付、积分、微信等系统于一体的插件式系统。并实现了淘宝、京东、苏宁、国美等第三方电商平台数据接口的统一。平台中的小插件如邮件推送、短信接口、定时任务、促销活动、数据采集等非常丰富。</span></p><p style=\"box-sizing: border-box; margin-top: 8px; margin-bottom: 8px; font-size: 12.5px; color: rgb(51, 51, 51); line-height: 22.5px; white-space: normal; padding: 0px; letter-spacing: 0.5px; word-wrap: break-word; word-break: break-all; font-family: &#39;Microsoft YaHei&#39;, Verdana, sans-serif, 宋体; text-indent: 28px;\"><span style=\"box-sizing: border-box; padding: 0px; margin: 0px; font-family: 微软雅黑; font-size: 14px;\">MCMS的模版采用标签式开发上手非常快。</span></p><p style=\"box-sizing: border-box; margin-top: 8px; margin-bottom: 8px; font-size: 12.5px; color: rgb(51, 51, 51); line-height: 22.5px; white-space: normal; padding: 0px; letter-spacing: 0.5px; word-wrap: break-word; word-break: break-all; font-family: &#39;Microsoft YaHei&#39;, Verdana, sans-serif, 宋体; text-indent: 28px;\"><span style=\"box-sizing: border-box; padding: 0px; margin: 0px; font-family: 微软雅黑; font-size: 14px;\">对于技术小白来说不仅避开了学习复杂的高级开发语言,而且MStore有大量成熟的模版直接下载之后换换图片和内容就可以使用,要是需要调整只需要写简单的标签就可以。</span></p><p style=\"box-sizing: border-box; margin-top: 8px; margin-bottom: 8px; font-size: 12.5px; color: rgb(51, 51, 51); line-height: 22.5px; white-space: normal; padding: 0px; letter-spacing: 0.5px; word-wrap: break-word; word-break: break-all; font-family: &#39;Microsoft YaHei&#39;, Verdana, sans-serif, 宋体; text-indent: 28px;\"><span style=\"box-sizing: border-box; padding: 0px; margin: 0px; font-family: 微软雅黑; font-size: 14px;\">对于前端工程师来说只需要写好页面样式并在页面内容部分套上标签,就可以做出一套优美的动态网站。并且还可以实现留言板、用户登录等数据交互功能。</span></p><p style=\"box-sizing: border-box; margin-top: 8px; margin-bottom: 8px; font-size: 12.
INSERT INTO `cms_content` VALUES (72, 1, '2016年CMS开源系统排行榜', '68', '/59/68\\72.html', '<p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 10px; font-size: 0.95em; color: rgb(102, 102, 102); line-height: 1.8em; font-family: 微软雅黑, &#39;Open Sans&#39;, sans-serif; white-space: normal; \"><span style=\"box-sizing: border-box; color: rgb(37, 37, 37); font-family: 微软雅黑; font-size: 14px; line-height: 28px;\">首先还是介绍一下什么是CMS。</span><br style=\"box-sizing: border-box; margin: 0px; padding: 0px; color: rgb(37, 37, 37); font-family: 微软雅黑; font-size: 14px; line-height: 28px;\"/><span style=\"box-sizing: border-box; color: rgb(37, 37, 37); font-family: 微软雅黑; font-size: 14px; line-height: 28px;\">CMSContent Management System),中文叫作整站系统、文章系统。</span><br style=\"box-sizing: border-box; margin: 0px; padding: 0px; color: rgb(37, 37, 37); font-family: 微软雅黑; font-size: 14px; line-height: 28px;\"/><span style=\"box-sizing: border-box; color: rgb(37, 37, 37); font-family: 微软雅黑; font-size: 14px; line-height: 28px;\">大概2004以前如果想进行网站内容管理,基本上都是靠手工维护,但千变万化的信息流,但没有好的程序支持,还继续靠手工完成是不可能的事。</span><br style=\"box-sizing: border-box; margin: 0px; padding: 0px; color: rgb(37, 37, 37); font-family: 微软雅黑; font-size: 14px; line-height: 28px;\"/><span style=\"box-sizing: border-box; color: rgb(37, 37, 37); font-family: 微软雅黑; font-size: 14px; line-height: 28px;\">如果有一个好的系统来支撑你的网站,那将节省大量的人力物力,开发者就可能给客户一个软件包,可以用它定期人工修改网站。</span><br style=\"box-sizing: border-box; margin: 0px; padding: 0px; color: rgb(37, 37, 37); font-family: 微软雅黑; font-size: 14px; line-height: 28px;\"/><span style=\"box-sizing: border-box; color: rgb(37, 37, 37); font-family: 微软雅黑; font-size: 14px; line-height: 28px;\">只要你配置安装好你的编辑在线记者更新员只要定期更新数据剩下的事就交给CMS去处理。</span><br style=\"box-sizing: border-box; margin: 0px; padding: 0px; color: rgb(37, 37, 37); font-family: 微软雅黑; font-size: 14px; line-height: 28px;\"/></p><h3 style=\"box-sizing: border-box; font-family: 微软雅黑; font-weight: 500; line-height: 28px; color: rgb(37, 37, 37); margin: 0px; font-size: 24px; white-space: normal; padding: 0px; \">铭飞CMS(MCMS)</h3><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 10px; font-size: 0.95em; color: rgb(102, 102, 102); line-height: 1.8em; font-family: 微软雅黑, &#39;Open Sans&#39;, sans-serif; white-space: normal;\"><img src=\"/upload/editor/1569/1461658172067.jpg\" title=\"1461658172067.jpg\" alt=\"1461658172067.jpg\" width=\"700\" height=\"375\" style=\"width: 700px; height: 375px;\" border=\"0\" vspace=\"0\"/></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 10px; font-size: 0.95em; color: rgb(102, 102, 102); line-height: 1.8em; font-family: 微软雅黑, &#39;Open Sans&#39;, sans-serif; white-space: normal;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; color: rgb(37, 37, 37); font-family: 微软雅黑; font-size: 14px; line-height: 28px;\">特点:</strong><span style=\"box-sizing: border-box; color: rgb(37, 37, 37); font-family: 微软雅黑; font-size: 14px; line-height: 28px;\">&nbsp;</span><br style=\"box-sizing: border-box; margin: 0px; padding: 0px; color: rgb(37, 37, 37); font-family: 微软雅黑; font-size: 14px; line-height: 28px;\"/><span style=\"box-sizing: border-box; color: rgb(37, 37, 37); font-family: 微软雅黑; font-size: 14px; line-height: 28px;\">Java领域唯一完全免费开源的系统值得点个赞在2015年开源中国排名第40位铭飞cms系统也采用模块化开发功能可扩展更方便。铭飞还提供了MStore资源平台提供更多的模版与插件源码这给整个系统来说<E69DA5><E8AFB4>
INSERT INTO `cms_content` VALUES (73, 1, '国内java开源商城系统', '68', '/59/68\\73.html', '<p style=\"box-sizing: border-box; margin-top: 8px; margin-bottom: 8px; font-size: 12.5px; color: rgb(51, 51, 51); line-height: 22.5px; white-space: normal; padding: 0px; letter-spacing: 0.5px; word-wrap: break-word; word-break: break-all; font-family: &#39;Microsoft YaHei&#39;, Verdana, sans-serif, 宋体; text-indent: 28px; \"><span style=\"box-sizing: border-box; padding: 0px; margin: 0px; font-family: 微软雅黑; font-size: 14px;\">MCMS(http://ms.mingsoft.net)是企业创立初期很好的基础框架,不仅可以实现和现有系统的对接而且有大量的插件模版可以使用。</span></p><p style=\"box-sizing: border-box; margin-top: 8px; margin-bottom: 8px; font-size: 12.5px; color: rgb(51, 51, 51); line-height: 22.5px; white-space: normal; padding: 0px; letter-spacing: 0.5px; word-wrap: break-word; word-break: break-all; font-family: &#39;Microsoft YaHei&#39;, Verdana, sans-serif, 宋体; text-indent: 28px;\"><span style=\"box-sizing: border-box; padding: 0px; margin: 0px; font-family: 微软雅黑; font-size: 14px;\">MS平台开发团队承诺MCMS内容管理系统永久完整开源免费(这真是极好的)下面就简单的给大家介绍一下MS平台和MCMS为什么如此之快。</span></p><p style=\"box-sizing: border-box; margin-top: 8px; margin-bottom: 8px; font-size: 12.5px; color: rgb(51, 51, 51); line-height: 22.5px; white-space: normal; padding: 0px; letter-spacing: 0.5px; word-wrap: break-word; word-break: break-all; font-family: &#39;Microsoft YaHei&#39;, Verdana, sans-serif, 宋体; text-indent: 28px;\"><span style=\"box-sizing: border-box; padding: 0px; margin: 0px; font-family: 微软雅黑; font-size: 14px;\">MS平台是铭飞团队经过三年的研发最终以MCMS为基础集商城、论坛、分期、会员、支付、积分、微信等系统于一体的插件式系统。并实现了淘宝、京东、苏宁、国美等第三方电商平台数据接口的统一。平台中的小插件如邮件推送、短信接口、定时任务、促销活动、数据采集等非常丰富。</span></p><p style=\"box-sizing: border-box; margin-top: 8px; margin-bottom: 8px; font-size: 12.5px; color: rgb(51, 51, 51); line-height: 22.5px; white-space: normal; padding: 0px; letter-spacing: 0.5px; word-wrap: break-word; word-break: break-all; font-family: &#39;Microsoft YaHei&#39;, Verdana, sans-serif, 宋体; text-indent: 28px;\"><span style=\"box-sizing: border-box; padding: 0px; margin: 0px; font-family: 微软雅黑; font-size: 14px;\">MCMS的模版采用标签式开发上手非常快。</span></p><p style=\"box-sizing: border-box; margin-top: 8px; margin-bottom: 8px; font-size: 12.5px; color: rgb(51, 51, 51); line-height: 22.5px; white-space: normal; padding: 0px; letter-spacing: 0.5px; word-wrap: break-word; word-break: break-all; font-family: &#39;Microsoft YaHei&#39;, Verdana, sans-serif, 宋体; text-indent: 28px;\"><span style=\"box-sizing: border-box; padding: 0px; margin: 0px; font-family: 微软雅黑; font-size: 14px;\">对于技术小白来说不仅避开了学习复杂的高级开发语言,而且MStore有大量成熟的模版直接下载之后换换图片和内容就可以使用,要是需要调整只需要写简单的标签就可以。</span></p><p style=\"box-sizing: border-box; margin-top: 8px; margin-bottom: 8px; font-size: 12.5px; color: rgb(51, 51, 51); line-height: 22.5px; white-space: normal; padding: 0px; letter-spacing: 0.5px; word-wrap: break-word; word-break: break-all; font-family: &#39;Microsoft YaHei&#39;, Verdana, sans-serif, 宋体; text-indent: 28px; \"><span style=\"box-sizing: border-box; padding: 0px; margin: 0px; font-family: 微软雅黑; font-size: 14px;\">对于前端工程师来说只需要写好页面样式并在页面内容部分套上标签,就可以做出一套优美的动态网站。并且还可以实现留言板、用户登录等数据交互功能。</span></p><p style=\"box-sizing: border-box; margin-top: 8px; margin-bottom: 8px; font-size:
INSERT INTO `cms_content` VALUES (74, 1, '国内java开源bbs系统', '68', '/59/68\\74.html', '<h1 style=\"box-sizing: border-box; margin: 20px 0px 10px; font-size: 24px; font-family: &#39;Microsoft YaHei&#39;, Verdana, sans-serif, 宋体; font-weight: 500; line-height: 43.2px; color: rgb(51, 51, 51); white-space: normal; padding: 0px; \">铭飞MCMS内容管理系统完整开源版J2EE代码</h1><p style=\"box-sizing: inherit; margin-top: 0px; margin-bottom: 15px; font-size: 15px; color: rgba(0, 0, 0, 0.8); line-height: 1.33; white-space: normal; padding: 0px; letter-spacing: 0.5px; word-wrap: break-word; word-break: break-all; font-family: Lato, &#39;Helvetica Neue&#39;, &#39;Microsoft YaHei&#39;, Arial, Helvetica, sans-serif; background-color: rgb(250, 250, 250);\">当前版本:5.4.2 铭飞MS官网:http://ms.mingsoft.net官网同时提供一键运行版本下载请步移官网....</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 10px; font-size: 0.95em; color: rgb(102, 102, 102); line-height: 1.8em; font-family: 微软雅黑, &#39;Open Sans&#39;, sans-serif; white-space: normal;\"><span id=\"OSC_h1_2\" style=\"box-sizing: border-box; padding: 0px; margin: 0px; color: rgb(51, 51, 51); font-family: &#39;Microsoft YaHei&#39;, Verdana, sans-serif, 宋体; font-size: 12.5px; line-height: 22.5px;\"></span><span style=\"box-sizing: border-box; color: rgb(51, 51, 51); font-family: &#39;Microsoft YaHei&#39;, Verdana, sans-serif, 宋体; font-size: 12.5px; line-height: 22.5px;\"></span></p><h1 style=\"box-sizing: border-box; margin: 20px 0px 10px; font-size: 24px; font-family: &#39;Microsoft YaHei&#39;, Verdana, sans-serif, 宋体; font-weight: 500; line-height: 43.2px; color: rgb(51, 51, 51); white-space: normal; padding: 0px;\"><a href=\"http://git.oschina.net/mingSoft/MCMS#特点\" rel=\"nofollow\" style=\"box-sizing: border-box; color: rgb(255, 131, 115); text-decoration: none; -webkit-transition: all 0.5s; transition: all 0.5s; padding: 0px; margin: 0px; outline: 0px; font-size: 12px; background-color: transparent;\"></a>特点</h1><p style=\"box-sizing: inherit; margin-top: 0px; margin-bottom: 15px; font-size: 15px; color: rgba(0, 0, 0, 0.8); line-height: 1.33; white-space: normal; padding: 0px; letter-spacing: 0.5px; word-wrap: break-word; word-break: break-all; font-family: Lato, &#39;Helvetica Neue&#39;, &#39;Microsoft YaHei&#39;, Arial, Helvetica, sans-serif; background-color: rgb(250, 250, 250);\">免费开源:纯Java开发MS开发团队承诺将MCMS内容系统永久完整开源;</p><p style=\"box-sizing: inherit; margin-top: 0px; margin-bottom: 15px; font-size: 15px; color: rgba(0, 0, 0, 0.8); line-height: 1.33; white-space: normal; padding: 0px; letter-spacing: 0.5px; word-wrap: break-word; word-break: break-all; font-family: Lato, &#39;Helvetica Neue&#39;, &#39;Microsoft YaHei&#39;, Arial, Helvetica, sans-serif; background-color: rgb(250, 250, 250);\">终端统一: 铭飞MCMS支持PC与MOBILE皮肤定制,同时使用MS团队移动JS插件,轻松实现手机多屏幕适配,想想看你发布的信息第一时间在PC上展示又能在手机上展示,这是件多么幸福的事情,数据统一、平台统一、终端统一是MS团队一直在努力的方向;</p><p style=\"box-sizing: inherit; margin-top: 0px; margin-bottom: 15px; font-size: 15px; color: rgba(0, 0, 0, 0.8); line-height: 1.33; white-space: normal; padding: 0px; letter-spacing: 0.5px; word-wrap: break-word; word-break: break-all; font-family: Lato, &#39;Helvetica Neue&#39;, &#39;Microsoft YaHei&#39;, Arial, Helvetica, sans-serif; background-color: rgb(250, 250, 250);\">扩展性:以铭飞MCMS为核心,MS官网提供第三方插件安装,最新的插件用户可以通过更新功能获得,同时MS也鼓励并支持第三方开发人员发布优质的插件;</p><p style=\"box-sizing: inherit; margin-top: 0px; margin-bottom: 15px; font-size: 15px; color: rgba(0, 0, 0, 0.8); line-height: 1.33; white-space: normal; padding: 0px; letter-spacing: 0.5px; word-wrap: break-word; word-break: break-all; font-family: Lato, &#39;Helvetic
INSERT INTO `cms_content` VALUES (112, 1, '新科科技', '87', '/61/87\\112.html', '<p><strong>主营品牌车型:</strong>奔驰、宝马、奥迪、路虎、保时捷、宾利、劳斯莱斯、北京现代、上海大众斯柯达、东风标致、东风悦达起亚、东风雪铁龙、东风本田雪弗兰、上海大众、进口大众、道奇、吉普、雷诺、别克、马自达、中华、福特、海南马自达等各种中高档进口和国产轿车。在汽车销售行业里有着较高的知名度和良好的信誉。</p><p>经营业务:除了销售各种品牌车外,还经营汽车保险、汽车装潢、汽车按揭、二手车评估、二手车收购、二手车置换,并免费为您提供上牌等一条龙服务。</p><p>&nbsp;</p><p><strong>郑重承诺:</strong>保证您从我公司购买的车是全市场上最低的价格,让您购的放心, 我公司所售车辆均为各品牌4S店的车选车、交钱、提车、开发票、售后保养一切的一切都在4S店办理我们就相当于是4S店的跑量销售员批发价。 说白了就是您在4S店买车我们帮您还价。 您在我公司定了车以后我们会安排4S店的销售员和你联系。</p><p><strong>经营宗旨:</strong>减少成本和跑量给消费者带来最大的实惠!金杯银杯不如客户的口碑!只要您买过就会介绍朋友来买!</p><p>宝诚导购流程我公司为了让大家更放心的购买汽车现进行经营模式调整较以前更加灵活、更加方便、更具备人性化。如果有客户觉得我们的价格比较实惠但又担心车的来源在这种情况下我公司对有顾虑的客户我们帮您排除这个疑虑。在我们公司签定车合同后我们安排4S店销售员和您联系办理所有相关手续。具体导购流程如下</p><p><strong>第一步:</strong>您可以先到您所需品牌的任何一家4S店看车选车然后决定要什么车型。</p><p><strong>第二步:</strong>决定好所需车型在某品牌4S店进行砍价和销售员谈个最低价但切忌不要交定金。</p><p><strong>第三步:</strong>拨打我们公司电话告诉我们您需要的车型和颜色以及哪家4S店。和我们谈好您觉得的满意的价格我们觉得有钱可赚少赚点没关系不亏就行意见达成一致。</p><p><strong>第四步:</strong>直接到我们公司签定车合同并交付定金。<br/><strong>第五步:</strong>我公司安排销售人员陪同客户去4S店提车并办理相关手续。</p><p><br/></p>', '', '在网上寻觅了很久很久。终于找到了这里。晃眼一看,好多漂亮的模板。下载了几个都很好用。希望越做越好,多提供些精品资源!找了好久啊,一直想有一个这样的网站,找来找去,老感觉么有合适的。偶然间来到这儿,爽。找到啦!对于网站建设新手来说,是一个最好的平台,你可以随心找到你最喜欢的网站模板,做出你喜欢的网站。\r\n专业提供网站模板网页模板模板教程网页制作程序插件网站素材等建站资源我们致为于打造优秀的建站资源共享平台 ', '[{\"path\":\"/upload/article/1/1459305011132.png\"}]', 0, '2028-01-01 00:00:00', '公关前台', '', '0', 'h,', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (113, 1, '联娱公司', '87', '/61/87\\113.html', '<p><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Verdana, Geneva, sans-serif; font-size: 14px; line-height: 25px; background-color: rgb(255, 255, 255);\">&nbsp;</span><strong style=\"font-size: 14px; white-space: normal; font-family: 宋体; line-height: 22px; padding: 0px; margin: 0px; background-color: rgb(255, 255, 255);\">1、特色服务</strong><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Verdana, Geneva, sans-serif; font-size: 14px; line-height: 25px; background-color: rgb(255, 255, 255);\"></span></p><p>1.1 提供专业的危险品一条龙服务从专业的危险品取样代做报告化工报告和商检报告危包证及提供报关单证报关申报交接危险品货物至货物安全的到达目的港全方位的D/D TO D/D 服务;</p><p>1.2 东航国泰阿联酋汉莎4GV包装使用备案免检企业可采用4GV作为货物外包装免于检验</p><p>1.3 能够协助客户用MSDS 来代替化工报告的业务。</p><p>&nbsp;</p><p><strong style=\"padding: 0px; margin: 0px;\">2、&nbsp;常规服务</strong></p><p>2.1 订舱:快捷、顺畅、全面快捷</p><p>便捷多样的订舱渠道EKMUCXLHKLAFFMCA等顺畅熟悉各航空公司危险品订舱要求及操作流程。全面承接全球各航空公司航线化工品、危险品运输</p><p>2.2 仓库 运输</p><p>提供全方位专业的打托、包装、唛头、标签及更换外包装等服务;公司自备各类具有危险品资质的车辆,满足客户上门提货的需求。</p><p>2.3 报关、报检</p><p>代办空运危险品的报关报检,上海化工院鉴定IMI鉴定证书代做危包证等服务。</p><p>2.4 货物查询</p><p>E-SERVICE自助式网上查询系统方便客户跟踪、查询货物状态。</p><p>&nbsp;</p><p><strong style=\"padding: 0px; margin: 0px;\">3、 实力资质</strong></p><p>3.1 专业人员</p><p>资深的客户服务人员、订舱操作人员、危险品货物交接人员,拥有丰富的化工品、危险品专业知识和具有良好的沟通能力,熟悉各航空公司对危险品的操作流程。</p><p>3.2 完善系统</p><p>专业的流程化订舱体系ERP操作系统从接单、订舱、货物包装商检、报关交接等一系列货物运输环节R-Q HSE安全控制体系监控并确保货物安全规范运输。</p><p>3.3 资质及设施</p><p>中国外经贸部批准的一级货运代理证书,中国航空运输协会批准颁发的一级货运代理证书,中国货代百强企业;</p><p>操作人员拥有中国航协ITAT 颁发的危险品操作人员证书和DGM 及浦东机场货栈颁发的危险品资质证书;</p><p>在机场内拥有6000平方米的普通仓库4000 平方米的专业危险品仓库齐备叉车打包机等专业的仓储设备120辆专用危险品运输车辆为客户提供专业、安全、便捷、快速的仓储及配送服务。</p><p><br/></p>', '', '找模板找了很久了,于是找到了,觉的这里的模板很不错,下载了两套试试,果然可以用。于是充值了,希望站长以后多多指点啊!站长很友好,为我们这些新手站长提供这么多的模版。大家一起交流,才能成长得更快吧!感谢,感谢网友,你们辛苦了!对于网站建设新手来说,是一个最好的平台,你可以随心找到你最喜欢的网站模板,做出你喜欢的网站。专业提供网站模板,网页模板,模板教程,网页制作,程序插件,网站素材等建站资源,我们致为于打造优秀的建站资源共享平台! ', '[{\"path\":\"/upload/article/1/1459305021450.png\"}]', 0, '2028-01-01 00:00:00', '总经理', '', '0', 'c,', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (130, 1, '关于我们', '93', '/93\\130.html', '<p><span style=\"color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify;\">广州城市规划设计有限公司是中欧国际旅游规划设计研究院Sino-Europe Academy of Tourism Planning and Design旗下之专业机构公司专注于城市规划、旅游规划设计与商业综合体设计构建了从规划设计、品牌营销、资本运作到管理咨询等全产品链集成一体化服务提供从总体策划、建筑景观设计、资源引进、战略实施、平台搭建到运营管理等全程、专业化解决方案。</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal;\"><br style=\"margin: 0px; padding: 0px; border: 0px;\"/>广州规划设计以“产业联动、搭建平台、金融孵化”为经营哲学,推动旅游业与民俗艺术、饮食、地产、绿色农业及金融业的融合发展,同时依托中欧国际旅游规划设计研究院的学术背景与国际资源,搭建行业交互平台,提供切合旅游企业需要的一揽子专业协同服务。<br style=\"margin: 0px; padding: 0px; border: 0px;\"/><br style=\"margin: 0px; padding: 0px; border: 0px;\"/>广州规划设计秉持“文化开发与生态保护相结合”的规划设计理念,切实将“因地制宜、以人为本、市场引导、经济可行、体验为怀、低碳环保”的精神贯穿于每一个项目之中,倡导空间与艺术相结合、经济与美学相融合、历史文明与现代时尚相调和,力求每个作品都能达到人文景观与大自然的和谐完美融合。<br style=\"margin: 0px; padding: 0px; border: 0px;\"/><br style=\"margin: 0px; padding: 0px; border: 0px;\"/>广州规划设计与国际行业组织、海内外同行及国内知名高等院校如香港大学、中山大学、同济大学、广东财经大学等建立和保持着密切的合作与互动关系,致力于整合行业高端智慧,引进行业优质资源,推动中国旅游业迈向更高的竞争层次。</p><p><br/></p>', '', '广州城市规划设计有限公司是中欧国际旅游规划设计研究院Sino-Europe Academy of Tourism Planning and Design旗下之专业机构公司专注于城市规...', '[{\"path\":\"/upload/article/1/1460376794567.jpg\"}]', 0, '2028-01-01 00:00:00', '关于我们', '', '0', 'h,', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (131, 1, '主营业务', '94', '/93/94\\131.html', '<p><span style=\"color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify;\">&nbsp;</span><span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify;\">广州规划设计在为客户提供市场分析和战略规划服务的基础上,确保初步规划和概念逐渐成形最终落地运营的产品。</span><br style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal;\"/><br style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal;\"/><span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify;\">广州</span><span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify;\">规划设计的业务范畴主要集中在旅游规划、城市规划、建筑设计与景观设计,构筑了策划、规划、设计、营销、资本引进与管理咨询等全程服务。同时,帮助客户了解市场行情、评估风险、厘清发展计划、商业战略和公共政策内在的不确定因素。</span><br style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal;\"/><br style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal;\"/><span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify;\">广州</span><span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify;\">规划设计在打造景区特色、建立生态系统、营造文化环境等多领域都有着不可撼动的行业地位,规划业务服务集中在总体规划、城市规划、区域规划、旅游商业模式策划、生态环境规划、城市战略规划等。根据项目的不同尺度和背景,有选择地搭配合适的各项专业人才团队,为客户提供全面而合理的解决方案</span><br style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal;\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal;\"><br style=\"margin: 0px; padding: 0px; border: 0px;\"/>广州规划设计与国际行业组织、海内外同行及国内知名高等院校如香港大学、中山大学、同济大学、广东财经大学等建立和保持着密切的合作与互动关系,致力于整合行业高端智慧,引进行业优质资源,推动中国旅游业迈向更高的竞争层次。</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal;\">&nbsp;</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal;\"><br/></p><h1 style=\"margin: 0px; padding: 0px; border: 0px; font-size: 12px; color: rgb(51, 51, 51); font-family: 微软雅黑; line-height: 25px; text-align: justify; white-space: normal;
INSERT INTO `cms_content` VALUES (132, 1, '合作伙伴', '95', '/93/95\\132.html', '<p><span style=\"color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify;\">全心全力,美善相随,</span><span style=\"color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify;\">这个世代不缺技艺超群之才,</span><span style=\"color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify;\">却匮乏尽心尽力之士,</span><span style=\"color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify;\">CEDAR信实守约</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal;\">捧着一颗心来,不带半根草去,竭力置身于客户的立场换位思考,除去一切不利于客户利益的自我私欲</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal;\">精诚坦荡,肝胆相照,将自己的专业本色全意展现,为客户创造超值的服务体验 &nbsp;</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal;\"><br/></p><p><br/></p>', '', '让设计充满新奇和创造力,同时也饱含着和谐、力量与深意。\r\n\"适度\" 是一种幸福的生活态度。\r\n设计哲学 \"合适的设计\",设计中最难的环节往往并非创新,而是在精确适配下的创造。\r\n打造令人灵感迸发及纵情享受的情绪空间。\r\n', '[{\"path\":\"/upload/article/1638/1464838215050.jpg\"}]', 0, '2028-01-01 00:00:00', 'CORPORATE CULTURE', 'CORPORATE PART', '0', 'h,', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (133, 1, '合作伙伴', '97', '/93/97\\133.html', '<p><span style=\"color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify;\">&nbsp;</span><span style=\"margin: 0px; padding: 0px; border: 0px; font-size: 13px; line-height: 25px; text-align: justify; color: rgb(134, 134, 134); font-family: &#39;Microsoft YaHei&#39;;\">广州规划设计,立足于互联网思潮下商业模式创新的宏大视野,以科学的规划设计为基点,以战略执行、资源导入、品牌营销、管理咨询为后续深度服务,联袂海内外卓越专业机构,构筑行业智慧高地,并搭建行业性交互式平台,推动旅游业持续稳健地发展。&nbsp;</span><br style=\"margin: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal; color: rgb(134, 134, 134);\"/><br style=\"margin: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal; color: rgb(134, 134, 134);\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal; color: rgb(134, 134, 134);\"><strong style=\"margin: 0px; padding: 0px; border: 0px;\"><span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(102, 102, 102); font-size: 12px; font-family: &#39;Microsoft YaHei&#39;;\">战略学术联盟:</span></strong></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal; color: rgb(134, 134, 134);\">&nbsp;</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal; color: rgb(134, 134, 134);\"><br/>&nbsp;&nbsp;</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal; color: rgb(134, 134, 134);\"><strong style=\"margin: 0px; padding: 0px; border: 0px;\"><span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(102, 102, 102); font-size: 12px; font-family: &#39;Microsoft YaHei&#39;;\">战略设计联盟:</span></strong></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal; color: rgb(134, 134, 134);\">&nbsp;</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal; color: rgb(134, 134, 134);\"><span style=\"margin: 0px; padding: 0px; border: 0px; line-height: 1.5;\"><span style=\"margin: 0px; padding: 0px; border: 0px; font-size: 12px; font-family: &#39;Microsoft YaHei&#39;;\">MORMANFOSTER</span><strong style=\"margin: 0px; padding: 0px; border: 0px;\"><span style=\"margin: 0px; padding: 0px; border: 0px; font-size: 12px; font-family: &#39;Microsoft YaHei&#39;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></strong></span><span style=\"margin: 0px; padding: 0px; border: 0px; line-height: 1.5;\"><span style=\"margin: 0px; padding: 0px; border: 0px; font-size: 12px; font-family: &#39;Microsoft YaHei&#39;;\">乐昂国际设计集团</span><span style=\"margin: 0px; padding: 0px; border: 0px; line-height: 1.5;\"><strong style=\"margin: 0px; padding: 0px; border: 0px;\"><span style=\"margin: 0px; padding: 0px; border: 0px; line-height: 1.5; font-size: 12px; font-family: &#39;Microsoft YaHei&#39;;\"><strong style=\"margin: 0px; padding: 0px; border: 0px;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</strong></span></strong></span></span><s
INSERT INTO `cms_content` VALUES (134, 1, '亚太旅游规划设计十大影响力品牌', '96', '/93/96\\134.html', '<p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal;\"><span style=\"margin: 0px; padding: 0px; border: 0px; font-family: Arial, 宋体, SimSun, HELVETICA, &#39;Hiragino Sans GB&#39;; font-size: 14px; line-height: 26px; text-indent: 28px;\">2009年12月13日由中国民族建筑研究会与中国</span>房地产<span style=\"margin: 0px; padding: 0px; border: 0px; font-family: Arial, 宋体, SimSun, HELVETICA, &#39;Hiragino Sans GB&#39;; font-size: 14px; line-height: 26px; text-indent: 28px;\">及住宅研究会共同主办“2009•第六届中国人居典范建筑规划设计方案竞赛”颁奖大会在北京•京都信苑饭店隆重召开。经过九个多月来的精心组织与评选全国共有241个方案获奖。通过本届竞赛在全国建设领域树立一批人居规划设计典范对促进全国建筑规划设计和建设水平的提高起到示范推动作用。</span></p><p><br/></p>', '', '2009年12月13日由中国民族建筑研究会与中国 房地产 及住宅研究会共同主办2009第六届中国人居典范建筑规划设计方案竞赛颁奖大会在北京京都信苑饭店隆重召开。经过九个多月来的精...', '[{\"path\":\"/upload/article/1/1460377619458.jpg\"}]', 0, '2028-01-01 00:00:00', '关于我们', '', '0', '', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (135, 1, '2009中国人居典范●最佳设计方案', '96', '/93/96\\135.html', '<p><span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); text-align: justify; font-family: Arial, 宋体, SimSun, HELVETICA, &#39;Hiragino Sans GB&#39;; font-size: 14px; line-height: 26px; text-indent: 28px;\">2009年12月13日由中国民族建筑研究会与中国</span><span style=\"color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify;\">房地产</span><span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); text-align: justify; font-family: Arial, 宋体, SimSun, HELVETICA, &#39;Hiragino Sans GB&#39;; font-size: 14px; line-height: 26px; text-indent: 28px;\">及住宅研究会共同主办“2009•第六届中国人居典范建筑规划设计方案竞赛”颁奖大会在北京•京都信苑饭店隆重召开。经过九个多月来的精心组织与评选全国共有241个方案获奖。通过本届竞赛在全国建设领域树立一批人居规划设计典范对促进全国建筑规划设计和建设水平的提高起到示范推动作用。</span></p>', '最佳设计方案', '2009年12月13日由中国民族建筑研究会与中国 房地产 及住宅研究会共同主办2009第六届中国人居典范建筑规划...', '[{\"path\":\"/upload/article/1/1460377712056.png\",\"url\":\"/ms-mcms/upload/article/1/1460377712056.png\",\"uid\":1577438320364,\"status\":\"success\"}]', 0, '2028-01-01 00:00:00', '关于我们', '', '0', 'h', 0, 0, '2019-12-27 17:19:23', NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (136, 1, '定制化项目金融孵化模式', '98', '/93/98\\136.html', '<p><span style=\"color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify;\">广州规划设计以金融资本为支撑,以规划设计为撬动点,协助旅游业开发高潜力项目,推动项目融资,帮助客户在产业版图拓展中淘金入市。</span></p>', '', '广州规划设计以金融资本为支撑,以规划设计为撬动点,协助旅游业开发高潜力项目,推动项目融资..', '[{\"path\":\"/upload/article/1585/1462265098563.jpg\"}]', 0, '2028-01-01 00:00:00', '关于我们', '1', '0', '', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (137, 1, '幻灯一', '147', '/100\\137.html', NULL, '', '', '[{\"path\":\"/upload/article/1638/1465808003859.jpg\"}]', 0, '2028-01-01 00:00:00', '', '', '0', '', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (138, 1, '幻灯二', '147', '/100\\138.html', NULL, '', '', '[{\"path\":\"/upload/article/1638/1465808020382.jpg\"}]', 0, '2028-01-01 00:00:00', '', '', '0', '', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (139, 1, '幻灯三', '147', '/100\\139.html', NULL, '', '', '[{\"path\":\"/upload/article/1638/1465808030831.jpg\"}]', 0, '2028-01-01 00:00:00', '', '', '0', 'f,', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (140, 1, '幻灯四', '147', '/100\\140.html', NULL, '', '', '[{\"path\":\"/upload/article/1638/1464858626484.jpg\"}]', 0, '2028-01-01 00:00:00', '首页幻灯', '', '0', '', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (141, 1, '城市规划', '101', '/99/101\\141.html', '<p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: left; white-space: normal;\"><span style=\"margin: 0px; padding: 0px; border: 0px;\">-&nbsp;城市商业综合体规划&nbsp;</span><span style=\"margin: 0px; padding: 0px; border: 0px;\">-&nbsp;新城(新区)规划&nbsp;</span><span style=\"margin: 0px; padding: 0px; border: 0px;\">-&nbsp;温城市更新与旧城改造</span><br style=\"margin: 0px; padding: 0px; border: 0px;\"/><span style=\"margin: 0px; padding: 0px; border: 0px;\">-&nbsp;小城镇建设规划&nbsp;</span><span style=\"margin: 0px; padding: 0px; border: 0px;\">-&nbsp;历史文化名城/镇保护研究与规划&nbsp;</span><span style=\"margin: 0px; padding: 0px; border: 0px;\">-&nbsp;产业园区规划</span></p><p style=\"text-align: left;\"><span style=\"margin: 0px; padding: 0px; border: 0px;\"><br/></span></p><p style=\"text-align: center;\"><br/></p>', '', '城市商业综合体规划 -新城(新区)规划 -温城市更新与旧城改造 -小城镇建设规划 -历史文化名城/镇保护研究与规划 -产业园区规划...', '[{\"path\":\"/upload/article/1/1460380106006.jpg\"}]', 0, '2028-01-01 00:00:00', '专业服务', '', '0', '', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (142, 1, '环境艺术设计', '102', '/99/102\\142.html', '<p><span style=\"color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify;\">CEDAR以美学与生态的双重视野开展环境艺术的探索与实践营造健康、高雅、舒适、美观的现代生态环境以此提升城市及旅游景区的软环境。</span></p>', '', 'CEDAR以美学与生态的双重视野开展环境艺术的探索与实践营造健康、高雅、舒适、美观的现代生态环境以此提升城市及旅游景区的软环境。...', '[{\"path\":\"/upload/article/1/1460380199624.jpg\"}]', 0, '2028-01-01 00:00:00', '专业服务', '', '0', 'c,', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (143, 1, '旅游形象策划', '103', '/99/103\\143.html', '<p>在把握好旅游地的地脉地理根据、文脉文化根据和商脉市场根据的基础上为旅游地做好旅游形象定位并开展理念基础MI、行为准则BI、视觉形象VI的系统策...</p>', '', '在把握好旅游地的地脉地理根据、文脉文化根据和商脉市场根据的基础上为旅游地做好旅游形象定位并开展理念基础MI、行为准则BI、视觉形象VI的系统策...', '[{\"path\":\"/upload/article/1/1460380287863.jpg\"}]', 0, '2028-01-01 00:00:00', '专业服务', '', '0', 'p,', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (144, 1, '旅游企业管理', '104', '/99/104\\144.html', '<p style=\"margin-top: 0;margin-bottom: 0;padding: 0px;border: 0px;font-family: 微软雅黑;text-align: justify;white-space: normal;color: rgb(178, 178, 178);font-size: 14px;line-height: 24px;text-indent: 2em\">目的地与景区管理:</p><p style=\"margin-top: 0;margin-bottom: 0;padding: 0px;border: 0px;font-family: 微软雅黑;text-align: justify;white-space: normal;color: rgb(178, 178, 178);font-size: 14px;line-height: 24px;text-indent: 2em\"><span style=\"line-height: 27px; text-indent: 2em;\">-&nbsp;发展战略规划</span><span style=\"line-height: 27px; text-indent: 2em;\">-&nbsp;营销管理体系咨询</span><span style=\"line-height: 27px; text-indent: 2em;\">-&nbsp;品牌管理体系咨询</span></p><p style=\"margin-top: 0;margin-bottom: 0;padding: 0px;border: 0px;font-family: 微软雅黑;text-align: justify;white-space: normal;color: rgb(178, 178, 178);font-size: 14px;line-height: 27px;text-indent: 2em\">-&nbsp;组织架构与流程再造<span style=\"text-indent: 2em;\">-&nbsp;投资运营与管理</span><span style=\"text-indent: 2em;\">-&nbsp;资源与环境保护</span></p><p style=\"margin-top: 0;margin-bottom: 0;padding: 0px;border: 0px;font-family: 微软雅黑;text-align: justify;white-space: normal;color: rgb(178, 178, 178);font-size: 14px;line-height: 27px;text-indent: 2em\">&nbsp;</p><p style=\"margin-top: 0;margin-bottom: 0;padding: 0px;border: 0px;font-family: 微软雅黑;text-align: justify;white-space: normal;color: rgb(178, 178, 178);font-size: 14px;line-height: 24px;text-indent: 2em\"><span style=\";padding: 0px;border: 0px;line-height: 25px;text-indent: 28px\">酒店管理:</span></p><p style=\"margin-top: 0;margin-bottom: 0;padding: 0px;border: 0px;font-family: 微软雅黑;text-align: justify;white-space: normal;color: rgb(178, 178, 178);font-size: 14px;line-height: 27px;text-indent: 2em\">-&nbsp;酒店运营管理<span style=\"text-indent: 2em;\">-&nbsp;酒店物业管理</span><span style=\"text-indent: 2em;\">-&nbsp;酒店产品与服务管理</span></p><p style=\"margin-top: 0;margin-bottom: 0;padding: 0px;border: 0px;font-family: 微软雅黑;text-align: justify;white-space: normal;color: rgb(178, 178, 178);font-size: 14px;line-height: 27px;text-indent: 2em\">-&nbsp;酒店人力资源管理<span style=\"text-indent: 2em;\">-&nbsp;酒店投资与财务管理</span><span style=\"text-indent: 2em;\">-&nbsp;酒店危机管理</span></p><p style=\"margin-top: 0;margin-bottom: 0;padding: 0px;border: 0px;font-family: 微软雅黑;text-align: justify;white-space: normal;color: rgb(178, 178, 178);font-size: 14px;line-height: 24px;text-indent: 2em\">&nbsp;</p><p style=\"margin-top: 0;margin-bottom: 0;padding: 0px;border: 0px;font-family: 微软雅黑;text-align: justify;white-space: normal;color: rgb(178, 178, 178);font-size: 14px;line-height: 24px;text-indent: 2em\">住宿业管理:&nbsp;&nbsp;</p><p style=\"margin-top: 0;margin-bottom: 0;padding: 0px;border: 0px;font-family: 微软雅黑;text-align: justify;white-space: normal;color: rgb(178, 178, 178);font-size: 14px;line-height: 27px;text-indent: 2em\">为酒楼、茶楼、旅馆、非星级宾馆等住宿接待业提供经营管理咨询服务。</p><p><br/></p>', '', '目的地与景区管理: -发展战略规划 -营销管理体系咨询 -品牌管理体系咨询 -组织架构与流程再造 -投资运营与管理 -资源与环境保护 酒店管理: -酒店运营管理 -酒店物业管理 -酒店产品...', '[{\"path\":\"/upload/article/1/1460380343199.jpg\"}]', 0, '2028-01-01 00:00:00', '专业服务', '', '0', 'h,', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (146, 1, '广东梅州市雁洋旅游服务区域城市规划', '107', '/106/107\\146.html', '<p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal;\">项目地址:广东梅州市雁洋镇 规划面积1281863平方米 项目委托:广东梅州市人民政府</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal;\">&nbsp;</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal;\">全世界客家人的首都,客家文化的遗产中心</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal;\">&nbsp;</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal;\">雁洋的自然环境、人文历史以及作为世界自然度假胜地门户的地理位置,与梅州市的城市特色和资源形成互补,为当地居民及国内外游客提供一种轻松的绿色体验。我们试图通过推广建筑、农业、文化资源的保护,把现有的文化基础设施开发成为世界级别的旅游胜地。</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal;\">&nbsp;</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal;\"><img alt=\"\" src=\"http://m286.dedemao.net/uploads/allimg/151112/13015313Q-0.jpg\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: top;\"/>&nbsp;<img alt=\"\" src=\"http://m286.dedemao.net/uploads/allimg/151112/1301531A9-1.jpg\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: top;\"/>&nbsp;<img alt=\"\" src=\"http://m286.dedemao.net/uploads/allimg/151112/1301531L5-2.jpg\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: top;\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal;\">&nbsp;</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal;\"><img alt=\"\" src=\"http://m286.dedemao.net/uploads/allimg/151112/1301531937-3.jpg\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: top;\"/></p><p><br/></p>', '', '项目地址:广东梅州市雁洋镇\r\n规划面积1281863平方米\r\n项目委托广东梅州市人民政府', '[{\"path\":\"/upload/article/1/1460380700438.png\"}]', 0, '2028-01-01 00:00:00', '来自火星的程序猿', 'MS', '0', '', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (147, 1, '海口湾酒店公寓第二期建筑设计', '108', '/106/108\\147.html', '<p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal;\">项目地址:海南省海口市北部海口湾西部滨海地区</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal;\">总用地面积47957.1平方米</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal;\">总建筑面积116154.65平方米</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal;\">总地上建筑面积94523.55平方米</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal;\">总地下建筑面积21631.1平方米</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal;\">委托单位:某地产集团海南公司&nbsp;&nbsp;</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal;\">&nbsp;</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal;\"><strong style=\"margin: 0px; padding: 0px; border: 0px;\">海口湾时尚度假新平台</strong></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal;\">&nbsp;</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal;\"><strong style=\"margin: 0px; padding: 0px; border: 0px;\">设计定位:</strong></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal;\">功能定位-----&nbsp;提供度假体验的产权式酒店,并引入购物、娱乐、餐饮等多元复合功能;</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal;\">形象定位-----&nbsp;海口城市形象的名片,塑造融入城市环境的建筑形象,与滨海景观相协调。</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal;\"><strong style=\"margin: 0px; padding: 0px; border: 0px;\">设计策略:</strong></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal;\">区域融合与区域发展融为一体;功能复合,丰富海口湾岸线景观。</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal;\"><strong style=\"margin: 0px; padding: 0px; border: 0px;\">建筑设计策略:</strong></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal;\">商业集中布局;景观视线保障;建
INSERT INTO `cms_content` VALUES (148, 1, '昆山水月周庄旅游地产概念营销策划', '107', '/106/109\\148.html', '<p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal; text-indent: 2em;\">周庄拥有丰富的自然资源、人文资源及极具优势的地理位置,区域发展潜力巨大,古镇旅游品牌价值大,区域发展热点已经形成,旅游经济的发展为房地产市场提供了巨大的想象空间。</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal; text-indent: 2em;\"><strong style=\"margin: 0px; padding: 0px; border: 0px;\">我们的项目研判与理解:</strong></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal; text-indent: 2em;\">-&nbsp;天生丽质,但区域发展态势不明朗;</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal; text-indent: 2em;\">-&nbsp;以前瞻性的眼光,组合运营多元化地产运营模式,与周边项目形成错位,整合旅游、休闲、度假、商务、商业与投资资源,方可突出重围。</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal; text-indent: 2em;\">&nbsp;</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal; text-indent: 2em;\"><strong style=\"margin: 0px; padding: 0px; border: 0px;\">项目总体概念定位:</strong></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal; text-indent: 2em;\">&nbsp;</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal; text-indent: 2em;\">液体周庄-------&nbsp;未来水乡</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal; text-indent: 2em;\">“未来水乡概念”·&nbsp;复合型旅游休闲港湾&nbsp;</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal; text-indent: 2em;\">&nbsp;</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal; text-indent: 2em;\"><strong style=\"margin: 0px; padding: 0px; border: 0px;\">功能定位:</strong></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal; text-indent: 2em;\">&nbsp;</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal; text-indent: 2em;\">复合型旅游休闲港湾&nbsp;-------</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal; text-indent: 2em;\">集中于“休闲”功能,满足“在家度假”的生活梦想。以“液态生活”为主题,用原生态的景观,再现原汁原味的水乡生活。</p><p style=\"margin-to
INSERT INTO `cms_content` VALUES (149, 1, '京杭大运河旅游形象研究与策划', '107', '/106/110\\149.html', '<p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal; text-indent: 2em;\">项目地址:浙江杭州、苏州</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal; text-indent: 2em;\">项目委托:杭州市旅游局、苏州市旅游局</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal; text-indent: 2em;\">&nbsp;</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal; text-indent: 2em;\"><strong style=\"margin: 0px; padding: 0px; border: 0px;\">运河文化,吴地风情</strong></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal; text-indent: 2em;\">&nbsp;</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal; text-indent: 2em;\">在现代旅游业的发展当中,旅游形象设计正在发挥着越来越重要的作用。</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal; text-indent: 2em;\">旅游形象设计能使旅游地政府和公众对本地旅游的资源核心、产品定位和发展目标有更清楚地认识,使旅游地在众多的同类产品中以鲜明的姿态出现在旅游者面前。</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal; text-indent: 2em;\">本次苏杭大运河旅游形象策划,我们是在大运河杭州、苏州段旅游市场和旅游资源分析的基础上,结合对规划区域地方性的研究和受众特征的调查分析,提出了明确的区域旅游形象的核心理念和外在界面。</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal; text-indent: 2em;\">&nbsp;</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal; text-indent: 2em;\"><strong style=\"margin: 0px; padding: 0px; border: 0px;\">地方性研究:</strong></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal; text-indent: 2em;\">前期我们开展地方性研究、受众调查和分析、形象替代性分析等,同时,主要讨论和创建旅游形象的具体表达,如理念、传播口号、视觉符号等。对京杭段古运河旅游形象构成的背景要素、地方性特征要素、形象修正要素进行了详细的分析,并对游客认知特征进行了调查研究,为进一步旅游形象设计奠定了基础。后面主要根据前期研究成果,创建旅游形象的具体表达体系。</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal; text-indent: 2em;\"><strong style=\"margin: 0px; padding: 0px; border: 0px;\">策划思路:</strong></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-fam
INSERT INTO `cms_content` VALUES (150, 1, '佛山某师军史馆设计', '107', '/106/111\\150.html', '<p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal;\"><img alt=\"\" src=\"http://m286.dedemao.net/uploads/allimg/151112/1530011938-0.jpg\" width=\"45%\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: top;\"/>&nbsp;<img alt=\"\" src=\"http://m286.dedemao.net/uploads/allimg/151112/15300121b-1.jpg\" width=\"45%\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: top;\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal;\">&nbsp;</p><p><img alt=\"\" src=\"http://m286.dedemao.net/uploads/allimg/151112/15300154Q-2.jpg\" width=\"45%\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: top; font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal;\"/></p><p><br/></p>', '', '', '[{\"path\":\"/upload/article/1/1460380995728.jpg\"}]', 0, '2028-01-01 00:00:00', '来自火星的程序猿', 'MS', '0', 'f,', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (157, 1, '旅游规划', '107', '/106/107\\157.html', '<p><span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify;\">-&nbsp;区域旅游发展规划</span><span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify;\">-&nbsp;历史文化区旅游开发规划</span><span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify;\">-&nbsp;风景名胜区旅游开发规划</span><br style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal;\"/><span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify;\">-&nbsp;生态旅游区开发规划</span><span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify;\">-&nbsp;温泉滨海度假区旅游开发规划</span><span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify;\">-&nbsp;旅游地产开发规划</span><br style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal;\"/><span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify;\">-&nbsp;乡村旅游开发规划</span><span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify;\">-&nbsp;主题公园开发规划</span><span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify;\">-&nbsp;城市旅游开发规划</span></p>', '', '- 区域旅游发展规划\r\n- 历史文化区旅游开发规划\r\n- 风景名胜区旅游开发规划', '[{\"path\":\"/upload/article/1/1460384875034.jpg\"}]', 0, '2028-01-01 00:00:00', '来自火星的程序猿', 'MS', '0', '', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (158, 1, '旅游规划', '101', '/99/101\\158.html', '<p><span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify;\">-&nbsp;区域旅游发展规划</span><span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify;\">-&nbsp;历史文化区旅游开发规划</span><span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify;\">-&nbsp;风景名胜区旅游开发规划</span><br style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal;\"/><span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify;\">-&nbsp;生态旅游区开发规划</span><span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify;\">-&nbsp;温泉滨海度假区旅游开发规划</span><span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify;\">-&nbsp;旅游地产开发规划</span><br style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify; white-space: normal;\"/><span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify;\">-&nbsp;乡村旅游开发规划</span><span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify;\">-&nbsp;主题公园开发规划</span><span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify;\">-&nbsp;城市旅游开发规划</span></p>', '', '区域旅游发展规划 -历史文化区旅游开发规划 -风景名胜区旅游开发规划 -生态旅游区开发规划 -温泉滨海度假区旅游开发规划 -旅游地产开发规划 -乡村旅游开发', '[{\"path\":\"/upload/article/1/1460385002423.jpg\"}]', 0, '2028-01-01 00:00:00', '专业服务', '', '0', 'f,', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (163, 1, '得品牌者得市场', '99', '/99\\index.html', '<p><span style=\"color: rgb(68, 68, 68); font-family: Verdana, Arial, Tahoma; font-size: 12px; line-height: 24px; background-color: rgb(255, 255, 255);\">凭借专业的网站策划队伍、专业的美工设计师、一流的程序开发人员,丰富的制作经验和高超的创意水平,根据您的企业的行业类型和产品特点度身定制品 牌网站。精益求精的网页制作人员、严谨的应用程序开发人员、尽善尽美的售后服务人员。这一切,是我们为您提供专业网站建设服务,也是让你在同行业中傲视群 雄</span></p>', '', '精益求精的网页制作人员、严谨的应用程序开发人员、尽善尽美的售后服务人员。这一切,是我们为您提供专业网站建设服务,也是让你在同行业中傲视群 雄', '[{\"path\":\"/upload/article/1638/1464746921150.jpg\"}]', 0, '2028-01-01 00:00:00', '', '', '0', 'f,', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (164, 1, '海派卓越规划设计智业团队', '98', '/93/98\\164.html', '<p><span style=\"color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify;\">广州规划设计麾下聚集了众多从美国旧金山艺术大学、奥本大学、香港理工大学毕业的海派旅游规划与建筑、景观设计高端人才,其国际化视野和开放创新的风格,将确保香柏领先的、卓越的规划设计水平和创造超出客户预期的服务效果。</span></p>', '', '广州规划设计麾下聚集了众多从美国旧金山艺术大学、奥本大学、香港理工大学毕业的海派旅游规', '[{\"path\":\"/upload/article/1585/1462265091247.jpg\"}]', 0, '2028-01-01 00:00:00', '', '2', '0', '', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (165, 1, '高质量行业交互平台', '98', '/93/98\\165.html', '<p><span style=\"color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 13px; line-height: 25px; text-align: justify;\">广州规划设计创新构建协同式、交互式、大数据及系统式行业服务平台,整合企业管理、金融、互联网、媒介各领域专业资源,为旅游行业提供一揽子系统化解决方</span></p>', '高质量行业交互平台', '广州规划设计创新构建协同式、交互式、大数据及系统式行业服务平台。。。', '[{\"path\":\"/upload/article/1585/1462265083093.jpg\"}]', 0, '2028-01-01 00:00:00', '', '3', '0', 'c,', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (166, 1, '01品牌创建', '62', '/63\\166.html', NULL, '', '品牌命名/品牌文化/品牌识别设计\r\n最初的品牌播种决定了品牌是要长成野草还是参天大树。所谓三岁看大品牌风格确立也要从萌芽开始让品牌自始至终保持活力与竞争力健康茁长的成长。\r\n服务项目\r\n品牌文化理念挖掘 / 挖掘一种品牌文化,并力求这种文化与更多目标消费群相关品牌命名 /\r\n创造符合品牌精神的独特名称 / 品牌视觉识别VIS设计 /\r\n基于市场与设计角度创造严谨而实用的形象设计 /', '[{\"path\":\"/upload/article/1/1460771365547.jpg\"}]', 0, '2028-01-01 00:00:00', '65', '', '0', '', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (167, 1, '品牌改造设计', '138', '/63\\167.html', '<p><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Verdana, Geneva, sans-serif; font-size: 14px; line-height: 25px; background-color: rgb(255, 255, 255);\">公司为危化客户提供危化行业危化车辆销售、金融支持、服务、二维检测、罐体检测与清洗、紧急救援、从业人员培训、二手车置换、危化物流信息平台、事故车维修理赔等多功能于一体的服务中心,提供专业的产品与服务,保障危化车辆运输安全。</span><br style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Verdana, Geneva, sans-serif; font-size: 14px; line-height: 25px; white-space: normal; background-color: rgb(255, 255, 255);\"/><strong style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Verdana, Geneva, sans-serif; font-size: 14px; line-height: 25px; white-space: normal; background-color: rgb(255, 255, 255);\">全天候服务:</strong><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Verdana, Geneva, sans-serif; font-size: 14px; line-height: 25px; background-color: rgb(255, 255, 255);\">本公司在周末、节假日均提供正常服务。在夜间,公司设有值班人员。客户遇险可及时打电话到公司,相关人员将在最短的时间内提供救援服务。</span><br style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Verdana, Geneva, sans-serif; font-size: 14px; line-height: 25px; white-space: normal; background-color: rgb(255, 255, 255);\"/><strong style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Verdana, Geneva, sans-serif; font-size: 14px; line-height: 25px; white-space: normal; background-color: rgb(255, 255, 255);\">送服务上门:</strong><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Verdana, Geneva, sans-serif; font-size: 14px; line-height: 25px; background-color: rgb(255, 255, 255);\">客户无论是租车、修车、保养或其它相关问题,如客户不便来我公司办理,公司可派相关专业人员上门提供服务。</span><br style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Verdana, Geneva, sans-serif; font-size: 14px; line-height: 25px; white-space: normal; background-color: rgb(255, 255, 255);\"/><strong style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Verdana, Geneva, sans-serif; font-size: 14px; line-height: 25px; white-space: normal; background-color: rgb(255, 255, 255);\">替换车辆:</strong><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Verdana, Geneva, sans-serif; font-size: 14px; line-height: 25px; background-color: rgb(255, 255, 255);\">客户所租车辆遇险或发生故障,在车辆修理期间,公司可提供临时替换车辆。</span><br style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Verdana, Geneva, sans-serif; font-size: 14px; line-height: 25px; white-space: normal; background-color: rgb(255, 255, 255);\"/><strong style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Verdana, Geneva, sans-serif; font-size: 14px; line-height: 25px; white-space: normal; background-color: rgb(255, 255, 255);\">定时保养:</strong><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Verdana, Geneva, sans-serif; font-size: 14px; line-height: 25px; background-color: rgb(255, 255, 255);\">本公司按时给租赁车辆实施保养,以保障客户所租车辆处于正常运转状态。</span><br style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Verdana, Geneva, sans-serif; font-size: 14px; line-height: 25px; white-space: normal; background-color: rgb(255, 255, 255);\"/><strong style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Verdana, Geneva, sans-serif; font-size: 14px; line-height: 25px; white-space: normal; background-color: rgb(255, 2
INSERT INTO `cms_content` VALUES (168, 1, '品牌推广设计', '138', '/63\\168.html', '<p><strong style=\"font-size: 14px; white-space: normal; font-family: 宋体; line-height: 22px; padding: 0px; margin: 0px; background-color: rgb(255, 255, 255);\">1、特色服务</strong><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Verdana, Geneva, sans-serif; font-size: 14px; line-height: 25px; background-color: rgb(255, 255, 255);\"></span></p><p><span style=\"line-height: 22px; font-family: 宋体; padding: 0px; margin: 0px; color: rgb(0, 0, 0);\"><span style=\"padding: 0px; margin: 0px;\">1.1&nbsp;</span>承接各类化学品、危险品的进出口的贸易代理业务</span></p><p><span style=\"line-height: 22px; font-family: 宋体; padding: 0px; margin: 0px; color: rgb(0, 0, 0);\"><span style=\"padding: 0px; margin: 0px;\">1.2&nbsp;</span>承接样品、修理物品、暂时进出口等特殊贸易方式的进出口代理业务</span></p><p><span style=\"line-height: 22px; font-family: 宋体; padding: 0px; margin: 0px; color: rgb(0, 0, 0);\"><span style=\"padding: 0px; margin: 0px;\">1.3&nbsp;</span>代办两用物项进出口许可证:包括电子钥匙的申领、进出口经营登记申请及进出口许可证的办理</span></p><p><span style=\"line-height: 22px; font-family: 宋体; padding: 0px; margin: 0px; color: rgb(0, 0, 0);\"><span style=\"padding: 0px; margin: 0px;\">1.4&nbsp;</span>承接黄磷、硝化棉的贸易采购业务</span></p><p><span style=\"line-height: 22px; font-family: 宋体; padding: 0px; margin: 0px; color: rgb(0, 0, 0);\">&nbsp;</span></p><p><span style=\"line-height: 22px; font-family: 宋体; padding: 0px; margin: 0px; color: rgb(0, 0, 0);\"><strong style=\"padding: 0px; margin: 0px;\"><span style=\"padding: 0px; margin: 0px;\">2、</span>常规服务:</strong></span></p><p><span style=\"line-height: 22px; font-family: 宋体; padding: 0px; margin: 0px; color: rgb(0, 0, 0);\"><span style=\"padding: 0px; margin: 0px;\">2.1&nbsp;</span>接单:专业的客服人员和完善的操作流程,提供贸易代理的咨询和操作服务</span></p><p><span style=\"line-height: 22px; font-family: 宋体; padding: 0px; margin: 0px; color: rgb(0, 0, 0);\"><span style=\"padding: 0px; margin: 0px;\">2.2&nbsp;</span>制单:全套进出口单证的制作</span></p><p><span style=\"line-height: 22px; font-family: 宋体; padding: 0px; margin: 0px; color: rgb(0, 0, 0);\"><span style=\"padding: 0px; margin: 0px;\">2.3&nbsp;</span>外汇结算:及时准确的安排收付外汇,保证外贸义务的及时履行</span></p><p><span style=\"line-height: 22px; font-family: 宋体; padding: 0px; margin: 0px; color: rgb(0, 0, 0);\">&nbsp;</span></p><p><span style=\"line-height: 22px; font-family: 宋体; padding: 0px; margin: 0px; color: rgb(0, 0, 0);\"><strong style=\"padding: 0px; margin: 0px;\"><span style=\"padding: 0px; margin: 0px;\">3、</span>实力资质:</strong></span></p><p><span style=\"line-height: 22px; font-family: 宋体; padding: 0px; margin: 0px; color: rgb(0, 0, 0);\"><span style=\"padding: 0px; margin: 0px;\">3.1&nbsp;</span>专业人员</span></p><p><span style=\"line-height: 22px; font-family: 宋体; padding: 0px; margin: 0px; color: rgb(0, 0, 0);\">资深客户服务及管理人员,拥有丰富的化工品、危险品专业知识和贸易操作经验,为客户提供化学品、危险品进出口贸易代理服务。</span></p><p><span style=\"line-height: 22px; font-family: 宋体; padding: 0px; margin: 0px; color: rgb(0, 0, 0);\"><span style=\"padding: 0px; margin: 0px;\">3.2&nbsp;</span>完善体系</span></p><p><span style=\"line-height: 22px; font-family: 宋体; padding: 0px; margin: 0px; color: rgb(0, 0, 0);\">1&nbsp;专业的一体化<span style=\"padding: 0px; margin: 0px;\">ERP系统从接单到代理合同、单证制作、交付货代、结算货款、出口退税严格控制贸易代理的每一个环节。</span></span></p><p><span style=\"line-height: 22px; font-family: 宋体; padding: 0px; margin: 0px; color
INSERT INTO `cms_content` VALUES (172, 1, '网络优化', '133', '/53/133\\index.html', '<p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px; line-height: 24px; color: rgb(68, 68, 68); font-family: Verdana, Arial, Tahoma; font-size: 12px; white-space: normal; \"><span style=\"padding: 0px; margin: 0px; font-size: 14px;\">网站整体策划</span></p><p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px; line-height: 24px; color: rgb(68, 68, 68); font-family: Verdana, Arial, Tahoma; font-size: 12px; white-space: normal;\">企业网站建设目的何在?如何充分挖掘互联网络的资源和优势,如何合理地组织网站内容与功能从而达到客户的需求?<br style=\"padding: 0px; margin: 0px;\"/>我们将根据市场分析、客户产品及服务的优势、竞争对手分析等等有效的确立网站定位。根据相关需求分析获得相应网站运营策略在网站建立之初我们就网站VI形象、网站营销手段、运营模式、网站发展前景等等进行定位。</p><p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px; line-height: 24px; color: rgb(68, 68, 68); font-family: Verdana, Arial, Tahoma; font-size: 12px; white-space: normal; \">&nbsp;<span style=\"padding: 0px; margin: 0px; font-size: 14px;\"></span></p><p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px; line-height: 24px; color: rgb(68, 68, 68); font-family: Verdana, Arial, Tahoma; font-size: 12px; white-space: normal; \"><span style=\"padding: 0px; margin: 0px; font-size: 14px;\">网站设计&nbsp;<span style=\"padding: 0px; margin: 0px; color: rgb(255, 0, 0);\">DESIGN</span></span></p><p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px; line-height: 24px; color: rgb(68, 68, 68); font-family: Verdana, Arial, Tahoma; font-size: 12px; white-space: normal; \">网络媒体不同于传统媒体,如果在网站设计的时候仅仅是将文字和图片做一个简单堆积和展示的话,这样的网站跟一片丢落在街头的破旧宣传资料没有任何区别。客户往往通过企业网站就留下了对企业的第一印象,这个第一印象是决定客户是否与你合作的重要因素。<br style=\"padding: 0px; margin: 0px;\"/>所以站在浏览者的角度我们分析企业特点和品牌内涵完美的通过网站体现企业形象并严格采用W3C国际标准进行网站设计采用DIV+CSS构 架,不但使您的网站具备足够的扩展性,您网站的速度、兼容性、友好性也都会显著提高,更主要的是,代码和表现分离的方式让您的网站改版变得更容易,而针对 SEO搜索引擎优化的工作也变得更加的畅通。</p><p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px; line-height: 24px; color: rgb(68, 68, 68); font-family: Verdana, Arial, Tahoma; font-size: 12px; white-space: normal; \">&nbsp;</p><p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px; line-height: 24px; color: rgb(68, 68, 68); font-family: Verdana, Arial, Tahoma; font-size: 12px; white-space: normal; \"><span style=\"padding: 0px; margin: 0px; font-size: 14px;\">网站建设售后服务&nbsp;<span style=\"padding: 0px; margin: 0px; color: rgb(255, 0, 0);\">SALES</span></span></p><p>&lt;p style=&quot;padding: 0px; margin-top: 0px; margin-bottom: 0px; line-height: 24px; color: rgb(68, 68, 68); font-family: Verdana, Arial, Tahoma; font-size: 12px; white-space: normal; &gt;网站建设专家致力于为客户提供优质的产品及服务。为了多渠道的了解客户的需求,快速响应个性化需要,不断完善售后服务工作,我们客户服务管理部在此为您搭建了这个沟通的平台,我们希望通过网络加强与客户的交流。<br style=\"padding: 0px; margin: 0px;\"/>完善的售后服务是公司信誉的保障和服务趋于完善与成熟的象征,因此,我们在这一方面投入了较大的精力,确保每一位客户的利益得到充分的保障,从而提高企业信誉,发展长期友好的合作。<br style=\"padding: 0px; margin: 0px;\"/>对于享受我<E58F97>
INSERT INTO `cms_content` VALUES (173, 1, '网络营销', '134', '/53/134\\index.html', '<p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px; line-height: 24px; color: rgb(68, 68, 68); font-family: Verdana, Arial, Tahoma; font-size: 12px; white-space: normal;\"><span style=\"padding: 0px; margin: 0px; font-size: 14px;\">互联网品牌推广怎么做?</span></p><p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px; line-height: 24px; color: rgb(68, 68, 68); font-family: Verdana, Arial, Tahoma; font-size: 12px; white-space: normal;\">互联网品牌推广有个新鲜名词叫数字营销,数字营销是新发展起来的一种营销模式,是利用互联网特性和技术,更加有效、高性价比地完成整合营销计划,达到传统 的IMC不能达到的高效客户关系管理等从而精准地实施营销策略实现企业营销的高效率、低成本、大影响。可以按两种意思来理解网络整合营销是利用网络 技术和网络特性最大化、最快速、最有效、最精准的进行整合营销;网络整合营销是以为客户提供有价值的信息为基础,由客户创造、传播为主导的整合营销理念进 行的网络营销。</p><p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px; line-height: 24px; color: rgb(68, 68, 68); font-family: Verdana, Arial, Tahoma; font-size: 12px; white-space: normal;\">&nbsp;</p><p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px; line-height: 24px; color: rgb(68, 68, 68); font-family: Verdana, Arial, Tahoma; font-size: 12px; white-space: normal;\"><span style=\"padding: 0px; margin: 0px; font-size: 14px;\">目前品牌在推广上遇到什么问题?</span></p><p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px; line-height: 24px; color: rgb(68, 68, 68); font-family: Verdana, Arial, Tahoma; font-size: 12px; white-space: normal;\">作为品牌主,你是否有这样的困惑?<br style=\"padding: 0px; margin: 0px;\"/>● 很早就有了互联网品牌网站,可是却不知如何利用,网络也没有给你创造任何经济效益!<br style=\"padding: 0px; margin: 0px;\"/>● 希望通过网络推广获得效益,但面对市场上纷繁复杂、层出不穷的网络推广概念和方式让人眼花缭乱,却无从下手!<br style=\"padding: 0px; margin: 0px;\"/>● 花了很多钱做网站推广,却没什么效果,也不知道问题出在哪里?<br style=\"padding: 0px; margin: 0px;\"/>● 看到竞争对手迅速壮大,却不知道他们究竟如何利用好网络营销的秘诀?</p><p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px; line-height: 24px; color: rgb(68, 68, 68); font-family: Verdana, Arial, Tahoma; font-size: 12px; white-space: normal; \">&nbsp;</p><p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px; line-height: 24px; color: rgb(68, 68, 68); font-family: Verdana, Arial, Tahoma; font-size: 12px; white-space: normal; \"><span style=\"padding: 0px; margin: 0px; font-size: 14px;\">是怎么做的?</span></p><p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px; line-height: 24px; color: rgb(68, 68, 68); font-family: Verdana, Arial, Tahoma; font-size: 12px; white-space: normal;\">当我们的客户确定需要进行数字营销传播时,我们将提供以下服务:<br style=\"padding: 0px; margin: 0px;\"/>营销型网站建设,网络调研,搜索引擎营销(SEO和SEM),软文营销(博客营销、论坛营销、SNS营销、新闻营销、许可邮件营销),口碑互动营销(圈子 营销、社区营销、博客营销),群营销(网络广告、论坛营销、SNS营销、IM和QQ群营销)。将以上传播进行有机的整合营销推广,制定传播营销方案。</p><p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px; line-height: 24px; color: rgb(68, 68, 68); font-family: Verdana, Arial, Tahoma; font-size: 12px; white-space: normal; \">一、提供推广资料和目标,提供报价。<br style=\"padding: 0px; margin: 0px;\"/>二、提供营销型网站方案。<br style=\"padding: 0px; margin:
INSERT INTO `cms_content` VALUES (174, 1, '域名注册', '135', '/53/135\\index.html', '<p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px; line-height: 24px; color: rgb(68, 68, 68); font-family: Verdana, Arial, Tahoma; font-size: 12px; white-space: normal; \"><span style=\"padding: 0px; margin: 0px; color: rgb(255, 0, 0);\"><span style=\"padding: 0px; margin: 0px; font-size: 14px;\">域名?</span></span></p><p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px; line-height: 24px; color: rgb(68, 68, 68); font-family: Verdana, Arial, Tahoma; font-size: 12px; white-space: normal; \"><span style=\"padding: 0px; margin: 0px; font-size: 14px;\">Internet这个信息时代的宠儿已经走出了襁褓为越来越多的人所认识电子商务、网上销售、网络广告已成为商界关注的热点。&quot;上网&quot;已成为不少人的口头禅。但是,要想在网上建立服务器发布信息,则必须首先注册自己的域名,只有有了自己的域名才能让别人访问到自己。所以,域名注册是在互联网上建立任何服务的基础。同时,由于域名的唯一性,尽早注册又是十分必要的。</span></p><p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px; line-height: 24px; color: rgb(68, 68, 68); font-family: Verdana, Arial, Tahoma; font-size: 12px; white-space: normal;\">&nbsp;</p><hr style=\"padding: 0px; margin: 0px; color: rgb(68, 68, 68); font-family: Verdana, Arial, Tahoma; font-size: 12px; white-space: normal; \"/><p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px; line-height: 24px; color: rgb(68, 68, 68); font-family: Verdana, Arial, Tahoma; font-size: 12px; white-space: normal;\"><span style=\"padding: 0px; margin: 0px; color: rgb(255, 0, 0);\"><span style=\"padding: 0px; margin: 0px; font-size: 14px;\">国际域名注册</span></span></p><p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px; line-height: 24px; color: rgb(68, 68, 68); font-family: Verdana, Arial, Tahoma; font-size: 12px; white-space: normal; \">&nbsp;</p><table bgcolor=\"#cccccc\" cellpadding=\"0\" cellspacing=\"1\" class=\"yh_z\" width=\"100%\"><tbody style=\"padding: 0px; margin: 0px;\"><tr style=\"padding: 0px; margin: 0px;\" class=\"firstRow\"><th bgcolor=\"#f2f2f2\" height=\"25\" width=\"20%\" style=\"padding: 0px; margin: 0px;\"><strong style=\"padding: 0px; margin: 0px;\">域名价格</strong></th><th bgcolor=\"#f2f2f2\" width=\"20%\" style=\"padding: 0px; margin: 0px;\"><strong style=\"padding: 0px; margin: 0px;\">域名价格</strong></th><th bgcolor=\"#f2f2f2\" width=\"60%\" style=\"padding: 0px; margin: 0px;\"><strong style=\"padding: 0px; margin: 0px;\">域名说明</strong></th></tr><tr bgcolor=\"#ffffff\" style=\"padding: 0px; margin: 0px;\"><td align=\"center\" style=\"padding-right: 5px; padding-left: 5px; margin: 0px;\"><h5 style=\"padding: 0px; margin: 0px;\">CN英文域名注册</h5></td><td align=\"center\" style=\"padding-right: 5px; padding-left: 5px; margin: 0px;\"><h5 style=\"padding: 0px; margin: 0px;\">80&nbsp;元/年</h5></td><td align=\"left\" style=\"padding-right: 5px; padding-left: 5px; margin: 0px;\">域名类型:.cn/ .com.cn/ .net.cn/ .org.cn等</td></tr><tr bgcolor=\"#f2f2f2\" style=\"padding: 0px; margin: 0px;\"><td align=\"center\" style=\"padding-right: 5px; padding-left: 5px; margin: 0px;\"><h5 style=\"padding: 0px; margin: 0px;\">国际域名注册</h5></td><td align=\"center\" style=\"padding-right: 5px; padding-left: 5px; margin: 0px;\"><h5 style=\"padding: 0px; margin: 0px;\">80&nbsp;元/年<br style=\"padding: 0px; margin: 0px;\"/>(多年购买优惠)</h5></td><td align=\"left\" style=\"padding-right: 5px; padding-left: 5px; margin: 0px;\">域名类型:.com/ .net/ .org/ .biz</td></tr><tr bgcolor=\"#ffffff\" style=\"padding: 0px; margin: 0px;\"><td align=\"center\" style=\"padding-right: 5px; padding-left: 5px; margin: 0px;\"><h5 style=\"padding: 0px; margin: 0px;\">英文.ASIA</h5></td><td align=\"center\" style=\"padding-right: 5px; padding-left: 5px; margin: 0px;\"><h5 style=\"padding: 0px; margin:
INSERT INTO `cms_content` VALUES (177, 1, '国内开源 java cms铭飞MCms', '70', '/59/70\\177.html', '<p style=\"box-sizing: border-box; margin-top: 8px; margin-bottom: 8px; font-size: 12.5px; color: rgb(51, 51, 51); line-height: 22.5px; white-space: normal; padding: 0px; letter-spacing: 0.5px; word-wrap: break-word; word-break: break-all; font-family: Verdana, sans-serif, 宋体; text-indent: 28px; \"><span style=\"box-sizing: border-box; padding: 0px; margin: 0px; font-family: 微软雅黑; font-size: 14px;\">MCMS是企业创立初期很好的基础框架不仅可以实现和现有系统的对接而且有大量的插件模版可以使用。</span></p><p style=\"box-sizing: border-box; margin-top: 8px; margin-bottom: 8px; font-size: 12.5px; color: rgb(51, 51, 51); line-height: 22.5px; white-space: normal; padding: 0px; letter-spacing: 0.5px; word-wrap: break-word; word-break: break-all; font-family: Verdana, sans-serif, 宋体; text-indent: 28px;\"><span style=\"box-sizing: border-box; padding: 0px; margin: 0px; font-family: 微软雅黑; font-size: 14px;\">MS平台开发团队承诺MCMS内容管理系统永久完整开源免费(这真是极好的)下面就简单的给大家介绍一下MS平台和MCMS为什么如此之快。</span></p><p style=\"box-sizing: border-box; margin-top: 8px; margin-bottom: 8px; font-size: 12.5px; color: rgb(51, 51, 51); line-height: 22.5px; white-space: normal; padding: 0px; letter-spacing: 0.5px; word-wrap: break-word; word-break: break-all; font-family: Verdana, sans-serif, 宋体; text-indent: 28px;\"><span style=\"box-sizing: border-box; padding: 0px; margin: 0px; font-family: 微软雅黑; font-size: 14px;\">MS平台是铭飞团队经过多年的研发最终以MCMS为基础集商城、论坛、分期、会员、支付、积分、微信等系统于一体的插件式系统。并实现了淘宝、京东、苏宁、国美等第三方电商平台数据接口的统一。平台中的小插件如邮件推送、短信接口、定时任务、促销活动、数据采集等非常丰富。</span></p><p style=\"box-sizing: border-box; margin-top: 8px; margin-bottom: 8px; font-size: 12.5px; color: rgb(51, 51, 51); line-height: 22.5px; white-space: normal; padding: 0px; letter-spacing: 0.5px; word-wrap: break-word; word-break: break-all; font-family: Verdana, sans-serif, 宋体; text-indent: 28px;\"><span style=\"box-sizing: border-box; padding: 0px; margin: 0px; font-family: 微软雅黑; font-size: 14px;\">MCMS的模版采用标签式开发上手非常快。</span></p><p style=\"box-sizing: border-box; margin-top: 8px; margin-bottom: 8px; font-size: 12.5px; color: rgb(51, 51, 51); line-height: 22.5px; white-space: normal; padding: 0px; letter-spacing: 0.5px; word-wrap: break-word; word-break: break-all; font-family: Verdana, sans-serif, 宋体; text-indent: 28px;\"><span style=\"box-sizing: border-box; padding: 0px; margin: 0px; font-family: 微软雅黑; font-size: 14px;\">对于技术小白来说不仅避开了学习复杂的高级开发语言,而且MStore有大量成熟的模版直接下载之后换换图片和内容就可以使用,要是需要调整只需要写简单的标签就可以。</span></p><p style=\"box-sizing: border-box; margin-top: 8px; margin-bottom: 8px; font-size: 12.5px; color: rgb(51, 51, 51); line-height: 22.5px; white-space: normal; padding: 0px; letter-spacing: 0.5px; word-wrap: break-word; word-break: break-all; font-family: Verdana, sans-serif, 宋体; text-indent: 28px; \"><span style=\"box-sizing: border-box; padding: 0px; margin: 0px; font-family: 微软雅黑; font-size: 14px;\">对于前端工程师来说只需要写好页面样式并在页面内容部分套上标签,就可以做出一套优美的动态网站。并且还可以实现留言板、用户登录等数据交互功能。</span></p><p><br/></p>', '', 'MCMS是企业创立初期很好的基础框架不仅可以实现和现有系统的对接而且有大量的插件模版可以使用。\r\n\r\nMS平台开发团队承诺MCMS内容管理系统永久完整开源免费(这真是极', '[{\"pat
INSERT INTO `cms_content` VALUES (178, 1, '价值源自分享', '68', '/59/68\\178.html', '<p><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 14px; vertical-align: baseline; color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; line-height: 23px; \">MStore铭飞商城是铭飞MS平台为开发者提供模版与插件作品分享平台,为企业提供优质产品和服务我们致力于打造一个优秀的Java资源共享学习平台。</span><br style=\"box-sizing: border-box; white-space: normal; color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; font-size: 14px; line-height: 23px;\"/><br style=\"box-sizing: border-box; white-space: normal; color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; font-size: 14px; line-height: 23px;\"/><strong style=\"box-sizing: border-box; white-space: normal; margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 14px; vertical-align: baseline; color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; line-height: 23px; \">MStore离不开您的参与<br style=\"box-sizing: border-box;\"/>如果您是开发者(前端&amp;后台)</strong><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 14px; vertical-align: baseline; color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; line-height: 23px; \"></span><br style=\"box-sizing: border-box; white-space: normal; color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; font-size: 14px; line-height: 23px;\"/><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 14px; vertical-align: baseline; color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; line-height: 23px;\">1.要分享自己的得意模板、插件、教程?欢迎您来这里,找到需要她、欣赏她的人。</span><br style=\"box-sizing: border-box; white-space: normal; color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; font-size: 14px; line-height: 23px;\"/><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 14px; vertical-align: baseline; color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; line-height: 23px;\">2.想找个网络模板收藏夹存放自己喜爱的模板? 这里就是您的选择。</span><br style=\"box-sizing: border-box; white-space: normal; color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; font-size: 14px; line-height: 23px; \"/><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 14px; vertical-align: baseline; color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; line-height: 23px; \">3.想结交更多热爱模板、插件的朋友?那就快来展示您的作品,寻找志趣相投的朋友吧。</span><br style=\"box-sizing: border-box; white-space: normal; color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; font-size: 14px; line-height: 23px;\"/><br style=\"box-sizing: border-box; white-space: normal; color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; font-size: 14px; line-height: 23px;\"/><strong style=\"box-sizing: border-box; white-space: normal; margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 14px; vertical-align: baseline; color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; line-height: 23px; \">如果您是企业:</strong><br style=\"box-sizing: border-box; white-space: normal; color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; font-size: 14px; line-height: 23px;\"/><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 14px; vertical-align: baseline; color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; line-height: 23px;\">1.这里有一群精力旺盛有着代码执着追求的<E6B182>
INSERT INTO `cms_content` VALUES (179, 1, '铭飞商城MStore——价值源自分享', '68', '/59/68\\179.html', '<p><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 14px; vertical-align: baseline; color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; line-height: 23px;\">MStore铭飞商城是铭飞MS平台为开发者提供模版与插件作品分享平台,为企业提供优质产品和服务我们致力于打造一个优秀的Java资源共享学习平台。</span><br style=\"box-sizing: border-box; white-space: normal; color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; font-size: 14px; line-height: 23px; \"/><br style=\"box-sizing: border-box; white-space: normal; color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; font-size: 14px; line-height: 23px; \"/><strong style=\"box-sizing: border-box; white-space: normal; margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 14px; vertical-align: baseline; color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; line-height: 23px;\">MStore离不开您的参与<br style=\"box-sizing: border-box;\"/>如果您是开发者(前端&amp;后台)</strong><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 14px; vertical-align: baseline; color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; line-height: 23px; \"></span><br style=\"box-sizing: border-box; white-space: normal; color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; font-size: 14px; line-height: 23px; \"/><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 14px; vertical-align: baseline; color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; line-height: 23px; \">1.要分享自己的得意模板、插件、教程?欢迎您来这里,找到需要她、欣赏她的人。</span><br style=\"box-sizing: border-box; white-space: normal; color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; font-size: 14px; line-height: 23px; \"/><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 14px; vertical-align: baseline; color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; line-height: 23px;\">2.想找个网络模板收藏夹存放自己喜爱的模板? 这里就是您的选择。</span><br style=\"box-sizing: border-box; white-space: normal; color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; font-size: 14px; line-height: 23px;\"/><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 14px; vertical-align: baseline; color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; line-height: 23px;\">3.想结交更多热爱模板、插件的朋友?那就快来展示您的作品,寻找志趣相投的朋友吧。</span><br style=\"box-sizing: border-box; white-space: normal; color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; font-size: 14px; line-height: 23px; \"/><br style=\"box-sizing: border-box; white-space: normal; color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; font-size: 14px; line-height: 23px;\"/><strong style=\"box-sizing: border-box; white-space: normal; margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 14px; vertical-align: baseline; color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; line-height: 23px;\">如果您是企业:</strong><br style=\"box-sizing: border-box; white-space: normal; color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; font-size: 14px; line-height: 23px; \"/><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; outline: 0px; font-size: 14px; vertical-align: baseline; color: rgb(114, 114, 114); font-family: &#39;Open Sans&#39;, sans-serif; line-height: 23px;\">1.这里有一群精力旺盛<E697BA><E79B9B>
INSERT INTO `cms_content` VALUES (182, 1, '人才理念', '52', '/52\\index.html', '<p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px; line-height: 24px; color: rgb(68, 68, 68); font-family: Verdana, Arial, Tahoma; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"padding: 0px; margin: 0px; font-size: 14px;\">网络营销是以互联网络为基础,通过数字化的信息和网络媒体的交互性来辅助营销目标实现的一种新型的市场营销方式。</span></p><p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px; line-height: 24px; color: rgb(68, 68, 68); font-family: Verdana, Arial, Tahoma; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\">&nbsp;</p><p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px; line-height: 24px; color: rgb(68, 68, 68); font-family: Verdana, Arial, Tahoma; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"padding: 0px; margin: 0px; font-size: 14px;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 据统计在国外80%的个人和企业都选择网络媒介进行营销推广并从中获得了极好的效果。而在中国选择网络营销的企业和个人只有7-8%,不到国外的十分之一。</span></p><p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px; line-height: 24px; color: rgb(68, 68, 68); font-family: Verdana, Arial, Tahoma; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\">&nbsp;</p><p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px; line-height: 24px; color: rgb(68, 68, 68); font-family: Verdana, Arial, Tahoma; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"padding: 0px; margin: 0px; font-size: 14px;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 随着网络影响的进一步扩大,随着人们对于网络营销理解的进一步加深,以及越来越多出现的网络营销推广的成功案例,人们已经开始意识到网络营销的诸多优点,越来越多的企业和个人通过网络进行营销推广</span></p><p><br/></p>', '网络营销是以互联网络为基础', '网络营销是以互联网络为基础,通过数字化的信息和网络媒体的交互性来辅助营销目标实现的一种新型的市场营销方式。', '[{\"path\":\"/upload/article/1584/1462521245856.jpg\"}]', 0, '2028-01-01 00:00:00', '', '', '0', '', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (183, 1, '联系我们', '136', '/52/136\\index.html', '<p><img src=\"/upload/editor/1580/1461912560218.jpg\" title=\"1461912560218.jpg\" alt=\"1-1203302131502F.jpg\"/><img src=\"/upload/editor/1580/1461912562754.jpg\" title=\"1461912562754.jpg\" alt=\"1-120330213210F7.jpg\"/><img src=\"/upload/editor/1580/1461912555214.jpg\" title=\"1461912555214.jpg\" alt=\"1-12033021312C17.jpg\"/></p>', '', '这里是一个充满活力和梦想的企业,我们不反对个性,我们不安于现状,我们亲手创造价值,我们永远在进步……如果你也是名有梦想勇于尝试的人,那就赶快加入我们吧!\r\n\r\n我们面向全国招募有志之士欢迎自荐或向周围的好友推荐。', '', 0, '2028-01-01 00:00:00', '', '', '0', '', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (185, 1, '联系我们', '141', '/19/141\\index.html', '<p>联系电话888888<br/></p><p>QQ1391265900</p><p>邮箱1391265900@qq.com</p><p>地址:来自火星的程序猿</p><p><br/></p>', '', '这里是一个充满活力和梦想的企业,我们不反对个性,我们不安于现状,我们亲手创造价值,我们永远在进步……如果你也是名有梦想勇于尝试的人,那就赶快加入我们吧!\r\n\r\n我们面向全国招募有志之士欢迎自荐或向周围的好友推荐。', '[{\"path\":\"/upload/article/1638/1465720290023.jpg\"}]', 4, '2028-01-01 00:00:00', '', '', '0', '', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (190, 1, '在线留言', '142', '/19/142\\index.html', NULL, '', '', '', 0, '2028-01-01 00:00:00', '', '', '0', '', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (191, 1, '“绿色装饰”融入杭州市民中心装饰工程', '84', '/62/84\\191.html', '<p><span style=\"color: rgb(102, 102, 102); font-family: 微软雅黑; font-size: 12px; line-height: 24px;\">日前公司成功中标杭州市民中心G楼约18000多平方米四层公共区域装饰工程这是继杭州钱江新城国际会议中心之后的又一城市标志性建筑工程。</span><br style=\"color: rgb(102, 102, 102); font-family: 微软雅黑; font-size: 12px; line-height: 24px; white-space: normal;\"/><span style=\"color: rgb(102, 102, 102); font-family: 微软雅黑; font-size: 12px; line-height: 24px;\">在该项目施工过程中,公司始终将“绿色装饰”理念融入其中。“绿色装饰”是指在设计、装修选材、施工等整个过程都符合绿色环保的理念,把对环 境造成的危害降低到最小,让市民享受到真正的绿色生活。随着社会的不断发展,“绿色装饰”日趋成为广大建筑装饰企业努力的方向。</span><br style=\"color: rgb(102, 102, 102); font-family: 微软雅黑; font-size: 12px; line-height: 24px; white-space: normal;\"/><span style=\"color: rgb(102, 102, 102); font-family: 微软雅黑; font-size: 12px; line-height: 24px;\">公司项目部在杭州市民中心G楼工程中严格按照健康、环保、安全的施工标准精心施工力争达到“浙江省建筑安全文明标化工地”的要求。在原 材料的选用上精挑细选,大量运用了玻璃、大理石材等绿色环保和高品质的装饰材料,突显出了简约、明快、自然的设计风格,创造出宽阔、绿色、实用的公共空 间。</span><br style=\"color: rgb(102, 102, 102); font-family: 微软雅黑; font-size: 12px; line-height: 24px; white-space: normal;\"/><span style=\"color: rgb(102, 102, 102); font-family: 微软雅黑; font-size: 12px; line-height: 24px;\">此外项目部还非常注重采取新工艺、新方法,不仅提高了工程的整体美观性和实用性,而且加快了施工进度,提升了工作效率。由于本工程是圆型结构的楼层施 工,特别是石材在圆弧和圆柱造型上用量大,大大增加了工程的施工难度。因此,项目部按工程施工位置的不同分别采用了石材干挂施工工艺和石材湿贴与灌浆施工 工艺。通过这两种施工工艺铺出来的石材平整、洁净、色泽一致,无裂痕和缺损,既美观又方便今后日常护理。</span><br style=\"color: rgb(102, 102, 102); font-family: 微软雅黑; font-size: 12px; line-height: 24px; white-space: normal;\"/><span style=\"color: rgb(102, 102, 102); font-family: 微软雅黑; font-size: 12px; line-height: 24px;\">作为杭州市重点工程杭州市民中心G楼公共区域装饰工程得到了公司领导的高度重视。总经理高利明亲自坐镇指挥组建了一支强有力的项目领导管 理班子,采用矩阵式组织管理体系,即采取以项目经理为第一责任人,分解项目绿色施工指标,形成完善的绿色施工组织、责任体系,在保证质量、安全等基本要求 的前提下,通过科学管理和技术进步,最大限度地节约资源与减少对环境负面影响,实现四位一体的绿色环保施工,打造“绿色装饰”精品工程。</span></p>', '', '此外项目部还非常注重采取新工艺、新方法,不仅提高了工程的整体美观性和实用性,而且加快了施工进度,提升了工作效率。由于本工程是圆型结构的楼层施 工,特别是石材在圆弧和圆柱造型上用量大,大大增加了工程的施工难度。', '[{\"path\":\"/upload/article/1638/1464861354733.jpg\"}]', 0, '2028-01-01 00:00:00', '铭飞', '铭飞', '0', 'h,', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (192, 1, '纽约时髦客手中那些让人尖叫的包', '83', '/62/84\\192.html', '<p><span style=\"color: rgb(51, 51, 51); font-family: 微软雅黑, Arial; line-height: 34px; background-color: rgb(255, 255, 255);\">对于时尚达人而言,包袋与衣服的混搭也是一种必杀技。休闲手提包可以搭配不同的造型,而搭配运动裤就是更加直接地表现出时尚休闲风的最佳配搭方案。 宽松舒适的运动裤相信是不少男士最爱,但却很难搭出时尚感,更一不小心就给人过于随便的印象。而手提包在款式、颜色、材质及图案方面层出不穷,再搭配不同款式的运动裤,打造半运动化的时装搭配,让运动休闲和时尚文化完美结合,塑造出运动感的摩登简约风,让整体穿着随意且舒适。</span></p>', '', '对于时尚达人而言,包袋与衣服的混搭也是一种必杀技。休闲手提包可以搭配不同的造型,而搭配运动裤就是更加直接地表现出时尚休闲风的最佳配搭方案。', '[{\"path\":\"/upload/article/1638/1464861380560.png\"}]', 0, '2028-01-01 00:00:00', '铭飞', '铭飞', '0', 'p,', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (193, 1, '宋朝华率队赴贵州招商洽谈推进重大项目', '83', '/62/84\\193.html', '<p>市委副书记、市长宋朝华率队前往贵州省贵阳市,实地考察由中铁贵旅公司投资开发建设的中铁国际生态城项目,并与公司高层进行了深入友好座谈,洽谈推进重大项目落户我市仁寿县相关事宜。</p><p>&nbsp;</p><p>中国中铁旗下子公司——中铁贵旅公司开发建设的中铁国际生态城项目位于贵阳市龙洞堡空港经济区总投资500亿元占地面积约20平方公里打造集旅游、休闲、度假、运动、文化、养老、养生和居住等多种功能于一体的世界级旅游度假目的地2011年被列为“贵州省十二五旅游发展规划十大旅游项目”之一是贵州省的重点项目。在中铁贵旅公司董事长张敏的陪同下宋朝华一行参观考察了中铁国际生态城展示中心、中铁国际生态旅游城市综合体项目、安纳塔拉度假酒店和巫山香杏小镇等旅游开发项目认真听取了项目规划建设有关情况介绍对中铁国际生态城项目规划理念新、设计水平高、推进速度快表示由衷赞赏对中铁贵旅公司有意来我市仁寿县投资发展表示热烈欢迎。</p><p>&nbsp;</p><p>座谈会上双方就推进项目落户事宜进行了深入友好会谈。宋朝华指出中铁贵旅公司实力强、品牌响、理念新对公司投资开发黑龙滩休闲旅游度假中心项目充满信心。通过深入考察和友好洽谈双方就项目投资有关事宜达成了共识并将于近期正式签署合作协议。张敏表示天府眉山交通区位优越旅游资源独特发展潜力巨大集团拟投资200亿元以上开发建设黑龙滩旅游项目。该项目将按照国际化水准坚持以游为主、高举高打紧紧围绕“吃、住、行、游、购、娱”六要素走产业高端、高端产业的路线全力打造5a级景区为发展旅游产业和造福眉山人民作出央企应有的贡献。</p><p><br/></p>', '', '市委副书记、市长宋朝华率队前往贵州省贵阳市,实地考察由中铁贵旅公司投资开发建设的中铁国际生态城项目,并与公司高层进行了深入友好座谈,洽谈推进重大项目落户我市仁寿县相关事宜。\r\n ', '[{\"path\":\"/upload/article/1638/1464861385314.jpg\"}]', 0, '2028-01-01 00:00:00', '铭飞', '铭飞', '0', '', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (194, 1, '红木市场是否低迷 消费者仍在', '83', '/62/83\\194.html', '<p>森和汽车城,位于广州市天河北路,是一家高端品牌汽车的城市综合展厅,本来是全方位展示豪华新车的地方。上周,突然在门口拉上了横幅——东阳红木清货大甩卖。记者于日前一探,吓了一跳。门口的广场上停着几辆大货车,不断有红木家具被抬出来打包装车。走进去视觉更混乱,当庭摆着一套五件鹿角椅,旁边是满雕龙的金丝楠木顶箱柜,内庭中央还展示着一辆豪华轿车,而周边则摆满红木家具,完全没有红木家具应该有的意境。更令人瞠目结舌的是,里面人流熙熙攘攘,整个场景可以让你直接穿越到上世纪八十年代中期一个小县城的展销会。</p><p>&nbsp;</p><p>  “销售情况非常可观首日已经突破100万元销售周末差不多也是这个数。”东阳红木销售负责人穆延东告诉记者这次的清货周四开始周日结束下周同样如此中间的时间会对产品进行调整再销售一次就结束了。记者在店内粗略看了一下产品以清式家具为主材质则以金丝楠木、微凹黄檀、缅甸花梨、南美酸枝、东南亚酸枝为主大红酸枝和明式风格的产品不多就连在今年APEC上出现的大红酸枝交椅的完整复刻版也随便被摆在了角落。从做工和风格以及雕刻工艺来看这些货物并非出自一家工厂。“此次清货的红木家具来自东阳红木家具六家工厂这些货基本是这些厂家去年接的订单直接生产的但今年有很多客户取消了订单加上市场环境变化代理商出货也很慢。工厂不像经销商可以囤货它必须保持周转否则就得停工待产坐以待毙。所以几家厂子就联合起来将厂里现有的产品变现自谋生路。”穆延东告诉记者他们在北京、上海也有此类清货会销售情况都不错相对而言广州的销售情况不如北京、上海。“可能是产品材质的问题微凹黄檀和缅甸花梨的产品比较畅销但南美酸枝和东南亚酸枝的产品不太被认可。有很多消费者直接询问有没有大红酸枝的产品也有很多消费者询问有没有明式风格的产品。”他透露下周销售的产品将会进行调整还是针对普通消费者以老挝大红酸枝(交趾黄檀)、缅甸花梨的材质为主,增加明式风格家具的品类,但还是以清式风格为主。</p><p><br/></p>', '', '内庭中央还展示着一辆豪华轿车,而周边则摆满红木家具,完全没有红木家具应该有的意境。更令人瞠目结舌的是,里面人流熙熙攘攘', '[{\"path\":\"/upload/article/1638/1464861401214.jpg\"}]', 0, '2028-01-01 00:00:00', '铭飞', '铭飞', '0', '', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (195, 1, '众多国宝级古典家具悉数亮相', '83', '/62/83\\195.html', '<p>海南黄花梨圆包脚罗汉床、小叶紫檀云龙纹镶理石圆桌、富贵满堂多宝阁……昨日12月13日上午第三届中国江门传统家具精品鉴赏会暨2014中国江门红木家具经销大会在五邑华侨广场会展中心正式开幕众多国宝级古典家具作品以及海南黄花梨等珍贵木材亮相。</p><p>&nbsp;</p><p>  此次活动由江门市古典家具行业协会主办江门市新会区古典家具行业协会、台山市大江古典家具商会共同协办会期为12月13日至16日有来自我市新会、台山的50家代表性企业参展云集了20多个省市经销商、行业精英这是我市古典家具行业促进交流合作展示广作精品推广“江门红木”的重要平台。</p><p>&nbsp;</p><p>  出席展会开幕式的有关嘉宾有:中国家具协会副理事长、传统家具专业委员会主席团常设主席陈宝光,故宫博物院常务副院长、故宫博物院研究员王亚民,中国家具协会传统家具专业委员会主席、江门市古典家具行业协会会长伍炳亮,省家具协会会长王克,省工艺美术协会会长舒海波等。</p><p>&nbsp;</p><p>  我市是红木广作工艺的发源地之一,也是全国红木家具重要的生产基地,拥有深厚的文化和精妙的技艺,人才云集。借助这次展会,伍炳亮认为,一方面,“将有利于增加广大爱好者对传统家具的了解,在提升自己的审美观和鉴赏力,领略艺术魅力的同时,享受艺术带来的美好生活”;另一方面,这将成为我市对外展示的窗口,“展示我市优秀传统家具作品和设计,引领当代仿古家具健康发展”。</p><p>&nbsp;</p><p>  王亚民在致辞中说:“江门在传统家具制作方面有很长的历史,涌现出了一批家具行业的企业家,对传统家具的继承创新与发展都做出了自己的探索和非常令人鼓舞的成就,在全国形成影响。”</p><p>&nbsp;</p><p>  陈宝光则希望:“江门红木家具企业能够借这次展会,进一步推动行业良性发展,为全国红木家具发展作出贡献。”</p><p><br/></p>', '', '海南黄花梨圆包脚罗汉床、小叶紫檀云龙纹镶理石圆桌、富贵满堂多宝阁……昨日12月13日上午第三届中国江门传统家具精品鉴赏会暨2014中国江门红木家具....', '[{\"path\":\"/upload/article/1638/1464861408016.jpg\"}]', 0, '2028-01-01 00:00:00', '铭飞', '铭飞', '0', 'f,', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (196, 1, '戴为红木燃情成都,开启幸福之门', '83', '/62/83\\196.html', '<p>有人说,成都,是一个让人来了就不想离开的地方,是一座悠远的文化名城,它用睿智和远见,让每一个人共享一座城市的幸福,因此被评为“最具幸福感的城市”。</p><p>&nbsp;</p><p>那么,当中国国粹文化的传承者、追求幸福感的红木家具知名品牌——东莞市弘开实业有限公司(以下简称戴为红木)与成都邂逅,必能为广大成都市民增添更多新的幸福感。<br/><br/></p><p>近期,出于对中国传统文化的热爱,以及对红木艺术的执着、深情和追求,戴为红木携带“幸福之家”主题活动礼遇成都,使其鸿儒红木家居艺术馆隆重开业,为已进入寒冬的成都燃起了一把火,掀起了中式红木家具热潮!</p><p>&nbsp;</p><p>据了解戴为红木成都鸿儒红木家居艺术馆在锦江区三色路展馆面积达500多平方米。艺术馆整体宏伟大气装修精致馆内的精品极富特色设计尤其是第四层展示了戴为红木的代表性设计风格不仅拥有宁静致远的品茶茶室静心悟道之香道品香室古色古香的贵宾区休闲娱乐之棋牌室等高端居室而且居室采用了鸿儒家居VIP会员制度。这意味着在这里不仅可以享受国粹文化的熏陶还能尊享贵宾待遇的幸福感。</p><p><br/></p>', '', '近期,出于对中国传统文化的热爱,以及对红木艺术的执着、深情和追求,戴为红木携带“幸福之家”主题活动礼遇成都,使其鸿儒红木家居艺术馆隆重开业,为已进入寒冬的成都燃起了一把火,掀起了中式红木家具热潮!', '[{\"path\":\"/upload/article/1638/1464861413861.jpg\"}]', 0, '2028-01-01 00:00:00', '铭飞', '铭飞', '0', 'h,', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (197, 1, '质检整治电商售假 红木家具市场良莠不齐', '83', '/62/83\\197.html', '<p>今年以来质检总局执法督查司按照网上发现、源头追溯、落地查处的要求组织开展电子商务产品专项执法打假活动积极构建适应电子商务执法打假的全国执法协查工作机制推动属地查处工作的开展全国共查处电商产品质量违法案件400余件。</p><p>2014年6月江苏省淮安市质监局根据总局执法司统一部署对江苏杰翔羽绒有限公司进行了执法检查。经查该公司涉嫌生产并通过“天猫商城”和“京东商城”等电子商务平台销售以假充真蚕丝被。目前江苏省淮安市淮安质监局已对该案立案查处。</p><p><br/></p>', '', '质检总局执法督查司按照网上发现、源头追溯、落地查处的要求,组织开展电子商务产品专项执法打假活动,积极构建适应电子商务执法打假的全国执法协查工作机制...', '[{\"path\":\"/upload/article/1638/1464861373394.png\"}]', 0, '2028-01-01 00:00:00', '铭飞', '铭飞', '0', '', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (198, 1, '东西方两大甜妞聚首巴黎时装周头排', '83', '/62/83\\198.html', '<p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑, Arial; line-height: 34px; white-space: normal; background-color: rgb(255, 255, 255);\">巴黎时装周许晴倾力助阵,当天许晴身着黑色拼接装头排看秀,大秀美腿,加上干净利落的妆容,整体造型简洁率性,绿色的刺绣手包更添俏皮,银色的尖头高跟鞋成点睛之笔,许晴此次看秀的装扮可谓彰显了至纯至简主义。</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑, Arial; line-height: 34px; white-space: normal; background-color: rgb(255, 255, 255);\">对于此次的装扮许晴表示“这次的服装都是看似简单其实细节之处非常打动我像这件是硬朗的皮质与柔软的丝绵材质的拼接好比是一刚一柔代表女子都有柔软和刚强的两面刚柔并济。”许晴和MirandaKerr在头牌看秀时不时凑在一起交流时而发出会心微笑时而一起鼓掌成为现场最闪耀的亮点很多时尚博主达人都纷纷夸赞二人拥有最甜美的笑脸。</p><p><br/></p>', '', '巴黎时装周许晴倾力助阵,当天许晴身着黑色拼接装头排看秀,大秀美腿,加上干净利落的妆容,整体造型简洁率性,绿色的刺绣手包更添俏皮..', '[{\"path\":\"/upload/article/1638/1464861364631.jpg\"}]', 0, '2028-01-01 00:00:00', '铭飞', '铭飞', '0', '', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (199, 1, '宋朝华率队赴贵州招商洽谈推进重大项目', '83', '/62/83\\199.html', '<p>市委副书记、市长宋朝华率队前往贵州省贵阳市,实地考察由中铁贵旅公司投资开发建设的中铁国际生态城项目,并与公司高层进行了深入友好座谈,洽谈推进重大项目落户我市仁寿县相关事宜。</p><p>&nbsp;</p><p>中国中铁旗下子公司——中铁贵旅公司开发建设的中铁国际生态城项目位于贵阳市龙洞堡空港经济区总投资500亿元占地面积约20平方公里打造集旅游、休闲、度假、运动、文化、养老、养生和居住等多种功能于一体的世界级旅游度假目的地2011年被列为“贵州省十二五旅游发展规划十大旅游项目”之一是贵州省的重点项目。在中铁贵旅公司董事长张敏的陪同下宋朝华一行参观考察了中铁国际生态城展示中心、中铁国际生态旅游城市综合体项目、安纳塔拉度假酒店和巫山香杏小镇等旅游开发项目认真听取了项目规划建设有关情况介绍对中铁国际生态城项目规划理念新、设计水平高、推进速度快表示由衷赞赏对中铁贵旅公司有意来我市仁寿县投资发展表示热烈欢迎。</p><p>&nbsp;</p><p>座谈会上双方就推进项目落户事宜进行了深入友好会谈。宋朝华指出中铁贵旅公司实力强、品牌响、理念新对公司投资开发黑龙滩休闲旅游度假中心项目充满信心。通过深入考察和友好洽谈双方就项目投资有关事宜达成了共识并将于近期正式签署合作协议。张敏表示天府眉山交通区位优越旅游资源独特发展潜力巨大集团拟投资200亿元以上开发建设黑龙滩旅游项目。该项目将按照国际化水准坚持以游为主、高举高打紧紧围绕“吃、住、行、游、购、娱”六要素走产业高端、高端产业的路线全力打造5a级景区为发展旅游产业和造福眉山人民作出央企应有的贡献。</p><p><br/></p>', '', '市委副书记、市长宋朝华率队前往贵州省贵阳市,实地考察由中铁贵旅公司投资开发建设的中铁国际生态城项目,并与公司高层进行了深入友好座谈,洽谈推进重大项目落户我市仁寿县相关事宜。', '[{\"path\":\"/upload/article/1638/1464861360036.png\"}]', 0, '2028-01-01 00:00:00', '铭飞', '铭飞', '0', 'c,', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (200, 1, '奔驰斯宾特A3 豪华版', '107', '/106/107\\200.html', '<p>斯宾特系列(Sprinter)系列技术领先动力强劲。座位数从10座到20座均可选择跟据配置不同,价格也从95.8万——178万可以选择。为您带来不同的商务体验。下面为您带来的就是斯宾特A3-9座旗舰型号称移动总裁办公室的豪华商务房车。</p><p>从看到斯宾特的第一眼,您就会喜欢上他,不仅仅因为他豪华大气的外观,更得益于梅赛德斯-奔驰精湛造车技艺的极致发挥和处处以人为本的至臻理念,时刻让您感受到其中极高的舒适和享受。车门电动滑动装置,配合智能化遥控车钥匙开启,您可以轻而易举的开合车门,体现无微不至的尊荣享受。尽显豪华大气本色!</p><p><br/>后轮双胎配置使车身的承载能力更加强大,更加稳定、安全。奔驰商务车秉承了梅赛德斯-奔驰品牌百年的造车传统,奔驰商务车中斯宾特以豪华大气的外观、卓尔不凡的品质、坚实可靠的性能,再一次演绎了梅赛德斯-奔驰对至善臻美的不懈追求。新一代梅赛德斯-奔驰商务车斯宾特技术更上一层楼,为高级商务车行业树立新标杆。外观造型气度恢弘、浑然天成;细节设计周密严谨、精益求精。梅赛德斯-奔驰造车专家独运匠心,精心打造,为客户带来具有更大空间、更强动力和更高安全保障的斯宾特。</p><p>&nbsp;</p><p>车内中控隔屏、BOSE顶级KTV系统及酒柜吧台。高大的车身设计带来无与伦比的车内空间车内净高1.98米。这使您进出车仓无需弯腰低头也喻示着此车的拥有者在生意场上的强势无需向任何人低头。车内后仓配备阿尔卑斯小牛皮手工订制的豪华航空座椅尽显商务头等仓本色两个可以360度旋转的座椅和侧置沙发可以让车内座椅布局自由组合。带来超乎想像的谈判空间</p><p><br/>隔屏上集成了一台来自三星的40英寸3D液晶电视配合卫星电视接收器可以接收国内100多个电视频道DVD庭影院系统也可以播放高清视频。让您在旅途中不再无聊。来自瑞士的水晶杯在酒柜的LED灯光照射下晶莹剔透更显皇家风范。</p><p><br/></p>', '', '斯宾特系列(Sprinter)系列技术领先动力强劲。座位数从10座到20座均可选择跟据配置不同,价格也从95.8万178万可以选择。为您带来不同的商务体验。下面为.', '[{\"path\":\"/upload/article/1638/1464851333470.jpg\"}]', 0, '2028-01-01 00:00:00', '来自火星的程序猿', 'MS', '0', 'p,', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (201, 1, '福特E350 游艇版', '107', '/106/107\\201.html', '<p><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Verdana, Geneva, sans-serif; font-size: 14px; line-height: 25px; background-color: rgb(255, 255, 255);\">其实商务车在人们眼里就是普通的客车没有人会花时间去研究它欣赏它。商务车给人的印象就是整体的一箱车发动机不是在驾驶与副驾驶的座椅下边就是在车子的后面。没有前发动机舱很少有人会把普通的商务车与“霸气”这个词汇文明发言在一起。而作为一款纯正的“美国”商务车GMC3500完全打破中国人传统意识里的对商务车的形象。&nbsp;</span></p>', '', '其实商务车在人们眼里就是普通的客车,没有人会花时间去研究它,欣赏它。商务车给人的印象,就是整体的一箱车,发动机不是在驾驶与副驾驶的座椅下...', '[{\"path\":\"/upload/article/1638/1464851477741.jpg\"}]', 0, '2028-01-01 00:00:00', '来自火星的程序猿', 'MS', '0', '', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (202, 1, 'GMC3500 平顶舒适版', '107', '/106/107\\202.html', '<p><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Verdana, Geneva, sans-serif; font-size: 14px; line-height: 25px; background-color: rgb(255, 255, 255);\">对于这样一款外观霸气承载性高的原装进口商务车和它实在的销售价格都让这款车的性价比大大提升了不少。对于市场上一些追求个性的客户群来讲GMC3500恰恰就是一款能够让他们体现出个性化的座驾留有足够改装想象和个性发展的空间体验生活品味从GMC开始。新款GMC Savana 3500 舒适版商务车是您一个很不错的选择。</span></p>', '', '对于这样一款外观霸气,承载性高的原装进口商务车和它实在的销售价格,都让这款车的性价比大大提升了不少。对于市场上一些追求个性的客户群来讲,...', '[{\"path\":\"/upload/article/1638/1464851473102.jpg\"}]', 0, '2028-01-01 00:00:00', '来自火星的程序猿', 'MS', '0', '', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (203, 1, '宾特奔驰斯A系列', '107', '/106/107\\203.html', '<p><span style=\"color: rgb(102, 102, 102); font-family: &#39;Microsoft Yahei&#39;, Verdana, Geneva, sans-serif; font-size: 14px; line-height: 25px; background-color: rgb(255, 255, 255);\">奔驰斯宾特系列礼宾车在豪华商务车系中,一向是高端、舒适的代名词。在秉承了奔驰的贵族气质的同时,其全新定制的奢华内饰让人感觉犹如进入了高档的商务会所。定位为大型集团公司商务接待用车。其超高端的豪华配置能够很好的提升用车企业的自身品质,给来访者一种最高礼遇,是对商务洽谈活动的一种实质推动和提升。&nbsp;</span></p>', '', '奔驰斯宾特系列礼宾车在豪华商务车系中,一向是高端、舒适的代名词。在秉承了奔驰的贵族气质的同时,其全新定制的奢华内饰让人感觉犹如进入了高档..', '[{\"path\":\"/upload/article/1638/1465808166467.png\"}]', 0, '2028-01-01 00:00:00', '来自火星的程序猿', 'MS', '0', 'c,', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (204, 1, '1', '148', '/100/148\\204.html', NULL, '', '', '[{\"path\":\"/upload/article/1638/1464859580381.jpg\"}]', 0, '2028-01-01 00:00:00', '', '', '0', '', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (205, 1, '2', '148', '/100/148\\205.html', NULL, '', '', '[{\"path\":\"/upload/article/1638/1464859585818.jpg\"}]', 0, '2028-01-01 00:00:00', '', '', '0', '', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (206, 1, '3', '148', '/100/148\\206.html', NULL, '', '', '[{\"path\":\"/upload/article/1638/1464859590366.jpg\"}]', 0, '2028-01-01 00:00:00', '', '', '0', '', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (207, 1, '4', '148', '/100/148\\207.html', NULL, '', '', '[{\"path\":\"/upload/article/1638/1464859595151.jpg\"}]', 0, '2028-01-01 00:00:00', '', '', '0', '', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (208, 1, '5', '148', '/100/148\\208.html', NULL, '', '', '[{\"path\":\"/upload/article/1638/1464859599849.jpg\"}]', 0, '2028-01-01 00:00:00', '', '', '0', '', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (209, 1, '6', '148', '/100/148\\209.html', NULL, '', '高品质景观缔造者\r\nHigh quality landscape architects.', '[{\"path\":\"/upload/article/1638/1464859604208.jpg\"}]', 0, '2028-01-01 00:00:00', '园林绿化二级资质企业', '', '0', '', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (210, 1, '幻灯五', '147', '/100/147\\210.html', NULL, '', '做精品设计、建优良工程、打造精品工程\r\nBoutique design, construction engineering, excellent build quality engineering.', '[{\"path\":\"/upload/article/1638/1464859633594.jpg\"}]', 0, '2028-01-01 00:00:00', '园林绿化二级资质企业', '', '0', '', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (211, 1, '幻灯六', '147', '/100/147\\211.html', NULL, '', '与您一起携手,共同谱写园林绿化事业的新篇章!\r\nWork with you to jointly write a new chapter landscaping business!', '[{\"path\":\"/upload/article/1638/1464859625584.jpg\"}]', 0, '2028-01-01 00:00:00', '园林绿化二级资质企业', '', '0', '', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (212, 1, '愿景', '95', '/93/95\\212.html', '<ol class=\"list-ol list-paddingleft-2\" style=\"list-style-type: square;\"><li><p>创造价值,提供优质的产品和服务,赢得用户的喜爱和尊敬。</p></li><li><p>利益均沾,让公司的每一成员都获得满意的回报。</p></li><li><p>合作共赢,与合作伙伴共同成长,赢得行业尊敬。</p></li><li><p>注重企业责任,关爱社会、回馈社会,赢得社会尊敬。</p></li></ol><p><br/></p>', '', '我们拥有稳定的充满创作激情的设计团队,核心人员由公司创立至今伴随我们一个又一个客户的成长,保证了稳定的设计出品质量及熟知我们所合作过的每一个客户的设计需求,现在,团队不断壮大。', '[{\"path\":\"/upload/article/1638/1464940624025.png\"}]', 0, '2028-01-01 00:00:00', '', '', '0', 'h,', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (213, 1, '价值观', '95', '/93/95\\213.html', '<ol class=\"list-ol list-paddingleft-2\" style=\"list-style-type: square;\"><li><p>创造价值:一切工作围绕为用户价值展开,不做任何对用户没有价值的面子工作。</p></li><li><p>积极主动:在做好本职工作的前提下,积极主动为公司解决问题,推动公司发展。</p></li><li><p>踏实奋进:不报幻想,实事求是,锐意进取。不把“运气”当作成事的前提,抱美好的梦想,作最坏的打算。</p></li><li><p>合作共赢:抱着共赢的心态,积极与企业内外合作,充分利用各方优势,创造价值。</p></li></ol><p><br/></p>', '', '我们已为数百家企业、政府和社会团体完成品牌的传播与设计,积累了大量丰富的经验,可为您提供大量同类企业和机构的案例进行比较参考。', '[{\"path\":\"/upload/article/1638/1464940619456.jpg\"}]', 0, '2028-01-01 00:00:00', '', '', '0', 'p,', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (214, 1, '经营理念', '95', '/93/95\\214.html', '<ol class=\"list-ol list-paddingleft-2\" style=\"list-style-type: square;\"><li><p>注重长远发展,不因商业利益伤害用户价值。</p></li><li><p>关注并深刻理解用户需求,不断以卓越的产品和服务满足用户需求。</p></li><li><p>重视与用户的情感沟通,尊重用户感受,与用户共成长。</p></li><li><p>合作共赢:抱着共赢的心态,积极与企业内外合作,充分利用各方优势,创造价值。</p></li></ol><p><br/></p>', '', '可提供一站式全面服务:品牌的定位——企业文化梳理——企业/品牌形象设计——品牌传播——环境空间设计——宣传物品的落地', '[{\"path\":\"/upload/article/1638/1464940614692.jpg\"}]', 0, '2028-01-01 00:00:00', '', '', '0', 'f,', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (215, 1, '管理理念', '95', '/93/95\\215.html', '<ol class=\"list-ol list-paddingleft-2\" style=\"list-style-type: square;\"><li><p>努力为员工提供良好的工作环境和科学的激励机制。</p></li><li><p>努力让适合的人干适合的事,为员工提供丰富的培训和晋升机会,使员工和公司共同成长。</p></li><li><p>尊重和信任员工,鼓励员工充分发挥聪明才智,使其在自己的领域获得成功。</p></li></ol><p><br/></p>', '', '多年来,我们始终专注于品牌的设计与塑造,坚持站在市场的角度,为客户创作出准确的、极具商业价值的形象设计与品牌传播策略。', '[{\"path\":\"/upload/article/1638/1464940610305.jpg\"}]', 0, '2028-01-01 00:00:00', '', '', '0', 'c,', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (216, 1, '李镇江', '115', '/115\\216.html', '<p>锐诚PPT创始人资深PPT设计师、培训师、品牌策划师任全国知名地产公司高级策划师大型教育集团品牌运营总监创办锐诚PPT后为中原演示设计领域带来全新标准帮助数百家企业定制演示精品让演示创造更多价值。精通各种高端PPT设计、 精通版式、配色、文字逻辑和动画,设计案例上百件。擅长在实战中为学员点拨,让学员快速提升美感,做出更漂亮的作品。</p><p><br/></p>', '', '资深PPT设计师', '[{\"path\":\"/upload/article/1638/1464860436576.png\",\"url\":\"/ms-mcms/upload/article/1638/1464860436576.png\",\"uid\":1577521906651,\"status\":\"success\"}]', 0, '2028-01-01 00:00:00', '', '', '0', 'h', 0, 0, '2019-12-28 16:31:58', NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (217, 1, '曹瑛', '115', '/115\\217.html', '<p>锐诚PPT特邀首席技术专家连续五年荣获美国微软公司评出的全球最有价值专家奖简称MVP通过微软办公专家国际认证简称MOS。出版专业PPT书籍《PPT高效设计-5分钟完美打造PPT课件》在历届网络PPT大赛中做评委。阿瑛老师从事PPT设及教学十余年PPT公开课上千场经验极其丰富授课轻松风趣让0基础的学员都可以快速提升技能做出漂亮的PPT。</p>', '', '锐诚PPT特邀首席技术专家', '[{\"path\":\"/upload/article/1638/1464860564066.png\"}]', 0, '2028-01-01 00:00:00', '', '', '0', 'p,', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (218, 1, '孙建东', '115', '/115\\218.html', '<p>锐诚PPT培训部总监17年PPT研究积淀5年网络教室的教学经验。2013年获得全国振兴杯多媒体制作员比赛第7名 。多次获得省市局级办公软件技术大赛奖独撰《PPT高效设计—6招完美打造工作型PPT》全国发行。曾任中国石化干部管理学院担任“PPT高级制作技巧”课程授课讲师。幽默轻松的授课方式快乐中传授高效快捷的实用技术。</p><p><br/></p>', '', '锐诚PPT培训部总监', '[{\"path\":\"/upload/article/1638/1464860506257.png\"}]', 0, '2028-01-01 00:00:00', '', '', '0', 'c,', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (219, 1, '梅幸', '115', '/115\\219.html', '<p>锐诚PPT金牌设计师毕业于上海美术学院视觉传达专业曾在国内某知名4A广告公司任职五年动画和PPT设计经验拥有丰富的高端定制设计经验专注于企业展示/工作汇报/品牌宣讲/竞聘/路演等高端PPT设计设计理念创意是设计的灵魂在动画、质感和版式的设计上力求完美。</p><p><br/></p>', '', '锐诚PPT金牌设计师', '[{\"path\":\"/upload/article/1638/1464860570155.png\",\"url\":\"/ms-mcms/upload/article/1638/1464860570155.png\",\"uid\":1577436839397,\"status\":\"success\"}]', 0, '2028-01-01 00:00:00', '', '', '0', 'f', 0, 0, '2019-12-27 16:58:00', NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (220, 1, '攀臣广告', '149', '/149\\220.html', '<p>攀臣广告(上海)有限公司(以下简称:攀臣)是一家专注于亚克力制品(化妆品展架、展览展示道具、展架展柜陈列架、商场展示道具、展示盒、手机宣传架、发光展架、广告灯箱、标识标牌、工艺礼品、奖杯奖牌授权牌、商超货架置物架、台牌台卡台签、相框相架、金银珠宝展示礼盒、抽奖箱收纳箱、办公文具类、家居生活类、各类广告字、机器配套、产品附件配件等等)设计加工制作为一体的公司 。涉及:商务、工业、建筑、交通、商业、家居生活、广告、医学、照明、酒店餐饮、金融银行服务、学校教育、政府事业单位、景点旅游、展厅展览、零售店面、奢侈品、面包糕点等众多业态领域,产品基本覆盖全行业。</p>', '', '', '[{\"path\":\"/upload/1//article/1531105696938.jpg\"}]', 0, '2018-07-09 11:07:00', 'http://www.panchen-china.com/', '', '0', '', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (221, 1, '华赋科创', '149', '/149\\221.html', '<p>深圳市华赋科创电子有限公司&nbsp;成立于2009年主要从事 IC 等电子元器件的推广、销售及开发应用服务。华赋是STMicro、NXP、ONSemi、TI、ADI、Intersil、Infineon、Vishay、Fujitsu、Yageo、Samsung、AOS、Fairchild、Freescale、Cypress、ROHM、HTC、Eastsoft、台湾安国、风华高科、等国内外著名公司的授权代理商或分销商。拥有微控制器、系统管理器件、通信接口器件、数据转换器件、信号调理器件、电源管理器件、存储器、连接器、分立半导体及被动器件等十多个产品种类。香港、深圳两地设立库房现货库存产品达上万中支持香港、海外交货。目前已与多家国外分销商建立了战略合作伙伴关系其中包括Mouser、 Rochester、Digi-Key、Future、Arrow、Avnet等为国内客户提供海外订购产品服务满足客户从研发到批量生产的所有采购需求。</p><p><br/></p>', '', '', '[{\"path\":\"/upload/1//article/1531105877049.jpg\"}]', 0, '2018-07-09 11:09:00', 'http://www.huaful.com/', '', '0', '', 0, 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_content` VALUES (222, 1, '洛阳洛龙', '149', '/149\\222.html', '<p>洛龙区人民政府门户网作为洛阳市洛龙区电子政务(网上行政)建设的重要组成部分,是政府信息公开的法定载体,是政府面向社会服务的平台,是公众与政府交流互动的桥梁,是宣传洛龙的主要窗口,对于促进政府信息公开、推进依法行政、接受公众监督、改进行政管理、全面履行政府职能和建设阳光政府具有重要意义。</p>', 'x', 'x', '[{\"path\":\"/upload/1//article/1531105970322.jpg\",\"url\":\"/ms-mcms/upload/1//article/1531105970322.jpg\",\"uid\":1578390819577,\"status\":\"success\"}]', 0, '2018-07-09 11:12:00', 'http://www.luolong.gov.cn/ ', '', '0', 'f', 0, 0, '2020-01-07 17:53:55', NULL, NULL, NULL);
-- ----------------------------
-- Table structure for cms_history_log
-- ----------------------------
DROP TABLE IF EXISTS `cms_history_log`;
CREATE TABLE `cms_history_log` (
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT,
`hl_is_mobile` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否为移动端',
`hl_people_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '用户id',
`hl_ip` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '浏览ip',
`content_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '文章编号',
`del` int(1) NULL DEFAULT 0 COMMENT '删除标记',
`update_date` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
`update_by` int(11) NULL DEFAULT NULL COMMENT '修改人',
`create_date` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`create_by` int(11) NULL DEFAULT NULL COMMENT '创建人',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 6 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '文章浏览记录' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of cms_history_log
-- ----------------------------
INSERT INTO `cms_history_log` VALUES (1, '0', NULL, '127.0.0.2', '7', 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_history_log` VALUES (2, '0', NULL, '127.0.0.2', '2', 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_history_log` VALUES (3, '0', NULL, '127.0.0.1', '2', 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_history_log` VALUES (4, '0', NULL, '127.0.0.1', '8', 0, NULL, NULL, NULL, NULL);
INSERT INTO `cms_history_log` VALUES (5, '0', NULL, '127.0.0.1', '7', 0, NULL, NULL, NULL, NULL);
-- ----------------------------
-- Table structure for file
-- ----------------------------
DROP TABLE IF EXISTS `file`;
CREATE TABLE `file` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '文件编号',
`category_id` int(11) NULL DEFAULT NULL COMMENT '文件分类编号',
`app_id` int(11) NULL DEFAULT NULL COMMENT 'APP编号',
`file_name` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '文件名称',
`file_url` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '文件链接',
`file_size` int(11) NULL DEFAULT NULL COMMENT '文件大小',
`file_json` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '文件详情Json数据',
`file_type` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '文件类型:图片、音频、视频等',
`is_child` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '子业务',
`update_date` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
`update_by` int(11) NULL DEFAULT NULL COMMENT '更新者',
`create_by` int(11) NULL DEFAULT NULL COMMENT '创建者',
`create_date` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`del` int(1) NULL DEFAULT NULL COMMENT '删除标记',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 67 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '基础文件表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Table structure for manager
-- ----------------------------
DROP TABLE IF EXISTS `manager`;
CREATE TABLE `manager` (
`manager_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '管理员id(主键)',
`manager_name` varchar(15) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '管理员用户名',
`manager_nickname` varchar(15) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '管理员昵称',
`manager_password` varchar(45) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '管理员密码',
`manager_roleid` int(11) NULL DEFAULT NULL COMMENT '角色编号',
`manager_peopleid` bigint(22) NULL DEFAULT 0 COMMENT '用户编号即商家编号',
`manager_time` datetime(0) NULL DEFAULT NULL COMMENT '管理员创建时间',
`manager_system_skin_id` int(11) NULL DEFAULT 0 COMMENT '管理员主界面样式',
`manager_admin` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`manager_id`) USING BTREE,
INDEX `fk_manager_role_1`(`manager_roleid`) USING BTREE,
CONSTRAINT `manager_ibfk_1` FOREIGN KEY (`manager_roleid`) REFERENCES `role` (`role_id`) ON DELETE SET NULL ON UPDATE NO ACTION
) ENGINE = InnoDB AUTO_INCREMENT = 58 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '管理员表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of manager
-- ----------------------------
INSERT INTO `manager` VALUES (57, 'msopen', 'msopen', '9d8622060de5f24937b60585c3f4d66b', 48, 0, NULL, 0, 'super');
-- ----------------------------
-- Table structure for mdiy_dict
-- ----------------------------
DROP TABLE IF EXISTS `mdiy_dict`;
CREATE TABLE `mdiy_dict` (
`dict_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '编号',
`app_id` int(11) NULL DEFAULT NULL COMMENT '应用编号',
`dict_value` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT '数据值',
`dict_label` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT '标签名',
`dict_type` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT '类型',
`dict_description` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT '描述',
`is_child` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT '扩展业务标记',
`dict_sort` int(10) NOT NULL DEFAULT 0 COMMENT '排序(升序)',
`dict_parent_id` varchar(64) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT '0' COMMENT '父级编号',
`dict_remarks` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT '备注信息',
`create_by` int(64) NULL DEFAULT 0 COMMENT '创建者',
`create_date` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`update_by` int(64) NULL DEFAULT 0 COMMENT '更新者',
`update_date` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
`del` int(1) NOT NULL DEFAULT 0 COMMENT '删除标记',
PRIMARY KEY (`dict_id`) USING BTREE,
INDEX `fk_mdiy_dict`(`app_id`) USING BTREE,
INDEX `dict_value`(`dict_value`) USING BTREE,
INDEX `dict_label`(`dict_label`) USING BTREE,
CONSTRAINT `mdiy_dict_ibfk_1` FOREIGN KEY (`app_id`) REFERENCES `app` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION
) ENGINE = InnoDB AUTO_INCREMENT = 644 CHARACTER SET = utf8 COLLATE = utf8_bin COMMENT = '字典表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of mdiy_dict
-- ----------------------------
INSERT INTO `mdiy_dict` VALUES (1, 1, 'f', '幻灯', '文章属性', NULL, NULL, 3, '0', NULL, 0, NULL, 0, NULL, 0);
INSERT INTO `mdiy_dict` VALUES (2, 1, 'p', '图片', '文章属性', NULL, NULL, 1, '0', NULL, 0, NULL, 0, NULL, 0);
INSERT INTO `mdiy_dict` VALUES (3, 1, 'c', '推荐', '文章属性', NULL, NULL, 4, '0', NULL, 0, NULL, 0, NULL, 0);
INSERT INTO `mdiy_dict` VALUES (4, 1, 'h', '头条', '文章属性', NULL, NULL, 2, '0', NULL, 0, NULL, 0, NULL, 0);
INSERT INTO `mdiy_dict` VALUES (621, 1, 'zdymx_wz', '文章', '自定义模型', NULL, '0', 0, NULL, NULL, 0, NULL, 0, NULL, 0);
INSERT INTO `mdiy_dict` VALUES (638, 1, '3', '逻辑表', '标签类型', NULL, '0', 0, NULL, NULL, 0, NULL, 0, NULL, 3);
INSERT INTO `mdiy_dict` VALUES (639, 1, '0', '单条记录标签', '标签类型', NULL, '0', 0, NULL, NULL, 0, NULL, 0, NULL, 3);
INSERT INTO `mdiy_dict` VALUES (640, 1, '1', '多记录标签', '标签类型', NULL, '0', 0, NULL, NULL, 0, NULL, 0, NULL, 3);
INSERT INTO `mdiy_dict` VALUES (641, 1, '2', '功能标签', '标签类型', NULL, '0', 0, NULL, NULL, 0, NULL, 0, NULL, 3);
INSERT INTO `mdiy_dict` VALUES (642, 1, 'cms', '文章', '自定义页面类型', NULL, NULL, 0, '0', NULL, 0, '2019-12-28 14:32:46', 0, NULL, 0);
INSERT INTO `mdiy_dict` VALUES (643, 1, 't', '推荐', '栏目属性', NULL, NULL, 0, '0', NULL, 0, '2020-01-09 10:38:26', 0, NULL, 0);
-- ----------------------------
-- Table structure for mdiy_form
-- ----------------------------
DROP TABLE IF EXISTS `mdiy_form`;
CREATE TABLE `mdiy_form` (
`form_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增长id',
`form_tips_name` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '自定义表单提示文字',
`form_table_name` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '自定义表单表名',
`form_app_id` int(11) NOT NULL COMMENT '自定义表单关联的应用编号',
`create_by` int(11) NULL DEFAULT NULL,
`create_date` datetime(0) NULL DEFAULT NULL,
`update_by` int(11) NULL DEFAULT NULL,
`update_date` datetime(0) NULL DEFAULT NULL,
PRIMARY KEY (`form_id`) USING BTREE,
INDEX `fk_mdiy_form`(`form_app_id`) USING BTREE,
CONSTRAINT `mdiy_form_ibfk_1` FOREIGN KEY (`form_app_id`) REFERENCES `app` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '自定义表单表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Table structure for mdiy_model
-- ----------------------------
DROP TABLE IF EXISTS `mdiy_model`;
CREATE TABLE `mdiy_model` (
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT,
`model_json` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT 'json',
`model_app_id` int(11) NULL DEFAULT NULL COMMENT '应用编号',
`model_table_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '模型表名',
`model_name` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '模型名称',
`model_type` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '模型类型',
`del` int(1) NULL DEFAULT NULL COMMENT '删除标记',
`update_date` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
`update_by` int(11) NULL DEFAULT NULL COMMENT '修改人',
`create_date` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`create_by` int(11) NULL DEFAULT NULL COMMENT '创建人',
`model_field` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL,
`model_custom_type` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '类型',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 42 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '自定义模型' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of mdiy_model
-- ----------------------------
INSERT INTO `mdiy_model` VALUES (41, '{\"html\":\"<template id=\\\"custom-model\\\">\\r\\n <el-form ref=\\\"form\\\" :model=\\\"form\\\" :rules=\\\"rules\\\" label-width=\\\"120px\\\" label-position=\\\"right\\\" size=\\\"small\\\">\\r\\n <el-form-item label=\\\"姓名\\\" prop=\\\"name\\\"\\r\\n>\\r\\n <el-input v-model=\\\"form.name\\\"\\r\\n :disabled=\\\"false\\\"\\r\\n :style=\\\"{width: \'100%\'}\\\"\\r\\n :clearable=\\\"true\\\"\\r\\n placeholder=\\\"请输入姓名\\\">\\r\\n </el-input>\\r\\n </el-form-item>\\r\\n <el-form-item label=\\\"手机\\\" prop=\\\"phone\\\"\\r\\n>\\r\\n <el-input v-model=\\\"form.phone\\\"\\r\\n :disabled=\\\"false\\\"\\r\\n :style=\\\"{width: \'100%\'}\\\"\\r\\n :clearable=\\\"true\\\"\\r\\n placeholder=\\\"请输入手机\\\">\\r\\n </el-input>\\r\\n </el-form-item>\\r\\n <el-form-item label=\\\"留言\\\" prop=\\\"words\\\"\\r\\n>\\r\\n <el-input\\r\\n type=\\\"textarea\\\" :rows=\\\"5\\\"\\r\\n :disabled=\\\"false\\\"\\r\\n\\r\\n v-model=\\\"form.words\\\"\\r\\n :style=\\\"{width: \'100%\'}\\\"\\r\\n placeholder=\\\"请输入留言\\\">\\r\\n </el-input>\\r\\n </el-form-item>\\r\\n </el-form>\\r\\n</template>\\r\\n\",\"script\":\" var custom_model = Vue.component(\\\"custom-model\\\",{\\r\\n el: \'#custom-model\',\\r\\n data() {\\r\\n return {\\r\\n modelId:0,\\r\\n //表单数据\\r\\n form: {\\r\\n linkId:0,\\r\\n // 姓名\\r\\n name:\'\',\\r\\n // 手机\\r\\n phone:\'\',\\r\\n // 留言\\r\\n words:\'\',\\r\\n },\\r\\n rules:{\\r\\n },\\r\\n\\r\\n }\\r\\n },\\r\\n watch:{\\r\\n },\\r\\n computed:{\\r\\n },\\r\\n methods: {\\r\\n validate(){\\r\\n var b = false\\r\\n this.$refs.form.validate((valid) => {\\r\\n b = valid;\\r\\n });\\r\\n return b;\\r\\n },\\r\\n save() {\\r\\n var that = this;\\r\\n var success = false;\\r\\n var url = ms.manager + \\\"/mdiy/model/data/save.do\\\"\\r\\n if (that.form.id > 0) {\\r\\n url = ms.manager + \\\"/mdiy/model/data/update.do\\\";\\r\\n }\\r\\n this.$refs.form.validate((valid) => {\\r\\n if (valid) {\\r\\n var data = JSON.parse(JSON.stringify(that.form));\\r\\n data.modelId = that.modelId;\\r\\n ms.http.post(url, data).then(function (res) {\\r\\n if (res.data.id > 0) {\\r\\n success = true;\\r\\n }\\r\\n });\\r\\n } else {\\r\\n return false;\\r\\n }\\r\\n })\\r\\n return success;\\r\\n },\\r\\n //获取当前意见反馈\\r\\n get(id) {\\r\\n var that = this;\\r\\n ms.http.get(ms.manager + \\\"/mdiy/model/data.do\\\", {modelId:this.modelId,linkId:id}).then(function (res) {\\r\\n if(res
-- ----------------------------
-- Table structure for mdiy_page
-- ----------------------------
DROP TABLE IF EXISTS `mdiy_page`;
CREATE TABLE `mdiy_page` (
`page_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增长id',
`page_app_id` int(11) NOT NULL COMMENT '应用id',
`page_model_id` int(11) NULL DEFAULT NULL COMMENT '模块id',
`page_path` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '自定义页面绑定模板的路径',
`page_title` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '自定义页面标题',
`page_type` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '字典分类字段',
`page_key` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '自定义页面访问路径',
`create_date` datetime(0) NULL DEFAULT NULL,
`create_by` int(11) NULL DEFAULT NULL,
`update_by` int(11) NULL DEFAULT NULL,
`update_date` datetime(0) NULL DEFAULT NULL,
`del` int(1) NULL DEFAULT 0,
PRIMARY KEY (`page_id`) USING BTREE,
INDEX `index_page_key`(`page_key`) USING BTREE,
INDEX `index_page_app_id`(`page_app_id`) USING BTREE,
INDEX `index_page_model_id`(`page_model_id`) USING BTREE,
CONSTRAINT `mdiy_page_ibfk_1` FOREIGN KEY (`page_app_id`) REFERENCES `app` (`id`) ON DELETE CASCADE ON UPDATE RESTRICT
) ENGINE = InnoDB AUTO_INCREMENT = 5 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '自定义页面表' ROW_FORMAT = Compact;
-- ----------------------------
-- Records of mdiy_page
-- ----------------------------
INSERT INTO `mdiy_page` VALUES (1, 1, 0, 'people/register.htm', '注册', 'cms', 'register', NULL, NULL, NULL, '2020-01-09 19:56:45', 0);
INSERT INTO `mdiy_page` VALUES (2, 1, 0, 'people/login.htm', '登入', 'cms', 'login', NULL, NULL, NULL, '2020-01-09 19:56:40', 0);
INSERT INTO `mdiy_page` VALUES (3, 1, 0, 'people/center.htm', '个人中心', 'cms', 'people/center', NULL, NULL, NULL, '2020-01-09 19:56:29', 0);
INSERT INTO `mdiy_page` VALUES (4, 1, 0, 'people/passworld-change.htm', '修改密码', 'cms', 'people/password-change', NULL, NULL, NULL, '2020-01-09 14:46:52', 0);
-- ----------------------------
-- Table structure for mdiy_post_feedback
-- ----------------------------
DROP TABLE IF EXISTS `mdiy_post_feedback`;
CREATE TABLE `mdiy_post_feedback` (
`name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '姓名',
`phone` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '手机',
`words` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '留言',
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '意见反馈' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Table structure for mdiy_tag
-- ----------------------------
DROP TABLE IF EXISTS `mdiy_tag`;
CREATE TABLE `mdiy_tag` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`tag_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '标签名称',
`tag_type` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '标签类型',
`tag_description` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '描述',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 11 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '标签' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of mdiy_tag
-- ----------------------------
INSERT INTO `mdiy_tag` VALUES (3, 'arclist', 'page', '文章列表');
INSERT INTO `mdiy_tag` VALUES (4, 'channel', 'list', '通用栏目');
INSERT INTO `mdiy_tag` VALUES (5, 'global', 'single', '全局');
INSERT INTO `mdiy_tag` VALUES (7, 'field', 'single', '文章内容');
INSERT INTO `mdiy_tag` VALUES (8, 'pre', 'single', '文章上一篇');
INSERT INTO `mdiy_tag` VALUES (9, 'page', 'single', '通用分页');
INSERT INTO `mdiy_tag` VALUES (10, 'next', 'single', '文章下一篇');
-- ----------------------------
-- Table structure for mdiy_tag_sql
-- ----------------------------
DROP TABLE IF EXISTS `mdiy_tag_sql`;
CREATE TABLE `mdiy_tag_sql` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`tag_id` int(11) NOT NULL COMMENT '自定义标签编号',
`tag_sql` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '自定义sql支持ftl写法',
`sort` int(11) NULL DEFAULT NULL COMMENT '排序升序',
PRIMARY KEY (`id`) USING BTREE,
INDEX `fk_mdiy_tag_id`(`tag_id`) USING BTREE,
CONSTRAINT `mdiy_tag_sql_ibfk_1` FOREIGN KEY (`tag_id`) REFERENCES `mdiy_tag` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION
) ENGINE = InnoDB AUTO_INCREMENT = 12 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '标签对应多个sql语句' ROW_FORMAT = Compact;
-- ----------------------------
-- Records of mdiy_tag_sql
-- ----------------------------
INSERT INTO `mdiy_tag_sql` VALUES (5, 3, '<#assign _typeid=\"\"/>\r\n<#assign _size=\"20\"/>\r\n<#if column?? && column.id?? && column.id?number gt 0>\r\n <#assign _typeid=\"${column.id}\">\r\n</#if>\r\n<#if typeid??>\r\n <#assign _typeid=\"${typeid}\">\r\n</#if>\r\n<#if size??>\r\n <#assign _size=\"${size}\">\r\n</#if>\r\n<#if orderby?? >\r\n <#if orderby==\"date\"> \r\n <#assign _orderby=\"content_datetime\">\r\n <#elseif orderby==\"updatedate\">\r\n <#assign _orderby=\"content_updatetime\">\r\n <#elseif orderby==\"hit\"> \r\n <#assign _orderby=\"content_hit\">\r\n <#elseif orderby==\"sort\">\r\n <#assign _orderby=\"content_sort\">\r\n <#else><#assign _orderby=\"cms_content.id\"></#if>\r\n <#else>\r\n <#assign _orderby=\"cms_content.id\">\r\n </#if>\r\nSELECT\r\n cms_content.id AS id,\r\n @rownum := @rownum + 1 AS `index`,\r\n LEFT (content_title, ${titlelen ?default(40)}) AS title,\r\n content_title AS fulltitle,\r\n content_author AS author,\r\n content_source AS source,\r\n content_details AS content,\r\n category.category_title AS typename,\r\n category.category_id AS typeid,\r\n ( CASE category.category_img WHEN \'\' THEN category.category_img ELSE CONVERT ( JSON_UNQUOTE( JSON_EXTRACT( category.category_img -> \'$[0]\', \'$.path\' ) ) USING utf8 ) END ) AS typelitpic,\r\n <#--列表页动态链接-->\r\n <#if isDo?? && isDo>\r\n CONCAT(\"/${modelName}/list.do?typeid=\", category.category_id) as typelink,\r\n <#else>\r\n (SELECT \"index.html\") AS typelink,\r\n </#if>\r\n ( CASE content_img WHEN \'\' THEN content_img ELSE CONVERT ( JSON_UNQUOTE( JSON_EXTRACT( content_img -> \'$[0]\', \'$.path\' ) ) USING utf8 ) END ) AS litpic,\r\n <#--内容页动态链接-->\r\n <#if isDo?? && isDo>\r\n CONCAT(\"/${modelName}/view.do?id=\", cms_content.id,\"&orderby=${_orderby}\",\"&order=${order!\'ASC\'}\") as link,\r\n <#else>\r\n\r\n CONCAT(category.category_path,\"/\",cms_content.id,\".html\") AS link,\r\n </#if>\r\n content_datetime AS date,<#if tableName??>${tableName}.*,</#if>\r\n content_description AS descrip,\r\n content_hit AS hit,\r\n content_type AS flag,\r\n category_title AS typetitle,\r\n cms_content.content_keyword AS keyword \r\nFROM\r\n (SELECT @rownum := 0) r,\r\n cms_content\r\n LEFT JOIN cms_category as category ON content_category_id = category.id\r\n <#--判断是否有自定义模型表-->\r\n <#if tableName??>LEFT JOIN ${tableName} ON ${tableName}.link_id=cms_content.id </#if>\r\nWHERE \r\n content_display=0 \r\n <#--根据站点编号查询-->\r\n <#if appId?? >\r\n and cms_content.app_id=${appId}\r\n and cms_content.id>0\r\n </#if>\r\n <#--判断是否有搜索分类集合-->\r\n <#if search??>\r\n <#if search.categoryIds??>and FIND_IN_SET(category.id,\'${search.categoryIds}\')</#if>\r\n <#--标题-->\r\n <#if search.content_title??> and content_title like CONCAT(\"%\",\'${search.content_title}\',\"%\")</#if>\r\n <#--作者-->\r\n <#if search.content_author??> and content_author like CONCAT(\"%\",\'${search.content_author}\',\"%\")</#if>\r\n <#--来源-->\r\n <#if search.content_source??> and content_source like CONCAT(\"%\",\'${search.content_source}\',\"%\")</#if>\r\n <#--属性-->\r\n <#if search.content_type??> and content_type like CONCAT(\"%\",\'${search.content_type}\',\"%\")</#if>\r\n <#--描述-->\r\n <#if search.content_description??> and content_description like CONCAT(\"%\",\'${search.content_description}\',\"%\")</#if>\r\n <#--关键字-->\r\n <#if search.content_keyword??> and content_keyword like CONCAT(\"%\",\'${search.content_keyword}\',\"%\")</#if>\r\n <#--内容-->\r\n <#if search.content_details??> and content_details like CONCAT(\"%\",\'${search.content_details}\',\"%\")</#if>\r\n <#--自定义顺序-->\r\n <#if search.content_sort??> and content_sort=${search.content_sort}</#if>\r\n <#else><#--查询栏目-->\r\n <#if _typeid?has_content> and (content_category_id=${_typeid} or content_category_id in \r\n (select id FROM cms_category where cms_catego
INSERT INTO `mdiy_tag_sql` VALUES (6, 4, '<#assign _typeid=\"0\"/>\r\n<#if column?? && column.id?? && column.id?number gt 0>\r\n <#assign _typeid=\"${column.id}\">\r\n <#assign selfid=\"${column.id}\">\r\n</#if>\r\n<#if typeid??>\r\n <#assign _typeid=\"${typeid}\">\r\n</#if>\r\nselect \r\n @rownum := @rownum + 1 AS typeindex,\r\n id,\r\n id as typeid,\r\n category_title as typetitle,\r\n <#--返回父id集合-->\r\n category_parent_id as pids,\r\n <#--栏目选中的样式-->\r\n IF(<#if selfid?has_content>${selfid}<#else>${_typeid}</#if> = id ,\"${class!\'\'}\",\"\") as class,\r\n <#--动态链接-->\r\n <#if isDo?? && isDo>\r\n CONCAT(\"/${modelName}/list.do?typeid=\", id) as typelink,\r\n <#else>\r\n CONCAT(category_path,\"/index.html\") as typelink,\r\n </#if>\r\n category_keyword as typekeyword,\r\n category_diy_url as typeurl,\r\n category_flag as flag,\r\n category_descrip as typedescrip,\r\n ( CASE category_img WHEN \'\' THEN category_img ELSE CONVERT ( JSON_UNQUOTE( JSON_EXTRACT( category_img -> \'$[0]\', \'$.path\' ) ) USING utf8 ) END ) as typelitpic ,\r\n(select count(*) from cms_category c where c.category_id=typeid and c.del=0) as childsize\r\n from (SELECT @rownum := 0) r,cms_category \r\n where \r\n cms_category.del=0 \r\n <#--根据站点编号查询-->\r\n <#if appId?? >\r\n and cms_category.app_id=${appId}\r\n </#if>\r\n <#--栏目属性-->\r\n <#if flag?? >\r\n and\r\n cms_content.content_type in (\r\n \'${flag?replace(\",\", \"\',\'\" )}\' )\r\n \r\n </#if>\r\n <#if flag?? >\r\n \r\n and\r\n category_flag in (\r\n \'${flag?replace(\",\", \"\',\'\" )}\' )\r\n \r\n \r\n </#if>\r\n\r\n <#if noflag?? >\r\n \r\n and\r\n category_flag not in (\r\n \'${flag?replace(\",\", \"\',\'\" )}\' )\r\n \r\n </#if>\r\n <#--type默认son-->\r\n<#if !type??||!type?has_content>\r\n<#assign type=\"son\"/>\r\n</#if>\r\n<#if type?has_content>\r\n <#--顶级栏目(单个)-->\r\n <#if type==\"top\">\r\n and id=(select left(category_parent_id,LOCATE(\",\",category_parent_id)-1) from cms_category where category_id = ${_typeid})\r\n <#elseif type==\"nav\">\r\n and(category_id=0 or category_id is null)\r\n <#--同级栏目(多个)-->\r\n <#elseif type==\"level\">\r\n and\r\n <#if _typeid?has_content>\r\n category_id=(select category_id from cms_category where id=${_typeid})\r\n <#else>\r\n 1=1\r\n </#if>\r\n <#--当前栏目(单个)-->\r\n <#elseif type==\"self\">\r\n and \r\n <#if _typeid?has_content>\r\n id=${_typeid}\r\n <#else>\r\n 1=1\r\n </#if>\r\n <#--当前栏目的所属栏目(多个)-->\r\n <#elseif type==\"path\">\r\n and \r\n <#if _typeid?has_content>\r\n id in (<#if column?? && column.categoryParentId??>${column.categoryParentId},</#if>${_typeid})\r\n <#else>\r\n 1=1\r\n </#if>\r\n <#--子栏目(多个)-->\r\n <#elseif type==\"son\">\r\n and \r\n <#if _typeid?has_content>\r\n category_id=${_typeid}\r\n <#else>\r\n 1=1\r\n </#if>\r\n <#--上一级栏目没有则取当前栏目(单个)-->\r\n <#elseif type==\"parent\">\r\n and \r\n <#if _typeid?has_content>\r\n <#if column?? && column.categoryId??>\r\n id=${column.categoryId}\r\n <#else>\r\n id=${_typeid}\r\n </#if>\r\n <#else>\r\n 1=1\r\n </#if>\r\n <#--子栏目或同级栏目(多个)-->\r\n <#elseif type==\"sonOrLevel\">\r\n and \r\n <#if _typeid?has_content>\r\n category_id= if((SELECT count(*) FROM cms_category\r\n WHERE id=${_typeid})>0,${_typeid},(select id from cms_category where id=${_typeid}))\r\n <#else>\r\n 1=1\r\n </#if>\r\n </#if>\r\n<#else> <#--默认顶级栏目-->\r\n and\r\n <#if _typeid?has_content>\r\n id=${_typeid}\r\n <#else>\r\n (category_id=0 or category_id is null)\r\n </#if>\r\n</#if>\r\n<#--字段排序-->\r\n <#if orderby?? >\r\n ORDER BY \r\n <#if orderby==\"date\"> category_datetime\r\n <#elseif orderby==\"sort\"> category_sort\r\n <#else>cms_content.id</#if>\r\n <#else>\r\n ORDER BY id\r\n </#if>\r\n <#if order?? >\r\n <#if order==\"des
INSERT INTO `mdiy_tag_sql` VALUES (7, 5, 'select \r\nAPP_NAME as name,\r\napp_logo as logo,\r\napp_keyword as keyword,\r\napp_description as descrip,\r\napp_copyright as copyright,\r\n<#--动态解析 -->\r\n<#if isDo?? && isDo>\r\n\"${url}\" as url,\r\n\"${url}\" as host,\r\n<#--使用地址栏的域名 -->\r\n<#elseif url??>\r\nCONCAT(\"${url}\",\"/${html}/\",id,\"/<#if m??>${m}</#if>\") as url,\r\n\"${url}\" as host,\r\n<#else>\r\nCONCAT(REPLACE(REPLACE(TRIM(substring_index(app_url,\"\\n\",1)), CHAR(10),\'\'), CHAR(13),\'\'),\"/html/\",id,\"/<#if m??>${m}</#if>\") as url,\r\nREPLACE(REPLACE(TRIM(substring_index(app_url,\"\\n\",1)), CHAR(10),\'\'), CHAR(13),\'\') as host,\r\n</#if>\r\nCONCAT(\"templets/\",id,\"/\",<#if m??>CONCAT(app_style,\"/${m}\")<#else>app_style</#if>) as style <#-- 判断是否为手机端 -->\r\nfrom app where id = ${appId} limit 1', 1);
INSERT INTO `mdiy_tag_sql` VALUES (8, 7, 'SELECT \r\ncms_content.id as id,\r\nleft(content_title,${titlelen?default(40)}) as title,\r\ncontent_title as fulltitle,\r\ncontent_author as author, \r\ncontent_source as source, \r\ncontent_details as content,\r\ncategory_title as typetitle,\r\ncms_category.id as typeid,\r\n ( CASE cms_category.category_img WHEN \'\' THEN cms_category.category_img ELSE CONVERT ( JSON_UNQUOTE( JSON_EXTRACT( cms_category.category_img -> \'$[0]\', \'$.path\' ) ) USING utf8 ) END ) AS typelitpic,\r\n<#--动态链接-->\r\n<#if isDo?? && isDo>\r\nCONCAT(\"/${modelName}/list.do?typeid=\", category.id) as typelink,\r\n<#else>\r\n(SELECT \"index.html\") as typelink,\r\n</#if>\r\n( CASE cms_content.content_img WHEN \'\' THEN cms_content.content_img ELSE CONVERT ( JSON_UNQUOTE( JSON_EXTRACT( cms_content.content_img -> \'$[0]\', \'$.path\' ) ) USING utf8 ) END ) AS litpic,\r\n<#--内容页动态链接-->\r\n<#if isDo?? && isDo>\r\nCONCAT(\"/mcms/view.do?id=\", cms_content.id) as link,\r\n<#else>\r\ncontent_url AS link,\r\n</#if>\r\ncontent_datetime as date,\r\ncontent_description as descrip,\r\nCONCAT(\"<script type=\'text/javascript\' src=\'${url}/basic/\",cms_content.id,\"/hit.do\'></script>\") as hit,\r\ncontent_type as flag,\r\ncategory_title as typetitle,\r\n<#if tableName??>${tableName}.*,</#if>\r\ncontent_keyword as keyword\r\nFROM cms_content\r\nLEFT JOIN cms_category ON \r\n<#--如果是栏目列表页没有文章id所以只取栏目id-->\r\n<#if column??&&column.id??&&!id??> \r\n cms_category.id=${column.id}\r\n<#else>\r\ncms_category.id = content_category_id\r\n</#if>\r\n<#--判断是否有自定义模型表-->\r\n<#if tableName??>left join ${tableName} on ${tableName}.link_id=cms_content.id</#if>\r\nWHERE \r\n1=1\r\n<#if id??> and cms_content.id=${id}</#if>', 1);
INSERT INTO `mdiy_tag_sql` VALUES (9, 8, '<#assign select=\"(SELECT \'\')\"/>\r\n<#if orderby?? >\r\n <#if orderby==\"date\"> \r\n <#assign _orderby=\"content_datetime\">\r\n <#elseif orderby==\"updatedate\">\r\n <#assign _orderby=\"content_updatetime\">\r\n <#elseif orderby==\"hit\"> \r\n <#assign _orderby=\"content_hit\">\r\n <#elseif orderby==\"sort\">\r\n <#assign _orderby=\"content_sort\">\r\n <#else><#assign _orderby=\"cms_content.id\"></#if>\r\n <#else>\r\n <#assign _orderby=\"cms_content.id\">\r\n </#if>\r\n<#if (pageTag.preId) gt 0>\r\nSELECT \r\ncms_content.id as id,\r\nleft(content_title,${titlelen?default(40)}) as title,\r\ncontent_title as fulltitle,\r\ncontent_author as author, \r\ncontent_source as source, \r\ncontent_details as content,\r\ncategory.category_title as typename,\r\ncategory.category_id as typeid,\r\n(SELECT \"index.html\") as typelink,\r\ncontent_img as litpic,\r\n<#--内容页动态链接-->\r\n <#if isDo?? && isDo>\r\n CONCAT(\"/${modelName}/view.do?id=\", cms_content.id,\"&orderby=${_orderby}\",\"&order=${order!\'ASC\'}\") as link,\r\n <#else>\r\n CONCAT(category_path,\"/\",cms_content.id,\".html\") AS link,\r\n </#if>\r\ncontent_datetime as date,\r\ncontent_description as descrip,\r\ncontent_hit as hit,\r\ncontent_type as flag,\r\ncontent_keyword as keyword \r\nFROM cms_content \r\nLEFT JOIN cms_category as category ON content_category_id=category.id \r\nWHERE cms_content.id=${pageTag.preId}\r\n<#else>\r\nSELECT \r\n${select} as id,\r\n${select} as title,\r\n${select} as fulltitle,\r\n${select} as author, \r\n${select} as source, \r\n${select} as content,\r\n${select} as typename,\r\n${select} as typeid,\r\n${select} as typelink,\r\n${select} as litpic,\r\n${select} as link,\r\n${select} as date,\r\n${select} as descrip,\r\n${select} as hit,\r\n${select} as flag,\r\n${select} as keyword FROM cms_content\r\n</#if>', NULL);
INSERT INTO `mdiy_tag_sql` VALUES (10, 9, ' select\r\n <#if !(pageTag.indexUrl??)>\r\n <#--判断是否有栏目对象,用于搜索不传栏目-->\r\n <#if column??>\r\n <#assign path=column.categoryPath/>\r\n <#else>\r\n <#assign path=\"\"/>\r\n </#if>\r\n <#--总记录数、总页数-->\r\n (SELECT ${pageTag.total}) as total,\r\n <#--记录总数-->\r\n (SELECT ${pageTag.size}) as rcount,\r\n <#--当前页码-->\r\n (SELECT ${pageTag.pageNo}) as cur,\r\n <#--首页-->\r\n CONCAT(\"${path}\", \"/index.html\") as `index`,\r\n <#--上一页-->\r\n <#if (pageTag.pageNo?eval-1) gt 1>\r\n CONCAT(\"${path}\",\"/list-${pageTag.pageNo?eval-1}.html\") as pre,\r\n <#else>\r\n CONCAT(\"${path}\",\"/index.html\") as pre,\r\n </#if>\r\n <#--下一页-->\r\n <#if pageTag.total==1>\r\n CONCAT(\"${path}\", \"/index.html\") as `next`,\r\n CONCAT(\"${path}\", \"/index.html\") as `last`\r\n <#else>\r\n <#if pageTag.pageNo?eval gte pageTag.total>\r\n CONCAT(\"${path}\",\"/list-${pageTag.total}.html\") as next,\r\n <#else>\r\n CONCAT(\"${path}\",\"/list-${pageTag.pageNo?eval+1}.html\") as next,\r\n </#if>\r\n <#--最后一页-->\r\n CONCAT(\"${path}\",\"/list-${pageTag.total}.html\") as last\r\n </#if>\r\n<#else><#--判断是否是搜索页面-->\r\n \"${pageTag.indexUrl}\" as `index`,\"${pageTag.lastUrl}\" as `last`,\"${pageTag.preUrl}\" as `pre`,\"${pageTag.nextUrl}\" as `next`,\'${pageTag.total}\' as total,\'${pageTag.size}\' as rcount,\'${pageTag.pageNo}\' as cur\r\n</#if>', NULL);
INSERT INTO `mdiy_tag_sql` VALUES (11, 10, '<#assign select=\"(SELECT \'\')\"/>\r\n<#if orderby?? >\r\n <#if orderby==\"date\"> \r\n <#assign _orderby=\"content_datetime\">\r\n <#elseif orderby==\"updatedate\">\r\n <#assign _orderby=\"content_updatetime\">\r\n <#elseif orderby==\"hit\"> \r\n <#assign _orderby=\"content_hit\">\r\n <#elseif orderby==\"sort\">\r\n <#assign _orderby=\"content_sort\">\r\n <#else><#assign _orderby=\"cms_content.id\"></#if>\r\n <#else>\r\n <#assign _orderby=\"cms_content.id\">\r\n </#if>\r\n<#if (pageTag.nextId) gt 0>\r\nSELECT \r\ncms_content.id as id,\r\nleft(content_title,${titlelen?default(40)}) as title,\r\ncontent_title as fulltitle,\r\ncontent_author as author, \r\ncontent_source as source, \r\ncontent_details as content,\r\ncategory.category_title as typename,\r\ncategory.category_id as typeid,\r\n(SELECT \"index.html\") as typelink,\r\ncontent_img as litpic,\r\n<#--内容页动态链接-->\r\n <#if isDo?? && isDo>\r\n CONCAT(\"/${modelName}/view.do?id=\", cms_content.id,\"&orderby=${_orderby}\",\"&order=${order!\'ASC\'}\") as link,\r\n <#else>\r\n CONCAT(category_path,\"/\",cms_content.id,\".html\") AS link,\r\n </#if>\r\ncontent_datetime as date,\r\ncontent_description as descrip,\r\ncontent_hit as hit,\r\ncontent_type as flag,\r\ncontent_keyword as keyword \r\nFROM cms_content \r\nLEFT JOIN cms_category as category ON content_category_id=category.id \r\nWHERE cms_content.id=${pageTag.nextId}\r\n<#else>\r\nSELECT \r\n${select} as id,\r\n${select} as title,\r\n${select} as fulltitle,\r\n${select} as author, \r\n${select} as source, \r\n${select} as content,\r\n${select} as typename,\r\n${select} as typeid,\r\n${select} as typelink,\r\n${select} as litpic,\r\n${select} as link,\r\n${select} as date,\r\n${select} as descrip,\r\n${select} as hit,\r\n${select} as flag,\r\n${select} as keyword FROM cms_content\r\n</#if>', NULL);
-- ----------------------------
-- Table structure for model
-- ----------------------------
DROP TABLE IF EXISTS `model`;
CREATE TABLE `model` (
`model_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '模块自增长id',
`model_title` varchar(150) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '模块标题',
`model_code` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '模块编码',
`model_modelid` int(22) NULL DEFAULT NULL COMMENT '模块的父模块id',
`model_url` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '模块连接地址',
`model_datetime` datetime(0) NULL DEFAULT NULL,
`model_icon` varchar(120) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '模块图标',
`model_modelmanagerid` int(11) NULL DEFAULT NULL COMMENT '模块关联的关联员id',
`model_sort` int(11) NULL DEFAULT NULL COMMENT '模块的排序',
`model_ismenu` int(1) NULL DEFAULT 0 COMMENT '模块是否是菜单',
`model_parent_ids` varchar(300) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '父级编号集合,从小到大排序',
`IS_CHILD` varchar(300) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '菜单类型',
PRIMARY KEY (`model_id`) USING BTREE,
UNIQUE INDEX `sys_c009201`(`model_id`) USING BTREE,
INDEX `model_modelid`(`model_modelid`) USING BTREE,
INDEX `model_code`(`model_code`) USING BTREE,
CONSTRAINT `model_ibfk_1` FOREIGN KEY (`model_modelid`) REFERENCES `model` (`model_id`) ON DELETE CASCADE ON UPDATE NO ACTION
) ENGINE = InnoDB AUTO_INCREMENT = 859 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '模块表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of model
-- ----------------------------
INSERT INTO `model` VALUES (23, '权限管理', '01000000', NULL, '', '2014-09-08 08:12:22', 'icon-quanxianguanli', 0, 5, 1, NULL, NULL);
INSERT INTO `model` VALUES (84, '系统设置', '12000000', NULL, '', '2014-12-18 18:30:24', 'icon-xitongguanli', 0, 3, 1, NULL, NULL);
INSERT INTO `model` VALUES (86, '应用设置', '12010000', 84, 'app/-1/edit.do', '2014-12-18 18:31:59', '', 0, 0, 1, '84', NULL);
INSERT INTO `model` VALUES (87, '模版管理', '12020000', 84, 'template/index.do', '2014-12-18 18:32:50', '', 0, 0, 1, '84', NULL);
INSERT INTO `model` VALUES (182, '修改', '12010004', 86, 'app:update', '2017-09-04 14:14:42', '', 0, 0, 0, '84,86', NULL);
INSERT INTO `model` VALUES (183, '菜单管理', '01030000', 23, 'model/index.do', '2017-09-04 11:09:26', '', 0, 0, 1, '23', NULL);
INSERT INTO `model` VALUES (184, '查看', '01030001', 183, 'model:view', '2017-09-04 11:10:43', '', 0, 0, 0, '23,183', NULL);
INSERT INTO `model` VALUES (201, '新增', '01030002', 183, 'model:save', '2019-12-27 10:26:29', NULL, 0, 0, 0, '23,183', NULL);
INSERT INTO `model` VALUES (202, '修改', '01030004', 183, 'model:update', '2019-12-27 10:26:33', NULL, 0, 0, 0, '23,183', NULL);
INSERT INTO `model` VALUES (204, '上传', '12020002', 87, 'template:upload', '2019-12-27 10:26:37', '', 0, 0, 0, '84,87', NULL);
INSERT INTO `model` VALUES (217, '会员中心', '07000000', NULL, '', '2018-10-28 19:30:44', 'icon-huiyuanzhongxin', 0, 0, 1, NULL, NULL);
INSERT INTO `model` VALUES (218, '用户管理', '07020100', 217, 'people/peopleUser/index.do', '2018-10-28 19:30:44', NULL, 0, 0, 1, '217', NULL);
INSERT INTO `model` VALUES (219, '修改', '07020104', 218, 'people:user:update', '2018-10-28 19:30:44', '', 0, 0, 0, '217,218', NULL);
INSERT INTO `model` VALUES (220, '删除', '07020103', 218, 'people:user:del', '2018-10-28 19:30:44', '', 0, 0, 0, '217,218', NULL);
INSERT INTO `model` VALUES (221, '新增', '07020102', 218, 'people:user:save', '2018-10-28 19:30:44', '', 0, 0, 0, '217,218', NULL);
INSERT INTO `model` VALUES (222, '查看', '07020101', 218, 'people:view', '2018-10-28 19:30:45', NULL, 0, 0, 0, '217,218', NULL);
INSERT INTO `model` VALUES (264, '自定义管理', '20000000', NULL, '', '2018-09-06 09:38:51', 'icon-zidingyiguanli', 0, 0, 1, '264', NULL);
INSERT INTO `model` VALUES (265, '自定义页面', '20010000', 264, 'mdiy/page/index.do', '2018-09-06 09:38:51', NULL, 0, 0, 1, '264', NULL);
INSERT INTO `model` VALUES (266, '修改', '20010004', 269, 'mdiy:form:update', '2018-09-06 09:38:51', NULL, 0, 0, 0, '264,269', NULL);
INSERT INTO `model` VALUES (267, '新增', '20010002', 269, 'mdiy:form:save', '2018-09-06 09:38:51', NULL, 0, 0, 0, '264,269', NULL);
INSERT INTO `model` VALUES (268, '查看', '20010001', 269, 'mdiy:form:view', '2018-09-06 09:38:51', NULL, 0, 0, 0, '264,269', NULL);
INSERT INTO `model` VALUES (269, '自定义表单', '20020000', 264, 'mdiy/post/index.do', '2018-09-06 09:38:51', NULL, 0, 0, 1, '264', NULL);
INSERT INTO `model` VALUES (280, '自定义字典', '20050000', 264, 'mdiy/dict/index.do', '2018-09-06 09:38:53', NULL, 0, 0, 1, '264', NULL);
INSERT INTO `model` VALUES (281, '删除', '20050003', 280, 'mdiy:dict:del', '2018-09-06 09:38:53', NULL, 0, 0, 0, '264,280', NULL);
INSERT INTO `model` VALUES (282, '修改', '20050004', 280, 'mdiy:dict:update', '2018-09-06 09:38:53', NULL, 0, 0, 0, '264,280', NULL);
INSERT INTO `model` VALUES (283, '新增', '20050002', 280, 'mdiy:dict:save', '2018-09-06 09:38:53', NULL, 0, 0, 0, '264,280', NULL);
INSERT INTO `model` VALUES (284, '查看', '20050001', 280, 'mdiy:dict:view', '2018-09-06 09:38:53', NULL, 0, 0, 0, '264,280', NULL);
INSERT INTO `model` VALUES (299, '新增', '299', 265, 'mdiy:page:save', '2019-05-27 16:04:32', '', 0, 0, 0, '264,265', NULL);
INSERT INTO `model` VALUES (300, '修改', '300', 265, 'mdiy:page:update', '2019-05-27 16:05:11', '', 0, 0, 0, '264,265', NULL);
INSERT INTO `model` VALUES (301, '删除', '301', 265, 'mdiy:page:del', '2019-05-27 16:42:10', '', 0, 0, 0, '264,265', NULL);
INSERT INTO `model` VALUES (406, '角色管理', '406', 23, 'basic/role/index.do', '2019-08-02 17:18:47', '', 0, 0, 1, '23', NULL);
INSERT INTO `model` VALUES (407, '新增', '407', 406, 'role:save', '2019-08-02 17:19:10', '', 0, 0, 0, '23,406', NULL);
INSERT INTO `model` VALUES (408, '修改', '408', 406, 'role:update', '2019-08-02 17:19:34', '', 0, 0, 0, '23,406', NULL);
INSERT INTO `model` VALUES (409, '删除', '409', 406, 'role:del', '2019-08-02 17:19:59', '', 0, 0, 0, '23,406', NULL);
INSERT INTO `model` VALUES (411, '管理员管理', '411', 23, 'basic/manager/index.do', '2019-08-03 10:54:38', '', 0, 0, 1, '23', NULL);
INSERT INTO `model` VALUES (412, '查看', '412', 411, 'manager:view', '2019-08-03 10:56:13', '', 0, 0, 0, '23,411', NULL);
INSERT INTO `model` VALUES (538, '自定义模型', '15730944491834300', 264, 'mdiy/model/index.do', '2019-11-07 10:36:46', '', 0, 0, 1, '264,264', NULL);
INSERT INTO `model` VALUES (540, '删除', '15730944491833822', 538, 'mdiy:model:del', '2019-11-07 10:36:47', NULL, 0, 0, 0, '264,538', NULL);
INSERT INTO `model` VALUES (542, '查看', '15730944491832459', 538, 'mdiy:model:view', '2019-11-07 10:36:47', NULL, 0, 0, 0, '264,538', NULL);
INSERT INTO `model` VALUES (553, '导入', 'importJson', 538, 'mdiy:model:importJson', '2019-11-07 13:46:53', '', 0, 0, 0, '264,538', NULL);
INSERT INTO `model` VALUES (554, '删除', 'mdiy:form:del', 269, 'mdiy:form:del', '2019-11-07 15:14:40', '', 0, 0, 0, '264,269', NULL);
INSERT INTO `model` VALUES (661, '审核', '543434354', 218, 'people:user:check', '2019-11-16 15:38:17', '', 0, 0, 0, '217,218', NULL);
INSERT INTO `model` VALUES (663, '删除', '15737980803547570', 411, 'manager:del', '2019-11-18 14:19:35', '', 0, 0, 0, '23,411', NULL);
INSERT INTO `model` VALUES (664, '更新', '15737980853527702', 411, 'manager:update', '2019-11-18 14:21:08', '', 0, 0, 0, '23,411', NULL);
INSERT INTO `model` VALUES (665, '新增', '15735981803267702', 411, 'manager:save', '2019-11-18 14:21:42', '', 0, 0, 0, '23,411', NULL);
INSERT INTO `model` VALUES (668, '删除', '668', 183, 'model:del', '2019-11-18 14:35:49', '', 0, 0, 0, '23,183', NULL);
INSERT INTO `model` VALUES (672, '删除', '5434345', 87, 'template:del', '2019-11-18 15:05:09', '', 0, 0, 0, '84,87', NULL);
INSERT INTO `model` VALUES (673, '更新', '452435345', 87, 'template:update', '2019-11-18 15:05:35', '', 0, 0, 0, '84,87', NULL);
INSERT INTO `model` VALUES (685, '系统日志', '65123656532', 84, 'basic/systemLog/index.do', '2019-11-21 17:13:50', '', 0, 0, 1, '84', NULL);
INSERT INTO `model` VALUES (686, '查看', '351463145634', 685, 'basic:systemlog:view', '2019-11-21 17:14:24', '', 0, 0, 0, '84,685', NULL);
INSERT INTO `model` VALUES (706, '内容管理', '02000000', NULL, '', '2019-11-22 16:14:59', 'icon-neirongguanli', 0, 5, 1, NULL, NULL);
INSERT INTO `model` VALUES (707, '文章管理', '02980000', 706, 'cms/content/index.do', '2019-11-22 16:16:25', '', 0, 3, 1, '706', NULL);
INSERT INTO `model` VALUES (708, '栏目管理', '02990000', 706, 'cms/category/index.do', '2019-11-22 16:16:50', '', 0, 2, 1, '706', NULL);
INSERT INTO `model` VALUES (709, '静态化', '02020000', 706, 'cms/generate/index.do', '2019-11-22 16:17:15', '', 0, 1, 1, '706', NULL);
INSERT INTO `model` VALUES (710, '生成文章', '02020004', 709, 'cms:generate:article', '2019-11-22 16:17:39', '', 0, 0, 0, '706,709', NULL);
INSERT INTO `model` VALUES (711, '生成栏目', '02020003', 709, 'cms:generate:column', '2019-11-22 16:18:05', '', 0, 0, 0, '706,709', NULL);
INSERT INTO `model` VALUES (713, '查看', '02020001', 709, 'cms:generate:view', '2019-11-22 16:18:48', '', 0, 0, 0, '706,709', NULL);
INSERT INTO `model` VALUES (714, '生成主页', '56454656', 709, 'cms:generate:index', '2019-11-22 16:20:10', '', 0, 0, 0, '706,709', NULL);
INSERT INTO `model` VALUES (715, '新增', '02990004', 708, 'cms:category:save', '2019-11-22 16:20:42', '', 0, 0, 0, '706,708', NULL);
INSERT INTO `model` VALUES (716, '修改', '02990003', 708, 'cms:category:update', '2019-11-22 16:21:36', '', 0, 0, 0, '706,708', NULL);
INSERT INTO `model` VALUES (717, '查看', '02990001', 708, 'cms:category:view', '2019-11-22 16:22:05', '', 0, 0, 0, '706,708', NULL);
INSERT INTO `model` VALUES (718, '新增', '02980002', 707, 'cms:content:save', '2019-11-22 16:22:35', '', 0, 0, 0, '706,707', NULL);
INSERT INTO `model` VALUES (719, '修改', '02980004', 707, 'cms:content:update', '2019-11-22 16:22:57', '', 0, 0, 0, '706,707', NULL);
INSERT INTO `model` VALUES (720, '查看', '02980001', 707, 'cms:content:view', '2019-11-22 16:23:15', '', 0, 0, 0, '706,707', NULL);
INSERT INTO `model` VALUES (721, '删除', '721', 707, 'cms:content:del', '2019-11-22 17:02:28', '', 0, 0, 0, '706,707', NULL);
INSERT INTO `model` VALUES (722, '导入', '722', 269, 'mdiy:form:importJson', '2019-12-27 12:07:24', '', 0, 0, 0, '264,269', NULL);
INSERT INTO `model` VALUES (857, '删除', '857', 708, 'cms:category:del', '2019-12-27 17:33:06', '', 0, 0, 1, '706,708', NULL);
-- ----------------------------
-- Table structure for people
-- ----------------------------
DROP TABLE IF EXISTS `people`;
CREATE TABLE `people` (
`people_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '增长自id',
`people_phone` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '手机号码',
`people_name` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '账号',
`people_password` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '密码',
`people_datetime` timestamp(0) NOT NULL DEFAULT CURRENT_TIMESTAMP(0) COMMENT '注册时间',
`people_app_id` int(11) NOT NULL COMMENT '应用编号',
`people_mail` varchar(120) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '用户邮箱',
`people_state` int(2) NULL DEFAULT 0 COMMENT '用户状态',
`people_code` varchar(15) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '随机验证码',
`people_codesenddate` datetime(0) NULL DEFAULT NULL COMMENT '发送验证码时间',
`people_phonecheck` int(1) NULL DEFAULT 0 COMMENT '1手机验证通过',
`people_maillcheck` int(1) NULL DEFAULT 0 COMMENT '1邮箱验证通过',
`people_ip` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '用户登录ip',
PRIMARY KEY (`people_id`) USING BTREE,
INDEX `fk_people`(`people_app_id`) USING BTREE,
CONSTRAINT `people_ibfk_1` FOREIGN KEY (`people_app_id`) REFERENCES `app` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION
) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '户用基础表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of people
-- ----------------------------
INSERT INTO `people` VALUES (1, '18179860960', 'msopen', '9d8622060de5f24937b60585c3f4d66b', '2019-12-30 18:28:28', 1, '1027418825@qq.com', 0, NULL, NULL, 0, 0, '127.0.0.1');
-- ----------------------------
-- Table structure for people_address
-- ----------------------------
DROP TABLE IF EXISTS `people_address`;
CREATE TABLE `people_address` (
`PA_ID` int(11) NOT NULL AUTO_INCREMENT COMMENT '用户收货地址自增长Id',
`PA_PEOPLE_ID` int(11) NOT NULL COMMENT '对应用户基础信息拓展表的id',
`PA_CONSIGNEE_NAME` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '用户收货人姓名',
`PA_PROVINCE` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '收货人所在的省',
`PA_PROVINCE_ID` bigint(11) NULL DEFAULT 0 COMMENT '省份编号',
`PA_CITY` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '收货人所在的市',
`PA_CITY_ID` bigint(11) NULL DEFAULT 0 COMMENT '城市编号',
`PA_DISTRICT` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '收货人所在区(县)',
`PA_DISTRICT_ID` bigint(11) NULL DEFAULT 0 COMMENT '区编号',
`PA_STREET` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`PA_STREET_ID` bigint(11) NULL DEFAULT 0 COMMENT '街道编号',
`PA_ADDRESS` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '收货人的详细收货地址',
`PA_MAIL` varchar(40) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '收货人邮箱',
`PA_PHONE` varchar(40) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '收货人手机',
`PA_DEFAULT` int(1) NULL DEFAULT 0 COMMENT '是否是收货人最终收货地址。1代表是0代表不是默认为0',
`PA_APP_ID` int(11) NOT NULL COMMENT '对应的站点id',
PRIMARY KEY (`PA_ID`) USING BTREE,
INDEX `PA_APP_ID`(`PA_APP_ID`) USING BTREE,
INDEX `PA_PEOPLE_ID`(`PA_PEOPLE_ID`) USING BTREE,
CONSTRAINT `people_address_ibfk_1` FOREIGN KEY (`PA_PEOPLE_ID`) REFERENCES `people` (`people_id`) ON DELETE CASCADE ON UPDATE RESTRICT
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '用户地址' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Table structure for people_user
-- ----------------------------
DROP TABLE IF EXISTS `people_user`;
CREATE TABLE `people_user` (
`pu_people_id` int(11) NOT NULL COMMENT '用户id关联people表的people_id',
`pu_real_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '用户真实名称',
`pu_address` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '用户地址',
`pu_level` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '用户等级',
`pu_level_name` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '用户等级名称',
`pu_icon` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '用户头像图标地址',
`pu_nickname` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '用户昵称',
`pu_sex` int(2) NULL DEFAULT NULL COMMENT '用户性别(0.未知、1.男、2.女)',
`pu_birthday` date NULL DEFAULT NULL COMMENT '用户出生年月日',
`pu_card` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '身份证',
`province_id` bigint(20) NULL DEFAULT NULL,
`province_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`city_id` bigint(20) NULL DEFAULT NULL,
`city_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`county_id` bigint(20) NULL DEFAULT NULL,
`county_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`pu_people_id`) USING BTREE,
INDEX `pu_people_id`(`pu_people_id`) USING BTREE,
CONSTRAINT `people_user_ibfk_1` FOREIGN KEY (`pu_people_id`) REFERENCES `people` (`people_id`) ON DELETE CASCADE ON UPDATE NO ACTION
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '用户基础信息表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of people_user
-- ----------------------------
INSERT INTO `people_user` VALUES (1, NULL, NULL, NULL, NULL, '/upload/1577701863298.jpg', '111', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-- ----------------------------
-- Table structure for role
-- ----------------------------
DROP TABLE IF EXISTS `role`;
CREATE TABLE `role` (
`role_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '角色id自增长',
`role_name` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '角色名',
`role_managerid` int(11) NULL DEFAULT 0 COMMENT '角色管理员编号',
`app_id` int(11) NULL DEFAULT NULL COMMENT '应用编号',
PRIMARY KEY (`role_id`) USING BTREE,
INDEX `role_managerid`(`role_managerid`) USING BTREE,
INDEX `fk_role_app_id`(`app_id`) USING BTREE,
CONSTRAINT `role_ibfk_1` FOREIGN KEY (`app_id`) REFERENCES `app` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION
) ENGINE = InnoDB AUTO_INCREMENT = 49 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '角色表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of role
-- ----------------------------
INSERT INTO `role` VALUES (48, 'msopen', 57, 1);
-- ----------------------------
-- Table structure for role_model
-- ----------------------------
DROP TABLE IF EXISTS `role_model`;
CREATE TABLE `role_model` (
`rm_modelid` int(22) NULL DEFAULT NULL COMMENT '模块编号',
`rm_roleid` int(22) NULL DEFAULT NULL COMMENT '角色编号',
UNIQUE INDEX `index`(`rm_modelid`, `rm_roleid`) USING BTREE,
INDEX `rm_modelid`(`rm_modelid`) USING BTREE,
INDEX `fk_role_model_role_1`(`rm_roleid`) USING BTREE,
CONSTRAINT `role_model_ibfk_1` FOREIGN KEY (`rm_roleid`) REFERENCES `role` (`role_id`) ON DELETE CASCADE ON UPDATE NO ACTION,
CONSTRAINT `role_model_ibfk_2` FOREIGN KEY (`rm_modelid`) REFERENCES `model` (`model_id`) ON DELETE CASCADE ON UPDATE NO ACTION
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '角色模块关联表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of role_model
-- ----------------------------
INSERT INTO `role_model` VALUES (23, 48);
INSERT INTO `role_model` VALUES (84, 48);
INSERT INTO `role_model` VALUES (86, 48);
INSERT INTO `role_model` VALUES (87, 48);
INSERT INTO `role_model` VALUES (182, 48);
INSERT INTO `role_model` VALUES (183, 48);
INSERT INTO `role_model` VALUES (184, 48);
INSERT INTO `role_model` VALUES (201, 48);
INSERT INTO `role_model` VALUES (202, 48);
INSERT INTO `role_model` VALUES (204, 48);
INSERT INTO `role_model` VALUES (217, 48);
INSERT INTO `role_model` VALUES (218, 48);
INSERT INTO `role_model` VALUES (219, 48);
INSERT INTO `role_model` VALUES (220, 48);
INSERT INTO `role_model` VALUES (221, 48);
INSERT INTO `role_model` VALUES (222, 48);
INSERT INTO `role_model` VALUES (264, 48);
INSERT INTO `role_model` VALUES (265, 48);
INSERT INTO `role_model` VALUES (266, 48);
INSERT INTO `role_model` VALUES (267, 48);
INSERT INTO `role_model` VALUES (268, 48);
INSERT INTO `role_model` VALUES (269, 48);
INSERT INTO `role_model` VALUES (280, 48);
INSERT INTO `role_model` VALUES (281, 48);
INSERT INTO `role_model` VALUES (282, 48);
INSERT INTO `role_model` VALUES (283, 48);
INSERT INTO `role_model` VALUES (284, 48);
INSERT INTO `role_model` VALUES (299, 48);
INSERT INTO `role_model` VALUES (300, 48);
INSERT INTO `role_model` VALUES (301, 48);
INSERT INTO `role_model` VALUES (406, 48);
INSERT INTO `role_model` VALUES (407, 48);
INSERT INTO `role_model` VALUES (408, 48);
INSERT INTO `role_model` VALUES (409, 48);
INSERT INTO `role_model` VALUES (411, 48);
INSERT INTO `role_model` VALUES (412, 48);
INSERT INTO `role_model` VALUES (538, 48);
INSERT INTO `role_model` VALUES (540, 48);
INSERT INTO `role_model` VALUES (542, 48);
INSERT INTO `role_model` VALUES (553, 48);
INSERT INTO `role_model` VALUES (554, 48);
INSERT INTO `role_model` VALUES (661, 48);
INSERT INTO `role_model` VALUES (663, 48);
INSERT INTO `role_model` VALUES (664, 48);
INSERT INTO `role_model` VALUES (665, 48);
INSERT INTO `role_model` VALUES (668, 48);
INSERT INTO `role_model` VALUES (672, 48);
INSERT INTO `role_model` VALUES (673, 48);
INSERT INTO `role_model` VALUES (685, 48);
INSERT INTO `role_model` VALUES (686, 48);
INSERT INTO `role_model` VALUES (706, 48);
INSERT INTO `role_model` VALUES (707, 48);
INSERT INTO `role_model` VALUES (708, 48);
INSERT INTO `role_model` VALUES (709, 48);
INSERT INTO `role_model` VALUES (710, 48);
INSERT INTO `role_model` VALUES (711, 48);
INSERT INTO `role_model` VALUES (713, 48);
INSERT INTO `role_model` VALUES (714, 48);
INSERT INTO `role_model` VALUES (715, 48);
INSERT INTO `role_model` VALUES (716, 48);
INSERT INTO `role_model` VALUES (717, 48);
INSERT INTO `role_model` VALUES (718, 48);
INSERT INTO `role_model` VALUES (719, 48);
INSERT INTO `role_model` VALUES (720, 48);
INSERT INTO `role_model` VALUES (721, 48);
INSERT INTO `role_model` VALUES (722, 48);
INSERT INTO `role_model` VALUES (857, 48);
-- ----------------------------
-- Table structure for system_log
-- ----------------------------
DROP TABLE IF EXISTS `system_log`;
CREATE TABLE `system_log` (
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT,
`error_msg` varchar(4000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '错误消息',
`status` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '请求状态',
`result` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '返回参数',
`param` varchar(4000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '请求参数',
`location` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '请求地址',
`url` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '请求地址',
`user` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '操作人员',
`user_type` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '用户类型',
`request_method` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '请求方式',
`method` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '请求方法',
`business_type` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '业务类型',
`ip` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT 'IP',
`title` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '标题',
`del` int(1) NULL DEFAULT 0 COMMENT '删除标记',
`update_date` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
`update_by` int(11) NULL DEFAULT NULL COMMENT '修改人',
`create_date` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`create_by` int(11) NULL DEFAULT NULL COMMENT '创建人',
`app_id` int(11) NULL DEFAULT NULL COMMENT '站点id',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 8 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '系统日志' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of system_log
-- ----------------------------
INSERT INTO `system_log` VALUES (7, NULL, 'success', '{\n \"result\":true,\n \"code\":200\n}', '{\n \"ids\":[\"291\"]\n}', '内网IP', '/ms-mcms/ms/model/delete.do', 'msopen', 'manage', 'POST', 'net.mingsoft.basic.action.ModelAction.delete()', 'delete', '127.0.0.1', '批量删除模块表', 0, NULL, NULL, '2020-01-09 21:33:16', NULL, NULL);
SET FOREIGN_KEY_CHECKS = 1;