代码拉取完成,页面将自动刷新
同步操作将从 JEECG/jeewx-boot 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
/*
Navicat Premium Data Transfer
Source Server : mysql
Source Server Type : MySQL
Source Server Version : 50727
Source Host : localhost:3306
Source Schema : jeewx-boot-os
Target Server Type : MySQL
Target Server Version : 50727
File Encoding : 65001
Date: 04/12/2019 12:24:19
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for jw_system_account
-- ----------------------------
DROP TABLE IF EXISTS `jw_system_account`;
CREATE TABLE `jw_system_account` (
`id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT 'ID',
`user_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '用户ID',
`amount` decimal(11, 2) NULL DEFAULT 0.00 COMMENT '余额',
`status` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '状态',
`remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注',
`create_by` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
PRIMARY KEY (`id`) USING BTREE,
INDEX `idx_userid`(`user_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '系统账户表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of jw_system_account
-- ----------------------------
INSERT INTO `jw_system_account` VALUES ('003387126f2011e8beb1525400077487', 'admin', 0.00, '1', '初始创建', 'admin', '2018-06-13 23:39:46');
-- ----------------------------
-- Table structure for jw_system_act
-- ----------------------------
DROP TABLE IF EXISTS `jw_system_act`;
CREATE TABLE `jw_system_act` (
`id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT 'ID',
`act_id` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '活动ID',
`act_name` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '活动名称',
`begin_time` datetime(0) NULL DEFAULT NULL COMMENT '活动开始时间',
`end_time` datetime(0) NULL DEFAULT NULL COMMENT '活动结束时间',
`status` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '状态(启用/不启用)',
`jwid` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '微信原始ID',
`hdurl` varchar(2000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '活动链接',
`short_url` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '短链接',
`organizer` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '组织单位',
`join_num` int(11) NULL DEFAULT NULL COMMENT '参与数',
`share_num` int(11) NULL DEFAULT NULL COMMENT '分享数',
`create_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`update_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改人',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
`delete_flag` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '删除标识:0正常,1删除,2永久删除',
`delete_time` datetime(0) NULL DEFAULT NULL COMMENT '删除时间',
`is_hot_act` varchar(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '1' COMMENT '是否为热门活动:\'0\':否,\'1\'是',
`project_code` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '活动类型',
`table_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '表名',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `uniq_actcode`(`act_id`) USING BTREE,
INDEX `idx_createtime`(`create_time`) USING BTREE,
INDEX `idx_begintime`(`begin_time`) USING BTREE,
INDEX `idx_endtime`(`end_time`) USING BTREE,
INDEX `idx_projectcode`(`project_code`) USING BTREE,
INDEX `idx_jwid`(`jwid`) USING BTREE,
INDEX `idx_createname`(`create_name`) USING BTREE,
INDEX `idx_ishotact`(`is_hot_act`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '活动项目表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Table structure for jw_system_act_analysis
-- ----------------------------
DROP TABLE IF EXISTS `jw_system_act_analysis`;
CREATE TABLE `jw_system_act_analysis` (
`id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '主键',
`act_id` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '活动ID',
`project_code` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '活动类型CODE',
`join_num` int(11) NULL DEFAULT NULL COMMENT '当日参与数',
`share_num` int(11) NULL DEFAULT NULL COMMENT '当日分享数',
`total_join_num` int(11) NULL DEFAULT NULL COMMENT '累计参与数',
`total_share_num` int(11) NULL DEFAULT NULL COMMENT '累计分享数',
`ref_date` date NULL DEFAULT NULL COMMENT '统计日期',
`create_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
PRIMARY KEY (`id`) USING BTREE,
INDEX `index_refdate`(`ref_date`) USING BTREE,
INDEX `index_projectcode`(`project_code`) USING BTREE,
INDEX `index_actid`(`act_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '活动统计分析表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Table structure for jw_system_act_txt
-- ----------------------------
DROP TABLE IF EXISTS `jw_system_act_txt`;
CREATE TABLE `jw_system_act_txt` (
`id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '主键',
`code` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '文本编码',
`type` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`content` text CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '文本内容',
`discribe` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '文本描述',
`act_code` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '所属活动',
`jwid` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '微信原始ID',
`creat_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人',
`creat_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`update_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改人',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `uniq_code_actcode`(`code`, `act_code`) USING BTREE,
INDEX `idx_code_actcode`(`code`, `act_code`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '系统文本表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of jw_system_act_txt
-- ----------------------------
INSERT INTO `jw_system_act_txt` VALUES ('1EB0D98FB3CD42B38CB7902E59878BE3', 'tip.shareFriendDesc', NULL, '积攒多年的人品终于有用了,你也快来抽奖吧!', '分享给好友描述', '402881e86ecedfaf016ecef4ab0400a8', NULL, NULL, '2019-12-04 11:29:31', NULL, NULL);
INSERT INTO `jw_system_act_txt` VALUES ('3fea074a977b11e69f2d28d2440d0560', 'index.title', 'hidden', '砸金蛋', '标题', '2c9b8381552a77c901552a77c9020000', NULL, NULL, '2016-10-08 10:54:36', NULL, NULL);
INSERT INTO `jw_system_act_txt` VALUES ('3feb9917977b11e69f2d28d2440d0560', 'statistics', 'hidden', 'var _hmt = _hmt || [];\n(function() {\n var hm = document.createElement(\"script\");\n hm.src = \"//hm.baidu.com/hm.js?b64fae1007b3ee9b0430e5a20b670f78\";\n var s = document.getElementsByTagName(\"script\")[0]; \n s.parentNode.insertBefore(hm, s);\n})();', '统计', '2c9b8381552a77c901552a77c9020000', NULL, NULL, '2016-10-08 10:54:36', NULL, '2016-08-19 10:27:05');
INSERT INTO `jw_system_act_txt` VALUES ('3ff11ca0977b11e69f2d28d2440d0560', 'tip.shareFriendCircle', NULL, '砸出金花四溅拿大奖!积攒多年的人品终于有用了,你也快来抽奖吧!', '分享朋友圈标题', '2c9b8381552a77c901552a77c9020000', NULL, NULL, '2016-10-08 10:54:36', NULL, '2016-08-19 10:27:50');
INSERT INTO `jw_system_act_txt` VALUES ('3ff35479977b11e69f2d28d2440d0560', 'tip.shareFriendTile', NULL, '砸出金花四溅拿大奖', '分享给朋友标题', '2c9b8381552a77c901552a77c9020000', NULL, NULL, '2016-10-08 10:54:36', NULL, '2016-08-19 10:28:01');
INSERT INTO `jw_system_act_txt` VALUES ('3ff58a46977b11e69f2d28d2440d0560', 'tip.shareFriendDesc', NULL, '积攒多年的人品终于有用了,你也快来抽奖吧!', '分享给好友描述', '2c9b8381552a77c901552a77c9020000', NULL, NULL, '2016-10-08 10:54:36', NULL, '2016-08-19 10:28:13');
INSERT INTO `jw_system_act_txt` VALUES ('3ff7f0b0977b11e69f2d28d2440d0560', 'img.share', 'img', 'http://static.h5huodong.com/upload/common/goldeggs_fximg.png', '分享小图', '2c9b8381552a77c901552a77c9020000', NULL, NULL, '2016-10-08 10:54:36', NULL, '2016-08-19 10:30:14');
INSERT INTO `jw_system_act_txt` VALUES ('40000673396A4405B5ECAF39E4FB77B7', 'index.title', 'hidden', '砸金蛋', '标题', '402881e86ecedfaf016ecef4ab0400a8', NULL, NULL, '2019-12-04 11:29:31', NULL, NULL);
INSERT INTO `jw_system_act_txt` VALUES ('848466A2EF0945C2A313DAD06971851F', 'tip.shareFriendCircle', NULL, '砸出金花四溅拿大奖!积攒多年的人品终于有用了,你也快来抽奖吧!', '分享朋友圈标题', '402881e86ecedfaf016ecef4ab0400a8', NULL, NULL, '2019-12-04 11:29:31', NULL, NULL);
INSERT INTO `jw_system_act_txt` VALUES ('CB4496A3349E49BC93143527B34AFA98', 'tip.shareFriendTile', NULL, '砸出金花四溅拿大奖', '分享给朋友标题', '402881e86ecedfaf016ecef4ab0400a8', NULL, NULL, '2019-12-04 11:29:31', NULL, NULL);
INSERT INTO `jw_system_act_txt` VALUES ('DD10D41611DF43D5BCDF47C9975DCA7A', 'statistics', 'hidden', 'var _hmt = _hmt || [];\n(function() {\n var hm = document.createElement(\"script\");\n hm.src = \"//hm.baidu.com/hm.js?b64fae1007b3ee9b0430e5a20b670f78\";\n var s = document.getElementsByTagName(\"script\")[0]; \n s.parentNode.insertBefore(hm, s);\n})();', '统计', '402881e86ecedfaf016ecef4ab0400a8', NULL, NULL, '2019-12-04 11:29:31', NULL, NULL);
INSERT INTO `jw_system_act_txt` VALUES ('E4391A24831044D6A40F88E6D10A661D', 'img.share', 'img', 'http://static.h5huodong.com/upload/common/goldeggs_fximg.png', '分享小图', '402881e86ecedfaf016ecef4ab0400a8', NULL, NULL, '2019-12-04 11:29:31', NULL, NULL);
-- ----------------------------
-- Table structure for jw_system_auth
-- ----------------------------
DROP TABLE IF EXISTS `jw_system_auth`;
CREATE TABLE `jw_system_auth` (
`id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '序号',
`auth_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '' COMMENT '权限编码',
`auth_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT '权限名称',
`is_logs` char(2) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT '是否记录日志 0不记录 1记录',
`auth_type` varchar(2) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT '权限类型 0:菜单;1:功能',
`auth_desc` varchar(120) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT '权限说明',
`auth_contr` varchar(256) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT '权限控制',
`parent_auth_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT '上一级权限编码',
`sort_no` int(11) NULL DEFAULT NULL COMMENT '排序',
`biz_level` char(2) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT '层级',
`leaf_ind` char(2) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT '是否叶子节点',
`del_stat` char(2) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '0' COMMENT '删除标志 0未删除 1已删除',
`icon_type` varchar(50) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT '图标类型',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `uniq_authid`(`auth_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1543235321 CHARACTER SET = utf8 COLLATE = utf8_bin COMMENT = '系统权限菜单表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of jw_system_auth
-- ----------------------------
INSERT INTO `jw_system_auth` VALUES (1, '21', '系统管理', NULL, '0', NULL, '', '', 900, '1', 'N', '0', 'fa-gear fa-lg');
INSERT INTO `jw_system_auth` VALUES (2, '2101', '用户管理', NULL, '0', NULL, '/system/back/jwSystemUser/list.do', '21', 1, '2', 'Y', '0', NULL);
INSERT INTO `jw_system_auth` VALUES (3, '210101', '新增用户', NULL, '1', '新增用户', '/system/back/jwSystemUser/doAdd.do', '2101', 1, '3', NULL, '0', NULL);
INSERT INTO `jw_system_auth` VALUES (4, '210102', '编辑用户', NULL, '1', '编辑用户', '/system/back/jwSystemUser/doEdit.do', '2101', 2, '3', NULL, '0', NULL);
INSERT INTO `jw_system_auth` VALUES (5, '2102', '角色管理', NULL, '0', NULL, '/system/back/jwSystemRole/list.do', '21', 2, '2', 'Y', '0', NULL);
INSERT INTO `jw_system_auth` VALUES (6, '210201', '新增角色', '', '1', '新增角色', '/system/back/jwSystemRole/doAdd.do', '2102', 1, '3', NULL, '0', NULL);
INSERT INTO `jw_system_auth` VALUES (7, '210202', '编辑角色', '', '1', '编辑角色', '/system/back/jwSystemRole/doEdit.do', '2102', 2, '3', NULL, '0', NULL);
INSERT INTO `jw_system_auth` VALUES (8, '210203', '角色授权', NULL, '1', '角色授权', '/system/back/jwSystemRole/editRoleAuth.do', '2102', 3, '3', NULL, '0', NULL);
INSERT INTO `jw_system_auth` VALUES (9, '210204', '删除角色', '', '1', '删除角色', '/system/back/jwSystemRole/doDelete.do', '2102', 4, '3', NULL, '0', NULL);
INSERT INTO `jw_system_auth` VALUES (10, '2103', '菜单管理', NULL, '0', NULL, '/system/back/jwSystemAuth/list.do', '21', 3, '2', 'Y', '0', '');
INSERT INTO `jw_system_auth` VALUES (11, '210301', '新增权限', NULL, '1', '新增权限', '/system/back/jwSystemAuth/doAdd.do', '2103', 1, '3', NULL, '0', NULL);
INSERT INTO `jw_system_auth` VALUES (12, '210302', '编辑权限', NULL, '1', '编辑权限', '/system/back/jwSystemAuth/doEdit.do', '2103', 2, '3', NULL, '0', NULL);
INSERT INTO `jw_system_auth` VALUES (31, '2104', '项目管理', '', '0', '', '/system/back/jwSystemProject/list.do', '21', 4, '2', 'Y', '0', NULL);
INSERT INTO `jw_system_auth` VALUES (118, '2106', '404配置', NULL, '0', '', '/system/back/jwSystemProjectErrorConfig/list.do', '21', 6, '2', 'Y', '0', NULL);
INSERT INTO `jw_system_auth` VALUES (119, '2107', '首页配置', NULL, '0', '', '/system/back/jwSystemLogoTitle/list.do', '21', 7, '2', 'Y', '0', NULL);
INSERT INTO `jw_system_auth` VALUES (222, '960109', '第三方平台管理', NULL, '0', NULL, '/commonweixin/back/weixinOpenAccount/list.do', '21', 99, '2', NULL, '0', '');
INSERT INTO `jw_system_auth` VALUES (1533613596, 'aa735943eb4410368c0028dacd75e20f', '抽奖活动', NULL, '0', NULL, '', '', 9, '1', NULL, '0', 'fa-gift fa-lg');
INSERT INTO `jw_system_auth` VALUES (1533713853, 'e9d7b3469add11e8b9ec3ca0672e915d', '砸金蛋', NULL, '0', NULL, '/goldeneggs/back/wxActGoldeneggs/list.do', 'aa735943eb4410368c0028dacd75e20f', 4, '2', NULL, '0', '');
INSERT INTO `jw_system_auth` VALUES (1533720237, 'f5ab2658ec3c103696ca5352a33c439c', '微信配置', NULL, '0', NULL, '', '9d552546c3d011e8aa5852540003411a', 1, '2', NULL, '0', 'fa-weixin fa-lg');
INSERT INTO `jw_system_auth` VALUES (1533720281, '0fff2fc4ec3d103696ca5352a33c439c', '公众号管理', NULL, '0', NULL, '/commonweixin/back/myJwWebJwid/list.do', 'f5ab2658ec3c103696ca5352a33c439c', 1, '2', NULL, '0', '');
INSERT INTO `jw_system_auth` VALUES (1533720331, '2d8bf581ec3d103696ca5352a33c439c', '关注欢迎语', NULL, '0', NULL, '/weixin/back/weixinSubscribe/list.do', 'f5ab2658ec3c103696ca5352a33c439c', 2, '2', NULL, '0', '');
INSERT INTO `jw_system_auth` VALUES (1533720388, '4f7ad75eec3d103696ca5352a33c439c', '未识别回复语', NULL, '0', NULL, '/weixin/back/weixinAutoresponseDefault/list.do', 'f5ab2658ec3c103696ca5352a33c439c', 3, '2', NULL, '0', '');
INSERT INTO `jw_system_auth` VALUES (1533720411, '5d2c6911ec3d103696ca5352a33c439c', '关键字管理', NULL, '0', NULL, '/weixin/back/weixinAutoresponse/list.do', 'f5ab2658ec3c103696ca5352a33c439c', 4, '2', NULL, '0', '');
INSERT INTO `jw_system_auth` VALUES (1533720444, '70cbf443ec3d103696ca5352a33c439c', '自定义菜单', NULL, '0', NULL, '/weixin/back/weixinMenu/list.do', 'f5ab2658ec3c103696ca5352a33c439c', 5, '2', NULL, '0', '');
INSERT INTO `jw_system_auth` VALUES (1533720501, '92c06cd8ec3d103696ca5352a33c439c', '素材管理', NULL, '0', NULL, '', '9d552546c3d011e8aa5852540003411a', 2, '2', NULL, '0', 'fa-newspaper-o fa-lg');
INSERT INTO `jw_system_auth` VALUES (1533720529, 'a37d189dec3d103696ca5352a33c439c', '文本素材', NULL, '0', NULL, '/weixin/back/weixinTexttemplate/list.do', '92c06cd8ec3d103696ca5352a33c439c', 1, '2', NULL, '0', '');
INSERT INTO `jw_system_auth` VALUES (1533720551, 'b0b96e3dec3d103696ca5352a33c439c', '图文素材', NULL, '0', NULL, '/weixin/back/weixinNewstemplate/list.do', '92c06cd8ec3d103696ca5352a33c439c', 2, '2', NULL, '0', '');
INSERT INTO `jw_system_auth` VALUES (1533720619, 'd931c662ec3d103696ca5352a33c439c', '用户管理', NULL, '0', NULL, '', '9d552546c3d011e8aa5852540003411a', 3, '2', NULL, '0', 'fa-users fa-lg');
INSERT INTO `jw_system_auth` VALUES (1533720654, 'ee23607dec3d103696ca5352a33c439c', '用户粉丝', NULL, '0', NULL, '/weixin/back/weixinGzuser/list.do', 'd931c662ec3d103696ca5352a33c439c', 1, '2', NULL, '0', '');
INSERT INTO `jw_system_auth` VALUES (1533720685, '0082475aec3e103696ca5352a33c439c', '消息管理', NULL, '0', NULL, '/weixin/back/weixinReceivetext/list.do', 'd931c662ec3d103696ca5352a33c439c', 4, '2', NULL, '0', '');
INSERT INTO `jw_system_auth` VALUES (1534143366, 'f3bcd2bb9ec511e883d43ca0672e915d', '用户标签', NULL, '0', NULL, '/weixin/back/weixinTag/list.do', 'd931c662ec3d103696ca5352a33c439c', 3, '2', NULL, '0', '');
INSERT INTO `jw_system_auth` VALUES (1535957265, '4350cb18af4511e894f83ca0672e915d', '高级功能', NULL, '0', NULL, '', '9d552546c3d011e8aa5852540003411a', 4, '2', NULL, '0', 'fa fa-send');
INSERT INTO `jw_system_auth` VALUES (1535957303, '5a66da23af4511e894f83ca0672e915d', '群发消息功能', NULL, '0', NULL, '/message/back/sendGroupMessageController/list.do', '4350cb18af4511e894f83ca0672e915d', 1, '2', NULL, '0', '');
INSERT INTO `jw_system_auth` VALUES (1535957331, '6abe0eb7af4511e894f83ca0672e915d', '群发消息审核', NULL, '0', NULL, '/message/back/weixinGroupMessageSendLog/list.do', '4350cb18af4511e894f83ca0672e915d', 2, '2', NULL, '0', '');
INSERT INTO `jw_system_auth` VALUES (1538137662, 'e52e4dd9c31911e8b1833ca0672e915d', '二维码管理', NULL, '0', NULL, '/qrcode/back/weixinQrcode/list.do', '4350cb18af4511e894f83ca0672e915d', 3, '2', NULL, '0', '');
INSERT INTO `jw_system_auth` VALUES (1538216139, '9d552546c3d011e8aa5852540003411a', '微信管家', NULL, '0', NULL, '', '', 1, '1', NULL, '0', 'fa-weixin fa-lg');
-- ----------------------------
-- Table structure for jw_system_auth_mutex
-- ----------------------------
DROP TABLE IF EXISTS `jw_system_auth_mutex`;
CREATE TABLE `jw_system_auth_mutex` (
`id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '序号',
`auth_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '权限编码',
`mutex_auth_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '互斥权限编码',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '系统权限互斥表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Table structure for jw_system_brush_ticket_list
-- ----------------------------
DROP TABLE IF EXISTS `jw_system_brush_ticket_list`;
CREATE TABLE `jw_system_brush_ticket_list` (
`data_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
PRIMARY KEY (`data_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '刷票黑名单表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Table structure for jw_system_logo_title
-- ----------------------------
DROP TABLE IF EXISTS `jw_system_logo_title`;
CREATE TABLE `jw_system_logo_title` (
`id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`logo` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '系统的logo',
`title1` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '系统名称',
`title2` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '系统名称',
`title3` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '系统名称',
`login_page_head` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '登录页的head',
`login_page_footer` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '登录页的footer',
`huodong_bottom_copyright` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '自定义广告位内容',
`charging_desc` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '收费说明'
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '系统logo和title设置表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of jw_system_logo_title
-- ----------------------------
INSERT INTO `jw_system_logo_title` VALUES ('1', 'JEEWX捷微-微信管家平台', 'JEEWX捷微-微信管家平台', '捷微-H5活动营销平台', '捷微-H5活动营销平台', '<div class=\"head\" style=\"background:#fff\">\n <div class=\"w1118\">\n <a class=\"fl\" href=\"http://www.h5huodong.com\"><img class=\"logo\" src=\"http://www.h5huodong.com/content/base/back/common/img/logo.png\" style=\"height:100%\"></a> \n <ul class=\"cx-nav fr\">\n <li> <a href=\"http://www.h5huodong.com\">首页</a> </li>\n <li> <a href=\"https://mp.weixin.qq.com/s/Rvrq3qCLYxDnv__aw-yXIw\" target=\"_blank\">产品介绍</a> </li>\n <li> <a href=\"http://www.h5huodong.com/system/back/article/toIndex.do\" target=\"_blank\">用户指南</a> </li>\n <li> <a href=\"http://v.qq.com/vplus/5586465b129e3d912532f783f354df07/foldervideos/ycn000201jpmngc\" target=\"_blank\">视频教程</a> </li>\n <li> <a style=\"background: #20b3f6\" href=\"system/login.do\" target=\"_blank\">扫描登录</a></li>\n </ul>\n <div class=\"clear\"></div>\n </div> \n</div>', '<div class=\"cc-foot\">\n <div class=\"cont ptb25 clearfix\">\n <div class=\"main_w\">\n <div class=\"code fl\">\n <div class=\"logo mb20\" style=\"padding-left:0;height:auto\">\n <a href=\"http://www.h5huodong.com/content/index.html\"> <img src=\"http://www.h5huodong.com/content/base/back/common/img/logo.png\"></a>\n </div>\n <ul class=\"clearfix\">\n <li> <img src=\"http://www.h5huodong.com/content/base/back/common/img/qrcode.jpg\" width=\"101\" height=\"104\"><p>H5活动之家公众号</p></li>\n <li> <img src=\"http://www.h5huodong.com/content/base/back/common/img/jeecg.jpg\" width=\"101\" height=\"104\"><p>JEECG官方公众号</p></li>\n </ul>\n </div>\n <div class=\"link fl clearfix\">\n <ul class=\"fl\">\n <li><a target=\"_blank\" href=\"http://www.h5huodong.com\">H5活动之家</a></li>\n <li><a target=\"_blank\" href=\"http://www.jeewx.com\">捷微官网</a></li>\n <li><a target=\"_blank\" href=\"http://h5huodong.com/system/register.do\">申请入驻</a></li>\n <li><a target=\"_blank\" href=\"http://wpa.qq.com/msgrd?v=3&uin=3102411850&site=qq&menu=yes\">联系我们</a></li>\n </ul>\n </div> \n <div class=\"contact-us fr\">\n <h2>北京国炬信息技术有限公司</h2> \n <p>客服电话:010-64808099</p> <p>客服QQ群:413534092</p> <p>邮箱:jeecg@sina.com</p> \n </div> \n </div>\n </div> \n <div class=\"copy\">Copyright (c) 2016-2017 www.h5huodong.com. All Rights Reserved Copyright © 2016-2017 北京国炬信息技术有限公司版权所有 京ICP备15065608号-4</div> \n </div>', '<div class=\"copyright\" style=\"font-size: 12px;color: #fff;background: rgba(0,0,0,0.4);position: fixed;display: block;width: 100%;bottom: 0;z-index:1000;left:0;text-align:center;height:1.5rem;line-height:1.5rem\">免费创建一个活动 <i class=\"fa fa-hand-o-right\"></i> <a href=\"http://mp.weixin.qq.com/s?__biz=MzI0MzA3MjI3MA==&mid=2656414114&idx=1&sn=962977778fd377b20c5e69c821ad29d5&chksm=f2d3a5c3c5a42cd5a1255fb4858a0749a24d339d3ad17c9d075026b607699ecaea5661dca16f#rd\" style=\"font-size:12px;color:#fff;\">H5活动之家</a></div>', '\r\n<label class=\"control-label col-sm-12 line34\"> \r\n1. 去广告服务:自定义活动底部广告,费用为100元/月。 <br>\r\n2. 流量费: 活动参与人数未超过200人完全免费,超过200人会产生流量费。\r\n <br>(参与人数>=200人, 流量费用50元 )\r\n <br>(参与人数>=500人, 流量费用100元 )\r\n <br>(参与人数>=1000人,流量费用300元,300元为流量费用上限 )\r\n <br> <font color=\"#48a7e7\">友情提示: 流量费用采用后收费模式,活动举办中不受任何影响。</font>\r\n</label>');
-- ----------------------------
-- Table structure for jw_system_project
-- ----------------------------
DROP TABLE IF EXISTS `jw_system_project`;
CREATE TABLE `jw_system_project` (
`id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '主键',
`code` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '项目编码',
`name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '项目名称',
`logo_img` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT 'logo图',
`img` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '项目图片',
`discribe` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '活动描述',
`bjurl` varchar(300) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '编辑地址',
`hdurl` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '入口地址',
`gif_url` varchar(1000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT 'gif图片地址',
`hdzs_url` varchar(1000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '活动真实访问地址(最终)',
`sc_type` tinyint(10) NULL DEFAULT 1 COMMENT ' 默认值1 1授权素材/2本地素材',
`detail` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '详情',
`entrance` varchar(2000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '入口地址',
`type` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '类型',
`sort` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '排序',
`project_classify_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '项目分类ID',
`application_type` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '应用类型',
`creat_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人',
`creat_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`update_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改人',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `uniq_code`(`code`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '系统项目管理表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of jw_system_project
-- ----------------------------
INSERT INTO `jw_system_project` VALUES ('74233b68df734875a6c90f7d7c7d8a9d', 'goldeneggsVerification', '砸金蛋核销', '', '', '', '', '${domain}/linksucai/link.do?linkid=74233b68df734875a6c90f7d7c7d8a9d', '', 'goldeneggs/new/toVerificationreview.do?openid=${openid}&appid=${appid}', 2, NULL, '', '3', '', 'ff808081566df0a601566df0a69a0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `jw_system_project` VALUES ('ff8080815553071d015553071d420000', 'goldeneggs', '砸金蛋', 'http://static.h5huodong.com/upload/img/system/bfa16daa60a44a32806a66d8bf53cf14.jpg', 'http://static.h5huodong.com/upload/img/system/06b3ac21c033474bb9a596416de1064e.jpg', '砸金蛋是在庆典活动上非常受欢迎的一个项目。此项活动可以烘托氛围,提高人们的参与度。商家可在H5活动平台中通过简单配置奖品,中奖概率即可发布活动。用户参与活动后,商家可在后台查看抽奖和中奖记录。', 'goldeneggs/back/wxActGoldeneggs/toAdd.do', '${domain}/linksucai/link.do?linkid=ff8080815553071d015553071d420000', 'http://static.h5huodong.com/upload/img/system/06b3ac21c033474bb9a596416de1064e.jpg', 'goldeneggs/new/toGoldenegg.do?openid=${openid}&appid=${appid}', 1, '<p> 用户参与活动页面后,点击小锤即可进行抽奖活动,用户也可以查看自己的中奖记录和获奖名单</p><p><br/></p><p><img src=\"http://h5huodong.com/upload/20160822/60591471860388868.png\" style=\"width:50%;height:50%;float:left\"/><img src=\"http://h5huodong.com/upload/20160822/6911471860393889.png\" style=\"width:50%;height:50%;float:left\"/></p><p>\n </p><p>\n </p><p>\n </p><p>\n </p><p>\n </p><p>\n </p><p>\n </p>', 'https://w.url.cn/s/ASIFtSi', '1', '04', 'ff808081566df0a601566df0a69a0000', '', NULL, '2016-06-15 15:47:03', NULL, NULL);
-- ----------------------------
-- Table structure for jw_system_project_classify
-- ----------------------------
DROP TABLE IF EXISTS `jw_system_project_classify`;
CREATE TABLE `jw_system_project_classify` (
`id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '分类名称',
`base_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '父ID',
`base_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '父分类名称',
`sort` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '排序',
`creat_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`update_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '更新人名称',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '系统项目分类表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of jw_system_project_classify
-- ----------------------------
INSERT INTO `jw_system_project_classify` VALUES ('ff808081566df0a601566df0a69a0000', '抽奖类', '', '', '1', '', NULL, '');
INSERT INTO `jw_system_project_classify` VALUES ('ff808081566df0a601566df0d4a60001', '投票类', '', '', '2', '', NULL, '');
INSERT INTO `jw_system_project_classify` VALUES ('ff808081566df0a601566df150e50002', '红包类', '', '', '3', '', NULL, '');
INSERT INTO `jw_system_project_classify` VALUES ('ff808081566df0a601566df19a370003', '增粉类', '', '', '4', '', NULL, '');
INSERT INTO `jw_system_project_classify` VALUES ('ff808081566df0a601566df1d8dd0004', '互动类', '', '', '5', '', NULL, '');
INSERT INTO `jw_system_project_classify` VALUES ('ff808081566df0a601566df216f00005', '游戏类', '', '', '6', '', NULL, '');
INSERT INTO `jw_system_project_classify` VALUES ('ff808081566df0a601566df251230006', '其他类', '', '', '7', '', NULL, '');
INSERT INTO `jw_system_project_classify` VALUES ('ff808081566df0a601566df251230007', '商城类', NULL, NULL, '8', NULL, NULL, NULL);
-- ----------------------------
-- Table structure for jw_system_project_error_config
-- ----------------------------
DROP TABLE IF EXISTS `jw_system_project_error_config`;
CREATE TABLE `jw_system_project_error_config` (
`id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '主键',
`project_url` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '请求规则',
`name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '规则说明',
`redirect_url` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '跳转地址',
`creat_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人',
`creat_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`update_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改人',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
`jwid` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '微信公众号',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `uniq_projecturl`(`project_url`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '系统错误规则配置表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Table structure for jw_system_qrcode_record
-- ----------------------------
DROP TABLE IF EXISTS `jw_system_qrcode_record`;
CREATE TABLE `jw_system_qrcode_record` (
`id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`jwid` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`openid` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`scene_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '场景id',
`expire_seconds` int(11) NULL DEFAULT NULL COMMENT '有效时间秒',
`qrcode_url` varchar(1000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '图片地址',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '系统二维码记录表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Table structure for jw_system_register
-- ----------------------------
DROP TABLE IF EXISTS `jw_system_register`;
CREATE TABLE `jw_system_register` (
`id` varchar(36) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`email` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '注册邮箱',
`password` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '密码',
`authstring` varchar(36) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '验证串',
`registertime` datetime(0) NULL DEFAULT NULL COMMENT '注册时间',
`lastresendtime` datetime(0) NULL DEFAULT NULL COMMENT '重发时间',
`checksign` int(11) NULL DEFAULT NULL COMMENT '确认标志',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '系统用户注册表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Table structure for jw_system_role
-- ----------------------------
DROP TABLE IF EXISTS `jw_system_role`;
CREATE TABLE `jw_system_role` (
`id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '序号',
`role_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '' COMMENT '角色编码',
`role_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT '角色名称',
`crt_operator` varchar(64) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT '创建人',
`crt_dt` datetime(0) NULL DEFAULT NULL COMMENT '创建日期',
`role_typ` char(4) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT '角色种类',
`del_stat` char(2) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT '删除标志',
`creator` varchar(64) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT '建立者',
`editor` varchar(64) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT '编辑者',
`create_dt` timestamp(0) NULL DEFAULT NULL COMMENT '建立日期',
`edit_dt` timestamp(0) NULL DEFAULT NULL COMMENT '编辑日期',
`last_edit_dt` timestamp(0) NULL DEFAULT NULL COMMENT '上次修改日期',
`record_version` char(8) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT '版本号',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `uniq_roleid`(`role_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 3 CHARACTER SET = utf8 COLLATE = utf8_bin COMMENT = '系统角色表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of jw_system_role
-- ----------------------------
INSERT INTO `jw_system_role` VALUES (1, '00', '系统管理员', 'admin', NULL, NULL, '0', 'admin', NULL, '2015-12-23 02:34:05', '2015-12-23 02:34:05', '2015-12-23 02:34:05', NULL);
INSERT INTO `jw_system_role` VALUES (2, '01', '默认注册角色', NULL, NULL, NULL, '0', NULL, NULL, '2019-10-28 09:53:48', NULL, NULL, NULL);
-- ----------------------------
-- Table structure for jw_system_role_auth_rel
-- ----------------------------
DROP TABLE IF EXISTS `jw_system_role_auth_rel`;
CREATE TABLE `jw_system_role_auth_rel` (
`role_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '' COMMENT '角色编码',
`auth_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '' COMMENT '权限编码',
PRIMARY KEY (`role_id`, `auth_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_bin COMMENT = '系统角色权限关联表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of jw_system_role_auth_rel
-- ----------------------------
INSERT INTO `jw_system_role_auth_rel` VALUES ('00', '0082475aec3e103696ca5352a33c439c');
INSERT INTO `jw_system_role_auth_rel` VALUES ('00', '0fff2fc4ec3d103696ca5352a33c439c');
INSERT INTO `jw_system_role_auth_rel` VALUES ('00', '21');
INSERT INTO `jw_system_role_auth_rel` VALUES ('00', '2101');
INSERT INTO `jw_system_role_auth_rel` VALUES ('00', '210101');
INSERT INTO `jw_system_role_auth_rel` VALUES ('00', '210102');
INSERT INTO `jw_system_role_auth_rel` VALUES ('00', '2102');
INSERT INTO `jw_system_role_auth_rel` VALUES ('00', '210201');
INSERT INTO `jw_system_role_auth_rel` VALUES ('00', '210202');
INSERT INTO `jw_system_role_auth_rel` VALUES ('00', '210203');
INSERT INTO `jw_system_role_auth_rel` VALUES ('00', '210204');
INSERT INTO `jw_system_role_auth_rel` VALUES ('00', '2103');
INSERT INTO `jw_system_role_auth_rel` VALUES ('00', '210301');
INSERT INTO `jw_system_role_auth_rel` VALUES ('00', '210302');
INSERT INTO `jw_system_role_auth_rel` VALUES ('00', '2104');
INSERT INTO `jw_system_role_auth_rel` VALUES ('00', '2107');
INSERT INTO `jw_system_role_auth_rel` VALUES ('00', '2d8bf581ec3d103696ca5352a33c439c');
INSERT INTO `jw_system_role_auth_rel` VALUES ('00', '4350cb18af4511e894f83ca0672e915d');
INSERT INTO `jw_system_role_auth_rel` VALUES ('00', '4f7ad75eec3d103696ca5352a33c439c');
INSERT INTO `jw_system_role_auth_rel` VALUES ('00', '5a66da23af4511e894f83ca0672e915d');
INSERT INTO `jw_system_role_auth_rel` VALUES ('00', '5d2c6911ec3d103696ca5352a33c439c');
INSERT INTO `jw_system_role_auth_rel` VALUES ('00', '6abe0eb7af4511e894f83ca0672e915d');
INSERT INTO `jw_system_role_auth_rel` VALUES ('00', '70cbf443ec3d103696ca5352a33c439c');
INSERT INTO `jw_system_role_auth_rel` VALUES ('00', '92c06cd8ec3d103696ca5352a33c439c');
INSERT INTO `jw_system_role_auth_rel` VALUES ('00', '9d552546c3d011e8aa5852540003411a');
INSERT INTO `jw_system_role_auth_rel` VALUES ('00', 'a37d189dec3d103696ca5352a33c439c');
INSERT INTO `jw_system_role_auth_rel` VALUES ('00', 'aa735943eb4410368c0028dacd75e20f');
INSERT INTO `jw_system_role_auth_rel` VALUES ('00', 'b0b96e3dec3d103696ca5352a33c439c');
INSERT INTO `jw_system_role_auth_rel` VALUES ('00', 'd931c662ec3d103696ca5352a33c439c');
INSERT INTO `jw_system_role_auth_rel` VALUES ('00', 'e52e4dd9c31911e8b1833ca0672e915d');
INSERT INTO `jw_system_role_auth_rel` VALUES ('00', 'e9d7b3469add11e8b9ec3ca0672e915d');
INSERT INTO `jw_system_role_auth_rel` VALUES ('00', 'ee23607dec3d103696ca5352a33c439c');
INSERT INTO `jw_system_role_auth_rel` VALUES ('00', 'f3bcd2bb9ec511e883d43ca0672e915d');
INSERT INTO `jw_system_role_auth_rel` VALUES ('00', 'f5ab2658ec3c103696ca5352a33c439c');
-- ----------------------------
-- Table structure for jw_system_user
-- ----------------------------
DROP TABLE IF EXISTS `jw_system_user`;
CREATE TABLE `jw_system_user` (
`id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '序号',
`user_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT '' COMMENT '用户编码',
`user_name` varchar(32) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT '用户名称',
`password` varchar(64) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT '密码',
`user_erp_no` varchar(64) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT '用户ERP号',
`user_typ` char(2) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT '用户种类',
`ope_dep_id` char(12) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT '部门编码',
`ope_phone_num` varchar(20) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT '手机电话',
`email` varchar(64) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT '注册邮箱',
`ope_email_authinfo` varchar(32) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT '邮箱认证信息',
`user_icon` varchar(2000) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT '企业logo',
`ope_mobile_auth_ind` char(2) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT '手机是否认证',
`ope_email_auth_ind` char(2) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT '邮箱是否认证',
`id_num` char(20) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT '证件号码',
`id_typ` char(2) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT '证件种类',
`state` char(2) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT '状态',
`user_stat` varchar(20) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT '用户状态 NORMAL:正常;INVALID:无效',
`last_logn_dttm` datetime(0) NULL DEFAULT NULL COMMENT '上次登录日期',
`last_logn_ip` char(15) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT '上次登录IP',
`ope_passwd_ind` char(2) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT '是否保持密码',
`del_stat` char(2) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT '删除标志',
`creator` varchar(64) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT '建立者',
`editor` varchar(64) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT '编辑者',
`create_dt` timestamp(0) NULL DEFAULT NULL COMMENT '建立日期',
`edit_dt` timestamp(0) NULL DEFAULT NULL COMMENT '编辑日期',
`last_edit_dt` timestamp(0) NULL DEFAULT NULL COMMENT '上次修改日期',
`record_version` char(8) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT '版本号',
`openid` varchar(50) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL,
`agent_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT '代理商id',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `uniq_userid`(`user_id`) USING BTREE,
UNIQUE INDEX `unqi_openid`(`openid`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8 COLLATE = utf8_bin COMMENT = '系统用户表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of jw_system_user
-- ----------------------------
INSERT INTO `jw_system_user` VALUES (1, 'admin', '系统管理员', 'e10adc3949ba59abbe56e057f20f883e', NULL, NULL, '', NULL, NULL, NULL, 'content/site/charge/back/img/defaultLogo.jpg', NULL, NULL, NULL, NULL, NULL, 'NORMAL', NULL, NULL, NULL, NULL, NULL, NULL, '2015-12-23 06:16:10', NULL, NULL, NULL, NULL, NULL);
-- ----------------------------
-- Table structure for jw_system_user_authorized
-- ----------------------------
DROP TABLE IF EXISTS `jw_system_user_authorized`;
CREATE TABLE `jw_system_user_authorized` (
`id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`user_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '用户id',
`rel_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '商家姓名',
`rel_phone` varchar(11) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '商家手机号',
`authorized_grade` varchar(25) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '授权级别',
`review_status` varchar(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '审核状态 0未审核 1审核通过 2审核未通过',
`logo_set_end_date` date NULL DEFAULT NULL COMMENT 'logo个性化设置有效截止日期',
`logo_set_content` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '自定义广告位内容',
`logo_cancel_flag` int(11) NULL DEFAULT 0 COMMENT '活动底部logo取消状态位 0:不取消 1:取消',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `uniq_userId`(`user_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '系统用户授权表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of jw_system_user_authorized
-- ----------------------------
INSERT INTO `jw_system_user_authorized` VALUES ('ff808081586d04f601586d0589ab0001', 'admin', '13439364745', '13439364745', NULL, NULL, NULL, NULL, 0);
-- ----------------------------
-- Table structure for jw_system_user_jwid
-- ----------------------------
DROP TABLE IF EXISTS `jw_system_user_jwid`;
CREATE TABLE `jw_system_user_jwid` (
`id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`user_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '用户编码',
`jwid` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '公众号',
`default_flag` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '1为默认登录公共号',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `uniq`(`user_id`, `jwid`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '系统用户公众号关联表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of jw_system_user_jwid
-- ----------------------------
INSERT INTO `jw_system_user_jwid` VALUES ('402881e86eced91f016eced91f960000', 'admin', 'gh_20419b74f848', NULL);
-- ----------------------------
-- Table structure for jw_system_user_role_rel
-- ----------------------------
DROP TABLE IF EXISTS `jw_system_user_role_rel`;
CREATE TABLE `jw_system_user_role_rel` (
`user_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '' COMMENT '用户id',
`role_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '' COMMENT '角色id',
PRIMARY KEY (`user_id`, `role_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_bin COMMENT = '系统用户角色关联表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of jw_system_user_role_rel
-- ----------------------------
INSERT INTO `jw_system_user_role_rel` VALUES ('admin', '00');
-- ----------------------------
-- Table structure for jw_web_jwid
-- ----------------------------
DROP TABLE IF EXISTS `jw_web_jwid`;
CREATE TABLE `jw_web_jwid` (
`id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`jwid` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '公众号',
`name` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '名称',
`application_type` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '应用类型',
`qrcodeimg` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '微信二维码图片',
`create_by` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`weixin_number` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '微信号',
`weixin_appid` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '微信AppId',
`weixin_appsecret` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '微信AppSecret',
`account_type` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '公众号类型',
`auth_status` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否认证',
`access_token` varchar(2000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT 'Access_Token',
`token_gettime` datetime(0) NULL DEFAULT NULL COMMENT 'token获取的时间',
`apiticket` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT 'api凭证',
`apiticket_gettime` datetime(0) NULL DEFAULT NULL COMMENT 'apiticket获取时间',
`jsapiticket` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT 'jsapiticket',
`jsapiticket_gettime` datetime(0) NULL DEFAULT NULL COMMENT 'jsapiticket获取时间',
`auth_type` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '类型:1手动授权,2扫码授权',
`business_info` varchar(5000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '功能的开通状况:1代表已开通',
`func_info` varchar(5000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '公众号授权给开发者的权限集',
`nick_name` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '授权方昵称',
`headimgurl` varchar(1000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '授权方头像',
`authorization_info` varchar(5000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '授权信息',
`authorizer_refresh_token` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '刷新token',
`token` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '令牌',
`authorization_status` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '授权状态(1正常,2已取消)',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `uniq_jwid`(`jwid`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '系统公众号表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of jw_web_jwid
-- ----------------------------
INSERT INTO `jw_web_jwid` VALUES ('402881e86eced91f016eced91f990001', 'gh_20419b74f848', 'JEEWX捷微公众号', NULL, '', 'admin', '2019-12-04 10:59:26', 'guoju', 'wxc60a4d9cbac8092d', '???', '1', '1', '28_Ki3LDTidKILdcqAGUTa3try8W6XRPNIJg6pX00BKpYTXos4JnyyZNwbZBeEcKLsdRurNMB4MPGywUL-gEO4cDtsih_FOogmTBSEQY7UMjJhNePod2MmVzyf8n08cWuPcvdUrQKoKBbAY6o8YMNOjCEASTU', '2019-12-04 11:08:49', 'IpK_1T69hDhZkLQTlwsAXyjkZaTEYbX_kE6IkQ8b5WbESVsHfez7cvJfeaGKi_F1WX3uNw97S83Y-vRS5nCDKg', '2019-12-04 11:08:49', 'kgt8ON7yVITDhtdwci0qeeC2RWfOAQ1Sc_HMdjrzSlpr0P7O1i87YlYMu4usN0cLpdGET50qraLx7_jlVR7bZg', '2019-12-04 11:08:49', '1', NULL, NULL, NULL, NULL, NULL, NULL, 'jeewx', NULL);
-- ----------------------------
-- Table structure for weixin_autoresponse
-- ----------------------------
DROP TABLE IF EXISTS `weixin_autoresponse`;
CREATE TABLE `weixin_autoresponse` (
`ID` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`keyword` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '关键字',
`msg_type` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '消息类型(text:文本消息,news:图文消息,voice:音频消息,video:视频消息,image,图片消息)',
`template_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '模板ID',
`template_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '关联模板名称',
`JWID` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '微信ID',
`keyword_type` varchar(5) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '1' COMMENT '关键字类型1:全匹配 2:模糊匹配',
`create_by` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人登录名称',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`update_by` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改人登录名称',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
`ISWORK` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否启用',
PRIMARY KEY (`ID`) USING BTREE,
INDEX `normal_keyword`(`keyword`) USING BTREE,
INDEX `normal_tempId`(`template_id`) USING BTREE,
INDEX `normal_jwid`(`JWID`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '关键字表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Table structure for weixin_autoresponse_default
-- ----------------------------
DROP TABLE IF EXISTS `weixin_autoresponse_default`;
CREATE TABLE `weixin_autoresponse_default` (
`ID` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`JWID` varchar(40) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '微信ID',
`ISWORK` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否启用',
`MSG_TYPE` varchar(40) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '消息类型(text:文本消息,news:图文消息,voice:音频消息,video:视频消息,image,图片消息)',
`TEMPLATE_ID` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '模板ID',
`TEMPLATE_NAME` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '模板名称',
`msg_trigger_type` varchar(40) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '触发类型',
`create_by` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人登录名称',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`update_by` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改人登录名称',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
PRIMARY KEY (`ID`) USING BTREE,
INDEX `normal_jwid`(`JWID`) USING BTREE,
INDEX `normal_tempId`(`TEMPLATE_ID`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '未识别回复语' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Table structure for weixin_group_message_send_detail
-- ----------------------------
DROP TABLE IF EXISTS `weixin_group_message_send_detail`;
CREATE TABLE `weixin_group_message_send_detail` (
`id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '序号',
`send_log_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '群发日志id',
`send_jwid` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '发送公众号账号',
`send_jwid_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '发送公众号名称',
`msg_type` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '消息类型',
`template_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '群发模板id',
`template_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '模板名称',
`media_id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '群发消息的媒体id',
`send_status` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '群发的状态',
`send_time` datetime(0) NULL DEFAULT NULL COMMENT '发送时间',
`return_errcode` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '返回的错误码',
`return_errmsg` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '返回的错误信息',
`return_msg_id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '返回消息发送任务的id',
`return_msg_data_id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '返回消息的数据id',
`push_status` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '事件推送状态',
`push_totalCount` int(11) NULL DEFAULT NULL COMMENT '事件推送总粉丝数',
`push_filterCount` int(11) NULL DEFAULT NULL COMMENT '事件推送过滤后粉丝数',
`push_sendCount` int(11) NULL DEFAULT NULL COMMENT '事件推送发送成功粉丝数',
`push_errorCount` int(11) NULL DEFAULT NULL COMMENT '事件推送发送失败粉丝数',
PRIMARY KEY (`id`) USING BTREE,
INDEX `index_sendLogId`(`send_log_id`) USING BTREE,
INDEX `index_temlateId`(`template_id`) USING BTREE,
INDEX `idnex_returnMsgId`(`return_msg_id`) USING BTREE,
INDEX `index_sendJwid`(`send_jwid`) USING BTREE,
INDEX `index_returnMsgDataId`(`return_msg_data_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '群发日志明细表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Table structure for weixin_group_message_send_log
-- ----------------------------
DROP TABLE IF EXISTS `weixin_group_message_send_log`;
CREATE TABLE `weixin_group_message_send_log` (
`id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '序号',
`msg_type` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '消息类型',
`group_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '接受群组',
`is_to_all` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '全部人员',
`param` varchar(1000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '参与',
`jwid` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '公众号原始id',
`audit_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '审核人名称',
`audit_date` datetime(0) NULL DEFAULT NULL COMMENT '审核日期',
`audit_remark` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '审核意见',
`audit_status` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '审核状态:\'0\'待审核,\'1\'审核通过,\'2\'审核未通过',
`send_date` datetime(0) NULL DEFAULT NULL COMMENT '发送时间',
`send_status` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '发送状态',
`send_result` longtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '发送返回消息',
`send_jwid` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '发送的公众号原始id',
`send_jwid_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '公众号名称',
`template_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '模板id',
`send_type` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '群发方式:\'0\'立即发送,\'1\'定时发送',
`send_task_time` datetime(0) NULL DEFAULT NULL COMMENT '定时群发时间',
`tag_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '标签id',
`send_ignore_reprint` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '判定转载后是否继续群发 0:转载时停止群发 1:转载时继续群发',
`create_by` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '群发消息日志表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Table structure for weixin_gzuser
-- ----------------------------
DROP TABLE IF EXISTS `weixin_gzuser`;
CREATE TABLE `weixin_gzuser` (
`id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '序号',
`openid` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT 'openid',
`nickname` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '昵称',
`nickname_txt` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '过滤后昵称',
`bzname` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注名称',
`headimgurl` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '用户头像',
`sex` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '性别:\'1\':男性;\'2\':女性;\'0\':未知',
`subscribe` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否关注:\'0\':未关注;\'1\':关注',
`subscribe_time` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '关注时间',
`subscribe_scene` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '用户关注渠道来源',
`mobile` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '手机号',
`bind_status` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '绑定状态:\'N\':未绑定;\'Y\':已绑定;\'V\':绑定中',
`bind_time` datetime(0) NULL DEFAULT NULL COMMENT '绑定时间',
`tagid_list` varchar(1000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '标签id',
`province` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '省份',
`city` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '城市',
`country` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '地区',
`qr_scene` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '二维码扫码场景',
`qr_scene_str` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '二维码扫码常见描述',
`groupid` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '用户所在分组id',
`language` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '用户的语言,简体中文为zh_CN',
`unionid` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`jwid` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '公众号原始id',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `uniq_openid`(`openid`) USING BTREE,
INDEX `index_mobile`(`mobile`) USING BTREE,
INDEX `index_qrScene`(`qr_scene`) USING BTREE,
INDEX `index_jwid`(`jwid`) USING BTREE,
INDEX `index_bindTime`(`bind_time`) USING BTREE,
INDEX `index_tagidList`(`tagid_list`(255)) USING BTREE,
INDEX `index_createTime`(`create_time`) USING BTREE,
INDEX `index_subscribeTime`(`subscribe_time`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '粉丝表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of weixin_gzuser
-- ----------------------------
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee216a60002', 'o94BGv4SjAmC8taPsFIhDh4QPyAU', '5Z2g6JC955qE5bCP5YWU5a2Q', '坠落的小兔子', '', 'http://thirdwx.qlogo.cn/mmopen/ajNVdqHZLLBUsXhibPibnmAAibGkHHkbSG07ybw456d8BouSptfZN3SxDyNy7l8Jayfth9ruyUvnE9HQbEtdh4kJg/132', '1', '1', '2019-07-20 22:13:41', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, '2', '云南', '昆明', '中国', '0', '', '2', 'zh_CN', 'okA6AsyeQuu_joOZya2cH4ttTKDw', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee216af0003', 'o94BGvytgkluWPmHr0_xObDPcsxo', '5oiQ6b6Z', '成龙', '', 'http://thirdwx.qlogo.cn/mmopen/ajNVdqHZLLAfEsHGnicMVsiaRvozPwxoX7iaALaaMwB0xI9L4AZhyGBD2ia6cmu7iag2vQPXag3JyluicW92JjzV1coQ/132', '1', '1', '2016-04-29 16:59:54', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, '2', '福建', '福州', '中国', '0', '', '2', 'zh_CN', 'okA6As3UNPWxI_bgy7CISclfqZrQ', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee216b40004', 'o94BGvwYXBcxyvPt17Vg1Jrwuk9w', '5YOP5oiR6L+Z5qC355qE5Lq6', '像我这样的人', '', 'http://thirdwx.qlogo.cn/mmopen/h0OFV2pnnGenF3rnf5ml0cJ7JrMSMVIw5jxw7oclAVYc9CibxGY5iciaeFeBsHGnsiamKAJekBkSnogEU9vhcDGdbg/132', '1', '1', '2019-08-09 17:10:30', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, NULL, '北京', '东城', '中国', '0', '', '0', 'zh_CN', 'okA6As5xehKaa5k5LjwDrhU2Ecvg', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee216ba0005', 'o94BGv9RVVn_61IUt2OHrEpESyCc', 'ZWxlYQ==', 'elea', '', 'http://thirdwx.qlogo.cn/mmopen/PiajxSqBRaELb42l7FA8D35MAdSYxjPatnVOZTSkfT6PXqVBHiaGN9Oiava2GDgq7M3K5JnkjycEj9wfmUuZqialiag/132', '0', '1', '2016-12-03 13:19:58', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, '2', '', '', '', '0', '', '2', 'zh_CN', 'okA6As399UaZN7L2SUu8hT7cNRGo', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee216bf0006', 'o94BGv9XT6UvjUkpoMDwwFUZWttI', '5rC05biI5o+Q552j', '水师提督', '', 'http://thirdwx.qlogo.cn/mmopen/QsibiatXqLoZsOicPWStBruicDzlPwoyyedGoib1G7VlEP24hAnM5CkictmPbz1nnGm3xDDJv5mnwOCZVBsEcV5xWkDoek3be8T00W/132', '1', '1', '2017-08-13 00:23:48', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, '2', '江苏', '无锡', '中国', '0', '', '2', 'zh_CN', 'okA6As9dqI5nYr0z9EpwGLnHaq-M', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee216c50007', 'o94BGv9dw4ZI2RidQNZo3pCh4eL0', 'cXFz', 'qqs', '', 'http://thirdwx.qlogo.cn/mmopen/QsibiatXqLoZsOicPWStBruicKv2B0OSmXvscqNI9PnuV1EbmtNFsV1ZfWHU2WjdHDcGDftP1rhiaETYWjVsCzkJf1qnStd1s8O54/132', '1', '1', '2017-03-22 09:56:32', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, '2', '四川', '成都', '中国', '0', '', '2', 'zh_CN', 'okA6As6R33PLfCyTnX50ehslOq5g', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee216ca0008', 'o94BGv4eDSOGFdUjR8rhe3Qw_Eh4', '7oSQIEx1Y2t5', ' Lucky', '', 'http://thirdwx.qlogo.cn/mmopen/OibT1rC9XGZwad1L7t0ohXd4s6DQ6JnJvJic7hOrw4ibicyxluRJlmvN83L1h0EbKSLYmkOKxjEs2sPhZOYUmicLYOBnica3ica9k4O/132', '1', '1', '2016-05-05 09:59:29', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, '2', '湖北', '黄冈', '中国', '0', '', '2', 'zh_CN', 'okA6As5yQ127dNLpjhznsMNdWP-g', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee216d00009', 'o94BGvyakFRtaS501Lu6vj4gIVOU', '5bCP5bCP6I2J', '小小草', '', 'http://thirdwx.qlogo.cn/mmopen/PiajxSqBRaEIVamVrBF2SdV8dhLoWUngDS5ckiaeSOheUnWXV3tBYSOAsWickVtk4mEgiaLMElUOeVqG8CVXT4TBrg/132', '1', '1', '2016-11-24 16:18:25', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, '2', '内蒙古', '呼和浩特', '中国', '0', '', '2', 'zh_CN', 'okA6As4OowrUdaPyH6EOJNJyN_g4', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee216d5000a', 'o94BGv_yk8ew4-G4dVhaQMuu-Uks', '6Lev6L6555qE55+z5aS0', '路边的石头', '', 'http://thirdwx.qlogo.cn/mmopen/icFTnRoibgibpibxsZuiaYzWBkonqeVGj94LS23oia5yGzibiaBRYLWicXsaTib15LtnUCNibY9Iz4MWeibW6LrVMicoZfK0Dmg/132', '1', '1', '2016-01-17 11:47:32', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, '2', '北京', '朝阳', '中国', '0', '', '2', 'zh_CN', 'okA6Asz9fEU_LmWNOrVngUoBVw34', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee216dc000b', 'o94BGv7Zsw7mxTiCHoTTdFwYljYo', '5aSn55+z', '大石', '', 'http://thirdwx.qlogo.cn/mmopen/icFTnRoibgibp85K2345Xa1iayNY7T8Hia2PBpibRgJqtW0wYkmg1etHfpuK0NyUFR7FSEk8Ko7RRzuLjAfLyAMUJf8g/132', '1', '1', '2018-05-09 01:03:45', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, '2', '', '', '阿尔巴尼亚', '0', '', '2', 'zh_CN', 'okA6As-9BpvvipTh0SZVTng5Q50g', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee216e2000c', 'o94BGv_F30Hewy8kV0y2VHzsTKeM', '5qyn', '欧', '', 'http://thirdwx.qlogo.cn/mmopen/ajNVdqHZLLCb10WIQMp9hMiaGeIDb5icVlR3YngqbeWycPMQAs6TRgGrooDWLx5sicAXLGOrpJyUOCDTicEdAVmUNA/132', '1', '1', '2016-10-11 22:44:14', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '', '', '老挝', '0', '', '0', 'zh_CN', 'okA6As2We-GNIrnU9qr4myx0cZEw', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee216e7000d', 'o94BGv3IBHApQWHUG211Kc9dw8rs', '5YWI55Sf', '先生', '', 'http://thirdwx.qlogo.cn/mmopen/ajNVdqHZLLCuycibVrdDFK0r9cDAQXhCYdzayVnsXNia1J9WI02Zo4SDg3hAicez8PSyCqJNaiccibcwkTvDYhicibMGg/132', '1', '1', '2016-09-28 11:38:44', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '浙江', '杭州', '中国', '0', '', '0', 'zh_CN', 'okA6Asw5gKDJXZWnzH_c1AO9yfTg', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee216ec000e', 'o94BGv1XqlQSj-_rQxLfwfmT62jE', 'TXIuWQ==', 'Mr.Y', '', 'http://thirdwx.qlogo.cn/mmopen/ajNVdqHZLLCH97xHwOmeFvNw2EfQmm7l9DRsVZYqUqGS4Y73chvnDBNVic6LQ3MMhJXh9ByriaQSbFiaLGqv1dcNA/132', '1', '1', '2016-03-30 14:06:17', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '辽宁', '大连', '中国', '0', '', '0', 'zh_CN', 'okA6As-AGQ5gq9hQAh0kkBtE5KjM', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee216f2000f', 'o94BGvzNcKeq2H2vPUax5OFNHmsg', '5YuH', '勇', '', 'http://thirdwx.qlogo.cn/mmopen/icFTnRoibgibpichxSpcAuZd3Aemp1OibLw0HM3RxtKmcpEEUlsHsLcT5rqyCXrVyjg4oz8gXHemcgttJ1ibgaIXee6Q/132', '1', '1', '2017-02-10 13:52:15', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '福建', '漳州', '中国', '0', '', '0', 'zh_CN', 'okA6As74_Zxi-5JR_wVpR3Dj5pIk', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee216f80010', 'o94BGv_RC7iqOJuo-sd9ewhv6AHE', '6Jab56S8', '薛礼', '', 'http://thirdwx.qlogo.cn/mmopen/ajNVdqHZLLA5wLTVNkonaS27oRPPicrmAOpeAIrP0rd6JNYEHb26icaCv1sbIyqAUEYubA23vdJLaQGuEnibP0XBQ/132', '1', '1', '2016-10-11 07:37:55', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '', '', '中国', '0', '', '0', 'zh_CN', 'okA6AswUzbSFFKpMwFq7Ro4XtjyA', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee216fd0011', 'o94BGv66-LpI45yLb0CMCR-YGYJE', '6Ze1', '闵', '', 'http://thirdwx.qlogo.cn/mmopen/Q3auHgzwzM5H8cJADegN9wk0yLCor93SxLv3xVjnQ7ABiaMv1OuC2H4O5BEJWhRQLbjtbU1eHvzI8TWeV7UVBiaw/132', '1', '1', '2016-01-07 17:10:13', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '山东', '济南', '中国', '0', '', '0', 'zh_CN', 'okA6As4YlfiFSO6o0N9TuAYD4nkI', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee217030012', 'o94BGvwlLnJyg6O-qdwisKrbl57s', '5LqU5pyo', '五木', '', 'http://thirdwx.qlogo.cn/mmopen/ajNVdqHZLLDicNyncRYZEibaiczQnBSlu7TR5jvwWm46fSKlUljAibtyk4qXhQianCibUGCiasOcgIwFnoqMSolicObwEA/132', '1', '1', '2016-02-27 16:32:40', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '浙江', '杭州', '中国', '0', '', '0', 'zh_CN', 'okA6Aswcqkq20_GhGTm9exTwcRQg', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee217090013', 'o94BGv36ztRxrdEGA8EaEETCVJaA', 'c2V2ZW4gIGhhbmQ=', 'seven hand', '', 'http://thirdwx.qlogo.cn/mmopen/ajNVdqHZLLBTp21uqoS9syzyZoQ3HXmjiceWZM5SB6P42CSpeHhzPaOXwLHXpvGfMn7ichlSR4NQTl3pPSfzjNWQ/132', '1', '1', '2016-10-18 15:21:51', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '上海', '嘉定', '中国', '0', '', '0', 'zh_CN', 'okA6AsxXHkL5p_Y_1Sn9woPfSYfQ', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee2170e0014', 'o94BGv8zQsMHIa8uxrvPldttUfpM', 'S2VlLlo=', 'Kee.Z', '', 'http://thirdwx.qlogo.cn/mmopen/PiajxSqBRaEK6KtfHvAeHnia9UIQlU5DxeZJ5cGhQLias3QIlcX4nEbGIp0cjAa2gCAbfWOKtJVTdiathcPmJVXorA/132', '1', '1', '2016-06-15 15:29:02', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '河南', '郑州', '中国', '0', '', '0', 'zh_CN', 'okA6Asy4KEK9mQXw8PEk7cN96mWI', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee217130015', 'o94BGv_WX2agdgN9byGn3zGRNLhY', '6JC96LeR', '落跑', '', 'http://thirdwx.qlogo.cn/mmopen/ajNVdqHZLLDvtciahuYXwXpqYCT5eibajwErEaTWDtveIuVZ4efuBMEj5enNnRjXcQiaDyocoHf8Gc9uZRqG3cysA/132', '1', '1', '2017-02-27 16:37:02', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '', '', '阿尔及利亚', '0', '', '0', 'zh_CN', 'okA6As0mblSxFdajRp79Zmkd07aE', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee217180016', 'o94BGv-wD016tL4rz4RZTK5WBxT8', 'TOOAgQ==', 'L、', '', 'http://thirdwx.qlogo.cn/mmopen/icFTnRoibgibpicwn8oNU9zzwp9rXHQPnH6PicmOoCibdpQVLlNAsxzu80ZWL8RDEYuvYOmRf6QUQSqWARwVdiaTZLsfg/132', '1', '1', '2017-12-19 17:06:18', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, NULL, '安徽', '蚌埠', '中国', '0', '', '0', 'zh_CN', 'okA6As4eHRv10set1IHwKL1JEXpM', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee2171d0017', 'o94BGv4cFL8pLHiFz8gUlCjw4qx4', 'Wng=', 'Zx', '', 'http://thirdwx.qlogo.cn/mmopen/Q3auHgzwzM59nRIWTtFU7fiaCib1FyHLUA8DScfl0owVFF3iatamboMibu40iaFlTugicrLyTv9CxRUsQ7S4a9l5JmjZqRVTIiaYyDgCSeSb8bwjmA/132', '1', '1', '2019-11-08 14:50:11', 'ADD_SCENE_QR_CODE', NULL, NULL, NULL, NULL, '河南', '焦作', '中国', '0', '', '0', 'zh_CN', 'okA6As5qcUVNgnSv0CMOgeKvNnDg', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee217210018', 'o94BGv82A-kvXV5ra2Te_oEpXKu8', 'Y2hlbmVjb25vbWljcw==', 'cheneconomics', '', 'http://thirdwx.qlogo.cn/mmopen/icFTnRoibgibp8eJRUzRN6MicgnulwAh5LNxrmoIm1VhJ6Um9xAA6L4O6csVkUoEcB6EJo6ibqZyiah42oPS50OhK8oQ/132', '1', '1', '2016-10-31 20:59:09', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '广东', '深圳', '中国', '0', '', '0', 'zh_CN', 'okA6As2ymi4QV2DgZmAX2uN-WaCY', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee217260019', 'o94BGvzAWQTVeTMQ7jUgzRmbFIhw', '6ZmI5a+S5Yaw', '陈寒冰', '', 'http://thirdwx.qlogo.cn/mmopen/ajNVdqHZLLB8yibJk7pXZno6H3uXoibOWcYkLyDvs9Pemrkm0VUCqMxhkVlZvLSOB2iaV9JO0HibIBhpcIhuiaa141Q/132', '1', '1', '2016-02-26 09:49:12', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '广东', '广州', '中国', '0', '', '0', 'zh_CN', 'okA6As3dHhYNLoO7ae9soamvBFmE', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee2172a001a', 'o94BGv_yT34xOoJgU6OkRzsS1MAM', '5LiA', '一', '', 'http://thirdwx.qlogo.cn/mmopen/OibT1rC9XGZwad1L7t0ohXabxKStcGockUm7ZTibNliaNaeicO3ZoicEu4EbhSp0t7furxg6VFmJZhJhqOGxwZicrMFOr2ACLONUH0/132', '1', '1', '2017-08-02 11:26:48', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, NULL, '云南', '昆明', '中国', '0', '', '0', 'zh_CN', 'okA6As7pL5LjeXK7FMZCXHW_UGEY', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee2172f001b', 'o94BGv5BDeZOCnDX2heiJwFLb2G4', '6Zu36L6+', '雷达', '', 'http://thirdwx.qlogo.cn/mmopen/ajNVdqHZLLB7OMY1cORyaHpDKNB03fZbeibA4vqllbtM7ARBuKooY6gby08F6icHQ0ia94QhOg78rRxeNUSeJ0ODw/132', '1', '1', '2019-09-04 18:51:06', 'ADD_SCENE_QR_CODE', NULL, NULL, NULL, '171', '北京', '丰台', '中国', '0', '', '171', 'zh_CN', 'okA6As0K35VbHbc-Cc77RYVW7Gxs', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee21734001c', 'o94BGvyi7RX-8Pgjz9BWQ-m1DJlo', '5Luw5pyb5pif56m6', '仰望星空', '', 'http://thirdwx.qlogo.cn/mmopen/OibT1rC9XGZziaMWuUgokvWLCj1vw3vYccGwonfS9gic3s8GjQg2DoKXDfyu5TEhicVn1PQnic34emdOd37aOZGSqxQ/132', '1', '1', '2016-05-16 10:44:37', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '维也纳', '', '奥地利', '0', '', '0', 'zh_CN', 'okA6As9QhKrVUtQR1oKeWZYPccVI', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee2173a001d', 'o94BGv-g_kapFR4BZZ1SNnsKE9ac', '5Y+M5a6H', '双宇', '', 'http://thirdwx.qlogo.cn/mmopen/Q3auHgzwzM59nRIWTtFU7fiaCib1FyHLUARMl4jicvfc97SblWz61kEfBB6u39e0p5IvpeouO2qzxBvd0jDCss4arwoLAynlb5eskyTZTOdFf4/132', '1', '1', '2017-08-25 17:13:04', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, NULL, '山东', '临沂', '中国', '0', '', '0', 'zh_CN', 'okA6As--zpjfD5cK1vskVi5CKbkU', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee2173f001e', 'o94BGv6eDVjGwKFOt4IFpkKfj5ic', '5pmT5q+F', '晓毅', '', 'http://thirdwx.qlogo.cn/mmopen/Q3auHgzwzM6iaMcoqNKv6DUaYKhznlne1OmvTa2sib0RnfnZ1tEOLKXdQHibJiaPE8u6nJZmJQEibiaNMPgjgfXcdUqA/132', '1', '1', '2016-01-10 23:06:23', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '上海', '浦东新区', '中国', '0', '', '0', 'zh_CN', 'okA6As2zOHEJOWCgSfm7s8vQnpQQ', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee21744001f', 'o94BGvxFAEuogHOOoDOZo--6yuGs', '5bCP5byg', '小张', '', 'http://thirdwx.qlogo.cn/mmopen/PiajxSqBRaEJR8pQbWpLC2cWiajt4FBR0jA3z9V1qgU6uwnr4MCaVicMFhWBdCWncA1HFdcLh7re1yMw0iaEaibCxSg/132', '1', '1', '2016-08-28 00:32:11', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '北京', '通州', '中国', '0', '', '0', 'zh_CN', 'okA6As0f8TI9hniPxKWtJeSYZJms', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee2174c0020', 'o94BGv75fTgonX9zB6pee5uEJJhc', '5q+b5b2s5b2s', '毛彬彬', '', 'http://thirdwx.qlogo.cn/mmopen/PiajxSqBRaEKmaN1ZA0iaCwLSRZP11IC5qEx7OtZlJdeOgunNa4PC5lCsq6x3oh0jPH5o81hcdqA70ASTIw1N8EQ/132', '1', '1', '2016-11-16 15:24:32', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '辽宁', '沈阳', '中国', '0', '', '0', 'zh_CN', 'okA6As1R4XGOrduMEW8Mg71JttQo', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee217530021', 'o94BGv48AuLkz8KjKTL6iUMFMQho', '57qi6KKW', '红袖', '', 'http://thirdwx.qlogo.cn/mmopen/icFTnRoibgibpibdyTn3PjKH7m8icNNCU4LlSz6icjI4Yzz3q1WZLBXBo7cxaG1F2bqiaTia4Nwo26De2POucDre0uehyg/132', '2', '1', '2018-08-27 14:04:52', 'ADD_SCENE_QR_CODE', NULL, NULL, NULL, NULL, '辽宁', '沈阳', '中国', '1', '', '0', 'zh_CN', 'okA6As2m9bXPwLrUfjOGguFdbj7g', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee2175b0022', 'o94BGv9tBAKZpk2V9N59zXGIHXvw', '56em', '秦', '', 'http://thirdwx.qlogo.cn/mmopen/PiajxSqBRaEKZBf9DLjA1licT5UKqfVpPnPFN0xbc08AqtElRl59e3DJMDS8r01tLk0TeLca8s6oW8Ha89RUdNicA/132', '1', '1', '2018-11-06 13:04:21', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, '170', '北京', '朝阳', '中国', '0', '', '170', 'zh_CN', 'okA6As58Ba1Tt2Dhbsfbi6O5cBEg', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee217630023', 'o94BGv40UOwi8kcrz8hjFpJumgJc', 'SkVGRuWzsA==', 'JEFF峰', '', 'http://thirdwx.qlogo.cn/mmopen/PiajxSqBRaEIsyDOqW4cZlRh1uNh9mVriahAqCtTOWATGt1XjVpfrZotJfBWP7kYibP7Dosh4DudtR0icETnoeLGzg/132', '1', '1', '2018-09-18 12:02:12', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, NULL, '湖北', '襄阳', '中国', '0', '', '0', 'zh_CN', 'okA6As1BU3yuQIUQSffP2zuN1k-E', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee2176a0024', 'o94BGv4wkjYm7GV6tnh1IHC_F0Z4', 'c2NvdHQ=', 'scott', '', 'http://thirdwx.qlogo.cn/mmopen/PiajxSqBRaELtWjEVs7OZbAS2wubGzImfgS9ype9fbQTQ3Dfc1SfLc2yb87ibDawyd8DbuBNhXfYRD0pNE7UJ4kQ/132', '1', '1', '2019-06-18 10:21:24', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, '170', '北京', '朝阳', '中国', '0', '', '170', 'zh_CN', 'okA6As7e5JVQmzU_8P3IxO4we7pc', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee2176f0025', 'o94BGv6xUY08a3a0awPXq6TFmM-4', '54Sm546J5466', '焦玉玺', '', 'http://thirdwx.qlogo.cn/mmopen/PiajxSqBRaEI9Chwj4Fx5sflLaSBiazTXw9ADdswxJcuiahxiaHVYqZcdJvGwibq4Wia5mCgeo15No4wOpmloxsics6tg/132', '1', '1', '2016-02-25 14:37:50', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '山东', '烟台', '中国', '0', '', '0', 'zh_CN', 'okA6As9-7QurwaFSnS95t6su_cXI', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee217770026', 'o94BGv1wrwubXEGzEUAR-5_eimnQ', '6YKj5Liq6LCBwrLCusK54oG54oG6', '那个谁²º¹⁹⁺', '', 'http://thirdwx.qlogo.cn/mmopen/PiajxSqBRaEIicaTxRZMic2rHOWNBHuWwGvEJJ0S5p2O1Um5XSfbdTfKIDoIza6dLvKq1PsXmaicIiawAUCmbhnvcicQ/132', '1', '1', '2016-08-18 14:45:55', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '', '', 'BA', '0', '', '0', 'zh_CN', 'okA6As6ZR1wvNBdGgcXbZzoC3MUM', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee2177c0027', 'o94BGv4lqEWXOmqtqj_KFqrb5Hmg', '5L2z57+M', '佳翌', '', 'http://thirdwx.qlogo.cn/mmopen/icFTnRoibgibp9nQZQIPuCNwqrSeWVHzhlg2MWiaTUpQycXGef6GcCDQwEqszJ7SkpDhwwicolZKcRpQkxeUa41E3HQ/132', '1', '1', '2019-10-31 09:54:23', 'ADD_SCENE_QR_CODE', NULL, NULL, NULL, NULL, '', '', '中国', '0', '', '0', 'zh_CN', 'okA6As8yH3bt-k1qEBkloaaR0sBA', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee217810028', 'o94BGvz2UMH0uHfMAW0wnfeBM3nk', '546L56mG6YCa', '王穆通', '', 'http://thirdwx.qlogo.cn/mmopen/Q3auHgzwzM6aroR62RyfXSwwSy8qob0Yl7av6T4aZjXXdYWicuRibsK1oaZnyZY0Xdy6DVqfwCjZbUCCITAM6aSQ/132', '0', '1', '2016-10-14 15:13:49', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '福建', '厦门', '中国', '0', '', '0', 'zh_CN', 'okA6Asxc2bZjIuo-8lEe15jUocC0', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee217860029', 'o94BGv1YWdMORfROLL35Nfhxc3Jw', '5ZOy5bCP6bm/', '哲小鹿', '', 'http://thirdwx.qlogo.cn/mmopen/Q3auHgzwzM4ME5DjxpTicicicerFH7KZgAp2wTxCRiaI0FZgbflOjSetWZW6FVCf8se3Pib2noxvxicyibx9yVXEl5CcA/132', '1', '1', '2016-07-05 18:05:08', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '', '', '开曼群岛', '0', '', '0', 'zh_CN', 'okA6AszJlSoQUQc2P8jdHkLKd5iQ', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee2178a002a', 'o94BGv4GIXq_qDLLVm8wuiZKsllk', 'Li4u', '...', '', 'http://thirdwx.qlogo.cn/mmopen/Q3auHgzwzM4Qtehsq0UVoiazxzoO3XxXHqt3efMnR0yVq8IPwd4JqxcuOicVHXCPTicPUhGIyHN4cZdIjhqT1I79A/132', '1', '1', '2017-08-31 11:00:22', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, NULL, '湖北', '潜江', '中国', '0', '', '0', 'zh_CN', 'okA6As6lhekr5WxnbhSStPoDjZ-8', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee2178f002b', 'o94BGv20_M6q2axZCppAiAlzqXGE', '5bCP6buR', '小黑', '', 'http://thirdwx.qlogo.cn/mmopen/icFTnRoibgibpib3IsTWGvlUxgNhRnUvTpH7smrXQ6Pr5icMBwCwiaKiaTVzkPqzudBgLrGqypzibdJRRxoTEISgnDVq7A/132', '1', '1', '2017-06-27 14:17:25', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, NULL, '山西', '阳泉', '中国', '0', '', '0', 'zh_CN', 'okA6As-tLR6NeslyfdlVNZ_0ZhYw', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee21793002c', 'o94BGvzrYFO2XZf9bhFyk9mg1ZME', 'THVja2x5', 'Luckly', '', 'http://thirdwx.qlogo.cn/mmopen/PiajxSqBRaEKLaYKMafEyBqfu27fVEp8gI9GicOHyKLKNEZ1jCd7MMQs5ibLJB4hia9Iab8sLicG6CFBskS1IX7uOEg/132', '1', '1', '2019-11-11 22:40:53', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, NULL, '福建', '福州', '中国', '0', '', '0', 'zh_CN', 'okA6As8Q-a9QrzSD3Ai3TG1yXark', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee21799002d', 'o94BGvy6s1Ru1gBuIUp_cCblYKHQ', '5pyo5qOJ', '木棉', '', 'http://thirdwx.qlogo.cn/mmopen/Q3auHgzwzM6AnicJS6vZtQLicpIW7PSUq5Z6uERPCAdZGXGiagTcnn7XEj3GCDRWXibKuYGP1QqJ7Cibia3icVgIPIgqQ/132', '2', '1', '2018-05-02 14:16:54', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, NULL, '河南', '郑州', '中国', '0', '', '0', 'zh_CN', 'okA6As8T-F6zwiYO0dz2DK5_kp_0', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee2179e002e', 'o94BGv_oyevMeXkKuLSrsCd8V9_o', 'b29v', 'ooo', '', 'http://thirdwx.qlogo.cn/mmopen/ajNVdqHZLLCuicHd2MrNjfkGOL9E3UNpxTXichdkteIAtVeicTsZRBSFWEMAsbCOydoqAUicEAL0oXVWJp2A88pmdw/132', '1', '1', '2019-07-22 12:27:15', 'ADD_SCENE_QR_CODE', NULL, NULL, NULL, NULL, '江苏', '苏州', '中国', '100001', '', '0', 'zh_CN', 'okA6As1yfoJiFfjPr-lO_gHa8nlw', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee217a4002f', 'o94BGv41T52pRk8h6oGhK0NOremI', '5Yqz5pav4paC6I2j', '劳斯▂荣', '', 'http://thirdwx.qlogo.cn/mmopen/icFTnRoibgibp8NruK8HKVeKBUicW48TDn9aGvvyIicQSy8wtrlMVGNRjrhHV2RtcADcHBaIFHllfhO39FsNiayziaLKA/132', '1', '1', '2017-02-13 00:05:55', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '广东', '东莞', '中国', '0', '', '0', 'zh_CN', 'okA6Asx5RJrNWHD9HHPeHzcgfjZM', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee217a90030', 'o94BGvxPqLz9KjKGfzbFdp27NNqw', '77yIKyAr77yJ', '(+ +)', '', 'http://thirdwx.qlogo.cn/mmopen/QsibiatXqLoZtFhwa8JQPGqrAPQu4gcvoCjLFUpIiapj7MuByzick06FCHsvRpWR8RtwR0fY1icrAQbN0TicrzLj1kaR0eWGBUOKVI/132', '0', '1', '2016-05-06 12:39:42', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '广东', '广州', '中国', '0', '', '0', 'zh_CN', 'okA6As1GYUqPZb5c2QQaA6mU9N24', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee217ae0031', 'o94BGv9i-qDGHrhkT3YFnggmABlg', '5a2k54u8', '孤狼', '', 'http://thirdwx.qlogo.cn/mmopen/OibT1rC9XGZzDqgX7IO1cMqcl1nBbQPjSibLXyL6AaoQSAVyKKPDrKVrr1XRwxKe0Q8YselpnfsicPuOfUrFvmI7Q/132', '1', '1', '2016-03-06 16:08:44', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '肯考迪娅', '', '阿根廷', '0', '', '0', 'zh_CN', 'okA6Asw-4NFln3HRM1O8-gnsKA-4', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee217b30032', 'o94BGvzTleV_aSCijyAkdKi2rK8o', '5pyx5pet6Zye', '朱旭霞', '', 'http://thirdwx.qlogo.cn/mmopen/ajNVdqHZLLD29WibiaoyLdic4OVibY5JEnnrFXiaWI4ePmjKzMofXCN1yzLuT51cO50nbNk1bNlKHLh2CORYweGj5BQ/132', '1', '1', '2018-03-23 16:28:23', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, NULL, '湖南', '长沙', '中国', '0', '', '0', 'zh_CN', 'okA6AsydHvjkBf9zDGzns8ZCUiW8', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee217b80033', 'o94BGvwUej0aGESrrXkiKoiUZT1E', '5bCP5Zi/5ZGm', '小嘿呦', '', 'http://thirdwx.qlogo.cn/mmopen/PiajxSqBRaEKdbH3ZLGzjC8VGiaEHrfbqGUaNRRc8Jmoly1b4QDzgzVHQWoCoGMibshiaSEZAM6Tx8Q1FwCsicTEWzg/132', '1', '1', '2016-10-18 12:47:52', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '北京', '海淀', '中国', '0', '', '0', 'zh_CN', 'okA6As6jWswOdRRPW0E7arWTEINU', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee217bd0034', 'o94BGv9sRfSam9QJp1RpfXC-BaAA', 'QmVu', 'Ben', '', 'http://thirdwx.qlogo.cn/mmopen/ajNVdqHZLLAtHPWYAetrx2xycIWHxT0I73ibhyiahribAaROriaU25uT5Fa5zNmysbia17vySQEgcuDCibhVgdb1J5zA/132', '0', '1', '2018-06-07 02:09:17', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, NULL, '', '', '', '0', '', '0', 'zh_CN', 'okA6As44TbrZp6tBTQj7zZoLLTEA', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee217c20035', 'o94BGv9X9HA6LCtF4rU4N8fduoEg', 'c3Vu', 'sun', '', 'http://thirdwx.qlogo.cn/mmopen/h0OFV2pnnGfUvBBiahic6zAA6Kw0Vib44k5u5ypibraWKvqLPGD2gVxtKjTthHqR3d693y7PELhnGicBbG9YX2TLqibuaK35SPurgm/132', '1', '1', '2018-08-06 08:47:10', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, NULL, '', '', '希腊', '0', '', '0', 'zh_CN', 'okA6As_t7GPKlOvEpIfO6q929FRE', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee217c70036', 'o94BGvxuqr2tiJrBG26AisFkTDYc', 'Y2hlbmd3cPCfjYA=', 'chengwp', '', 'http://thirdwx.qlogo.cn/mmopen/QsibiatXqLoZtFhwa8JQPGqtmHkDZia6qSWkjXabd61hcF9PUbicksdUY8Z54LO3zG7SiaUHWB5UNGfpqfdaWdUVXJmJ1NuTkvQIj/132', '1', '1', '2017-10-17 15:04:47', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, NULL, '广东', '广州', '中国', '0', '', '0', 'zh_CN', 'okA6AszV-XKKiQQCZNAB0Kmp2qtw', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee217cd0037', 'o94BGv1Q0e4Oik3emRILhVvk4aPE', '6ZmI5rOi77yI5ZG95aW955qE6aOO5p2l77yJ', '陈波(命好的风来)', '', 'http://thirdwx.qlogo.cn/mmopen/ajNVdqHZLLA70ZfK520zR2z6TEkVjYjW2zdibahwSiamIbuqPR2oKnmPyfm327G3q8RDkQ7cM0Hria4p9Tcagwxyg/132', '1', '1', '2019-07-16 19:16:43', 'ADD_SCENE_QR_CODE', NULL, NULL, NULL, NULL, '湖南', '长沙', '中国', '100001', '', '0', 'zh_CN', 'okA6As8FY1B0yQqt4ssTltWZTlpo', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee217d20038', 'o94BGv5qghbR47UC4qH-Ku-AiIiA', '6ZOt', '铭', '', 'http://thirdwx.qlogo.cn/mmopen/h0OFV2pnnGcCX6WWTwDxG3FCgsfG0rgIfNiaVtoGyRSYDib2icB8n8b4vzwSbU4R5OnbTuPXonicZvPwypEqcy3nZQ/132', '2', '1', '2016-03-07 09:22:13', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '河南', '郑州', '中国', '0', '', '0', 'zh_CN', 'okA6AsxpdPsK89pc7ErIjeiwKrc4', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee217d70039', 'o94BGv34oXsgj3dXGPicOJ1Fa7jk', 'cGVyZmVjdA==', 'perfect', '', 'http://thirdwx.qlogo.cn/mmopen/PiajxSqBRaEKkoHia6vUAQm9ia3gNgBy4m2KkXfwZ7oW1vdL8Q6O1dd1wLYmMeGa4uGF2MukkGfTD9Jwj5zb2Pr4g/132', '1', '1', '2017-03-21 14:45:12', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '湖北', '咸宁', '中国', '0', '', '0', 'zh_CN', 'okA6As5lMEpiclMrMdK-rC5j6Cfo', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee217dc003a', 'o94BGv74MI-lKsjBjzK1G5t9rIAk', 'VGFsaw==', 'Talk', '', 'http://thirdwx.qlogo.cn/mmopen/QsibiatXqLoZtFhwa8JQPGqgx9I47orxLjyUtnk4K1zjGZYrksydU5OsO9LHZaZlSIiaFiabgmhtDd6XO60FkuvIrGlUaFCaUFR9/132', '2', '1', '2019-11-11 12:02:25', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, NULL, '', '', '中国', '0', '', '0', 'zh_CN', 'okA6Asw8LRTUp-35KQGHfmXodagE', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee217e1003b', 'o94BGv4nA660Ohys0EjLZlkKcdj0', '5aSp5Y+w', '天台', '', 'http://thirdwx.qlogo.cn/mmopen/icFTnRoibgibpic5GDhoJ4DQIGR3aMyKmLwFIJDn4icicfRgPw69S5micjlf8beHpCPKxMgnkZHFB9icx6U0MEOSY6I6sZLHucBPricU2/132', '1', '1', '2018-07-21 11:59:11', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, NULL, '福建', '厦门', '中国', '0', '', '0', 'zh_CN', 'okA6AsxYN4d5SgEgpn-lr-Vz-mh8', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee217e5003c', 'o94BGv49hwe6a5acjP0f65YFBpGM', 'dXBkYXRpbmc=', 'updating', '', 'http://thirdwx.qlogo.cn/mmopen/QsibiatXqLoZsZqgRAhRygATT5JQg0C3rxIpflPXbLBia7icNDCeoo1cctfD8fAMzaYrOzyKaLgwAN2u0NvdicEUkuPIiaOClqrMPw/132', '1', '1', '2017-10-19 17:21:35', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, NULL, '北京', '大兴', '中国', '0', '', '0', 'zh_CN', 'okA6As5RMkCOK1Y2cVcWLH24E1WU', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee217ea003d', 'o94BGv_RRKBggkvTpGcGCfgHCIhs', '6ZKx5Lm+5pif', '钱乾星', '', 'http://thirdwx.qlogo.cn/mmopen/QsibiatXqLoZsZqgRAhRygAcOn2wG5h8U0ORTnVFmg81mMAhFDxNwmazwVUsAmEzZgKzvWKHoGcHCRaovic0Y1Ev4hRwwyGYyMW/132', '1', '1', '2016-01-20 17:48:30', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '河南', '郑州', '中国', '0', '', '0', 'zh_CN', 'okA6As9SbPYbGqTAuH0grWlUOd5w', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee217ee003e', 'o94BGvx-cxJ_6pR_HyUOpjMQKdpM', '5ZCV5Li55Li5', '吕丹丹', '', 'http://thirdwx.qlogo.cn/mmopen/OibT1rC9XGZxqqZpFIeVWnnHz8VwM1Fy1oI44WNn0ru65bAkb4NELlUTsCWC0ziayeHbDpXZY8ic8OY0PTyYzaRyiaD4tWpQFUI3/132', '2', '1', '2019-03-04 15:11:45', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, '164,165', '', '', '中国', '0', '', '164', 'zh_CN', 'okA6AswgWDMpjlk8aue9eQb8JLhc', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee217f2003f', 'o94BGvzO4GbspljeYS60HvLBLAp8', 'QWRtaXJl', 'Admire', '', 'http://thirdwx.qlogo.cn/mmopen/icFTnRoibgibp96jMr70Dee2B5Qaw0aic4z7nmErlvnkAcvgWO1FUeKuiaY5JFmZpGDMFjBd7vlibLjwA6pplX1Q9K500rc97QqBLP/132', '2', '1', '2019-10-31 10:04:42', 'ADD_SCENE_QR_CODE', NULL, NULL, NULL, NULL, '陕西', '咸阳', '中国', '0', '', '0', 'zh_CN', 'okA6As_khskkMb1nDWLB3XN1GKjM', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee217f70040', 'o94BGv-Ltxg3WIeT23uGHAIePDvA', '6L275o+P5reh5YaZ55qE5Lyk772e', '轻描淡写的伤~', '', 'http://thirdwx.qlogo.cn/mmopen/ajNVdqHZLLD0qXK0GB8W90iciahACJHYaIkqyFChdzia3hKhnZ8AcmA85eHcvCNRxhib3LPuhs35stAPhqwkDKEAMMVibAeB6JOZxCE8JYR7nAsM/132', '1', '1', '2016-01-23 09:54:05', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '北京', '朝阳', '中国', '0', '', '0', 'zh_CN', 'okA6As0K8h9jRdBnyLiggVTfVX8M', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee217fc0041', 'o94BGv0rrBtBZxGJjuoLruXOULB0', '7pSrIDExNA==', ' 114', '', 'http://thirdwx.qlogo.cn/mmopen/QsibiatXqLoZsZqgRAhRygAdwysibdy57S65gibbEfjWKccibMjhZSozaXgSu7ubibkPTlRyFPpDYoicqwkGxTBtD9DmplwuJgsjGial/132', '1', '1', '2017-10-18 14:48:01', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, NULL, '山西', '太原', '中国', '0', '', '0', 'zh_CN', 'okA6As94lshWxZq5SXHFaOfJ1cXo', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee218000042', 'o94BGvzfVrWeoUoCFOiTiWSMyBGA', '5YCq5Yev', '倪凯', '', 'http://thirdwx.qlogo.cn/mmopen/h0OFV2pnnGewEYq3RFwxH6uSNQ6Qyxb9RicMt2dTMHIyQsuedIicrebqqJjg0NZB9Xt2tYIIyzDhOyELQSABfm8HBFQJN6e1SA/132', '1', '1', '2015-12-31 11:20:12', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, '2', '北京', '海淀', '中国', '0', '', '2', 'zh_CN', 'okA6As9Purvy07GjnKZQ5DvSYSzY', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee218040043', 'o94BGvzoCI1uBtIyW2y-IbVcumck', 'N+aXoOaVjOm4oeaOkuminOiJsueJueegtOagvOi/meWNtOS4gOi1tw==', '7无敌鸡排颜色特破格这却一起', '', 'http://thirdwx.qlogo.cn/mmopen/Gngj4fY1nib9BMkQVfT3T3vGTcwmN035NvBCETHnAV0LPLt7qUmuQYdhZhhtPGy0BLfP6H8iautXCQHbribMJL3qrbKhXqgOX13/132', '2', '1', '2018-08-07 19:29:03', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, NULL, '', '', '', '0', '', '0', 'zh_CN', 'okA6As1V1XsU8MOLKw_ndGlv7LQ4', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee218090044', 'o94BGv-m1mzirAYQRMm-i2G4Qgj8', '5pmo5pum', '晨曦', '', 'http://thirdwx.qlogo.cn/mmopen/QsibiatXqLoZsZqgRAhRygASHcHfrDriboOZAE7ztuqhUr18ibQ9FAupF6LWELsKSeCmYupekodw6FKXibWhnntHIgI6aic5bziaLgib/132', '1', '1', '2019-02-27 11:20:57', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, NULL, '上海', '浦东新区', '中国', '0', '', '0', 'zh_CN', 'okA6As3vBOLe2llA5xOS2RYJaoR8', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee2180e0045', 'o94BGv-e2lb8koOZiwy6lncuesU0', 'bGl5YW5ncGhw', 'liyangphp', '', 'http://thirdwx.qlogo.cn/mmopen/OibT1rC9XGZyickIU1h53fia92LZaTpjWwaIJzF7841neoQaQQibiarhTb4kOtmDYO3z55pmxZRaA56yP3DuPiacibibya2NtsIv9ZmD/132', '2', '1', '2019-10-10 16:18:34', 'ADD_SCENE_QR_CODE', NULL, NULL, NULL, NULL, '广东', '深圳', '中国', '100003', '', '0', 'zh_CN', 'okA6As12osork-he4BKt2XhJTDt0', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee218120046', 'o94BGv3U4Inq6RoREfASBEjOPF2o', '5paH5by6', '文强', '', 'http://thirdwx.qlogo.cn/mmopen/icFTnRoibgibp96jMr70Dee2AyXmkjXGXTFgJ3IEgDicK3vicFRppkXYibKMdNP10CNKVlicxM0icVVibEXj4Ux0Q2pweesyUgEDr8mic8/132', '1', '1', '2016-08-25 10:23:15', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '上海', '浦东新区', '中国', '0', '', '0', 'zh_CN', 'okA6As7_k3QxGScmMfD4YaXaWRSk', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee218170047', 'o94BGv5f0_j69GtpdKQ6QHJOkEm8', '5YiY5a6P', '刘宏', '', 'http://thirdwx.qlogo.cn/mmopen/Gngj4fY1nib9BMkQVfT3T3tib1pNggCwPNhspCrdCpfD8wicT8ZUUbWPX080PTKPNBeybhdbicsHVNJA947QRmdQDNJdnk5xxsrB/132', '1', '1', '2016-12-14 00:01:29', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '广东', '深圳', '中国', '0', '', '0', 'zh_CN', 'okA6As4MmphmV9Zvls8t89qCuIVM', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee2181c0048', 'o94BGv6N1PWkkpbzkU5J7l4Kuk3c', 'eWFu', 'yan', '', 'http://thirdwx.qlogo.cn/mmopen/QsibiatXqLoZsZqgRAhRygAQ6frfGJ7DAzNPvTo8YpiaKtmY6h4FciaSpIetIqg3SqxfmiaqZaxiaX5PSdKoCJucTotKEHiaSTIa3zq/132', '1', '1', '2017-01-24 13:46:52', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '', '', '中国', '0', '', '0', 'zh_CN', 'okA6As_KwNOJG7ecae43A7LmEfzA', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee218210049', 'o94BGv7Qr2xnSJp4mCLCtztZ6CD8', '5a6P5a6H', '宏宇', '', 'http://thirdwx.qlogo.cn/mmopen/Q3auHgzwzM4qvgZAZ5WicXHv66h390Kha3E2erLibBxY0Xic2D9ickcA7l2cGQdb6gUocicY5GkJ81oGRia1FBSP1JWiaB42DSB0X7g5K4zJ2P4Cfo/132', '1', '1', '2016-10-22 12:58:07', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '湖南', '长沙', '中国', '0', '', '0', 'zh_CN', 'okA6As2B8MG87rfngk83WiJolTzo', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee21825004a', 'o94BGv8xzCKxQZm5zOLla318Qv3I', '6Jm+57Gz', '虾米', '', 'http://thirdwx.qlogo.cn/mmopen/icFTnRoibgibpic0kd3IOvicBQM5pNRxXwK2mYVibXHv0FiaZ8bjmdqUKrmyzfmkNjr0iap0jceVFfCt7UnnFxSwCEXjv6ic9Km1uaVPk/132', '0', '1', '2017-08-28 10:35:33', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, NULL, '', '', '', '0', '', '0', 'zh_CN', 'okA6As8MANrZZyWjYIs3B7nirKyQ', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee21829004b', 'o94BGv2LaskY5JNqK4tliGEIAJK4', 'fkDmo67mnpfkuYvnjotAfg==', '~@森林之王@~', '', 'http://thirdwx.qlogo.cn/mmopen/QsibiatXqLoZsZqgRAhRygAR8HLl8kcHlC6ySAv8hl8P0PPBnTzhCvGib7tUSADDcLNibKV0gjBiafqSpgoh1AHCicffvVSSTcJNeL/132', '1', '1', '2016-01-03 13:54:12', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '福建', '福州', '中国', '0', '', '0', 'zh_CN', 'okA6AsymaN_ep0Hns0kU0lArU-ms', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee2182e004c', 'o94BGv7NPikYfjMcHMBqlxWv4lEk', '56mG57Sr5p6X', '穆紫林', '', 'http://thirdwx.qlogo.cn/mmopen/QsibiatXqLoZsZqgRAhRygAUKvOgsHXNsYvyMZJaaW1yymqF9uqvBKv3vEOI1Nl8eJVl6TlEyadPmzP5OF6LghsJuMgnkpTslo/132', '1', '1', '2016-07-08 14:54:45', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '湖南', '常德', '中国', '0', '', '0', 'zh_CN', 'okA6AswbiupmUSl0Jd3N-FkH6aNM', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee21832004d', 'o94BGvxfamnEAUzaDW8Wnrl-K8O8', 'UmFuZHk=', 'Randy', '', 'http://thirdwx.qlogo.cn/mmopen/OibT1rC9XGZwDia4bOw6nhxrBIl8Hw6IRY93VMBszspntH4DcE6MUAfQwCrP78Lm0pQCMDiczaib987sw2Fd3zsoWdzreiclqaf2v/132', '1', '1', '2016-08-02 17:38:04', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '广东', '深圳', '中国', '0', '', '0', 'zh_CN', 'okA6As0glOrHAO5gA_8dp8VzWWNA', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee21837004e', 'o94BGv-SsSNvHFJIXarAFCVKB4PI', '6YKi5rO9', '邢泽', '', 'http://thirdwx.qlogo.cn/mmopen/h0OFV2pnnGewEYq3RFwxH1RGFzVAtV8u9WdqVJZ7C5ZKY0ficibdnov2vfvSrhFUZaThnciaE9NSX03d7GaVxSFg895uKfUwKDia/132', '1', '1', '2016-04-25 16:07:42', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '', '', '中国', '0', '', '0', 'zh_CN', 'okA6As4DhSsJatO0TZOHr-E55moE', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee2183b004f', 'o94BGv8apnUzw_5u-RbB86DnRHpk', 'am9qbw==', 'jojo', '', 'http://thirdwx.qlogo.cn/mmopen/OibT1rC9XGZxqqZpFIeVWnpHN4iag9I028tzGriamacV7hkI14IxroyiaYCszE5qokcpNWWOakQHXNG3tcecxYDtBpJEm0dJWbic0/132', '2', '1', '2015-09-15 21:34:19', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, '2', '北京', '朝阳', '中国', '0', '', '2', 'zh_CN', 'okA6AswOD_DgT8ns8BhyBfAb60Sg', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee218400050', 'o94BGv-fm8P5hdIEKJWNgRl1y6Io', '6Zi/5piO', '阿明', '', 'http://thirdwx.qlogo.cn/mmopen/OibT1rC9XGZyuicGJAzkBJrJbLa6I2DX69wLic95qCqyjdPHfcMicDvRAMbnwo5I7zD1U1zXQwHBecLmIjiaLL0tD7UsClhpK6beI/132', '1', '1', '2016-01-05 13:49:26', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '北京', '海淀', '中国', '0', '', '0', 'zh_CN', 'okA6As9iyk67gSvaxgPojtTNAXBQ', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee218450051', 'o94BGvxCWE2yGk44X_wNy4GIjne4', 'bHpx', 'lzq', '', 'http://thirdwx.qlogo.cn/mmopen/OibT1rC9XGZw7E7DcJf6YNYNDf7pib21VxU03iak5K0v1bDCrTf4Qk4nSkTXqpvcWZ5xfXkM6YwPXx26tCIL722d4emXBCDhWGM/132', '1', '1', '2016-11-15 20:04:44', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '布兰卡港', '', '阿根廷', '0', '', '0', 'zh_CN', 'okA6As4N6588gWqTgl-NFTLnk-lE', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee218490052', 'o94BGvzazUQOOFaB__OOPSgchuyI', 'bWFnaWMgbG9zdA==', 'magic lost', '', 'http://thirdwx.qlogo.cn/mmopen/PiajxSqBRaEJDwFRH5YymxXO4e2kFzjR5t1JUdo67DrgTtGOO4Zic3Bh5m6Ed0PWOFicrS8AZOA6F64SS5BxsZp5YsIWaAia40sYQKoXvicoxjD4/132', '1', '1', '2016-09-12 14:04:12', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '', '', '马其顿', '0', '', '0', 'zh_CN', 'okA6As0q4j7_Hc5w9nr2FqQjjHWA', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee2184e0053', 'o94BGv2Wz7HILGe6me91OOKExZSg', '5byg5p+Q', '张某', '', 'http://thirdwx.qlogo.cn/mmopen/Q3auHgzwzM6g2RtX2BP3eIWp2XDVlHF6G3JibV3PLLUQiaGTzicdAFr8bA2Vpl98wnpkvZgZnRichl8EX4CyTKxxAmicZicU2IbBvbRy8NONJpXzw/132', '1', '1', '2016-01-06 17:12:02', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '广东', '深圳', '中国', '0', '', '0', 'zh_CN', 'okA6Asyj2LchZXOSddFsQ15cF-m4', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee218530054', 'o94BGvzYazWtuMwA6HNehIV6goO8', 'Lg==', '.', '', 'http://thirdwx.qlogo.cn/mmopen/OibT1rC9XGZxqqZpFIeVWnmcYKXDuZgwOW9yKCoicRDuXNaNRFNOax5oBE06zZwG3N73yYFuA4sicRibJRDKnXl7Wt0qzYg1Mib2J/132', '1', '1', '2016-04-15 15:35:02', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '', '', '帕劳群岛', '0', '', '0', 'zh_CN', 'okA6As9GzKy5ngAptqeZHzOhhsv8', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee218580055', 'o94BGvx39XwFJc8PBGYjz7fG0UjQ', 'VGhpbms=', 'Think', '', 'http://thirdwx.qlogo.cn/mmopen/QsibiatXqLoZsZqgRAhRygAd3ptzwHnBibPJkLau7Jrw6UicBxTBdy1PlZMP9EDC5BOveOrmHtZx29spZ41HcOvDtmM5boF6UUkR/132', '1', '1', '2016-02-25 10:36:20', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '江苏', '苏州', '中国', '0', '', '0', 'zh_CN', 'okA6AszrITcvNAq4xzvOxTnuSQ5E', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee2185d0056', 'o94BGv8GYspMf2fye4DO711326rk', 'TGFuc3F1ZW5ldA==', 'Lansquenet', '', 'http://thirdwx.qlogo.cn/mmopen/Gngj4fY1nib9BMkQVfT3T3jWBBFuTjk1dRN1fyG5e9gDA14V4lRfYciaud7WENlzCDSK4N1vv7JibMzGiaLwnkrU4VjRvPzt7229/132', '1', '1', '2016-06-02 08:59:07', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '', '', '阿尔巴尼亚', '0', '', '0', 'zh_CN', 'okA6As4jJHELAASIVlBO4qUjO3DA', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee218620057', 'o94BGv-8HO3tr0QAsdsyqAvBI_Ng', '5bCP5qC85q2l6LCD', '小格步调', '', 'http://thirdwx.qlogo.cn/mmopen/OibT1rC9XGZxqqZpFIeVWnqkFFA8S295RPe3el9PAtQQ9RITGLEhKEc7W05rIPgYZXGvyTmMscaVMksoK8fZz8xQML3PCicRTV/132', '1', '1', '2019-10-29 11:39:52', 'ADD_SCENE_QR_CODE', NULL, NULL, NULL, NULL, '河北', '石家庄', '中国', '0', '', '0', 'zh_CN', 'okA6As94gEp--1rcbKeJEPEbEz6s', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee218670058', 'o94BGv_9ykaIujvfoeLjX8pm4hgw', '5bGx5Lic6K6v6b6Z56eR5oqALeWJkemUiw==', '山东讯龙科技-剑锋', '', 'http://thirdwx.qlogo.cn/mmopen/h0OFV2pnnGewEYq3RFwxH4V9r7eSltWX3jN2Hc7ic1KfAPslGP0ns7VQVxq9jyjGJIKlzlDgGfDLYSQQQ8NeXux37sPBEvDWc/132', '1', '1', '2016-02-06 23:11:50', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '山东', '济南', '中国', '0', '', '0', 'zh_CN', 'okA6As8XarzOFvw0u4kbFbxbjDF4', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee2186b0059', 'o94BGvzFicZqXW2BAuedv18-Axow', 'NTAz', '503', '', 'http://thirdwx.qlogo.cn/mmopen/h0OFV2pnnGewEYq3RFwxH01iavkFvk0iaKa925IM3EWnKaibFQl7sLdQsUYcBZwvBmggxMdnlg8LyAGH0VjY4HW5icXSHkRGs4zy/132', '2', '1', '2019-07-29 17:54:12', 'ADD_SCENE_QR_CODE', NULL, NULL, NULL, NULL, '天津', '河西', '中国', '100001', '', '0', 'zh_CN', 'okA6AswSEWH6cZ9ZB_ZKY4kuChSU', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee21870005a', 'o94BGv1HkuA2bQFv7CKQxfpU9oJE', 'QWHoooE=', 'Aa袁', '', 'http://thirdwx.qlogo.cn/mmopen/icFTnRoibgibpibB0iaDvribLjP2ATusr3NAk8p9Mic4OA5sFGdj7PEia06QiaEiaSBmvbtyiaaTaicYp0UQUzpKkicsGlDmGwNs6Guiaa9q9Y/132', '1', '1', '2016-03-01 10:30:27', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '', '', '安道尔', '0', '', '0', 'zh_CN', 'okA6Asy7VyulegkGprcWmqgBGfdQ', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee21875005b', 'o94BGv2rQuP5ozUl52GTAAS31_i0', 'VHJ5', 'Try', '', 'http://thirdwx.qlogo.cn/mmopen/icFTnRoibgibpibk5CnqV5XTI3ogibQ3uicjKygAhsvYqmTwL3r6jCaiawXzicxzkulan0N1eXpEdfbWG0EEeQk4KDmaGxqGkGe0waK0/132', '1', '1', '2016-07-25 17:10:04', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '', '', '中国', '0', '', '0', 'zh_CN', 'okA6As-KHSEPDzkNI9sq15QcppIg', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee2187a005c', 'o94BGv4h1jrgv5OxmoDE9vyhlwIM', 'bGluZG9taW5pYw==', 'lindominic', '', 'http://thirdwx.qlogo.cn/mmopen/h0OFV2pnnGdJn3FoxPGMlqB6SxrYs5yJiccVTjicNkruKra99LlFXTeTgHEfnxwm5404onbtSzl12dq9L37Uw7iaaJksguuslwH/132', '1', '1', '2016-02-18 15:06:56', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '广东', '广州', '中国', '0', '', '0', 'zh_CN', 'okA6As2cqN1yFUtD2IUULvsC4Its', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee2187e005d', 'o94BGvxlMe7-yrnUoeubOOBlbXIY', '5L2V5b+X5by6', '何志强', '', 'http://thirdwx.qlogo.cn/mmopen/OibT1rC9XGZxqqZpFIeVWnnIYzOztxA2Niafvd6rZZYQ9kk7qK2Gjalckdj6WlgcWq2rl7E1oezhJkg78aXpOSnWM3nYkJddxia/132', '1', '1', '2016-10-09 16:56:21', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '湖南', '长沙', '中国', '0', '', '0', 'zh_CN', 'okA6As-UJk222ZS6ZDhJ2Bh4XaFo', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee21884005e', 'o94BGv8IegB3EoSuxlZwb4jrtgZY', '5bCP5YekQUw=', '小凤AL', '', 'http://thirdwx.qlogo.cn/mmopen/h0OFV2pnnGe0YoBahMZxNcZTXEpOW9xRD7MHhicU2kqmuCzOQIMK2uZz3XEatw8rMjCE3x6hvdicm2tiaTJa0ialI3ric1QYLJMBL/132', '1', '1', '2016-05-21 23:09:31', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '', '', 'CD', '0', '', '0', 'zh_CN', 'okA6As_x0GoYa98-iiAs6P514eng', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee21888005f', 'o94BGv124AYBvA2pg4pFJqfXh8PE', '5p2o5qKm6IKW', '杨梦肖', '', 'http://thirdwx.qlogo.cn/mmopen/h0OFV2pnnGd5giaIkmYbTGImoQ0xFJw4FZRc9ich3xKiaxjlfZ0MfEgyR7GqsYansIdSBCDoQgwicCvrVf81CUjUziabDhtpiceShM/132', '2', '1', '2017-01-07 09:10:59', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '', '', '中国', '0', '', '0', 'zh_CN', 'okA6As4iHTXWQq-5D93WdM_ySWwQ', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee2188d0060', 'o94BGv4VOn-mc_6WtsxK-GNnTmA4', '6Zi/5rab', '阿涛', '', 'http://thirdwx.qlogo.cn/mmopen/QsibiatXqLoZs4ZhIOxnZFgR5XKf9RN9cSSysOrqEwOhTxhKaJwuAvibwpBEUbslOWZuKnpfTLEmQO5PibialBvRMCxExwed0wIyN/132', '1', '1', '2016-02-01 10:17:30', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '', '', '中国', '0', '', '0', 'zh_CN', 'okA6As1YoW-xGmTB0-_x21LGPNIk', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee218910061', 'o94BGv3UH-KvBU4ManXmqMAVbPDs', '5pi156ew', '昵称', '', 'http://thirdwx.qlogo.cn/mmopen/OibT1rC9XGZxqqZpFIeVWnjyyoCmZnWKaDica8N6vY0Tb53r7vmqN0AbicSNFEpRKbPYxSBmMFnTLWRHvxMOicKvveJNzkKYldpm/132', '1', '1', '2019-03-01 10:14:25', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, '164,165', '', '', '圣文森特和格林纳丁斯', '0', '', '164', 'zh_CN', 'okA6As9rFa1JLeonKQ-HINo0CXjc', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee218960062', 'o94BGv7ggUHrZFftiUWT1GvV8_OE', '5LiB5rSy5rSL', '丁洲洋', '', 'http://thirdwx.qlogo.cn/mmopen/icFTnRoibgibp96jMr70Dee2AyduLnn76Ueb6ib3R0UhV1ia2NyKFMaXR2tCaxQBsfUn7GqBS0uOib2y2mxAuGhoOYwmrt0QfwjP3Y/132', '1', '1', '2016-07-17 00:10:18', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '辽宁', '沈阳', '中国', '0', '', '0', 'zh_CN', 'okA6As_HHgMFxV1UrgHyWZtOeCZU', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee2189a0063', 'o94BGv92sEoUXWe8VURUEvlkZcMA', 'U3RhbmxleQ==', 'Stanley', '', 'http://thirdwx.qlogo.cn/mmopen/OibT1rC9XGZxauAFevYxhuqDh2lANWDsU5bNBuQBVICYnlznYJH14rtPyplWajickLMZ2gJv221lQGXeZCIWmicEgC1RacCWvicf/132', '1', '1', '2016-08-03 16:39:05', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '上海', '杨浦', '中国', '0', '', '0', 'zh_CN', 'okA6As7KQhg6xclxDc6VCggjLwKc', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee2189f0064', 'o94BGvzwnUxxjc25VYftcR0wYddE', '5riF', '清', '', 'http://thirdwx.qlogo.cn/mmopen/Gngj4fY1nib9BMkQVfT3T3micBPnLgh0akXQGVPTPQtibmsSRNP5zf1afqC93ZBWZxn8ibe8s6Wqw3USc8icgtAgriaSWC8D67QvoM/132', '0', '1', '2016-06-04 11:01:48', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '', '', '', '0', '', '0', 'zh_CN', 'okA6As_sRe9n4guA3axLzHdUA3lg', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee218a30065', 'o94BGv9Ha6_nwKquj7HFhUiSjnQA', '57+g56u5', '翠竹', '', 'http://thirdwx.qlogo.cn/mmopen/QsibiatXqLoZsZqgRAhRygAUYpicFV38HicM7CJIC9aG5kiaUVCJuPqLvVdS4cUf7bJSPdu71X8y8RS49t5EDmg0oenbJwpGDwpWW/132', '1', '1', '2016-01-15 11:50:16', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '北京', '海淀', '中国', '0', '', '0', 'zh_CN', 'okA6As_fEE8TRwCBwADyTmCBR3QU', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee218a70066', 'o94BGv0k9tBzPuuu-eDL3GQaTIyQ', '8J+QjvCfkJI=', '', '', 'http://thirdwx.qlogo.cn/mmopen/OibT1rC9XGZxqqZpFIeVWnjHiar7yMnznAZTyS5cf7qj1f7LAyx3libBZ42jh0GpYhrkJjYAQ5T5s8ONVN0wq83PibKNK9ibPdI0U/132', '1', '1', '2018-03-20 08:00:18', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, NULL, '', '', '克罗地亚', '0', '', '0', 'zh_CN', 'okA6As5kAFg6Zy7Fcn_v-zAsfW-c', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee218ac0067', 'o94BGvzFXGz97kWe7AkWRa6rhSdE', '5rW35rOi', '海波', '', 'http://thirdwx.qlogo.cn/mmopen/ajNVdqHZLLD0qXK0GB8W9xzPJ90RUKib5IVTgrC9npLc3lHib1DGJWnmg9dnibplEG06GTIeMlWaWFXk43Da12FNfrrdc7FqBeSaicHUuyWiaIQg/132', '1', '1', '2017-03-21 09:01:43', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '湖南', '长沙', '中国', '0', '', '0', 'zh_CN', 'okA6As3s_GSqkVTJbeiuYiRH_oI0', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee218b10068', 'o94BGvy27JbmLG6Uorlo4osZB_LQ', '56C06Yec5LiN5rKJ6Iif', '破釜不沉舟', '', 'http://thirdwx.qlogo.cn/mmopen/OibT1rC9XGZyIEBGxibLCX8iaesj0QkHll6aHicn9zsZzl0j3183Bf9RrhOULGlc20Qu6T5XvN2QI3LbJr7nC49OLajuGj1u94eR/132', '1', '1', '2018-03-12 15:29:17', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, '2', '北京', '昌平', '中国', '0', '', '2', 'zh_CN', 'okA6As25jHtLF7I2uSxRc2Zim6vQ', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee218b50069', 'o94BGv_lsFKdZ7phvqMuasw4Va6Y', 'd2FuZ3pj', 'wangzc', '', 'http://thirdwx.qlogo.cn/mmopen/ajNVdqHZLLD0qXK0GB8W90iciahACJHYaI6TO96a06saythKtuzOEky9yl5yic86ZMdZXYb5LA1CIspsIQOC2NeLOxE7la9QslJGxnLKUiaSdpk/132', '1', '1', '2017-11-29 08:56:43', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, NULL, '福建', '泉州', '中国', '0', '', '0', 'zh_CN', 'okA6As_3Mh4WDGvzPgU_D_DqZg4s', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee218bc006a', 'o94BGv5zQYMXQg54DZSOWyPYq5Lk', '5YiY5YWG5bOw', '刘兆峰', '', 'http://thirdwx.qlogo.cn/mmopen/h0OFV2pnnGewEYq3RFwxHyEO6pl7ZAFrdJqmpPIVrUXceB4fQKA7xAjOTNSpaxCvHXoLficcJRECloVhCoocgUffTbuLSc6T8/132', '1', '1', '2016-02-03 10:52:28', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '江苏', '南京', '中国', '0', '', '0', 'zh_CN', 'okA6As8e5YNPS4Pq-CTx1S4gFjGg', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee218c0006b', 'o94BGv0vTyh72jO9P5NR5lEs83Pg', '56eL5Yas55qE56eB6K+t8J+OuA==', '秋冬的私语', '', 'http://thirdwx.qlogo.cn/mmopen/Gngj4fY1nib9BMkQVfT3T3j6ZDPibqglmgoB9rEco1OhuesaQb7xiavY5OhnQI4mX7YOPV5o0Waezp9jZqeKRyFcnZwXhBI1Lf0/132', '1', '1', '2016-12-22 14:04:48', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '', '', '泽西岛', '0', '', '0', 'zh_CN', 'okA6As_WPGqo84H5f9XqR5qWSMek', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee218c5006c', 'o94BGv6sekI2A9FYcuyFFQBhicRo', '5YyW5YWI6ZSL', '化先锋', '', 'http://thirdwx.qlogo.cn/mmopen/icFTnRoibgibp96jMr70Dee2AAIGYVUPNR62d1vVibAWVynymDcAJ61ODwAl0kKaU6jT67HiaZnqTYlcicJiaEAAzRS6LY9qaVMjh4v/132', '1', '1', '2016-01-13 17:28:07', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '北京', '海淀', '中国', '0', '', '0', 'zh_CN', 'okA6As81_uXmnKXQA6f6h13DuFg8', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee218ca006d', 'o94BGvyZf9x3i_YsoWhZK8AJsx2k', '5piK5Z2k', '昊坤', '', 'http://thirdwx.qlogo.cn/mmopen/icFTnRoibgibp96jMr70Dee2EiaAvOZpIjEEZib8Zia5vEs4rQG5xJodEJzBG4YdowsCicMFc2r0tsDmsyhEevJTgMoNtmOnIibJyqWc/132', '1', '1', '2017-08-24 15:21:41', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, NULL, '山东', '青岛', '中国', '0', '', '0', 'zh_CN', 'okA6As_9fpsRzIpjDC3Ln6hxjPOw', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee218ce006e', 'o94BGvzEzWmH9GwPLIEpLX5_Jl9w', '55CJ55KD55OmeXl5', '琉璃瓦yyy', '', 'http://thirdwx.qlogo.cn/mmopen/QsibiatXqLoZskf7KCAFxib5OJtlO7jFib1hlqofJrv5mZW1edP20sXEBET77jesTFfnzD0ibZoVc3ZkcibUNGKcyuC6DuNbPSKiax6/132', '2', '1', '2016-08-23 17:26:03', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '湖南', '益阳', '中国', '0', '', '0', 'zh_CN', 'okA6As4MUHN1grPnIewox5Oh2tkk', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee218d3006f', 'o94BGv_4w0GET6-GrQkRvomNhf_4', '5b+r5LmQ5bm456aP', '快乐幸福', '', 'http://thirdwx.qlogo.cn/mmopen/OibT1rC9XGZxqqZpFIeVWntQyPbQDID06McBTrhDEXVXJbRXOuhnVqnuCqO7o9z28iaIrqYx79x2UDGtibcER0CYia4xw3S0X22G/132', '2', '1', '2019-12-02 10:55:24', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, NULL, '河北', '石家庄', '中国', '0', '', '0', 'zh_CN', 'okA6As7EQDWZVnchYRd1aDHzehbU', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee218d70070', 'o94BGv5WEPG5osZ5CHr_9vax7nqM', '6buE6I2j4oG1wrLigbBNRUk=', '黄荣⁵²⁰MEI', '', 'http://thirdwx.qlogo.cn/mmopen/OibT1rC9XGZxqqZpFIeVWnshicppCQLrO1ZuxZkXXYNoCsE1Gr6LKjzdRmtAia1W5fC4ib5kkjZuicz8otK2sZBt5I2qHdueia3ksr/132', '1', '1', '2016-09-14 13:48:37', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '浙江', '嘉兴', '中国', '0', '', '0', 'zh_CN', 'okA6As-aC6wq3zhHwTSkMDCsayAI', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee218db0071', 'o94BGv9RsJu3dB45SpTomIeI7r7M', '6LeR5aCC55qE5LyZ6K6h', '跑堂的伙计', '', 'http://thirdwx.qlogo.cn/mmopen/h0OFV2pnnGeFaicNjTVib7ur6kFSn0W43OUnE5OaFchE4AN2egQJaQOOML7NbjZtfXshH3b1u4l5lcO0W0zfDTDzt4us2kN2xk/132', '1', '1', '2018-04-16 16:49:26', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, NULL, '贵州', '贵阳', '中国', '0', '', '0', 'zh_CN', 'okA6AswRwQNyhkETSzZgigGQCwLk', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee218e00072', 'o94BGv0Y9FKGQw0g_PnczKioZ_V4', 'TEAudw==', 'L@.w', '', 'http://thirdwx.qlogo.cn/mmopen/QsibiatXqLoZsJonRaSNCJ0uecKapAIsv6W0ETVu10Ou9b1PInvgXxNcNAxWw0nLbUXjYy62DCJaib8Pluf5YWWvZHbxkoBuzd3/132', '1', '1', '2016-03-18 12:06:57', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '广东', '深圳', '中国', '0', '', '0', 'zh_CN', 'okA6As-vzW-wOmkOT5p_lLN9HFf4', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee218e40073', 'o94BGv2n60Z9UXyjxya-sudU8cQE', '5pil6aOO5b6X5oSP', '春风得意', '', 'http://thirdwx.qlogo.cn/mmopen/OibT1rC9XGZxqqZpFIeVWnhpQ8YECz19Xo6ic7pgc9Z6zJ80wia7pcibwNUTL580mUl0Xvnp6kb2GkRUYBH29l2YHFluMXs3Uzpz/132', '1', '1', '2017-03-15 17:16:28', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '安徽', '合肥', '中国', '0', '', '0', 'zh_CN', 'okA6As5NId1u8KhgH6P0R-6o2CKU', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee218e80074', 'o94BGv-7n7B1WuzUr59CFMfU0Cas', '6L+95qKm5Lq6', '追梦人', '', 'http://thirdwx.qlogo.cn/mmopen/Gngj4fY1nib9BMkQVfT3T3mrXnWQll2IEygWZQmLUjLv4UqZzeRXxtadYC8a8eK2n8miaB2nqAV70wNNZ2tzjydkiarSU4lJJEI/132', '1', '1', '2016-05-27 09:38:33', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '江苏', '徐州', '中国', '0', '', '0', 'zh_CN', 'okA6As0726eVJP3xccJB4-1WWefs', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee218ec0075', 'o94BGv7NkmojcluQgXlCtEaKDMaA', '5b2t5LqR6ZW/5rKZ', '彭云长沙', '', 'http://thirdwx.qlogo.cn/mmopen/icFTnRoibgibpicPkec41JziciadF1xUeTwyRwdN0MIDUBUHEJ3QhSzPmKmfMhNEBm0wFkzkJz4nHDos3gYBZ1BQiamC6M0omC2Kh5t/132', '0', '1', '2016-11-24 16:28:04', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '', '', '', '0', '', '0', 'zh_CN', 'okA6As2228UFla70Xf-M_YBfNeEY', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee218f10076', 'o94BGv2rPoTaqmWJ1qr1d1oOKccg', '5ZC05q2j6ZuE', '吴正雄', '', 'http://thirdwx.qlogo.cn/mmopen/h0OFV2pnnGewEYq3RFwxH6QsokJweFXY8ZvSpOV7SGbTLSKWAejA2yu2SVeqvTaibtKUSqib7o2wvo8IAENOlPI3adShHnmxKy/132', '1', '1', '2016-08-24 17:43:24', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, '2', '湖北', '武汉', '中国', '0', '', '2', 'zh_CN', 'okA6As1L-2W51za1xpFHrd0E8EIo', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee218f50077', 'o94BGv4VvUookDpwNFJsgbJqEw8c', '5L2z', '佳', '', 'http://thirdwx.qlogo.cn/mmopen/icFTnRoibgibp96jMr70Dee2LelBQdjj5oJI9LaPyc8dicsEdX6pYHJMhkB1FoibTWnhxhIpLeEfGunWf24KbVibygnMxSxzQDPoGib/132', '2', '1', '2017-12-30 15:48:36', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, NULL, '辽宁', '沈阳', '中国', '0', '', '0', 'zh_CN', 'okA6AswgGDYi0IO9iqUumr70LhuM', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee218f90078', 'o94BGvyr2Yp4ANnOOMUAzESldpKc', '5oiR5Lus', '我们', '', 'http://thirdwx.qlogo.cn/mmopen/OibT1rC9XGZxqqZpFIeVWnopj36aMWmNOlB7Mp9VXDYR9CTqjgTGyfUQR1YiapTI2SfX1Rx0bxyPbqyytg1SYRRyBJ9hqzW7xY/132', '1', '1', '2019-07-29 02:59:43', 'ADD_SCENE_QR_CODE', NULL, NULL, NULL, NULL, '陕西', '榆林', '中国', '100001', '', '0', 'zh_CN', 'okA6As01puuGALMUL4T8-xF8VlLo', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee218fe0079', 'o94BGv5tnV0IoM3ggOzVtZ5kHn9k', '6LS+', '贾', '', 'http://thirdwx.qlogo.cn/mmopen/QsibiatXqLoZsZqgRAhRygAZmazSvzgumBevxPYxxUKLtDXLZGqOE2Ocm6iaNR7xniaLXcZZgmc19nNJJlYdgY9dBIicFKy41rHxm/132', '1', '1', '2017-08-31 23:40:06', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, NULL, '河北', '秦皇岛', '中国', '0', '', '0', 'zh_CN', 'okA6AsyFb4I8paf9hqG8YH48uz3E', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee21902007a', 'o94BGv4yziA84vmarLZ5iLGUK5s0', '5oiQ6Jmr', '成虫', '', 'http://thirdwx.qlogo.cn/mmopen/OibT1rC9XGZxqqZpFIeVWnkUc1vmNXc1fXBRfcW6Jkc5PVmEeF4xstPt6ibepgU2deiaJVgJkia5rkupT7jLRYq2yiamXpdql9Ev8/132', '1', '1', '2017-11-04 15:41:57', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, NULL, '湖北', '武汉', '中国', '0', '', '0', 'zh_CN', 'okA6As9AHw5EVI4csig4z6oUUU9E', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee21907007b', 'o94BGv_QOKJqs9sH7nwbICcbdZoQ', '5Za75b+1', '喻念', '', 'http://thirdwx.qlogo.cn/mmopen/QsibiatXqLoZuA9rM7E3REDEKM2GmdiamFiaVliccciaGibWuvr3jRTsGBOyS5sMBvOQaAMFVUMmwltQ8rI9puZDicPZoBUl1eFc4aKs/132', '1', '1', '2019-09-11 10:42:21', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, NULL, '湖北', '孝感', '中国', '0', '', '0', 'zh_CN', 'okA6As6Xn7h72Y8OirxnmfzN-X2w', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee2190b007c', 'o94BGvwqwGuM8ycEd3O2ibyLikgY', '5rGq8J+Si+S7qg==', '汪仪', '', 'http://thirdwx.qlogo.cn/mmopen/OibT1rC9XGZxqqZpFIeVWnsEHWLsmb6zd6U9uMmOf088zYXZDG0JaibGnsMyicB8cicyV1gchGHRtgavJHiaz4rZNvpOJUJI726XW/132', '1', '1', '2016-08-15 09:49:03', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '贵州', '贵阳', '中国', '0', '', '0', 'zh_CN', 'okA6As2MV58B1Y9SD03JREohnahw', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee2190f007d', 'o94BGv_eBok1ljrK_24lFsP963iY', '5pegIOWliOOAgg==', '无 奈。', '', 'http://thirdwx.qlogo.cn/mmopen/OibT1rC9XGZzQmesowXAKzo0fjLULEp9TGIg0Z7voToueriauMmVicicduMYXRR7FbXV5ibk5vIQSsrm8ToXHTN5JIVGibUlI4krWY/132', '1', '1', '2018-03-08 18:16:23', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, NULL, '', '', '中国', '0', '', '0', 'zh_CN', 'okA6As6jpT11boc8eGN-aD6O3XKo', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee21914007e', 'o94BGv4EHfgxZrqKhx0m2P252gYk', '5aea5paH5riF', '姚文清', '', 'http://thirdwx.qlogo.cn/mmopen/ajNVdqHZLLCDUA8icgIZN50Y950Gv3HmAeqHyPiaWVo0bxUaR08qUFFErzRo54hwxUdjowOqD2rDd1vnxy4EAwNRXBpZhjuHWiclNTPkn27icf4/132', '1', '1', '2016-01-06 10:47:58', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '广东', '广州', '中国', '0', '', '0', 'zh_CN', 'okA6As0l1-cC6ydVQc_1e_Z7FDPE', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee21918007f', 'o94BGv50W0H-s5UUKfzZVw60BduI', 'SjI=', 'J2', '', 'http://thirdwx.qlogo.cn/mmopen/h0OFV2pnnGewEYq3RFwxH3yvarUjBqiaIUb7FluCrfbVibf6zXDic4eChh9o4yMC0cGbkMCCeMHHA74Ht1Fk1ickwkJYpknENsTq/132', '1', '1', '2016-11-17 15:37:37', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '', '', '斐济', '0', '', '0', 'zh_CN', 'okA6As24LGOOvfYkHWXEMMR7Yq7w', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee2191c0080', 'o94BGv4olQeW0IMOttzQjQGOzuRs', '546L5aiB', '王威', '', 'http://thirdwx.qlogo.cn/mmopen/OibT1rC9XGZxqqZpFIeVWnnSv5awg1qycjMLIC5xnzzIm0AXJFicTqYbnHA7icMM3VB7ukSLR8xg7ibPTG1CiaWaLicsqrZctQEJeM/132', '1', '1', '2018-03-28 13:41:04', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, NULL, '', '', '中国', '0', '', '0', 'zh_CN', 'okA6As5Fm7sbuMNQBGFs-RzsRcAE', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee219210081', 'o94BGv7h7irHY1bsHHm4-yblZmDk', '0YjPhSDRhceQzrHPgyDRhcSr0Ls=', 'шυ хǐασ хīл', '', 'http://thirdwx.qlogo.cn/mmopen/h0OFV2pnnGc7wDJY6x9zZpvpicDq0PUezkjMItf8e73J6PK07ibhQibHzSfoLuicChFMf9acxCdZKKWhCgrJr8Jhb6pibuylfbA7Q/132', '1', '1', '2015-12-27 18:38:41', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, '2', '广东', '汕头', '中国', '0', '', '2', 'zh_CN', 'okA6As0fsIgs9GOVMoaw650pPGqo', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee219250082', 'o94BGv7QjA8BOZD05IqiIEmX24nk', '5aSp6YCJ5LmL5a2QMDAx', '天选之子001', '', 'http://thirdwx.qlogo.cn/mmopen/QsibiatXqLoZstKt16UPZ3bltqbaxlMR0sp3ibPuibglCuxeDUyibEcxQjqjGvfTl2FGu2rnHbwHia2XZLBHGN3w5ia4Zzv7Htyrs5A/132', '1', '1', '2016-02-25 21:45:10', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '湖北', '武汉', '中国', '0', '', '0', 'zh_CN', 'okA6As6OTpAL_ZUFTETxI0MDH0-M', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee219290083', 'o94BGv0ZDWyESsVLDOQiByAL5S-g', '56ys5Y2B5LiA5Y+35Lq654mp', '第十一号人物', '', 'http://thirdwx.qlogo.cn/mmopen/h0OFV2pnnGfAia2XZfjjXQzpMo8Cg5w7xGQen4X4PJhXHp1Hib0szaHLP1xhK7ibicArRia5iaJsytruCKmPG8ibQmhC6EAEpuNzJul/132', '1', '1', '2016-01-21 19:19:08', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '广东', '深圳', '中国', '0', '', '0', 'zh_CN', 'okA6As7TyXG10rb1NhhQfXA7h7MA', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee2192d0084', 'o94BGv6nPF8GhdVk5xxyj5Hlyb2E', '6auY5rOi', '高波', '', 'http://thirdwx.qlogo.cn/mmopen/ajNVdqHZLLAictLjcW2EDnxdGgInibSSHyE7I5WHczPbghs3O4LeeV2dXnPQudpj1mQZMUy5xOhOGaMLvKKLpYkldDKPaqPaHDUzKIwU506qo/132', '1', '1', '2019-11-22 11:32:19', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, NULL, '广东', '深圳', '中国', '0', '', '0', 'zh_CN', 'okA6As_4cFyOLfpWtp9YKfBlzmgk', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee219310085', 'o94BGv7tqXKKHUdnWN7AGb-ADT2w', '5omL5b+D55qE5aSq6Ziz8J+klA==', '手心的太阳', '', 'http://thirdwx.qlogo.cn/mmopen/h0OFV2pnnGeKBJbL2DRqWWJLq0J9cicFyfX287RktcKGY7o4bzP5AwX5ODnkVA8M2LgicW0moXjDA5AGz1NgsEL78rbIfHu7hW/132', '1', '1', '2019-09-05 10:58:18', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, NULL, '北京', '海淀', '中国', '0', '', '0', 'zh_CN', 'okA6As4m5j8dSbbv_jPfYH2uyjc4', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee219360086', 'o94BGv4SYDyw78WDWLbRgzjsTv6w', '5bm06L2u', '年轮', '', 'http://thirdwx.qlogo.cn/mmopen/ee3RhDdRbfWSpTYljCJjuJwdhXbPzA5WVyMhh7vAIeOnSUorTnAQDT8aYQX1ClWt1RGOicKic25kXX1N5RPuz4Rb0QMxjRibPzz/132', '1', '1', '2017-10-31 14:37:45', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, NULL, '安徽', '合肥', '中国', '0', '', '0', 'zh_CN', 'okA6As68akAuFKSvYY6COUIdTMKY', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee2193a0087', 'o94BGv56EZq3YtKIKxuCFtpa2j1Y', '5byg5LqV5Z+O', '张井城', '', 'http://thirdwx.qlogo.cn/mmopen/h0OFV2pnnGcegdboy3VUVZv6FosyyHWoxB8rtfKtpKBhj3s1wMl9Nvg4u8joErSn9rvm6LibsqOyt7JbboQicJ5SuZJ46BvBNm/132', '1', '1', '2019-08-26 10:32:56', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, NULL, '广东', '韶关', '中国', '0', '', '0', 'zh_CN', 'okA6As2WzhbykxMsT-sdmwD9mk9s', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee2193e0088', 'o94BGv294DvLV_qb1qEfkD-TfKZo', '6ZmI5Lyf', '陈伟', '', 'http://thirdwx.qlogo.cn/mmopen/OibT1rC9XGZxqqZpFIeVWnjoJQRBD7QcashJJOiaicDrB1BqlWsrn9G3If2afBT1QDZzIlYFyicQCcibN8UHKliaNIOWIyJBkB80j3/132', '1', '1', '2019-08-27 13:44:35', 'ADD_SCENE_QR_CODE', NULL, NULL, NULL, NULL, '北京', '朝阳', '中国', '1', '', '0', 'zh_CN', 'okA6As4_V5nhIDUXDym5dha54c84', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee219430089', 'o94BGv9ZFN__p-DM3nfQ6-ZrPy5I', 'SFVXRU4=', 'HUWEN', '', 'http://thirdwx.qlogo.cn/mmopen/h0OFV2pnnGewEYq3RFwxH1gzPIodhVyJElibZ8oKOv9g9RMZRN4rUicI9gImjDFMgJgcwaILabDp1qQutxPiaNTu8icqwwahxk5r/132', '1', '1', '2016-10-12 17:56:41', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '湖南', '长沙', '中国', '0', '', '0', 'zh_CN', 'okA6AswnSBlJSlVUydJGvIgonw2o', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee21947008a', 'o94BGv8ngPuGbIvxTjJz7djISSUI', '6YOt5paw', '郭新', '', 'http://thirdwx.qlogo.cn/mmopen/OibT1rC9XGZxqqZpFIeVWnobdw6LTK2U81Bjia2UnDSPQGHcKGic5SndibCVCgb5R88GhOicEMQBhB7BwvqkruBdJdBH9RJQyicFQz/132', '1', '1', '2016-06-24 17:05:07', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '湖南', '湘潭', '中国', '0', '', '0', 'zh_CN', 'okA6As2R2En32V7toDyMIgBDOKvA', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee2194b008b', 'o94BGv4WkpRJC7znRHdya0jV1PKo', '5pmv6KGM6KGM5q2i', '景行行止', '', 'http://thirdwx.qlogo.cn/mmopen/h0OFV2pnnGewEYq3RFwxH1yXVevmo9ulO2XnBUfD6mdsLkibAV2RU8V0FtXzibuNtOcIYENDtGky82Za2GTPeUKW3e8luicKFE2/132', '1', '1', '2017-12-01 15:53:49', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, NULL, '槟榔屿', '北海', '马来西亚', '0', '', '0', 'zh_CN', 'okA6As9NCHIAT18yov9ow5MPFSqE', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee21950008c', 'o94BGv_bE8rJljT__A95fRewel-o', '5LiA5Liq5Lq655qE5pyd5Zyj', '一个人的朝圣', '', 'http://thirdwx.qlogo.cn/mmopen/h0OFV2pnnGewEYq3RFwxH5kr0cO2zN3YFCPxfaMvcd67m5d4aMDnHY4ibcvzBtCxB9jpruCdb3MruS2Au0ncbDmRhicjCAIZDD/132', '1', '1', '2016-10-14 14:14:41', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '', '', '安道尔', '0', '', '0', 'zh_CN', 'okA6As4NFiuZKSu6jx4qIf7eZ6k0', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee21954008d', 'o94BGv907_D8n_F79cY3oI3o1F3c', 'bGpm', 'ljf', '', 'http://thirdwx.qlogo.cn/mmopen/QsibiatXqLoZtKxohBgdgJC7jLzicMGEOibTibVQHw1sib28BgkDiaEPjKWPlKv8kXtI7m9llz8VxFhJW9BOtX8qQVATZXawjKj45t7/132', '1', '1', '2017-06-13 17:03:02', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '福建', '泉州', '中国', '0', '', '0', 'zh_CN', 'okA6As4SF0JMMQhAdo9P5RzlYei8', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee21958008e', 'o94BGv2Fel-Hz4lg_sIfMrc_BBBM', 'RGVhci3kuZQ=', 'Dear-乔', '', 'http://thirdwx.qlogo.cn/mmopen/icFTnRoibgibp96jMr70Dee2BicKkV1NWeicUsYsD8C4DAe5st7R3N2B9TzpyfzF92SzeTESczsFlfNUBLVSic8c1RqskWicNibFf0Xz/132', '2', '1', '2017-09-07 14:19:32', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, NULL, '山西', '太原', '中国', '0', '', '0', 'zh_CN', 'okA6As9I2mrcj958zvUs125BUmiY', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee2195d008f', 'o94BGv7ir8vPUACCge-KTV4S9HhY', '5aSn5YiA546L5LqUKOWIqeWNjik=', '大刀王五(利华)', '', 'http://thirdwx.qlogo.cn/mmopen/h0OFV2pnnGeBaBwC79Q6t69MrdB9nsETyibyc0cqR6z0aJSuOg4YbLibQQANhuFjVzzOI2elCIKUBCbKPQouiaDylXVb1iayhHkV/132', '1', '1', '2017-09-29 11:19:28', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, NULL, '四川', '凉山', '中国', '0', '', '0', 'zh_CN', 'okA6AszG34nNGV3WIq4sWqeO4h8U', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee219620090', 'o94BGv3lE-uPmt9pyDXL5v3TlamI', '546L5p2O', '王李', '', 'http://thirdwx.qlogo.cn/mmopen/h0OFV2pnnGf2niaLrF6zw74nd1YHGKIxmRrslXlmjVXa9arRAuJuyr6BdfWWcLTQXrD5bvg0JVSdfFA9vkr0Ansh9VHrtm30f/132', '1', '1', '2019-08-05 14:09:29', 'ADD_SCENE_QR_CODE', NULL, NULL, NULL, NULL, '江苏', '南京', '中国', '100001', '', '0', 'zh_CN', 'okA6As7LrUMsZ8GxS2yUcS-sfHwI', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee219660091', 'o94BGv2U1BqPB4OkCAnUR6aUi0ic', 'bGlhb2hhaW1pbmc=', 'liaohaiming', '', 'http://thirdwx.qlogo.cn/mmopen/QsibiatXqLoZsrzB1ehkFQOTxvqFH9IDOrzxjYq5OR1GHBGnDG7KBht98HD1w2cFyXS80AicF72q2a5oIevJoqia8tIog1MmqZ2m/132', '1', '1', '2018-12-04 07:39:19', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, NULL, '广东', '广州', '中国', '0', '', '0', 'zh_CN', 'okA6AsysihQp7aw8QmKAKuhhGJ-k', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee2196b0092', 'o94BGv7NsZk6wnLFAdYu8f_KMB1E', 'Um9ja3k=', 'Rocky', '', 'http://thirdwx.qlogo.cn/mmopen/Gngj4fY1nib9BMkQVfT3T3kFMKQU4nEjF9IbnGFviaTZeaLN1icjg5zPWjfNic2kRbQdWpnJsMxs9mt67BBcnbWzCAoZC8YgxUgM/132', '1', '1', '2016-05-06 11:31:32', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '北京', '', '中国', '0', '', '0', 'zh_CN', 'okA6As7DrH-gPu3wQtzwnwafiyes', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee219700093', 'o94BGvxJynbwWQb7MRk98N05LFPg', '5Y2h6YeM5aWH', '卡里奇', '', 'http://thirdwx.qlogo.cn/mmopen/icFTnRoibgibp96jMr70Dee2NiaibkGNlfNMUtsLUlNeYnbH9ibwX3Mxx0tanw6Ib1EicawaFuoM09wSutOCVnmXOTvrgamzSGu5oKg/132', '1', '1', '2016-09-21 16:05:40', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '上海', '宝山', '中国', '0', '', '0', 'zh_CN', 'okA6As6XM27nd2a73RETw0T4I1GU', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee219740094', 'o94BGv8p3YFcke6oe3v4UMbypBU8', '5b6u5bCY', '微尘', '', 'http://thirdwx.qlogo.cn/mmopen/QsibiatXqLoZsZqgRAhRygAbpFVGxicvXF4RNGFHcJLFUhRbcQUE4vukYVxKbRQQnYNsEEiaQCNLuJjyJWWLD9hkCy2PbAAB5kk0/132', '1', '1', '2017-02-01 20:30:25', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '山东', '日照', '中国', '0', '', '0', 'zh_CN', 'okA6As-_nYt2Me6J0lvjl3jNcDmM', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee2197a0095', 'o94BGv183Uh1U73ZhSCZnxg7DnnY', 'Z2hvc3Q=', 'ghost', '', 'http://thirdwx.qlogo.cn/mmopen/icFTnRoibgibp96jMr70Dee2Kc59JZBVYEemUc20iaoRbiabJkpkLWA8tYhHIHqgU4dRJMXseQNXjl9iaibiaOAp2otpmjnAibgkFupQv/132', '1', '1', '2019-08-08 09:36:58', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, NULL, '山东', '青岛', '中国', '0', '', '0', 'zh_CN', 'okA6As4yQIyjw1lCVZmwsn8KE6_Q', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee2197f0096', 'o94BGvwfVtfneBPUzKdD7pHeMUHI', '5YiY5Y2O', '刘华', '', 'http://thirdwx.qlogo.cn/mmopen/QsibiatXqLoZsZqgRAhRygAZZKicZJaCchJu838gDyZibnPyJTfPTYQTfpnvmiaR0n4Mkao3kicZP6BIClWnUrBVBjZhojaKgY3GWJ/132', '1', '1', '2016-01-07 22:04:54', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '北京', '海淀', '中国', '0', '', '0', 'zh_CN', 'okA6As6YWCLn_h7_ewLJ5qSMV3mU', 'gh_20419b74f848', '2019-12-04 11:09:14');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee219840097', 'o94BGv2TDUXbCeqV_y-ISU4YQ3gw', '5rKh5pyJ5aaC5p6c', '没有如果', '', 'http://thirdwx.qlogo.cn/mmopen/QsibiatXqLoZsZqgRAhRygAcAWebA4X4Ytxa8aqYBafxFUiaXoWknJN2CKZbDMWQJkR0Z3N160WaJyjCpWZH02cUS2ZHxvfK02u/132', '1', '1', '2016-08-02 11:13:07', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '江苏', '南京', '中国', '0', '', '0', 'zh_CN', 'okA6As-iVWDQ1SoTJEQQiKlMybE0', 'gh_20419b74f848', '2019-12-04 11:09:15');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee219890098', 'o94BGv-N3NLd_s7yYcgKMwKWTPOY', '5ZCs6aOO5YWl56aF', '听风入禅', '', 'http://thirdwx.qlogo.cn/mmopen/Q3auHgzwzM7HwJl2NsmeIfQhVV9ZIhoiazteOibv3Xay1olKLZb6ib3GOibpvyyeEiaaQEb9VW0jAzGGFJ8fe25iafmE106OhiaNX26EjT71nuiaxNs/132', '1', '1', '2017-08-04 16:20:43', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, NULL, '四川', '成都', '中国', '0', '', '0', 'zh_CN', 'okA6As1IuJ5AXpNjd7SA6nE02crk', 'gh_20419b74f848', '2019-12-04 11:09:15');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee2198e0099', 'o94BGvzfINRzXOpV_UzhZjscCmnM', 'eHl6', 'xyz', '', 'http://thirdwx.qlogo.cn/mmopen/h0OFV2pnnGewEYq3RFwxHicss6QVfxvgHqSnHlbGwtvpg6N7Mibf5GaFSx9icicYY6JOIoq70TqZBhqoZY4n6Flghn9QeEGyReyQ/132', '1', '1', '2016-01-20 23:00:15', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '河北', '石家庄', '中国', '0', '', '0', 'zh_CN', 'okA6Asyc9hP8o-VopwdyCzVim9J8', 'gh_20419b74f848', '2019-12-04 11:09:15');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee21992009a', 'o94BGvw2bsppChEYQNjwQD_4OL5I', '5LuZ5aSW5pyJ5LuZ8J+Qsg==', '仙外有仙', '', 'http://thirdwx.qlogo.cn/mmopen/QsibiatXqLoZsZqgRAhRygAdgoic5KC8aEiaIM91ZibzfLjbX4QXY6jRYKJibjNDJibKxHqnEia5L5JLmAIHcxzRGthxJZ7mTVCCAdibL/132', '1', '1', '2017-10-16 19:24:30', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, NULL, '山东', '潍坊', '中国', '0', '', '0', 'zh_CN', 'okA6As85csF2vn9J4uJL5CVBeX_Q', 'gh_20419b74f848', '2019-12-04 11:09:15');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee2199b009b', 'o94BGv_btUL661RMXvENJSr3_Kzk', 'aU1lc3NhZ2U=', 'iMessage', '', 'http://thirdwx.qlogo.cn/mmopen/h0OFV2pnnGewEYq3RFwxH0E87Nhk9CKQtcIgnBKibplgtSUWvnbTT3U1GWZbqyBxFnUBJibQXVjxncqJlcyWdXDxfuTWm14ibmx/132', '1', '1', '2019-12-02 11:07:43', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, NULL, '', '', '比利时', '0', '', '0', 'zh_CN', 'okA6AszVLY3yFrkBxWNv7Kj1bAGI', 'gh_20419b74f848', '2019-12-04 11:09:15');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee219a0009c', 'o94BGv0y-DO9KKzDP7aYm9ATMLmo', 'TEzlm40=', 'LL囍', '', 'http://thirdwx.qlogo.cn/mmopen/PiajxSqBRaEJDeCo2qPHAYT6qJ33ZYGl01gPdyC20PjcMhibxcBxL3d16AVzYF422oGzc5adicqUic0z1WVg0AaBnQ/132', '2', '1', '2017-08-19 03:40:14', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '', '', '', '0', '', '0', 'zh_CN', 'okA6As_K8ZkN0HqUB4Bofee3LjJ4', 'gh_20419b74f848', '2019-12-04 11:09:15');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee219a4009d', 'o94BGv9VsRxUVHqiS35bfTAq-KSY', '44CQ5Z2a4oC75a6I44CR', '【坚※守】', '', 'http://thirdwx.qlogo.cn/mmopen/ajNVdqHZLLCfpeq4iayssX92ib67k0XCb7aiaHIYTJCGEhE8QN8OyY4eibxrAOg82ksQfMrQ3z8w5GPrqZwmUH65jQ/132', '2', '1', '2017-08-19 03:40:14', 'ADD_SCENE_OTHERS', NULL, NULL, NULL, NULL, '山东', '青岛', '中国', '0', '', '0', 'zh_CN', 'okA6As8fB4Diiqe6OtAJ4QGsUw78', 'gh_20419b74f848', '2019-12-04 11:09:15');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee219a8009e', 'o94BGv4aJtr2SJgFI8p60hWUNMuw', 'R2l2ZSAgbWU=', 'Give me', '', 'http://thirdwx.qlogo.cn/mmopen/QsibiatXqLoZs4heMEmjd4zvpkibGOueDQkVDUr7rAhdKwTFmKr4pbjRnlEaKujuyHA64jpnl97tUQDnK0h4kLqe5q89Ut6fWib3/132', '1', '1', '2019-10-06 10:54:42', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, NULL, '湖南', '长沙', '中国', '0', '', '0', 'zh_CN', 'okA6As3cZ97ro_5KnzqG0abZ8G48', 'gh_20419b74f848', '2019-12-04 11:09:15');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee219ad009f', 'o94BGv7y2EhxEOeBOY5X5VRoyyGk', '5LiD5oiQ', '七成', '', 'http://thirdwx.qlogo.cn/mmopen/QsibiatXqLoZuYsN0KROlCBRhdXA1Rsibuwlw2mgTws3P0PE2ibMZmX2Yynfs7Qia8L6p2DBQ7ZJCgiagPqXrWdV8aEwt7D2Vticx2t/132', '1', '1', '2019-08-16 13:53:11', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, NULL, '山东', '青岛', '中国', '0', '', '0', 'zh_CN', 'okA6As1VNIuFrLjTOU5D3PgxJJOc', 'gh_20419b74f848', '2019-12-04 11:09:15');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee219b100a0', 'o94BGvzHyY6Ly0F-qAHgL1K6MqCQ', '5aSP5aSp', '夏天', '', 'http://thirdwx.qlogo.cn/mmopen/OibT1rC9XGZxXwnfH5rR7CEc7iaY4eaiafZKT6G1c7xJVwJzO6JIJ5lp7UqXIYHCbVj69oTG0ncjXu1eeibwO6k14lVMIv3sJHOp/132', '0', '1', '2019-11-07 14:23:36', 'ADD_SCENE_QR_CODE', NULL, NULL, NULL, NULL, '', '', '', '0', '', '0', 'zh_CN', 'okA6As35CgPl_ltLYzbZM12lyG8g', 'gh_20419b74f848', '2019-12-04 11:09:15');
INSERT INTO `weixin_gzuser` VALUES ('402881e86ecedfaf016ecee219b400a1', 'o94BGv2bhz_S2RdxWBffbfycYV34', 'amFzb24=', 'jason', '', 'http://thirdwx.qlogo.cn/mmopen/h0OFV2pnnGehPibG2O6EyXZqqLQwlbmIPNZ2eUVbeVuicdCNs2NlOUeCaZKoVM2tkiaNyPQB73OJtpmsoFLh7aXaEydv9mtfPLq/132', '1', '1', '2018-09-29 13:20:53', 'ADD_SCENE_SEARCH', NULL, NULL, NULL, NULL, '', '', '安道尔', '0', '', '0', 'zh_CN', 'okA6Asw5E24_F3rtXvAwdx4rLUyI', 'gh_20419b74f848', '2019-12-04 11:09:15');
-- ----------------------------
-- Table structure for weixin_huodong_biz_jwid
-- ----------------------------
DROP TABLE IF EXISTS `weixin_huodong_biz_jwid`;
CREATE TABLE `weixin_huodong_biz_jwid` (
`id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '序号',
`table_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '表名称',
`table_remake` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '表注释',
`table_type` varchar(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '表类型:\'1\':微信,\'2\':活动',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '微信活动jwid表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of weixin_huodong_biz_jwid
-- ----------------------------
INSERT INTO `weixin_huodong_biz_jwid` VALUES ('ff80808152a2abd20153592394830005', 'wx_act_goldeneggs', '砸金蛋活动表', '2');
INSERT INTO `weixin_huodong_biz_jwid` VALUES ('ff80808152a2abd20153592394830017', 'weixin_texttemplate', '文本模板', '1');
INSERT INTO `weixin_huodong_biz_jwid` VALUES ('ff80808152a2abd20153592394830018', 'weixin_subscribe', '关注欢迎语', '1');
INSERT INTO `weixin_huodong_biz_jwid` VALUES ('ff80808152a2abd20153592394830019', 'weixin_newstemplate', '图文模板表', '1');
INSERT INTO `weixin_huodong_biz_jwid` VALUES ('ff80808152a2abd20153592394830020', 'weixin_menu', '微信菜单表', '1');
INSERT INTO `weixin_huodong_biz_jwid` VALUES ('ff80808152a2abd20153592394830021', 'weixin_gzuser', '粉丝表', '1');
INSERT INTO `weixin_huodong_biz_jwid` VALUES ('ff80808152a2abd20153592394830024', 'weixin_autoresponse_default', '未识别回复语', '1');
INSERT INTO `weixin_huodong_biz_jwid` VALUES ('ff80808152a2abd20153592394830025', 'weixin_autoresponse', '关键字表', '1');
INSERT INTO `weixin_huodong_biz_jwid` VALUES ('ff80808152a2abd20153592394830026', 'weixin_receivetext', '消息存储表', '1');
INSERT INTO `weixin_huodong_biz_jwid` VALUES ('ff80808152a2abd20153592394830027', 'weixin_group_message_send_log', '群发日志表', '1');
INSERT INTO `weixin_huodong_biz_jwid` VALUES ('ff80808152a2abd20153592394830028', 'weixin_newstemplate', '图文素材表', '1');
INSERT INTO `weixin_huodong_biz_jwid` VALUES ('ff80808152a2abd20153592394830029', 'weixin_qrcode', '二维码表', '1');
INSERT INTO `weixin_huodong_biz_jwid` VALUES ('ff80808152a2abd20153592394830030', 'wx_act_goldeneggs_awards', '砸金蛋奖项表', '1');
INSERT INTO `weixin_huodong_biz_jwid` VALUES ('ff80808152a2abd20153592394830031', 'wx_act_goldeneggs_prizes', '砸金蛋奖品表', '1');
INSERT INTO `weixin_huodong_biz_jwid` VALUES ('ff80808152a2abd20153592394830050', 'weixin_qrcode_scan_record', '二维码扫码记录表', '1');
INSERT INTO `weixin_huodong_biz_jwid` VALUES ('ff80808152a2abd20153592394830051', 'weixin_tag', '粉丝标签表', '1');
INSERT INTO `weixin_huodong_biz_jwid` VALUES ('ff80808152a2abd20153592394830052', 'jw_system_user_jwid', '用户公众号关系表', '1');
-- ----------------------------
-- Table structure for weixin_linksucai
-- ----------------------------
DROP TABLE IF EXISTS `weixin_linksucai`;
CREATE TABLE `weixin_linksucai` (
`id` varchar(36) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`create_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人名称',
`create_date` datetime(0) NULL DEFAULT NULL COMMENT '创建日期',
`update_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改人名称',
`update_date` datetime(0) NULL DEFAULT NULL COMMENT '修改日期',
`name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '链接名称',
`outer_link` longtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '外部链接',
`content` longtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '功能描述',
`inner_link` longtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '内部链接',
`transfer_sign` int(11) NULL DEFAULT NULL COMMENT '转换标志',
`accountid` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '微信账户id',
`post_code` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '账号邮编',
`share_status` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT 'N' COMMENT '分享状态',
`is_encrypt` int(2) NOT NULL DEFAULT 0 COMMENT '是否加密(0:不加密,1:加密)',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '微信素材链接表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Table structure for weixin_menu
-- ----------------------------
DROP TABLE IF EXISTS `weixin_menu`;
CREATE TABLE `weixin_menu` (
`id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '序号',
`father_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '父id',
`menu_key` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '菜单KEY',
`menu_type` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '菜单类型',
`menu_name` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '菜单名称',
`url` varchar(2000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '网页链接',
`msgtype` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '相应消息类型',
`orders` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '菜单位置',
`template_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '关联素材id',
`jwid` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '公众号原始id',
`miniprogram_appid` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '小程序appid',
`miniprogram_pagepath` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '小程序页面路径',
`create_by` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人登录名称',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`update_by` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改人登录名称',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间'
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '微信菜单表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of weixin_menu
-- ----------------------------
INSERT INTO `weixin_menu` VALUES ('4028810c6b64097f016b64097f220000', '', '1560751472415', 'view', '捷微官网', 'http://www.jeewx.com/', 'text', '1', '4028810c6b64097f016b640c60f90003', 'gh_20419b74f848', '', '', 'admin', '2019-06-17 14:04:32', 'admin', '2019-06-18 10:22:13');
INSERT INTO `weixin_menu` VALUES ('4028810c6b64097f016b640a489c0001', NULL, '1560751523995', 'click', '在线文档', '', 'news', '2', '402881e969333f9d016933469b070001', 'gh_20419b74f848', '', '', 'admin', '2019-06-17 14:05:23', 'admin', '2019-06-18 10:22:22');
INSERT INTO `weixin_menu` VALUES ('4028810c6b64097f016b640aa57e0002', '4028810c6b64097f016b640a489c0001', '1560751547773', 'view', '小程序开发', 'http://shop.jeewx.com/#/doc/rumen', 'news', '21', '402881e86eced91f016eceda47f00003', 'gh_20419b74f848', '', '', 'admin', '2019-06-17 14:05:47', 'admin', '2019-12-04 11:15:48');
INSERT INTO `weixin_menu` VALUES ('ff8080816b6859c3016b6866c0840005', '4028810c6b64097f016b640a489c0001', '1560824692867', 'view', 'JeeWx文档', 'http://doc.jeewx.com/1275609', 'text', '22', '402881e86eced91f016eced9c4490002', 'gh_20419b74f848', '', '', 'admin', '2019-06-18 10:24:53', 'admin', '2019-12-04 11:14:58');
INSERT INTO `weixin_menu` VALUES ('ff8080816b6859c3016b68670f910006', '', '1560824713104', 'click', '关注欢迎', '', 'text', '3', '402881e86eced91f016eced9c4490002', 'gh_20419b74f848', '', '', 'admin', '2019-06-18 10:25:13', 'admin', '2019-12-04 11:16:08');
INSERT INTO `weixin_menu` VALUES ('ff8080816cf5f7c4016cf610b0480002', '4028810c6b64097f016b64097f220000', '1567496384584', 'view', 'JEECG官网', 'http://www.jeecg.com', 'text', '11', '402881e86eced91f016eced9c4490002', 'gh_20419b74f848', '', '', 'admin', '2019-09-03 15:39:45', 'admin', '2019-12-04 11:14:09');
-- ----------------------------
-- Table structure for weixin_newsitem
-- ----------------------------
DROP TABLE IF EXISTS `weixin_newsitem`;
CREATE TABLE `weixin_newsitem` (
`id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '序号',
`newstemplate_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '图文id',
`thumb_media_id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '图文缩略图的media_id',
`title` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '标题',
`author` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '作者',
`image_path` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '图片路径',
`content` longtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '内容',
`description` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`order_no` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '素材顺序',
`new_type` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '图文:news;外部url:url',
`url` varchar(2000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '原文链接',
`external_url` varchar(2000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '外部链接',
`show_cover_pic` varchar(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '1' COMMENT '是否显示封面:\'1\':显示,\'0\':不显示',
`create_by` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人名称',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`update_by` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改人名称',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改人时间'
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '图文模板素材表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of weixin_newsitem
-- ----------------------------
INSERT INTO `weixin_newsitem` VALUES ('402881e86ecedfaf016ecedfafd10000', '402881e86eced91f016eceda47f00003', 'btCgofXbB5KTDxSN1jFkEiG4S7sYzDnn1gn6jci_ksXOKOCwOGt6G9J5qzlG7zCz', 'Jeecg-Boot 快速开发平台开源项目介绍', 'jeecg', 'http://static.h5huodong.com/upload/files/333ed8e79e8645d0a925930e7f2919b4.png', '<h1 style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: 2.25em; margin-top: 0px; margin-bottom: 14px; padding: 0px; font-family: "Helvetica Neue", NotoSansHans-Regular, AvenirNext-Regular, arial, "Hiragino Sans GB", "Microsoft Yahei", "WenQuanYi Micro Hei", Arial, Helvetica, sans-serif; line-height: 1.2; min-height: 1rem; color: rgb(82, 82, 82); white-space: normal;\">项目介绍</h1><p style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; margin-top: 0px; margin-bottom: 0px; line-height: 2; padding: 0px; color: rgb(82, 82, 82); font-family: "Helvetica Neue", NotoSansHans-Regular, AvenirNext-Regular, arial, "Hiragino Sans GB", "Microsoft Yahei", "WenQuanYi Micro Hei", serif; font-size: 15px; white-space: normal;\"><img src=\"https://static.oschina.net/uploads/img/201905/24164523_XDhg.png\" alt=\"输入图片说明\" title=\"在这里输入图片标题\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; border-style: none; max-width: 100%; display: inline-block; padding: 3px;\"/></p><blockquote class=\"default\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; margin-top: 14px; margin-bottom: 14px; line-height: 1.2; padding: 5px 5px 5px 15px; color: rgb(119, 119, 119); border-left-width: 4px; border-left-color: rgb(221, 221, 221); font-family: "Helvetica Neue", NotoSansHans-Regular, AvenirNext-Regular, arial, "Hiragino Sans GB", "Microsoft Yahei", "WenQuanYi Micro Hei", serif; font-size: 15px; white-space: normal;\"><p style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; margin-top: 0px; margin-bottom: 0px; line-height: 2; padding: 0px;\">Jeecg-Boot 是一款基于SpringBoot+代码生成器的快速开发平台!采用前后端分离架构:SpringBoot,Mybatis,Shiro,JWT,Vue&Ant Design。强大的代码生成器让前端和后台代码一键生成,不需要写任何代码,保持jeecg一贯的强大,绝对是全栈开发福音!!<br style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased;\"/>JeecgBoot在提高UI能力的同时,降低了前后分离的开发成本,JeecgBoot还独创在线开发模式(No代码概念),一系列在线智能开发:在线配置表单、在线配置报表、在线图表设计、在线设计流程等等。</p><p style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; margin-top: 0px; margin-bottom: 0px; line-height: 2; padding: 0px;\">JEECG宗旨是: 简单功能由Online Coding配置实现(在线配置表单、在线配置报表、在线图表设计、在线设计流程、在线设计表单),复杂功能由代码生成器生成进行手工Merge,既保证了智能又兼顾了灵活;<br style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased;\"/>业务流程采用工作流来实现、扩展出任务接口,供开发编写业务逻辑,表单提供多种解决方案: 表单设计器、online配置表单、编码表单。同时实现了流程与表单的分离设计(松耦合)、并支持任务节点灵活配置,既保证了公司流程的保密性,又减少了开发人员的工作量。</p></blockquote><blockquote class=\"default\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; margin-top: 14px; margin-bottom: 14px; line-height: 1.2; padding: 5px 5px 5px 15px; color: rgb(119, 119, 119); border-left-width: 4px; border-left-color: rgb(221, 221, 221); font-family: "Helvetica Neue", NotoSansHans-Regular, AvenirNext-Regular, arial, "Hiragino Sans GB", "Microsoft Yahei", "WenQuanYi Micro Hei", serif; font-size: 15px; white-space: normal;\"><p style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; margin-top: 0px; margin-bottom: 0px; line-height: 2; padding: 0px;\">技术交流QQ群:②769925425、①284271917(满)<br style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased;\"/>在线演示: <a href=\"http://boot.jeecg.com/\" target=\"_blank\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; color: rgb(65, 131, 196);\">http://boot.jeecg.com</a><br style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased;\"/>源码下载:<a href=\"https://github.com/zhangdaiscott/jeecg-boot\" target=\"_blank\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; color: rgb(65, 131, 196);\">https://github.com/zhangdaiscott/jeecg-boot</a><br style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased;\"/>快速入门: <a href=\"http://www.jeecg.com/#/doc/rumen\" target=\"_blank\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; color: rgb(65, 131, 196);\">http://www.jeecg.com/#/doc/rumen</a><br style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased;\"/>常见问题: <a href=\"http://www.jeecg.org/forum.php?mod=viewthread&tid=7816&extra=page%3D1\" target=\"_blank\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; color: rgb(65, 131, 196);\">常见问题大全</a><br style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased;\"/>视频教程: <a href=\"https://space.bilibili.com/454617261/channel/detail?cid=84186\" target=\"_blank\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; color: rgb(65, 131, 196);\">https://space.bilibili.com/454617261/channel/detail?cid=84186</a><br style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased;\"/>反馈问题: <a href=\"https://github.com/zhangdaiscott/jeecg-boot/issues\" target=\"_blank\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; color: rgb(65, 131, 196);\">https://github.com/zhangdaiscott/jeecg-boot/issues</a><br style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased;\"/>版本日志: <a href=\"http://www.jeecg.com/#/doc/changelog\" target=\"_blank\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; color: rgb(65, 131, 196);\">http://www.jeecg.com/#/doc/changelog</a></p></blockquote><p style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; margin-top: 0px; margin-bottom: 0px; line-height: 2; padding: 0px; color: rgb(82, 82, 82); font-family: "Helvetica Neue", NotoSansHans-Regular, AvenirNext-Regular, arial, "Hiragino Sans GB", "Microsoft Yahei", "WenQuanYi Micro Hei", serif; font-size: 15px; white-space: normal;\">技术架构:</p><pre style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace; font-size: 15px; margin-top: 14px; margin-bottom: 14px; line-height: 1.45; padding: 16px; overflow: auto; background-color: rgb(247, 247, 247); border-width: 0px; border-style: initial; border-color: initial; border-radius: 3px; color: rgb(82, 82, 82);\"><code style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace; font-size: 1em; display: inline; border-radius: 4px; word-break: break-all; white-space: pre; line-height: inherit; margin: 0px; max-width: 100%; overflow: initial; border: 0px; tab-size: 4;\">后端技术: SpringBoot_2.1.3.RELEASE + Mybatis-plus_3.1.2 + Shiro_1.4.0 + Jwt_3.7.0 \r\n + Swagger-ui + Redis \r\n前端技术: Ant-design-vue + Vue + Webpack\r\n其他技术: Druid(数据库连接池)、Logback(日志工具) 、poi(Excel工具)、\r\n Quartz(定时任务)、lombok(简化代码)\r\n项目构建: Maven、Jdk8</code></pre><p style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; margin-top: 0px; margin-bottom: 0px; line-height: 2; padding: 0px; color: rgb(82, 82, 82); font-family: "Helvetica Neue", NotoSansHans-Regular, AvenirNext-Regular, arial, "Hiragino Sans GB", "Microsoft Yahei", "WenQuanYi Micro Hei", serif; font-size: 15px; white-space: normal;\">前端开发必读文档:</p><p style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; margin-top: 0px; margin-bottom: 0px; line-height: 2; padding: 0px; color: rgb(82, 82, 82); font-family: "Helvetica Neue", NotoSansHans-Regular, AvenirNext-Regular, arial, "Hiragino Sans GB", "Microsoft Yahei", "WenQuanYi Micro Hei", serif; font-size: 15px; white-space: normal;\">前端UI组件: Ant Design of Vue<br style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased;\"/><a href=\"https://vuecomponent.github.io/ant-design-vue/docs/vue/introduce-cn\" target=\"_blank\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; color: rgb(65, 131, 196);\">https://vuecomponent.github.io/ant-design-vue/docs/vue/introduce-cn</a><br style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased;\"/>报表UI组件:viser-vue<br style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased;\"/><a href=\"https://viserjs.github.io/demo.html#/viser/bar/basic-bar\" target=\"_blank\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; color: rgb(65, 131, 196);\">https://viserjs.github.io/demo.html#/viser/bar/basic-bar</a><br style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased;\"/>VUE基础知识:<br style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased;\"/><a href=\"https://cn.vuejs.org/v2/guide\" target=\"_blank\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; color: rgb(65, 131, 196);\">https://cn.vuejs.org/v2/guide</a><br style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased;\"/>Ant Design Vue Pro:<br style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased;\"/><a href=\"https://pro.loacg.com/docs/getting-started\" target=\"_blank\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; color: rgb(65, 131, 196);\">https://pro.loacg.com/docs/getting-started</a></p><h2 style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; padding: 0px 0px 0.3em; font-family: "Helvetica Neue", NotoSansHans-Regular, AvenirNext-Regular, arial, "Hiragino Sans GB", "Microsoft Yahei", "WenQuanYi Micro Hei", Arial, Helvetica, sans-serif; line-height: 1.225; margin: 14px 0px; font-size: 1.3em; border-bottom: 1px solid rgb(238, 238, 238); color: rgb(82, 82, 82); white-space: normal;\"><a id=\"_44\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; color: rgb(65, 131, 196); position: absolute; margin-top: -10px;\" href=\"http://\"></a>捐赠</h2><p style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; margin-top: 0px; margin-bottom: 0px; line-height: 2; padding: 0px; color: rgb(82, 82, 82); font-family: "Helvetica Neue", NotoSansHans-Regular, AvenirNext-Regular, arial, "Hiragino Sans GB", "Microsoft Yahei", "WenQuanYi Micro Hei", serif; font-size: 15px; white-space: normal;\">如果觉得还不错,请作者喝杯咖啡吧 ☺<br style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased;\"/><img src=\"https://static.oschina.net/uploads/img/201903/08155608_0EFX.png\" alt=\"输入图片说明\" title=\"在这里输入图片标题\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; border-style: none; max-width: 100%; display: inline-block; padding: 3px;\"/></p><h3 style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; padding: 0px; font-family: "Helvetica Neue", NotoSansHans-Regular, AvenirNext-Regular, arial, "Hiragino Sans GB", "Microsoft Yahei", "WenQuanYi Micro Hei", Arial, Helvetica, sans-serif; line-height: 1.43; margin: 14px 0px; font-weight: 400; font-size: 1.2em; color: rgb(82, 82, 82); white-space: normal;\"><a id=\"_52\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; color: rgb(65, 131, 196); position: absolute; margin-top: -10px;\" href=\"http://\"></a>系统截图</h3><h5 style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; padding: 0px; font-family: "Helvetica Neue", NotoSansHans-Regular, AvenirNext-Regular, arial, "Hiragino Sans GB", "Microsoft Yahei", "WenQuanYi Micro Hei", Arial, Helvetica, sans-serif; line-height: 1.2; margin: 14px 0px; font-weight: 400; font-size: 1em; color: rgb(82, 82, 82); white-space: normal;\"><a id=\"PC_54\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; color: rgb(65, 131, 196); position: absolute; margin-top: -10px;\" href=\"http://\"></a>PC端</h5><p style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; margin-top: 0px; margin-bottom: 0px; line-height: 2; padding: 0px; color: rgb(82, 82, 82); font-family: "Helvetica Neue", NotoSansHans-Regular, AvenirNext-Regular, arial, "Hiragino Sans GB", "Microsoft Yahei", "WenQuanYi Micro Hei", serif; font-size: 15px; white-space: normal;\"><img src=\"https://static.oschina.net/uploads/img/201904/14155402_AmlV.png\" alt=\"输入图片说明\" title=\"在这里输入图片标题\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; border-style: none; max-width: 100%; display: inline-block; padding: 3px;\"/><br style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased;\"/><img src=\"https://oscimg.oschina.net/oscnet/ba807921197596ba56f495d4b22ee3280ca.jpg\" alt=\"输入图片说明\" title=\"在这里输入图片标题\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; border-style: none; max-width: 100%; display: inline-block; padding: 3px;\"/><br style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased;\"/><img src=\"https://static.oschina.net/uploads/img/201904/14160657_cHwb.png\" alt=\"输入图片说明\" title=\"在这里输入图片标题\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; border-style: none; max-width: 100%; display: inline-block; padding: 3px;\"/><br style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased;\"/><img src=\"https://static.oschina.net/uploads/img/201904/14160813_KmXS.png\" alt=\"输入图片说明\" title=\"在这里输入图片标题\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; border-style: none; max-width: 100%; display: inline-block; padding: 3px;\"/><br style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased;\"/><img src=\"https://static.oschina.net/uploads/img/201904/14160935_Nibs.png\" alt=\"输入图片说明\" title=\"在这里输入图片标题\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; border-style: none; max-width: 100%; display: inline-block; padding: 3px;\"/><br style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased;\"/><img src=\"https://static.oschina.net/uploads/img/201904/14161004_bxQ4.png\" alt=\"输入图片说明\" title=\"在这里输入图片标题\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; border-style: none; max-width: 100%; display: inline-block; padding: 3px;\"/></p><h5 style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; padding: 0px; font-family: "Helvetica Neue", NotoSansHans-Regular, AvenirNext-Regular, arial, "Hiragino Sans GB", "Microsoft Yahei", "WenQuanYi Micro Hei", Arial, Helvetica, sans-serif; line-height: 1.2; margin: 14px 0px; font-weight: 400; font-size: 1em; color: rgb(82, 82, 82); white-space: normal;\"><a id=\"_62\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; color: rgb(65, 131, 196); position: absolute; margin-top: -10px;\" href=\"http://\"></a>在线接口文档</h5><p style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; margin-top: 0px; margin-bottom: 0px; line-height: 2; padding: 0px; color: rgb(82, 82, 82); font-family: "Helvetica Neue", NotoSansHans-Regular, AvenirNext-Regular, arial, "Hiragino Sans GB", "Microsoft Yahei", "WenQuanYi Micro Hei", serif; font-size: 15px; white-space: normal;\"><img src=\"https://static.oschina.net/uploads/img/201908/27095258_M2Xq.png\" alt=\"输入图片说明\" title=\"在这里输入图片标题\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; border-style: none; max-width: 100%; display: inline-block; padding: 3px;\"/><br style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased;\"/><img src=\"https://static.oschina.net/uploads/img/201904/14160957_hN3X.png\" alt=\"输入图片说明\" title=\"在这里输入图片标题\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; border-style: none; max-width: 100%; display: inline-block; padding: 3px;\"/></p><h5 style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; padding: 0px; font-family: "Helvetica Neue", NotoSansHans-Regular, AvenirNext-Regular, arial, "Hiragino Sans GB", "Microsoft Yahei", "WenQuanYi Micro Hei", Arial, Helvetica, sans-serif; line-height: 1.2; margin: 14px 0px; font-weight: 400; font-size: 1em; color: rgb(82, 82, 82); white-space: normal;\"><a id=\"_67\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; color: rgb(65, 131, 196); position: absolute; margin-top: -10px;\" href=\"http://\"></a>报表</h5><p style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; margin-top: 0px; margin-bottom: 0px; line-height: 2; padding: 0px; color: rgb(82, 82, 82); font-family: "Helvetica Neue", NotoSansHans-Regular, AvenirNext-Regular, arial, "Hiragino Sans GB", "Microsoft Yahei", "WenQuanYi Micro Hei", serif; font-size: 15px; white-space: normal;\"><img src=\"https://static.oschina.net/uploads/img/201904/14160828_pkFr.png\" alt=\"输入图片说明\" title=\"在这里输入图片标题\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; border-style: none; max-width: 100%; display: inline-block; padding: 3px;\"/><br style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased;\"/><img src=\"https://static.oschina.net/uploads/img/201904/14160834_Lo23.png\" alt=\"输入图片说明\" title=\"在这里输入图片标题\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; border-style: none; max-width: 100%; display: inline-block; padding: 3px;\"/><br style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased;\"/><img src=\"https://static.oschina.net/uploads/img/201904/14160842_QK7B.png\" alt=\"输入图片说明\" title=\"在这里输入图片标题\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; border-style: none; max-width: 100%; display: inline-block; padding: 3px;\"/><br style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased;\"/><img src=\"https://static.oschina.net/uploads/img/201904/14160849_GBm5.png\" alt=\"输入图片说明\" title=\"在这里输入图片标题\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; border-style: none; max-width: 100%; display: inline-block; padding: 3px;\"/><br style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased;\"/><img src=\"https://static.oschina.net/uploads/img/201904/14160858_6RAM.png\" alt=\"输入图片说明\" title=\"在这里输入图片标题\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; border-style: none; max-width: 100%; display: inline-block; padding: 3px;\"/></p><h5 style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; padding: 0px; font-family: "Helvetica Neue", NotoSansHans-Regular, AvenirNext-Regular, arial, "Hiragino Sans GB", "Microsoft Yahei", "WenQuanYi Micro Hei", Arial, Helvetica, sans-serif; line-height: 1.2; margin: 14px 0px; font-weight: 400; font-size: 1em; color: rgb(82, 82, 82); white-space: normal;\"><a id=\"_74\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; color: rgb(65, 131, 196); position: absolute; margin-top: -10px;\" href=\"http://\"></a>流程</h5><p style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; margin-top: 0px; margin-bottom: 0px; line-height: 2; padding: 0px; color: rgb(82, 82, 82); font-family: "Helvetica Neue", NotoSansHans-Regular, AvenirNext-Regular, arial, "Hiragino Sans GB", "Microsoft Yahei", "WenQuanYi Micro Hei", serif; font-size: 15px; white-space: normal;\"><img src=\"https://static.oschina.net/uploads/img/201904/14160623_8fwk.png\" alt=\"输入图片说明\" title=\"在这里输入图片标题\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; border-style: none; max-width: 100%; display: inline-block; padding: 3px;\"/><br style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased;\"/><img src=\"https://static.oschina.net/uploads/img/201904/14160917_9Ftz.png\" alt=\"输入图片说明\" title=\"在这里输入图片标题\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; border-style: none; max-width: 100%; display: inline-block; padding: 3px;\"/><br style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased;\"/><img src=\"https://static.oschina.net/uploads/img/201904/14160633_u59G.png\" alt=\"输入图片说明\" title=\"在这里输入图片标题\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; border-style: none; max-width: 100%; display: inline-block; padding: 3px;\"/><br style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased;\"/><img src=\"https://static.oschina.net/uploads/img/201907/05165142_yyQ7.png\" alt=\"输入图片说明\" title=\"在这里输入图片标题\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; border-style: none; max-width: 100%; display: inline-block; padding: 3px;\"/></p><h5 style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; padding: 0px; font-family: "Helvetica Neue", NotoSansHans-Regular, AvenirNext-Regular, arial, "Hiragino Sans GB", "Microsoft Yahei", "WenQuanYi Micro Hei", Arial, Helvetica, sans-serif; line-height: 1.2; margin: 14px 0px; font-weight: 400; font-size: 1em; color: rgb(82, 82, 82); white-space: normal;\"><a id=\"_81\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; color: rgb(65, 131, 196); position: absolute; margin-top: -10px;\" href=\"http://\"></a>手机端</h5><p style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; margin-top: 0px; margin-bottom: 0px; line-height: 2; padding: 0px; color: rgb(82, 82, 82); font-family: "Helvetica Neue", NotoSansHans-Regular, AvenirNext-Regular, arial, "Hiragino Sans GB", "Microsoft Yahei", "WenQuanYi Micro Hei", serif; font-size: 15px; white-space: normal;\"><img src=\"https://oscimg.oschina.net/oscnet/da543c5d0d57baab0cecaa4670c8b68c521.jpg\" alt=\"\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; border-style: none; max-width: 100%; display: inline-block; padding: 3px;\"/><br style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased;\"/><img src=\"https://oscimg.oschina.net/oscnet/fda4bd82cab9d682de1c1fbf2060bf14fa6.jpg\" alt=\"\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; border-style: none; max-width: 100%; display: inline-block; padding: 3px;\"/></p><h5 style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; padding: 0px; font-family: "Helvetica Neue", NotoSansHans-Regular, AvenirNext-Regular, arial, "Hiragino Sans GB", "Microsoft Yahei", "WenQuanYi Micro Hei", Arial, Helvetica, sans-serif; line-height: 1.2; margin: 14px 0px; font-weight: 400; font-size: 1em; color: rgb(82, 82, 82); white-space: normal;\"><a id=\"PAD_85\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; color: rgb(65, 131, 196); position: absolute; margin-top: -10px;\" href=\"http://\"></a>PAD端</h5><p style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; margin-top: 0px; margin-bottom: 0px; line-height: 2; padding: 0px; color: rgb(82, 82, 82); font-family: "Helvetica Neue", NotoSansHans-Regular, AvenirNext-Regular, arial, "Hiragino Sans GB", "Microsoft Yahei", "WenQuanYi Micro Hei", serif; font-size: 15px; white-space: normal;\"><img src=\"https://oscimg.oschina.net/oscnet/e90fef970a8c33790ab03ffd6c4c7cec225.jpg\" alt=\"\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; border-style: none; max-width: 100%; display: inline-block; padding: 3px;\"/><br style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased;\"/><img src=\"https://oscimg.oschina.net/oscnet/d78218803a9e856a0aa82b45efc49849a0c.jpg\" alt=\"\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; border-style: none; max-width: 100%; display: inline-block; padding: 3px;\"/><br style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased;\"/><img src=\"https://oscimg.oschina.net/oscnet/0404054d9a12647ef6f82cf9cfb80a5ac02.jpg\" alt=\"\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; border-style: none; max-width: 100%; display: inline-block; padding: 3px;\"/><br style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased;\"/><img src=\"https://oscimg.oschina.net/oscnet/59c23b230f52384e588ee16309b44fa20de.jpg\" alt=\"\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; border-style: none; max-width: 100%; display: inline-block; padding: 3px;\"/></p><h3 style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; padding: 0px; font-family: "Helvetica Neue", NotoSansHans-Regular, AvenirNext-Regular, arial, "Hiragino Sans GB", "Microsoft Yahei", "WenQuanYi Micro Hei", Arial, Helvetica, sans-serif; line-height: 1.43; margin: 14px 0px; font-weight: 400; font-size: 1.2em; color: rgb(82, 82, 82); white-space: normal;\"><a id=\"Online_91\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; color: rgb(65, 131, 196); position: absolute; margin-top: -10px;\" href=\"http://\"></a>Online初体验</h3><p style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; margin-top: 0px; margin-bottom: 0px; line-height: 2; padding: 0px; color: rgb(82, 82, 82); font-family: "Helvetica Neue", NotoSansHans-Regular, AvenirNext-Regular, arial, "Hiragino Sans GB", "Microsoft Yahei", "WenQuanYi Micro Hei", serif; font-size: 15px; white-space: normal;\"><a href=\"https://segmentfault.com/a/1190000019448442\" target=\"_blank\" style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; color: rgb(65, 131, 196);\">一分钟快速学习</a></p><p style=\"box-sizing: inherit; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; margin-top: 0px; margin-bottom: 0px; line-height: 2; padding: 0px; color: rgb(82, 82, 82); font-family: "Helvetica Neue", NotoSansHans-Regular, AvenirNext-Regular, arial, "Hiragino Sans GB", "Microsoft Yahei", "WenQuanYi Micro Hei", serif; font-size: 15px; white-space: normal;\">欢迎吐槽,欢迎star~</p><p><br/></p>', 'Jeecg-Boot 快速开发平台开源项目介绍', '1', 'news', 'http://www.jeecg.com', '', '0', 'admin', '2019-12-04 11:06:36', 'admin', NULL);
INSERT INTO `weixin_newsitem` VALUES ('402881e86ecedfaf016ecee150a50001', '402881e86eced91f016eceda47f00003', 'NISm7sPr5fUhYGxOncx-s6hs_FkbFfWQvlRJtquU_DcvKlF0DZarG_ZE8U5bVFrx', 'JeeWx-Boot 免费微信管家平台介绍', 'jeecg', 'http://static.h5huodong.com/upload/files/8a350331a3044c7e8813b9286b2852b7.png', '<h1 style=\"font-size: 2em; margin-top: 24px; margin-bottom: 16px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Liberation Sans", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Wenquanyi Micro Hei", "WenQuanYi Zen Hei", "ST Heiti", SimHei, SimSun, "WenQuanYi Zen Hei Sharp", sans-serif; line-height: 1.25; font-weight: 600; padding: 0em; min-height: 1rem; position: relative; color: rgb(64, 72, 91); white-space: normal;\">JeeWx-Boot 免费微信管家平台</h1><p style=\"margin: 0px 0em 16px; line-height: 1.6; word-break: break-word; color: rgb(64, 72, 91); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Liberation Sans", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Wenquanyi Micro Hei", "WenQuanYi Zen Hei", "ST Heiti", SimHei, SimSun, "WenQuanYi Zen Hei Sharp", sans-serif; white-space: normal;\">当前最新版本: 1.0.3(发布日期:20190801)</p><p style=\"margin: 0px 0em 16px; line-height: 1.6; word-break: break-word; color: rgb(64, 72, 91); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Liberation Sans", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Wenquanyi Micro Hei", "WenQuanYi Zen Hei", "ST Heiti", SimHei, SimSun, "WenQuanYi Zen Hei Sharp", sans-serif; white-space: normal;\"><a href=\"https://github.com/zhangdaiscott/jeewx-boot/blob/master/LICENSE\" style=\"color: rgb(9, 94, 171); overflow-wrap: break-word;\"><img src=\"https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg\" alt=\"AUR\" style=\"box-sizing: content-box; border-style: none; max-width: 100%; cursor: pointer; display: inline-block !important;\"/></a> <a href=\"http://www.jeewx.com/\" style=\"color: rgb(9, 94, 171); overflow-wrap: break-word;\"><img src=\"https://img.shields.io/badge/Author-JEECG%E5%9B%A2%E9%98%9F-orange.svg\" alt=\"\" style=\"box-sizing: content-box; border-style: none; max-width: 100%; cursor: pointer; display: inline-block !important;\"/></a> <a href=\"https://github.com/zhangdaiscott/jeewx-boot\" style=\"color: rgb(9, 94, 171); overflow-wrap: break-word;\"><img src=\"https://img.shields.io/badge/version-2.0-brightgreen.svg\" alt=\"\" style=\"box-sizing: content-box; border-style: none; max-width: 100%; cursor: pointer; display: inline-block !important;\"/></a> <a href=\"https://github.com/zhangdaiscott/jeewx-boot\" style=\"color: rgb(9, 94, 171); overflow-wrap: break-word;\"><img src=\"https://img.shields.io/github/stars/zhangdaiscott/jeewx-boot.svg?style=social&label=Stars\" alt=\"GitHub stars\" style=\"box-sizing: content-box; border-style: none; max-width: 100%; cursor: pointer; display: inline-block !important;\"/></a> <a href=\"https://github.com/zhangdaiscott/jeewx-boot\" style=\"color: rgb(9, 94, 171); overflow-wrap: break-word;\"><img src=\"https://img.shields.io/github/forks/zhangdaiscott/jeewx-boot.svg?style=social&label=Fork\" alt=\"GitHub forks\" style=\"box-sizing: content-box; border-style: none; max-width: 100%; cursor: pointer; display: inline-block !important;\"/></a></p><h2 style=\"font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Liberation Sans", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Wenquanyi Micro Hei", "WenQuanYi Zen Hei", "ST Heiti", SimHei, SimSun, "WenQuanYi Zen Hei Sharp", sans-serif; line-height: 1.25; margin: 24px 0em 16px; font-weight: 600; padding: 0em; font-size: 1.5em; position: relative; color: rgb(64, 72, 91); white-space: normal;\"><a id=\"项目介绍\" class=\"anchor\" href=\"https://gitee.com/jeecg/jeewx-boot#%E9%A1%B9%E7%9B%AE%E4%BB%8B%E7%BB%8D\" style=\"color: rgb(9, 94, 171); overflow-wrap: break-word; float: left; padding-right: 4px; margin-left: -20px; line-height: 1; display: block; padding-left: 30px; position: absolute; top: 0px; left: 0px; bottom: 0px; outline: none;\"></a>项目介绍</h2><p style=\"margin: 0px 0em 16px; line-height: 1.6; word-break: break-word; color: rgb(64, 72, 91); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Liberation Sans", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Wenquanyi Micro Hei", "WenQuanYi Zen Hei", "ST Heiti", SimHei, SimSun, "WenQuanYi Zen Hei Sharp", sans-serif; white-space: normal;\">Jeewx-Boot是一款开源免费的微信管家平台。支持微信公众号、微信第三方平台、小程序官网、小程序商城、微信抽奖活动等。Jeewx-Boot实现了微信公众号管理、小程序CMS、微信抽奖活动等基础功能,便于二次开发,可以快速搭建微信应用!Jeewx-Boot独创插件开发机制,实现了每一抽奖活动(砸金蛋、刮刮乐、砍价等)、官网、商城都是一个独立的插件,对JAVA来讲就是一个JAR包,可以很方便的做插拔,最终打造像Discuz、微擎一样的插件生态圈。。</p><h3 style=\"font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Liberation Sans", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Wenquanyi Micro Hei", "WenQuanYi Zen Hei", "ST Heiti", SimHei, SimSun, "WenQuanYi Zen Hei Sharp", sans-serif; line-height: 1.25; margin: 24px 0em 16px; padding: 0em; font-size: 1.25em; position: relative; color: rgb(64, 72, 91); white-space: normal;\"><a id=\"jeewx-boot诞生的目的\" class=\"anchor\" href=\"https://gitee.com/jeecg/jeewx-boot#jeewx-boot%E8%AF%9E%E7%94%9F%E7%9A%84%E7%9B%AE%E7%9A%84\" style=\"color: rgb(9, 94, 171); overflow-wrap: break-word; float: left; padding-right: 4px; margin-left: -20px; line-height: 1; display: block; padding-left: 30px; position: absolute; top: 0px; left: 0px; bottom: 0px; outline: none;\"></a>Jeewx-Boot诞生的目的</h3><ul style=\"padding-left: 2em; margin-bottom: 16px; color: rgb(64, 72, 91); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Liberation Sans", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Wenquanyi Micro Hei", "WenQuanYi Zen Hei", "ST Heiti", SimHei, SimSun, "WenQuanYi Zen Hei Sharp", sans-serif; white-space: normal;\"><li style=\"list-style-type: initial;\">Jeewx开源至今已经6年时间,积累无数粉丝,但老版技术陈旧,随着功能增多项目也变的臃肿。之所以打造一款全新的产品Jeewx-Boot,最终目的是打造一个全新的微信开发生态圈。Jeewx-Boot独创插件开发机制,实现了每一抽奖活动(砸金蛋、刮刮乐、砍价等)、官网、商城、小程序都是一个独立的插件,对JAVA来讲就是一个JAR包,可以很方便的做插拔,打造像discuzz、微擎一样的插件生态机制;</li><li style=\"list-style-type: initial; margin-top: 0.25em;\">插件机制的好处在于,你可以灵活的选择你需要的插件,组装成你要的系统,就像搭建积木一样;当然如果你不需要那个功能,可以很轻松的拔掉;</li><li style=\"list-style-type: initial; margin-top: 0.25em;\">Jeewx-Boot采用最新主流技术SpinrgBoot2.x + Mybatis + Velocity,是大家熟悉的技术,学习成本低, 新的平台实现了插件开发机制,同时也支持更高的并发、更高的大数据能力;</li></ul><h2 style=\"font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Liberation Sans", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Wenquanyi Micro Hei", "WenQuanYi Zen Hei", "ST Heiti", SimHei, SimSun, "WenQuanYi Zen Hei Sharp", sans-serif; line-height: 1.25; margin: 24px 0em 16px; font-weight: 600; padding: 0em; font-size: 1.5em; position: relative; color: rgb(64, 72, 91); white-space: normal;\"><a id=\"技术文档\" class=\"anchor\" href=\"https://gitee.com/jeecg/jeewx-boot#%E6%8A%80%E6%9C%AF%E6%96%87%E6%A1%A3\" style=\"color: rgb(9, 94, 171); overflow-wrap: break-word; float: left; padding-right: 4px; margin-left: -20px; line-height: 1; display: block; padding-left: 30px; position: absolute; top: 0px; left: 0px; bottom: 0px; outline: none;\"></a>技术文档</h2><ul style=\"padding-left: 2em; margin-bottom: 16px; color: rgb(64, 72, 91); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Liberation Sans", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Wenquanyi Micro Hei", "WenQuanYi Zen Hei", "ST Heiti", SimHei, SimSun, "WenQuanYi Zen Hei Sharp", sans-serif; white-space: normal;\"><li style=\"list-style-type: initial;\">开发文档:<a href=\"http://doc.jeewx.com/\" style=\"color: rgb(9, 94, 171); overflow-wrap: break-word;\">http://doc.jeewx.com</a></li><li style=\"list-style-type: initial; margin-top: 0.25em;\">插件集成文档:<a href=\"http://doc.jeewx.com/1275624\" style=\"color: rgb(9, 94, 171); overflow-wrap: break-word;\">http://doc.jeewx.com/1275624</a></li><li style=\"list-style-type: initial; margin-top: 0.25em;\">常见问题贴:<a href=\"http://www.jeecg.org/forum.php?mod=viewthread&tid=8185&extra=page%3D1\" style=\"color: rgb(9, 94, 171); overflow-wrap: break-word;\">Jeewx-Boot日常问题汇总</a></li><li style=\"list-style-type: initial; margin-top: 0.25em;\">技术论坛 :<a href=\"http://www.jeecg.org/\" style=\"color: rgb(9, 94, 171); overflow-wrap: break-word;\">www.jeecg.org</a></li><li style=\"list-style-type: initial; margin-top: 0.25em;\">小程序文档: <a href=\"http://shop.jeewx.com/#/doc/rumen\" style=\"color: rgb(9, 94, 171); overflow-wrap: break-word;\">http://shop.jeewx.com/#/doc/rumen</a></li></ul><h2 style=\"font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Liberation Sans", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Wenquanyi Micro Hei", "WenQuanYi Zen Hei", "ST Heiti", SimHei, SimSun, "WenQuanYi Zen Hei Sharp", sans-serif; line-height: 1.25; margin: 24px 0em 16px; font-weight: 600; padding: 0em; font-size: 1.5em; position: relative; color: rgb(64, 72, 91); white-space: normal;\"><a id=\"技术交流\" class=\"anchor\" href=\"https://gitee.com/jeecg/jeewx-boot#%E6%8A%80%E6%9C%AF%E4%BA%A4%E6%B5%81\" style=\"color: rgb(9, 94, 171); overflow-wrap: break-word; float: left; padding-right: 4px; margin-left: -20px; line-height: 1; display: block; padding-left: 30px; position: absolute; top: 0px; left: 0px; bottom: 0px; outline: none;\"></a>技术交流</h2><ul style=\"padding-left: 2em; margin-bottom: 16px; color: rgb(64, 72, 91); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Liberation Sans", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Wenquanyi Micro Hei", "WenQuanYi Zen Hei", "ST Heiti", SimHei, SimSun, "WenQuanYi Zen Hei Sharp", sans-serif; white-space: normal;\"><li style=\"list-style-type: initial;\">QQ交流群 : 97460170</li><li style=\"list-style-type: initial; margin-top: 0.25em;\">视频教程 :<a href=\"https://www.bilibili.com/video/av62847704\" style=\"color: rgb(9, 94, 171); overflow-wrap: break-word;\">JeewxBoot入门视频教程</a></li><li style=\"list-style-type: initial; margin-top: 0.25em;\">反馈问题 :<a href=\"https://gitee.com/jeecg/jeewx-boot/issues\" style=\"color: rgb(9, 94, 171); overflow-wrap: break-word;\">发现请发Issues,我们会及时处理!</a></li></ul><h2 style=\"font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Liberation Sans", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Wenquanyi Micro Hei", "WenQuanYi Zen Hei", "ST Heiti", SimHei, SimSun, "WenQuanYi Zen Hei Sharp", sans-serif; line-height: 1.25; margin: 24px 0em 16px; font-weight: 600; padding: 0em; font-size: 1.5em; position: relative; color: rgb(64, 72, 91); white-space: normal;\"><a id=\"基础项目说明\" class=\"anchor\" href=\"https://gitee.com/jeecg/jeewx-boot#%E5%9F%BA%E7%A1%80%E9%A1%B9%E7%9B%AE%E8%AF%B4%E6%98%8E\" style=\"color: rgb(9, 94, 171); overflow-wrap: break-word; float: left; padding-right: 4px; margin-left: -20px; line-height: 1; display: block; padding-left: 30px; position: absolute; top: 0px; left: 0px; bottom: 0px; outline: none;\"></a>基础项目说明</h2><table style=\"margin-top: 0px; margin-bottom: 16px; display: block; width: 942px; overflow: auto; color: rgb(64, 72, 91); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Liberation Sans", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Wenquanyi Micro Hei", "WenQuanYi Zen Hei", "ST Heiti", SimHei, SimSun, "WenQuanYi Zen Hei Sharp", sans-serif; white-space: normal; background-color: rgb(255, 255, 255);\"><thead><tr style=\"border-top: 1px solid rgb(198, 203, 209);\"><th style=\"padding: 6px 13px; border: 1px solid rgb(223, 226, 229);\">项目名</th><th align=\"center\" style=\"padding: 6px 13px; border: 1px solid rgb(223, 226, 229);\">中文名</th><th align=\"right\" style=\"padding: 6px 13px; border: 1px solid rgb(223, 226, 229);\">备注</th></tr></thead><tbody><tr style=\"border-top: 1px solid rgb(198, 203, 209);\"><td style=\"padding: 6px 13px; border-color: rgb(223, 226, 229);\">jeewx-boot-base-system</td><td align=\"center\" style=\"padding: 6px 13px; border-color: rgb(223, 226, 229);\">系统用户管理</td><td align=\"right\" style=\"padding: 6px 13px; border-color: rgb(223, 226, 229);\">含项目启动类</td></tr><tr style=\"background-color: rgb(246, 248, 250); border-top: 1px solid rgb(198, 203, 209);\"><td style=\"padding: 6px 13px; border-color: rgb(223, 226, 229);\">jeewx-boot-module-cms</td><td align=\"center\" style=\"padding: 6px 13px; border-color: rgb(223, 226, 229);\">CMS管理后台</td><td align=\"right\" style=\"padding: 6px 13px; border-color: rgb(223, 226, 229);\"></td></tr><tr style=\"border-top: 1px solid rgb(198, 203, 209);\"><td style=\"padding: 6px 13px; border-color: rgb(223, 226, 229);\">jeewx-boot-module-weixin</td><td align=\"center\" style=\"padding: 6px 13px; border-color: rgb(223, 226, 229);\">微信公众号管理</td><td align=\"right\" style=\"padding: 6px 13px; border-color: rgb(223, 226, 229);\"></td></tr><tr style=\"background-color: rgb(246, 248, 250); border-top: 1px solid rgb(198, 203, 209);\"><td style=\"padding: 6px 13px; border-color: rgb(223, 226, 229);\">jeewx-boot-module-api</td><td align=\"center\" style=\"padding: 6px 13px; border-color: rgb(223, 226, 229);\">共通业务API接口</td><td align=\"right\" style=\"padding: 6px 13px; border-color: rgb(223, 226, 229);\"></td></tr><tr style=\"border-top: 1px solid rgb(198, 203, 209);\"><td style=\"padding: 6px 13px; border-color: rgb(223, 226, 229);\"><a href=\"https://github.com/zhangdaiscott/jeewx-app-cms\" style=\"color: rgb(9, 94, 171); overflow-wrap: break-word;\">jeewx-app-cms</a></td><td align=\"center\" style=\"padding: 6px 13px; border-color: rgb(223, 226, 229);\">小程序官网源码</td><td align=\"right\" style=\"padding: 6px 13px; border-color: rgb(223, 226, 229);\">采用wepy语言</td></tr></tbody></table><h2 style=\"font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Liberation Sans", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Wenquanyi Micro Hei", "WenQuanYi Zen Hei", "ST Heiti", SimHei, SimSun, "WenQuanYi Zen Hei Sharp", sans-serif; line-height: 1.25; margin: 24px 0em 16px; font-weight: 600; padding: 0em; font-size: 1.5em; position: relative; color: rgb(64, 72, 91); white-space: normal;\"><a id=\"独立插件项目插件项目在目录huodong下\" class=\"anchor\" href=\"https://gitee.com/jeecg/jeewx-boot#%E7%8B%AC%E7%AB%8B%E6%8F%92%E4%BB%B6%E9%A1%B9%E7%9B%AE%E6%8F%92%E4%BB%B6%E9%A1%B9%E7%9B%AE%E5%9C%A8%E7%9B%AE%E5%BD%95huodong%E4%B8%8B\" style=\"color: rgb(9, 94, 171); overflow-wrap: break-word; float: left; padding-right: 4px; margin-left: -20px; line-height: 1; display: block; padding-left: 30px; position: absolute; top: 0px; left: 0px; bottom: 0px; outline: none;\"></a>独立插件项目(插件项目在目录huodong下)</h2><table style=\"margin-top: 0px; margin-bottom: 16px; display: block; width: 942px; overflow: auto; color: rgb(64, 72, 91); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Liberation Sans", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Wenquanyi Micro Hei", "WenQuanYi Zen Hei", "ST Heiti", SimHei, SimSun, "WenQuanYi Zen Hei Sharp", sans-serif; white-space: normal; background-color: rgb(255, 255, 255);\"><thead><tr style=\"border-top: 1px solid rgb(198, 203, 209);\"><th style=\"padding: 6px 13px; border: 1px solid rgb(223, 226, 229);\">项目名</th><th align=\"center\" style=\"padding: 6px 13px; border: 1px solid rgb(223, 226, 229);\">中文名</th><th align=\"right\" style=\"padding: 6px 13px; border: 1px solid rgb(223, 226, 229);\">备注</th></tr></thead><tbody><tr style=\"border-top: 1px solid rgb(198, 203, 209);\"><td style=\"padding: 6px 13px; border-color: rgb(223, 226, 229);\">jeewx-boot-module-goldenegg</td><td align=\"center\" style=\"padding: 6px 13px; border-color: rgb(223, 226, 229);\">砸金蛋活动</td><td align=\"right\" style=\"padding: 6px 13px; border-color: rgb(223, 226, 229);\">独立数据库脚步</td></tr></tbody></table><ul style=\"padding-left: 2em; margin-bottom: 16px; color: rgb(64, 72, 91); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Liberation Sans", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Wenquanyi Micro Hei", "WenQuanYi Zen Hei", "ST Heiti", SimHei, SimSun, "WenQuanYi Zen Hei Sharp", sans-serif; white-space: normal;\"><li style=\"list-style-type: initial;\">默认情况下,活动插件(砸金蛋)没有集成到system里面,需要手工集成;活动插件数据库也是独立的,需要独立执行。</li><li style=\"list-style-type: initial; margin-top: 0.25em;\">这样的目的是教会大家如何集成新活动插件,以后会发布很多插件,大家可以按需集成所需的活动插件;</li><li style=\"list-style-type: initial; margin-top: 0.25em;\">活动插件集成方法? <a href=\"https://jeewx-boot.mydoc.io/?t=346439\" style=\"color: rgb(9, 94, 171); overflow-wrap: break-word;\">https://jeewx-boot.mydoc.io/?t=346439</a></li></ul><h2 style=\"font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Liberation Sans", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Wenquanyi Micro Hei", "WenQuanYi Zen Hei", "ST Heiti", SimHei, SimSun, "WenQuanYi Zen Hei Sharp", sans-serif; line-height: 1.25; margin: 24px 0em 16px; font-weight: 600; padding: 0em; font-size: 1.5em; position: relative; color: rgb(64, 72, 91); white-space: normal;\"><a id=\"系统模块\" class=\"anchor\" href=\"https://gitee.com/jeecg/jeewx-boot#%E7%B3%BB%E7%BB%9F%E6%A8%A1%E5%9D%97\" style=\"color: rgb(9, 94, 171); overflow-wrap: break-word; float: left; padding-right: 4px; margin-left: -20px; line-height: 1; display: block; padding-left: 30px; position: absolute; top: 0px; left: 0px; bottom: 0px; outline: none;\"></a>系统模块</h2><div class=\"white\" style=\"color: rgb(64, 72, 91); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Liberation Sans", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Wenquanyi Micro Hei", "WenQuanYi Zen Hei", "ST Heiti", SimHei, SimSun, "WenQuanYi Zen Hei Sharp", sans-serif; white-space: normal;\"><div class=\"highlight\" style=\"margin-bottom: 16px;\"><pre style=\"overflow: auto; font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; font-size: 13.6px; margin-bottom: 0px; overflow-wrap: normal; padding: 16px; line-height: 1.45; background-color: rgb(246, 248, 250); border-radius: 3px; word-break: normal; tab-size: 4;\"><span id=\"LC1\" class=\"line\">├─系统管理</span><span id=\"LC2\" class=\"line\">│ ├─用户管理</span><span id=\"LC3\" class=\"line\">│ ├─角色管理</span><span id=\"LC4\" class=\"line\">│ ├─菜单管理</span><span id=\"LC5\" class=\"line\">│ └─首页设置</span><span id=\"LC6\" class=\"line\">│ └─项目管理(插件)</span><span id=\"LC7\" class=\"line\">├─公众号运营</span><span id=\"LC8\" class=\"line\">│ ├─基础配置</span><span id=\"LC9\" class=\"line\">│ │ ├─公众号管理</span><span id=\"LC10\" class=\"line\">│ │ ├─关注欢迎语</span><span id=\"LC11\" class=\"line\">│ │ ├─未识别回复语</span><span id=\"LC12\" class=\"line\">│ │ ├─关键字设置</span><span id=\"LC13\" class=\"line\">│ │ ├─自定义菜单</span><span id=\"LC14\" class=\"line\">│ │ ├─菜单支持小程序链接</span><span id=\"LC15\" class=\"line\">│ │ ├─Oauth2.0链接机制</span><span id=\"LC16\" class=\"line\">│ ├─素材管理</span><span id=\"LC17\" class=\"line\">│ │ ├─文本素材</span><span id=\"LC18\" class=\"line\">│ │ ├─图文素材</span><span id=\"LC19\" class=\"line\">│ │ ├─超强图文编辑器</span><span id=\"LC20\" class=\"line\">│ │ ├─图文预览功能</span><span id=\"LC21\" class=\"line\">│ ├─用户管理</span><span id=\"LC22\" class=\"line\">│ │ ├─粉丝管理</span><span id=\"LC23\" class=\"line\">│ │ ├─粉丝标签管理</span><span id=\"LC24\" class=\"line\">│ │ ├─超强图文编辑器</span><span id=\"LC25\" class=\"line\">│ │ ├─接受消息管理</span><span id=\"LC26\" class=\"line\">│ │ ├─粉丝消息回复</span><span id=\"LC27\" class=\"line\">├─小程序官网</span><span id=\"LC28\" class=\"line\">│ ├─站点管理</span><span id=\"LC29\" class=\"line\">│ ├─广告管理</span><span id=\"LC30\" class=\"line\">│ ├─栏目管理</span><span id=\"LC31\" class=\"line\">│ ├─文章管理</span><span id=\"LC32\" class=\"line\">│ ├─后台管理代码</span><span id=\"LC33\" class=\"line\">│ ├─小程序前端代码</span><span id=\"LC34\" class=\"line\">├─微信抽奖活动</span><span id=\"LC35\" class=\"line\">│ ├─砸金蛋</span><span id=\"LC36\" class=\"line\">│ ├─摇一摇</span><span id=\"LC37\" class=\"line\">│ ├─微信砍价</span><span id=\"LC38\" class=\"line\">├─高级功能(尚未开源)</span><span id=\"LC39\" class=\"line\">│ ├─小程序商城</span><span id=\"LC40\" class=\"line\">│ ├─微信投票</span><span id=\"LC41\" class=\"line\">│ ├─分销商城</span><span id=\"LC42\" class=\"line\">│ ├─。。。</span><span id=\"LC43\" class=\"line\">└─其他插件</span><span id=\"LC44\" class=\"line\"> └─更多功能陆续开源。。</span></pre></div></div><h2 style=\"font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Liberation Sans", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Wenquanyi Micro Hei", "WenQuanYi Zen Hei", "ST Heiti", SimHei, SimSun, "WenQuanYi Zen Hei Sharp", sans-serif; line-height: 1.25; margin: 24px 0em 16px; font-weight: 600; padding: 0em; font-size: 1.5em; position: relative; color: rgb(64, 72, 91); white-space: normal;\"><a id=\"技术架构\" class=\"anchor\" href=\"https://gitee.com/jeecg/jeewx-boot#%E6%8A%80%E6%9C%AF%E6%9E%B6%E6%9E%84\" style=\"color: rgb(9, 94, 171); overflow-wrap: break-word; float: left; padding-right: 4px; margin-left: -20px; line-height: 1; display: block; padding-left: 30px; position: absolute; top: 0px; left: 0px; bottom: 0px; outline: none;\"></a>技术架构</h2><ul style=\"padding-left: 2em; margin-bottom: 16px; color: rgb(64, 72, 91); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Liberation Sans", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Wenquanyi Micro Hei", "WenQuanYi Zen Hei", "ST Heiti", SimHei, SimSun, "WenQuanYi Zen Hei Sharp", sans-serif; white-space: normal;\"><li style=\"list-style-type: initial;\">1.采用SpringBoot2.1.3 + Mybatis + Velocity 框架技术</li><li style=\"list-style-type: initial; margin-top: 0.25em;\">2.启动项目,执行下面启动类</li></ul><div class=\"white\" style=\"color: rgb(64, 72, 91); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Liberation Sans", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Wenquanyi Micro Hei", "WenQuanYi Zen Hei", "ST Heiti", SimHei, SimSun, "WenQuanYi Zen Hei Sharp", sans-serif; white-space: normal;\"><div class=\"highlight\" style=\"margin-bottom: 16px;\"><pre style=\"overflow: auto; font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; font-size: 13.6px; margin-bottom: 0px; overflow-wrap: normal; padding: 16px; line-height: 1.45; background-color: rgb(246, 248, 250); border-radius: 3px; word-break: normal; tab-size: 4;\"><span id=\"LC1\" class=\"line\"> jeewx-boot-base-system/src/main/java/com/jeecg/JeewxBootApplication.java</span><span id=\"LC2\" class=\"line\"> 登录账号密码: admin\\123456</span></pre></div></div><ul style=\"padding-left: 2em; margin-bottom: 16px; color: rgb(64, 72, 91); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Liberation Sans", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Wenquanyi Micro Hei", "WenQuanYi Zen Hei", "ST Heiti", SimHei, SimSun, "WenQuanYi Zen Hei Sharp", sans-serif; white-space: normal;\"><li style=\"list-style-type: initial;\">3.页面采用模板语言Velocity</li><li style=\"list-style-type: initial; margin-top: 0.25em;\">4.插件式开发,每个模块独立打成jar</li><li style=\"list-style-type: initial; margin-top: 0.25em;\">5.数据库、redis配置文件</li></ul><div class=\"white\" style=\"color: rgb(64, 72, 91); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Liberation Sans", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Wenquanyi Micro Hei", "WenQuanYi Zen Hei", "ST Heiti", SimHei, SimSun, "WenQuanYi Zen Hei Sharp", sans-serif; white-space: normal;\"><div class=\"highlight\" style=\"margin-bottom: 16px;\"><pre style=\"overflow: auto; font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; font-size: 13.6px; margin-bottom: 0px; overflow-wrap: normal; padding: 16px; line-height: 1.45; background-color: rgb(246, 248, 250); border-radius: 3px; word-break: normal; tab-size: 4;\"><span id=\"LC1\" class=\"line\"> jeewx-boot-base-system/src/main/resources/application.yml</span></pre></div></div><ul style=\"padding-left: 2em; margin-bottom: 16px; color: rgb(64, 72, 91); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Liberation Sans", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Wenquanyi Micro Hei", "WenQuanYi Zen Hei", "ST Heiti", SimHei, SimSun, "WenQuanYi Zen Hei Sharp", sans-serif; white-space: normal;\"><li style=\"list-style-type: initial;\">6.微信域名配置</li></ul><div class=\"white\" style=\"color: rgb(64, 72, 91); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Liberation Sans", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Wenquanyi Micro Hei", "WenQuanYi Zen Hei", "ST Heiti", SimHei, SimSun, "WenQuanYi Zen Hei Sharp", sans-serif; white-space: normal;\"><div class=\"highlight\" style=\"margin-bottom: 16px;\"><pre style=\"overflow: auto; font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; font-size: 13.6px; margin-bottom: 0px; overflow-wrap: normal; padding: 16px; line-height: 1.45; background-color: rgb(246, 248, 250); border-radius: 3px; word-break: normal; tab-size: 4;\"><span id=\"LC1\" class=\"line\"> jeewx-boot-base-system/src/main/resources/jeewx.properties</span></pre></div></div><ul style=\"padding-left: 2em; margin-bottom: 16px; color: rgb(64, 72, 91); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Liberation Sans", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Wenquanyi Micro Hei", "WenQuanYi Zen Hei", "ST Heiti", SimHei, SimSun, "WenQuanYi Zen Hei Sharp", sans-serif; white-space: normal;\"><li style=\"list-style-type: initial;\">7.maven依赖下载失败,请配置镜像</li></ul><p style=\"margin: 0px 0em 16px; line-height: 1.6; word-break: break-word; color: rgb(64, 72, 91); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Liberation Sans", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Wenquanyi Micro Hei", "WenQuanYi Zen Hei", "ST Heiti", SimHei, SimSun, "WenQuanYi Zen Hei Sharp", sans-serif; white-space: normal;\">找到 maven老家 conf/settings.xml 在标签内增加下面方式的阿里云maven镜像(删除自己的镜像配置), 最终结果见下面:</p><div class=\"white\" style=\"color: rgb(64, 72, 91); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Liberation Sans", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Wenquanyi Micro Hei", "WenQuanYi Zen Hei", "ST Heiti", SimHei, SimSun, "WenQuanYi Zen Hei Sharp", sans-serif; white-space: normal;\"><div class=\"highlight\" style=\"margin-bottom: 16px;\"><pre style=\"overflow: auto; font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; font-size: 13.6px; margin-bottom: 0px; overflow-wrap: normal; padding: 16px; line-height: 1.45; background-color: rgb(246, 248, 250); border-radius: 3px; word-break: normal; tab-size: 4;\"><span id=\"LC1\" class=\"line\"><mirrors></span><span id=\"LC2\" class=\"line\"> <mirror></span><span id=\"LC3\" class=\"line\"> <id>nexus-aliyun</id></span><span id=\"LC4\" class=\"line\"> <mirrorOf>*,!jeecg,!jeecg-snapshots</mirrorOf></span><span id=\"LC5\" class=\"line\"> <name>Nexus aliyun</name></span><span id=\"LC6\" class=\"line\"> <url>http://maven.aliyun.com/nexus/content/groups/public</url></span><span id=\"LC7\" class=\"line\"> </mirror> </span><span id=\"LC8\" class=\"line\"> </mirrors></span></pre></div></div><h2 style=\"font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Liberation Sans", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Wenquanyi Micro Hei", "WenQuanYi Zen Hei", "ST Heiti", SimHei, SimSun, "WenQuanYi Zen Hei Sharp", sans-serif; line-height: 1.25; margin: 24px 0em 16px; font-weight: 600; padding: 0em; font-size: 1.5em; position: relative; color: rgb(64, 72, 91); white-space: normal;\"><a id=\"系统效果\" class=\"anchor\" href=\"https://gitee.com/jeecg/jeewx-boot#%E7%B3%BB%E7%BB%9F%E6%95%88%E6%9E%9C\" style=\"color: rgb(9, 94, 171); overflow-wrap: break-word; float: left; padding-right: 4px; margin-left: -20px; line-height: 1; display: block; padding-left: 30px; position: absolute; top: 0px; left: 0px; bottom: 0px; outline: none;\"></a>系统效果</h2><h5 style=\"font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Liberation Sans", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Wenquanyi Micro Hei", "WenQuanYi Zen Hei", "ST Heiti", SimHei, SimSun, "WenQuanYi Zen Hei Sharp", sans-serif; line-height: 1.25; margin: 24px 0em 16px; padding: 0em; font-size: 0.875em; position: relative; color: rgb(64, 72, 91); white-space: normal;\"><a id=\"pc端\" class=\"anchor\" href=\"https://gitee.com/jeecg/jeewx-boot#pc%E7%AB%AF\" style=\"color: rgb(9, 94, 171); overflow-wrap: break-word; float: left; padding-right: 4px; margin-left: -20px; line-height: 1; display: block; padding-left: 30px; position: absolute; top: 0px; left: 0px; bottom: 0px; outline: none;\"></a>PC端</h5><p style=\"margin: 0px 0em 16px; line-height: 1.6; word-break: break-word; color: rgb(64, 72, 91); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Liberation Sans", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Wenquanyi Micro Hei", "WenQuanYi Zen Hei", "ST Heiti", SimHei, SimSun, "WenQuanYi Zen Hei Sharp", sans-serif; white-space: normal;\"><img src=\"https://static.oschina.net/uploads/img/201907/15141922_GIP8.png\" alt=\"输入图片说明\" title=\"在这里输入图片标题\" style=\"box-sizing: content-box; border-style: none; max-width: 100%; cursor: pointer; display: inline-block !important;\"/> <img src=\"https://static.oschina.net/uploads/img/201808/13105211_AVY4.png\" alt=\"github\" title=\"jeecg\" style=\"box-sizing: content-box; border-style: none; max-width: 100%; cursor: pointer; display: inline-block !important;\"/> <img src=\"https://static.oschina.net/uploads/img/201808/11172049_s7hH.png\" alt=\"github\" title=\"jeecg\" style=\"box-sizing: content-box; border-style: none; max-width: 100%; cursor: pointer; display: inline-block !important;\"/> <img src=\"https://static.oschina.net/uploads/img/201808/11153109_73Aj.png\" alt=\"github\" title=\"jeecg\" style=\"box-sizing: content-box; border-style: none; max-width: 100%; cursor: pointer; display: inline-block !important;\"/> <img src=\"https://static.oschina.net/uploads/img/201907/15144608_1zcZ.png\" alt=\"输入图片说明\" title=\"在这里输入图片标题\" style=\"box-sizing: content-box; border-style: none; max-width: 100%; cursor: pointer; display: inline-block !important;\"/></p><h5 style=\"font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Liberation Sans", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Wenquanyi Micro Hei", "WenQuanYi Zen Hei", "ST Heiti", SimHei, SimSun, "WenQuanYi Zen Hei Sharp", sans-serif; line-height: 1.25; margin: 24px 0em 16px; padding: 0em; font-size: 0.875em; position: relative; color: rgb(64, 72, 91); white-space: normal;\"><a id=\"小程序端\" class=\"anchor\" href=\"https://gitee.com/jeecg/jeewx-boot#%E5%B0%8F%E7%A8%8B%E5%BA%8F%E7%AB%AF\" style=\"color: rgb(9, 94, 171); overflow-wrap: break-word; float: left; padding-right: 4px; margin-left: -20px; line-height: 1; display: block; padding-left: 30px; position: absolute; top: 0px; left: 0px; bottom: 0px; outline: none;\"></a>小程序端</h5><p style=\"margin: 0px 0em 16px; line-height: 1.6; word-break: break-word; color: rgb(64, 72, 91); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Liberation Sans", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Wenquanyi Micro Hei", "WenQuanYi Zen Hei", "ST Heiti", SimHei, SimSun, "WenQuanYi Zen Hei Sharp", sans-serif; white-space: normal;\"><img src=\"https://static.oschina.net/uploads/img/201907/15143215_Km1G.jpg\" alt=\"输入图片说明\" title=\"在这里输入图片标题\" style=\"box-sizing: content-box; border-style: none; max-width: 100%; cursor: pointer; display: inline-block !important;\"/></p><h5 style=\"font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Liberation Sans", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Wenquanyi Micro Hei", "WenQuanYi Zen Hei", "ST Heiti", SimHei, SimSun, "WenQuanYi Zen Hei Sharp", sans-serif; line-height: 1.25; margin: 24px 0em 16px; padding: 0em; font-size: 0.875em; position: relative; color: rgb(64, 72, 91); white-space: normal;\"><a id=\"手机端\" class=\"anchor\" href=\"https://gitee.com/jeecg/jeewx-boot#%E6%89%8B%E6%9C%BA%E7%AB%AF\" style=\"color: rgb(9, 94, 171); overflow-wrap: break-word; float: left; padding-right: 4px; margin-left: -20px; line-height: 1; display: block; padding-left: 30px; position: absolute; top: 0px; left: 0px; bottom: 0px; outline: none;\"></a>手机端</h5><p style=\"margin: 0px 0em 16px; line-height: 1.6; word-break: break-word; color: rgb(64, 72, 91); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Liberation Sans", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Wenquanyi Micro Hei", "WenQuanYi Zen Hei", "ST Heiti", SimHei, SimSun, "WenQuanYi Zen Hei Sharp", sans-serif; white-space: normal;\"><img src=\"https://static.oschina.net/uploads/img/201808/13105211_lMFh.jpg\" alt=\"github\" title=\"jeecg\" style=\"box-sizing: content-box; border-style: none; max-width: 100%; cursor: pointer; display: inline-block !important;\"/> <img src=\"https://static.oschina.net/uploads/img/201808/11195358_bi9e.png\" alt=\"github\" title=\"jeecg\" style=\"box-sizing: content-box; border-style: none; max-width: 100%; cursor: pointer; display: inline-block !important;\"/></p><p><br/></p>', '', '2', 'news', 'http://www.jeewx.com', '', '0', 'admin', '2019-12-04 11:08:23', 'admin', NULL);
-- ----------------------------
-- Table structure for weixin_newstemplate
-- ----------------------------
DROP TABLE IF EXISTS `weixin_newstemplate`;
CREATE TABLE `weixin_newstemplate` (
`id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`template_name` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '模板名称',
`template_type` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '模板类型',
`media_id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '图文素材媒体id',
`jwid` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '公众号原始id',
`upload_type` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '上传状态 \"0\"未上传,\"1\"上传中,\"2\"上传成功,\"3\"上传失败',
`upload_time` datetime(0) NULL DEFAULT NULL COMMENT '上传时间',
`create_by` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人名称',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`update_by` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改人名称',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改人名称'
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '图文模板表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of weixin_newstemplate
-- ----------------------------
INSERT INTO `weixin_newstemplate` VALUES ('402881e86eced91f016eceda47f00003', 'JEEWX测试图文', 'news', '5XCFH6wn5DlK_voOwKLLScIjQXrYWqWXnzVJPa3GbU5i6_9psqtXGMb58tugJOFX', 'gh_20419b74f848', '2', '2019-12-04 11:08:59', 'admin', '2019-12-04 11:00:42', 'admin', '2019-12-04 11:08:23');
-- ----------------------------
-- Table structure for weixin_open_account
-- ----------------------------
DROP TABLE IF EXISTS `weixin_open_account`;
CREATE TABLE `weixin_open_account` (
`id` varchar(36) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '主键',
`appid` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`appsecret` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`ticket` varchar(2000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '第三方平台推送 : ticket',
`get_ticket_time` datetime(0) NULL DEFAULT NULL,
`component_access_token` varchar(2000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '平台方access_token',
`get_access_token_time` datetime(0) NULL DEFAULT NULL COMMENT '平台方获取access_token时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '微信第三方平台账号表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Table structure for weixin_qrcode
-- ----------------------------
DROP TABLE IF EXISTS `weixin_qrcode`;
CREATE TABLE `weixin_qrcode` (
`id` varchar(36) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`action_info` varchar(1000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '二维码标题(详情)',
`action_name` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '二维码类型:QR_SCENE:临时整型,QR_STR_SCENE:临时字符串,QR_LIMIT_SCENE:永久整型,\r\nQR_LIMIT_STR_SCENE:永久字符串',
`scene_id` int(11) NULL DEFAULT NULL COMMENT '整型场景值ID',
`scene_str` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '字符串场景值ID',
`ticket` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '二维码ticket',
`expire_seconds` int(11) NULL DEFAULT NULL COMMENT '有效时间(秒)',
`expire_date` datetime(0) NULL DEFAULT NULL COMMENT '过期时间',
`qrcode_url` varchar(2000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '二维码地址',
`jwid` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '公众帐号ID',
`msg_type` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '触发类型:text文本/news图文',
`text_content` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '文本内容',
`action_news_type` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '图文选择类型(1:自定义,2:选择模板)',
`news_title` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '图文标题',
`news_desc` varchar(2000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '图文摘要',
`news_img` varchar(1000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '图文封面图',
`news_url` varchar(2000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '图文跳转链接',
`news_templateid` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '图文选择模板ID',
`tags` varchar(2000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '标签,逗号隔开',
`create_by` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人登录名称',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`update_by` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改人登录名称',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `uniq_sceneid_jwid`(`scene_id`, `jwid`) USING BTREE,
UNIQUE INDEX `uniq_scenestr_jwid`(`scene_str`, `jwid`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '二维码表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Table structure for weixin_qrcode_scan_record
-- ----------------------------
DROP TABLE IF EXISTS `weixin_qrcode_scan_record`;
CREATE TABLE `weixin_qrcode_scan_record` (
`id` varchar(36) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT 'ID',
`openid` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT 'openid',
`scan_time` datetime(0) NULL DEFAULT NULL COMMENT '扫码时间',
`scene_id` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '场景值ID',
`jwid` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '公众号ID',
`is_scan_subscribe` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否扫码关注 0:非扫码关注,1:扫码关注',
PRIMARY KEY (`id`) USING BTREE,
INDEX `idx_openid`(`openid`) USING BTREE,
INDEX `idx_jwid`(`jwid`) USING BTREE,
INDEX `idx_sceneId`(`scene_id`) USING BTREE,
INDEX `idx_scanTime`(`scan_time`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '二维码扫码记录表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Table structure for weixin_receivetext
-- ----------------------------
DROP TABLE IF EXISTS `weixin_receivetext`;
CREATE TABLE `weixin_receivetext` (
`ID` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`content` longtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '消息内容',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建日期',
`from_user_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '发送方帐号(OpenId)',
`msg_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '消息ID',
`msg_type` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '消息类型(text:文本消息,news:图文消息,voice:音频消息,video:视频消息,image,图片消息)消息类型',
`to_user_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT 'JWID',
`jwid` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '公众号原始ID',
`media_id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '多媒体ID',
PRIMARY KEY (`ID`) USING BTREE,
INDEX `index_fromname`(`from_user_name`) USING BTREE,
INDEX `inde_toname`(`to_user_name`) USING BTREE,
INDEX `index_mediaid`(`media_id`) USING BTREE,
INDEX `index_createtime`(`create_time`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '消息存储表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Table structure for weixin_recept_msg
-- ----------------------------
DROP TABLE IF EXISTS `weixin_recept_msg`;
CREATE TABLE `weixin_recept_msg` (
`ID` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`content` varchar(2000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '内容',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '时间',
`from_username` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '发送人',
`to_username` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '接收人',
`msgtype` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '消息类型',
`mediaid` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '多媒体id',
`template_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '素材ID',
`send_stauts` varchar(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '发送状态,1:成功:2:失败',
`jwid` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '公众号ID',
PRIMARY KEY (`ID`) USING BTREE,
INDEX `idx_createtime`(`create_time`) USING BTREE,
INDEX `idx_tousername`(`to_username`) USING BTREE,
INDEX `idx_jwid`(`jwid`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '客服消息记录表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Table structure for weixin_subscribe
-- ----------------------------
DROP TABLE IF EXISTS `weixin_subscribe`;
CREATE TABLE `weixin_subscribe` (
`ID` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`JWID` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '微信ID',
`msg_Type` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '消息类型(text:文本消息,news:图文消息,voice:音频消息,video:视频消息,image,图片消息)',
`template_Id` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '模板ID',
`template_Name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '模板名称',
`create_by` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人登录名称',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`update_by` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改人登录名称',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
PRIMARY KEY (`ID`) USING BTREE,
INDEX `normal_jwid`(`JWID`) USING BTREE,
INDEX `normal_tempId`(`template_Id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '关注欢迎语' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Table structure for weixin_tag
-- ----------------------------
DROP TABLE IF EXISTS `weixin_tag`;
CREATE TABLE `weixin_tag` (
`id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`tagid` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '标签id',
`name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '标签名称',
`jwid` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '标签归属公众号原始id',
`addtime` datetime(0) NULL DEFAULT NULL COMMENT '添加时间',
`synctime` datetime(0) NULL DEFAULT NULL COMMENT '同步时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '粉丝标签表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of weixin_tag
-- ----------------------------
INSERT INTO `weixin_tag` VALUES ('402881e86ecedfaf016ecee24ee900a2', '2', '星标组', 'gh_20419b74f848', '2019-12-04 11:09:28', '2019-12-04 11:09:28');
INSERT INTO `weixin_tag` VALUES ('402881e86ecedfaf016ecee24ef300a3', '164', '新用户', 'gh_20419b74f848', '2019-12-04 11:09:28', '2019-12-04 11:09:28');
INSERT INTO `weixin_tag` VALUES ('402881e86ecedfaf016ecee24ef600a4', '165', '新媒体', 'gh_20419b74f848', '2019-12-04 11:09:28', '2019-12-04 11:09:28');
INSERT INTO `weixin_tag` VALUES ('402881e86ecedfaf016ecee24efa00a5', '166', '黑名单组', 'gh_20419b74f848', '2019-12-04 11:09:28', '2019-12-04 11:09:28');
INSERT INTO `weixin_tag` VALUES ('402881e86ecedfaf016ecee24efd00a6', '170', '搏思研发人员', 'gh_20419b74f848', '2019-12-04 11:09:28', '2019-12-04 11:09:28');
INSERT INTO `weixin_tag` VALUES ('402881e86ecedfaf016ecee24f0100a7', '171', '测试群发', 'gh_20419b74f848', '2019-12-04 11:09:28', '2019-12-04 11:09:28');
-- ----------------------------
-- Table structure for weixin_template
-- ----------------------------
DROP TABLE IF EXISTS `weixin_template`;
CREATE TABLE `weixin_template` (
`id` varchar(36) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`create_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人名称',
`create_by` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人登录名称',
`create_date` datetime(0) NULL DEFAULT NULL COMMENT '创建日期',
`update_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '更新人名称',
`update_by` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '更新人登录名称',
`update_date` datetime(0) NULL DEFAULT NULL COMMENT '更新日期',
`title` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '标题',
`type` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '类型',
`content` longtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '模板内容',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '微信文章元素模板' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of weixin_template
-- ----------------------------
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbce9c2f00000', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '关注引导0002', 'WXGZYD', '<p style=\"margin: 0px auto; padding: 0px; border: 1px solid rgb(0, 187, 236); color: rgb(68, 68, 68); font-family: 微软雅黑; line-height: 24px; white-space: normal; max-width: 600px; word-wrap: normal; min-height: 1em; font-size: 12px; border-top-left-radius: 2em!important; border-top-right-radius: 2em!important; border-bottom-left-radius: 2em!important; border-bottom-right-radius: 2em!important; box-sizing: border-box !important;\"><span class=\"main\" style=\"margin: 0px; padding: 2px 2px 2px 6px; border: 0px; max-width: 100%; color: rgb(255, 255, 255); border-top-left-radius: 2em!important; border-bottom-left-radius: 2em!important; word-wrap: break-word !important; box-sizing: border-box !important; background-color: rgb(0, 187, 236);\"><span style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; line-height: 0px; word-wrap: break-word !important; box-sizing: border-box !important;\">?</span><img data-ratio=\"0.5\" data-w=\"22\" src=\"https://mmbiz.qlogo.cn/mmbiz/mj9u1OBZRqP8EvePIzqrRIHCHOzYM4ngF6tp3gjiaPQxwzT0ZR0XYZR7fTf4Pw5Xc6HV4Nw7WtbzOb8KuNnezJQ/0/mmbizgif\" style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important; height: auto !important; visibility: visible !important;\"> <strong style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;\">提示</strong>:</span><span style=\"margin: 0px; padding: 0px 0px 0px 2px; border: 0px; max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;\"><span style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; color: rgb(127, 127, 127); word-wrap: break-word !important; box-sizing: border-box !important;\">点击上方</span><span style=\"margin: 0px; padding: 0px 0px 0px 2px; border: 0px; max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;\">\"</span><strong style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;\"><span style=\"margin: 0px; padding: 0px 0px 0px 2px; border: 0px; max-width: 100%; color: rgb(0, 112, 192); word-wrap: break-word !important; box-sizing: border-box !important;\">微信</span></strong><span style=\"margin: 0px; padding: 0px 0px 0px 2px; border: 0px; max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;\">\"</span><span style=\"margin: 0px; padding: 0px 0px 0px 2px; border: 0px; max-width: 100%; color: rgb(0, 187, 236); word-wrap: break-word !important; box-sizing: border-box !important;\">↑</span><span style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; color: rgb(127, 127, 127); word-wrap: break-word !important; box-sizing: border-box !important;\">免费订阅本刊</span></span></p><p><span style=\"margin: 0px; padding: 0px 0px 0px 2px; border: 0px; max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;\"><span style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; color: rgb(127, 127, 127); word-wrap: break-word !important; box-sizing: border-box !important;\"><br></span></span></p><p><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd0f34790001', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '关注引导0003', 'WXGZYD', '<section style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(68, 68, 68); font-family: 微软雅黑; font-size: 13px; line-height: 24px; white-space: normal; vertical-align: top;\"><section class=\"awb-s1\" style=\"margin: 0px 0px 0px 158.875px; padding: 0px; border-top-width: 0px; border-bottom-width: 0.8em; border-bottom-style: solid; border-bottom-color: rgb(0, 187, 236); width: 0px; border-right-width: 0.8em !important; border-left-width: 0.8em !important; border-right-style: solid !important; border-left-style: solid !important; border-top-color: transparent !important; border-right-color: transparent !important; border-left-color: transparent !important;\"></section><section class=\"awb-s2\" style=\"margin: 0px; padding: 0px; border: 0px; height: 2.5em; border-top-left-radius: 2em; border-top-right-radius: 2em; border-bottom-right-radius: 2em; border-bottom-left-radius: 2em; background-color: rgb(0, 187, 236);\"><img src=\"https://mmbiz.qlogo.cn/mmbiz/mj9u1OBZRqP8EvePIzqrRIHCHOzYM4ngZZKnvicNMiaibKzVA2ovvHnic2aQwX5oicrDlicrlJU8LfjEvURsQHCgThGA/0\" style=\"margin: 0.5em 0.6em; padding: 0px; border: 0px; height: 1.6em; vertical-align: top;\"><section style=\"margin: 0.3em 0px 0px; padding: 0px; border: 0px; display: inline-block; width: 231.6875px; text-align: center; font-size: 1.2em; white-space: nowrap; overflow: hidden;\"><section style=\"margin: 0px; padding: 0px; border: 0px; display: inline-block; color: rgb(255, 255, 255);\">点击上方</section><section style=\"margin: 0px; padding: 0px; border: 0px; display: inline-block; color: rgb(64, 84, 115);\">“蓝色字”</section><section style=\"margin: 0px; padding: 0px; border: 0px; display: inline-block; color: rgb(255, 255, 255);\">可关注我们!</section></section></section><p></p><section style=\"margin: 0.3em 0px 0px; padding: 0px; border: 0px; display: inline-block; width: 231.6875px; text-align: center; font-size: 1.2em; white-space: nowrap; overflow: hidden;\"><section style=\"margin: 0px; padding: 0px; border: 0px; display: inline-block; color: rgb(255, 255, 255);\"><br></section></section><p></p></section><p><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd10739d0002', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '标题0001', 'WXBT', '<h2 class=\"brcolor\" style=\"BOX-SIZING: border-box !important; WORD-WRAP: break-word !important; FONT-SIZE: 20px; MAX-WIDTH: 100%; HEIGHT: 35px; FONT-FAMILY: 微软雅黑; WHITE-SPACE: normal; BORDER-BOTTOM: rgb(242,87,45) 1px solid; FONT-WEIGHT: normal; COLOR: rgb(48,55,64); PADDING-BOTTOM: 1px; TEXT-ALIGN: justify; PADDING-TOP: 1px; PADDING-LEFT: 0px; MARGIN: 0px; LINE-HEIGHT: 2px; PADDING-RIGHT: 0px\"><span class=\"brcolor\" style=\"BOX-SIZING: border-box !important; WORD-WRAP: break-word !important; MAX-WIDTH: 100%; BORDER-BOTTOM: rgb(242,87,45) 20px solid; FLOAT: left; PADDING-BOTTOM: 2px; PADDING-TOP: 8px; PADDING-LEFT: 8px; DISPLAY: block; PADDING-RIGHT: 8px\"><strong style=\"BOX-SIZING: border-box !important; WORD-WRAP: break-word !important; MAX-WIDTH: 100%; LINE-HEIGHT: 24px\"><strong style=\"BOX-SIZING: border-box !important; WORD-WRAP: break-word !important; MAX-WIDTH: 100%\">微</strong></strong></span><p style=\"BOX-SIZING: border-box !important; WORD-WRAP: break-word !important; MARGIN-BOTTOM: 0px; MAX-WIDTH: 100%; WHITE-SPACE: pre-wrap; PADDING-BOTTOM: 0px; PADDING-TOP: 0px; PADDING-LEFT: 0px; MIN-HEIGHT: 1.5em; MARGIN-TOP: 0px; LINE-HEIGHT: 2em; PADDING-RIGHT: 0px\"><span style=\"PADDING-BOTTOM: 0px; PADDING-TOP: 0px; PADDING-LEFT: 5px; PADDING-RIGHT: 5px; BACKGROUND-COLOR: rgb(255,192,0)\"><strong> <span style=\"FONT-SIZE: 14px; COLOR: rgb(127,127,127)\"> 利器 </span></strong></span><br style=\"BOX-SIZING: border-box !important; WORD-WRAP: break-word !important; MAX-WIDTH: 100%\"></p></h2><p><br></p><p><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd11818e0003', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '标题0002', 'WXBT', '<fieldset class=\"brcolor\" style=\"margin: 0px; padding: 0px; border: 0px; font-size: 13px; white-space: normal; max-width: 100%; box-sizing: border-box; color: rgb(62, 62, 62); font-family: 微软雅黑; line-height: 25px; text-align: center; clear: both; word-wrap: break-word !important;\"><section class=\"main brcolor\" style=\"margin: 0px; padding: 0px; border: 0.4em solid rgb(0, 187, 236); display: inline-block; max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important; background-color: rgb(248, 247, 245);\"><section style=\"margin: -0.4em 0.5em; padding: 0.5em; border-width: 0.5em 0px; border-top-style: solid; border-bottom-style: solid; border-top-color: rgb(248, 247, 245); border-bottom-color: rgb(248, 247, 245); max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;\"><section style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;\"><section style=\"margin: 0px; padding: 0px; border: 0px; display: inline-table; max-width: 100%; vertical-align: middle; word-wrap: break-word !important; box-sizing: border-box !important;\"><section class=\"main2 bfcolor\" style=\"margin: 0px; padding: 0px; border: 0px; display: table; max-width: 100%; vertical-align: middle; line-height: 1.5; font-size: 1em; font-family: inherit; text-align: inherit; text-decoration: inherit; color: rgb(0, 187, 236); word-wrap: break-word !important; box-sizing: border-box !important;\"><br style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;\">必属精品<br style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;\"></section></section><section class=\"main3 bkcolor\" style=\"margin: 0px; padding: 0px; border: 0px; display: inline-block; max-width: 100%; box-sizing: border-box; vertical-align: middle; height: 3em; width: 3em; border-top-left-radius: 50%; border-top-right-radius: 50%; border-bottom-right-radius: 0px; border-bottom-left-radius: 50%; word-wrap: break-word !important; background-color: rgb(0, 187, 236);\"><section style=\"margin: 0.2em; padding: 0px; border: 0.2em solid rgb(255, 255, 255); max-width: 100%; box-sizing: border-box; height: 2.6em; width: 2.6em; border-top-left-radius: 50%; border-top-right-radius: 50%; border-bottom-right-radius: 50%; border-bottom-left-radius: 50%; word-wrap: break-word !important; background-color: transparent;\"><section style=\"margin: 0.05em 0px 0px; padding: 0px; border: 0px; max-width: 100%; line-height: 1; font-size: 2em; font-family: inherit; text-align: inherit; text-decoration: inherit; color: rgb(255, 255, 255); word-wrap: break-word !important; box-sizing: border-box !important;\">1</section></section></section></section><section class=\"main4 brcolor\" style=\"margin: 0.5em 0px; padding: 0px; border-width: 1px 0px 0px; border-top-style: solid; border-color: rgb(0, 187, 236); max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;\"></section><section style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; line-height: 1; font-size: 0.9em; font-family: inherit; text-align: inherit; text-decoration: inherit; word-wrap: break-word !important; box-sizing: border-box !important;\">这里可输入标题,自适应宽度</section></section></section></fieldset><p><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd1229670004', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '标题0003', 'WXBT', '<p class=\"brcolor\" style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border-width: 2px 0px 0px; border-top-style: solid; border-top-color: rgb(0, 187, 236); font-size: 13px; white-space: normal; max-width: 100%; word-wrap: normal; min-height: 1.5em; color: rgb(62, 62, 62); line-height: 2em; font-family: 微软雅黑; box-sizing: border-box !important;\"><span class=\"bkcolor\" style=\"margin: 0px; padding: 5px 10px; border: 0px; max-width: 100%; color: rgb(255, 255, 255); display: inline-block; word-wrap: break-word !important; box-sizing: border-box !important; background-color: rgb(0, 187, 236);\">这可输入标题</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-size: 13px; white-space: normal; max-width: 100%; word-wrap: normal; min-height: 1em; color: rgb(62, 62, 62); font-family: \'Helvetica Neue\', Helvetica, \'Hiragino Sans GB\', \'Microsoft YaHei\', 微软雅黑, Arial, sans-serif; line-height: 25px; box-sizing: border-box !important; background-color: rgb(255, 255, 255);\"><br></p><p><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd12e2da0005', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '标题0004', 'WXBT', '<h2 class=\"brcolor bfcolor\" data-page-model=\"title\" style=\"margin: 25px 0px 20px; padding: 5px 0px 10px 7px; border-width: 2px 0px 0px; border-top-style: solid; border-top-color: rgb(0, 187, 236); font-size: 22px; font-weight: 100; white-space: normal; max-width: 100%; clear: both; font-family: 微软雅黑; line-height: 35px; color: rgb(0, 187, 236); word-wrap: break-word !important; box-sizing: border-box !important; background-image: url(http://www.weituibao.com/img/editor/guide/aticletitBg.png); background-color: rgb(255, 255, 255); background-position: 0px 100%; background-repeat: repeat-x;\">一、这可输入标题</h2><p><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd13afe80006', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '标题0005', 'WXBT', '<p></p><section class=\"main1 brcolor\" style=\"margin: 0.5em 0px; padding: 0px; border-width: 0px 0px 1px; border-bottom-style: solid; border-color: rgb(0, 187, 236); display: inline-block; font-size: 13px; white-space: normal; max-width: 100%; color: rgb(62, 62, 62); font-family: 微软雅黑; line-height: 1em; overflow: hidden; word-wrap: break-word !important; box-sizing: border-box !important; background-color: rgb(255, 255, 255);\"><section class=\"main2 bkcolor\" style=\"margin: 0px; padding: 0.2em; border: 0px; display: inline-block; max-width: 100%; height: 2.8em; line-height: 1em; word-wrap: break-word !important; box-sizing: border-box !important; background-color: rgb(0, 187, 236);\"><section class=\"main3\" style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; color: rgb(255, 255, 255); line-height: 1em; font-family: inherit; font-size: 2.5em; word-wrap: break-word !important; box-sizing: border-box !important;\">1</section></section><section class=\"main4 brcolor\" style=\"margin: 0px; padding: 0.2em; border: 0px; display: inline-block; max-width: 100%; color: rgb(42, 52, 58); line-height: 1em; font-family: inherit; font-size: 1.5em; word-wrap: break-word !important; box-sizing: border-box !important;\">这可输入标题</section></section><span style=\"color: rgb(68, 68, 68); font-family: \'Microsoft YaHei\'; font-size: 13px; line-height: 24px; background-color: rgb(255, 255, 255);\"> </span><p></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd1447400007', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '标题0006', 'WXBT', '<section class=\"main_1\" style=\"margin: 0px; padding: 0px; border: 0px; font-size: 13px; white-space: normal; max-width: 100%; color: rgb(62, 62, 62); font-family: 微软雅黑; line-height: 25px; word-wrap: break-word !important; box-sizing: border-box !important; background-color: rgb(255, 255, 255);\"><section class=\"main_2\" style=\"margin: 0.8em 0px 0.5em; padding: 0px; border: 0px; max-width: 100%; overflow: hidden; word-wrap: break-word !important; box-sizing: border-box !important;\"><section class=\"main_3\" style=\"margin: 0px; padding: 0.3em 0.5em; border: 0px; display: inline-block; max-width: 100%; height: 2em; color: white; text-align: center; font-size: 1em; line-height: 1.4em; vertical-align: top; word-wrap: break-word !important; box-sizing: border-box !important; background-color: rgb(0, 187, 236);\"><strong style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;\">第一步</strong></section><section class=\"main_4 margin-left-3\" style=\"margin: 0px; padding: 0px; border-top-width: 1em !important; border-right-width: 0px; border-bottom-width: 1em !important; border-left-width: 0.5em; border-top-style: solid !important; border-bottom-style: solid !important; border-left-style: solid; border-top-color: transparent !important; border-right-color: rgb(0, 187, 236); border-bottom-color: transparent !important; border-left-color: rgb(0, 187, 236); display: inline-block; max-width: 100%; height: 2em; width: 0.5em; vertical-align: top; word-wrap: break-word !important; box-sizing: border-box !important;\"></section></section></section><p><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd150f9a0008', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '标题0007', 'WXBT', '<section style=\"margin: 0.8em 0px 0.5em; padding: 0px; border: 0px; font-size: 13px; white-space: normal; max-width: 100%; color: rgb(62, 62, 62); font-family: 微软雅黑; line-height: 25px; word-wrap: break-word !important; box-sizing: border-box !important;\"><span class=\"bkcolor\" style=\"margin: 0px; padding: 0.3em 0.5em; border: 0px; max-width: 100%; display: inline-block; border-top-left-radius: 0.5em; border-top-right-radius: 0.5em; border-bottom-right-radius: 0.5em; border-bottom-left-radius: 0.5em; color: white; text-align: center; font-size: 1em; box-shadow: rgb(165, 165, 165) 0.2em 0.2em 0.1em; word-wrap: break-word !important; box-sizing: border-box !important; background-color: rgb(0, 187, 236);\"><strong style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;\">1、这里输入标题</strong></span></section><p><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd15ada40009', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '标题0008', 'WXBT', '<li>\r\n<p></p><section class=\"s0002 brcolor\" style=\"margin: 0px; padding: 0px; border-width: 1.1em 1em 1.1em 0px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-top-color: rgb(0, 187, 236); border-right-color: transparent!important; border-bottom-color: rgb(0, 187, 236); display: inline-block; color: rgb(68, 68, 68); font-family: \'Microsoft YaHei\'; font-size: 13px; white-space: normal; height: 2em; max-width: 100%; line-height: 1em; box-sizing: border-box;\"><section style=\"margin: -1em 0px 0px; padding: 0.5em 1em; border: 0px; height: 2em; color: white; max-width: 100%; white-space: nowrap; text-overflow: ellipsis;\"> 这里输入标题</section></section><span style=\"color: rgb(68, 68, 68); font-family: \'Microsoft YaHei\'; font-size: 13px; line-height: 24px; background-color: rgb(255, 255, 255);\"> </span><p></p><p><br></p>\r\n</li>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd1633cc000a', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '标题0009', 'WXBT', '<section style=\"margin: 0.8em 0px 0.5em; padding: 0px; border: 0px; color: rgb(68, 68, 68); font-family: \'Microsoft YaHei\'; font-size: 13px; line-height: 24px; white-space: normal;\"><section class=\"s0002 bkcolor\" style=\"margin: 0px; padding: 0px; border: 0px; display: inline-block; width: 2.5em; height: 2.5em; border-top-left-radius: 2em; border-top-right-radius: 2em; border-bottom-right-radius: 2em; border-bottom-left-radius: 2em; vertical-align: top; text-align: center; background-color: rgb(0, 187, 236);\"><section style=\"margin: 0px; padding: 0px; border: 0px; display: table; width: 32px;\"><section style=\"margin: 0px; padding: 0px; border: 0px; display: table-cell; vertical-align: middle; font-weight: bolder; line-height: 1.3em; font-size: 2em; font-family: inherit; color: rgb(255, 255, 255);\">1</section></section></section><section style=\"margin: 0px 0px 0px 0.7em; padding: 0.3em 0px 0px; border: 0px; display: inline-block;\"><section class=\"s0003 bfcolor\" style=\"margin: 0px; padding: 0px; border: 0px; line-height: 1.4em; font-size: 1.5em; font-family: inherit; color: rgb(0, 187, 236);\">请输入标题</section></section></section><p><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd16f5ee000b', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '标题0009', 'WXBT', '<section style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(68, 68, 68); font-family: 微软雅黑; font-size: 1em; line-height: 24px; text-align: center; vertical-align: middle;\"><section class=\"s001 btcolor\" style=\"margin: 0px 1em; padding: 0px; border-width: 1.5em; border-style: solid; border-color: rgb(0, 187, 236) transparent; height: 0px;\"></section><section style=\"margin: -2.75em 1.65em; padding: 0px; border-width: 1.3em; border-style: solid; border-color: rgb(255, 255, 255) transparent; height: 0px;\"></section><section class=\"s001 btcolor\" style=\"margin: 0.45em 2.1em; padding: 0px; border-width: 1.1em; border-style: solid; border-color: rgb(0, 187, 236) transparent; height: 0px; vertical-align: middle;\"><section style=\"margin: -0.5em 0px 0px; padding: 0px 1em; border: 0px; font-size: 1.2em; line-height: 1em; color: white; max-height: 1em; overflow: hidden;\">请输入标题</section></section></section><p><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd19f245000c', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '标题0010', 'WXBT', '<blockquote class=\"brcolor\" data-mce-style=\"margin: 5px 0px 0px; padding: 10px; max-width: 100%; orphans: 2; widows: 2; line-height: 25px; font-family: arial, helvetica, sans-serif; text-shadow: #225f87 0px 1px 0px; color: #ffffff; border-top-left-radius: 4px; border-top-right-radius: 4px; border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; box-shadow: #999999 2px 2px 4px; border-left-width: 10px; border-left-style: solid; border-left-color: #fdd000; background-color: #373939; word-wrap: break-word !important;\" style=\"margin: 5px 0px 0px; padding: 10px; border-width: 0px 0px 0px 10px; border-left-style: solid; border-left-color: rgb(0, 187, 236); white-space: normal; max-width: 100%; line-height: 25px; font-size: 14px; font-family: arial, helvetica, sans-serif; border-top-left-radius: 4px; border-top-right-radius: 4px; border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; color: rgb(255, 255, 255); box-shadow: rgb(153, 153, 153) 2px 2px 4px; text-shadow: rgb(34, 95, 135) 0px 1px 0px; word-wrap: break-word !important; box-sizing: border-box !important; background-color: rgb(55, 57, 57);\"><strong style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;\"><span style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; font-family: 微软雅黑; font-size: 16px; word-wrap: break-word !important; box-sizing: border-box !important;\">1、这里输入标题</span></strong></blockquote><p><strong style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;\"><span style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; font-family: 微软雅黑; font-size: 16px; word-wrap: break-word !important; box-sizing: border-box !important;\"><br></span></strong></p><p><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd1a87c5000d', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '标题0011', 'WXBT', '<p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; max-width: 100%; word-wrap: normal; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); line-height: 25px; box-sizing: border-box !important; background-color: rgb(255, 255, 255);\"><strong style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(255, 255, 255); max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;\"><span class=\"bfcolor\" glowfont=\"display:inline-block; color:white; text-shadow:1px 0 4px #ff0000,0 1px 4px #ff0000,0 -1px 4px #ff0000,-1px 0 4px #ff0000;filter:glow(color=#ff0000,strength=3)\" style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; display: inline-block; text-shadow: rgb(0, 187, 236) 1px 0px 4px, rgb(0, 187, 236) 0px 1px 4px, rgb(0, 187, 236) 0px -1px 4px, rgb(0, 187, 236) -1px 0px 4px; word-wrap: break-word !important; box-sizing: border-box !important;\">请输入标题</span></strong><br style=\"margin: 0px; padding: 0px; border: 0px;\"></p><p><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd1b1205000e', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '标题0012', 'WXBT', '<p style=\"margin-top: 0px; margin-bottom: 20px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; white-space: normal; max-width: 100%; word-wrap: normal; min-height: 1em; color: rgb(62, 62, 62); line-height: 25px; box-sizing: border-box !important; background-color: rgb(255, 255, 255);\"><span class=\"bkcolor\" style=\"margin: 0px; padding: 4px 10px; border: 0px; max-width: 100%; border-top-left-radius: 0.5em 4em; border-top-right-radius: 3em 1em; border-bottom-right-radius: 0.5em 2em; border-bottom-left-radius: 3em 1em; text-align: justify; color: rgb(255, 255, 255); font-family: 微软雅黑, sans-serif; box-shadow: rgb(165, 165, 165) 4px 4px 2px; word-wrap: break-word !important; box-sizing: border-box !important; background-color: rgb(0, 187, 236);\"><strong style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;\"><strong style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;\"><span style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;\">请输入标题</span></strong></strong></span></p><p><span class=\"bkcolor\" style=\"margin: 0px; padding: 4px 10px; border: 0px; max-width: 100%; border-top-left-radius: 0.5em 4em; border-top-right-radius: 3em 1em; border-bottom-right-radius: 0.5em 2em; border-bottom-left-radius: 3em 1em; text-align: justify; color: rgb(255, 255, 255); font-family: 微软雅黑, sans-serif; box-shadow: rgb(165, 165, 165) 4px 4px 2px; word-wrap: break-word !important; box-sizing: border-box !important; background-color: rgb(0, 187, 236);\"><strong style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;\"><strong style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;\"><span style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;\">我是段落内容</span></strong></strong></span></p><p><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd1c5c06000f', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '标题0013', 'WXBT', '<h2 style=\"FONT-SIZE: 12px; HEIGHT: 32px; FONT-FAMILY: 微软雅黑, 宋体, tahoma, arial; WHITE-SPACE: normal; BORDER-BOTTOM: rgb(227,227,227) 1px solid; FONT-WEIGHT: normal; COLOR: rgb(62,62,62); PADDING-BOTTOM: 0px; PADDING-TOP: 0px; PADDING-LEFT: 0px; MARGIN: 8px 0px 0px; LINE-HEIGHT: 18px; PADDING-RIGHT: 0px\"><span class=\"bfcolor\" style=\"FONT-SIZE: 16px; FONT-FAMILY: 微软雅黑, sans-serif !important; BORDER-BOTTOM: rgb(86,159,8) 2px solid; FLOAT: left; COLOR: rgb(86,159,8); PADDING-BOTTOM: 3px; PADDING-TOP: 0px; PADDING-LEFT: 2px; DISPLAY: block; LINE-HEIGHT: 28px; PADDING-RIGHT: 2px\">请在这可输入标题</span><span class=\"bkcolor\" style=\"COLOR: rgb(255,255,255); PADDING-BOTTOM: 4px; PADDING-TOP: 4px; PADDING-LEFT: 10px; PADDING-RIGHT: 10px; BACKGROUND-COLOR: rgb(95,170,70); border-radius: 80% 100% 90% 20%!important;margin-top: 0px;display: inline-block;margin-left: 5px;\">我是微信ID</span></h2><p><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd1d1b420010', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '标题0014', 'WXBT', '<h2 style=\"margin: 8px 0px 0px; padding: 0px; white-space: normal; font-size: 16px; font-weight: normal; max-width: 100%; color: rgb(62, 62, 62); height: 32px; line-height: 18px; font-family: 微软雅黑; border-bottom-color: rgb(227, 227, 227); border-bottom-width: 1px; border-bottom-style: solid; text-align: justify; word-wrap: break-word !important; \"><span class=\"brcolor\" style=\"margin: 0px; padding: 0px 2px 3px; max-width: 100%; color: rgb(0, 112, 192); line-height: 28px; border-bottom-color: rgb(0, 112, 192); border-bottom-width: 2px; border-bottom-style: solid; float: left; display: block; word-wrap: break-word !important;\"><span class=\"bkcolor brcolor\" style=\"margin: 0px 8px 0px 0px; padding: 4px 10px; max-width: 100%; border-top-left-radius: 80%!important; border-top-right-radius: 100%!important; border-bottom-right-radius: 90%!important; border-bottom-left-radius: 20%!important; color: rgb(255, 255, 255); word-wrap: break-word !important; background-color: rgb(0, 112, 192);\">1</span></span><span class=\"brcolor\" style=\"margin: 0px; padding: 0px 2px 3px; max-width: 100%; color: rgb(0, 112, 192); line-height: 28px; border-bottom-color: rgb(0, 112, 192); border-bottom-width: 2px; border-bottom-style: solid; float: left; display: block; word-wrap: break-word !important;\"><strong style=\"color: rgb(60, 117, 45); max-width: 100%; line-height: 28px; word-wrap: break-word !important;\">第一标题</strong></span></h2><p><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd1d92190011', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '标题0015', 'WXBT', '<h2 style=\"margin: 8px 0px 0px; padding: 0px; white-space: normal; font-size: 16px; font-weight: normal; max-width: 100%; color: rgb(62, 62, 62); height: 32px; line-height: 18px; font-family: 微软雅黑;text-align: justify; word-wrap: break-word !important; \"><span class=\"brcolor\" style=\"margin: 0px; padding: 0px 2px 3px; max-width: 100%; color: rgb(0, 112, 192); line-height: 28px;float: left; display: block; word-wrap: break-word !important;\"><span class=\"bkcolor brcolor\" style=\"margin: 0px 8px 0px 0px; padding: 4px 10px; max-width: 100%; border-top-left-radius: 80%!important; border-top-right-radius: 100%!important; border-bottom-right-radius: 90%!important; border-bottom-left-radius: 20%!important; color: rgb(255, 255, 255); word-wrap: break-word !important; background-color: rgb(0, 112, 192);\">1</span></span><span class=\"brcolor\" style=\"margin: 0px; padding: 0px 2px 3px; max-width: 100%; color: rgb(0, 112, 192); line-height: 28px;float: left; display: block; word-wrap: break-word !important;\"><strong style=\"color: rgb(60, 117, 45); max-width: 100%; line-height: 28px; word-wrap: break-word !important;\">第一标题</strong></span></h2><p><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd1e70590012', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '标题0016', 'WXBT', '<h2 style=\"FONT-SIZE: 16px; HEIGHT: 32px; FONT-FAMILY: 微软雅黑; WHITE-SPACE: normal; FONT-WEIGHT: normal; COLOR: rgb(62,62,62); PADDING-BOTTOM: 0px; TEXT-ALIGN: justify; PADDING-TOP: 0px; PADDING-LEFT: 0px; MARGIN: 8px 0px 0px; LINE-HEIGHT: 18px; PADDING-RIGHT: 0px\"><span style=\"FLOAT: left; COLOR: rgb(0,112,192); PADDING-BOTTOM: 3px; PADDING-TOP: 0px; PADDING-LEFT: 2px; DISPLAY: block; LINE-HEIGHT: 28px; PADDING-RIGHT: 2px\"><span class=\"bkcolor\" style=\"COLOR: rgb(255,255,255); PADDING-BOTTOM: 4px; PADDING-TOP: 4px; PADDING-LEFT: 10px; PADDING-RIGHT: 10px; BACKGROUND-COLOR: rgb(9,6,101); MARGIN-RIGHT: 8px\">2</span><strong class=\"ue_t\">请在这可输入标题</strong></span></h2><p><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd1efb820013', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '标题0017', 'WXBT', '<h2 style=\"FONT-SIZE: 16px; HEIGHT: 32px; FONT-FAMILY: 微软雅黑; WHITE-SPACE: normal; FONT-WEIGHT: normal; COLOR: rgb(62,62,62); PADDING-BOTTOM: 0px; TEXT-ALIGN: justify; PADDING-TOP: 0px; PADDING-LEFT: 0px; MARGIN: 8px 0px 0px; LINE-HEIGHT: 18px; PADDING-RIGHT: 0px\"><span style=\"FLOAT: left; COLOR: rgb(0,112,192); PADDING-BOTTOM: 3px; PADDING-TOP: 0px; PADDING-LEFT: 2px; DISPLAY: block; LINE-HEIGHT: 28px; PADDING-RIGHT: 2px\"><span class=\"bkcolor\" style=\"COLOR: rgb(255,255,255); PADDING-BOTTOM: 6px; PADDING-TOP: 6px; PADDING-LEFT: 15px; PADDING-RIGHT: 15px; BACKGROUND-COLOR: rgb(95,170,70); MARGIN-RIGHT: 8px; border-radius: 90% 100% 90% 100%!important;\">请在这可输入标题</span></span></h2><p><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd1fbb800014', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '标题0018', 'WXBT', '<p style=\"margin-top: 0px; margin-bottom: 12px; padding: 0px; color: rgb(51, 51, 51); font-family: \'Microsoft Yahei\'; font-size: 14px; line-height: 25px; white-space: normal; text-align: center; background-color: rgb(255, 255, 255);\"><span style=\"margin: 0px; padding: 0px; max-width: 100%; line-height: 0px;\">?</span><strong style=\"color: rgb(102, 102, 102); max-width: 100%; line-height: 0px; font-family: 微软雅黑; background-color: rgb(250, 250, 240);\"><span class=\"bkcolor\" style=\"margin: 0px; padding: 4px 10px; max-width: 100%; color: rgb(255, 255, 255); border-top-left-radius: 2em 0.5em!important; border-top-right-radius: 1em 3em!important; border-bottom-right-radius: 4em 0.5em!important; border-bottom-left-radius: 1em 3em!important; box-shadow: rgb(165, 165, 165) 4px 4px 2px; background-color: #0070c0;\">欢迎使用微信编辑器!</span></strong></p><p><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd20447f0015', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '标题0019', 'WXBT', '<p style=\"WORD-WRAP: break-word !important; MAX-WIDTH: 100%; WHITE-SPACE: pre-wrap; WORD-SPACING: 0px; TEXT-TRANSFORM: none; COLOR: rgb(255,255,255); PADDING-BOTTOM: 0px; PADDING-TOP: 0px; PADDING-LEFT: 0px; MARGIN: 0px; MIN-HEIGHT: 1.5em; LETTER-SPACING: normal; PADDING-RIGHT: 0px; TEXT-INDENT: 0px; -webkit-text-stroke-width: 0px; font-size-adjust: none; font-stretch: normal\"><strong><span class=\"bkcolor\" style=\"WORD-WRAP: break-word !important; MAX-WIDTH: 100%;COLOR: rgb(255,255,255); PADDING-BOTTOM: 4px; PADDING-TOP: 4px; PADDING-LEFT: 10px; PADDING-RIGHT: 10px; BACKGROUND-COLOR: rgb(34,34,34); MARGIN-RIGHT: 8px; border-radius: 5px!important\">请在这可输入标题</span></strong></p><p><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd225cf50016', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '标题0020', 'WXBT', '<p style=\"WORD-WRAP: break-word !important; MAX-WIDTH: 100%; WHITE-SPACE: pre-wrap; WORD-SPACING: 0px; TEXT-TRANSFORM: none; COLOR: rgb(255,255,255); PADDING-BOTTOM: 0px; PADDING-TOP: 0px; PADDING-LEFT: 0px; MARGIN: 0px; MIN-HEIGHT: 1.5em; LETTER-SPACING: normal; PADDING-RIGHT: 0px; TEXT-INDENT: 0px; -webkit-text-stroke-width: 0px; font-size-adjust: none; font-stretch: normal\"><strong><span class=\"bkcolor\" style=\"WORD-WRAP: break-word !important; MAX-WIDTH: 100%; FONT-FAMILY: 微软雅黑,Microsoft YaHei; COLOR: rgb(255,255,255); PADDING-BOTTOM: 4px; PADDING-TOP: 4px; PADDING-LEFT: 10px; PADDING-RIGHT: 10px; BACKGROUND-COLOR: rgb(255,3,0); MARGIN-RIGHT: 8px\">请在这可输入标题</span></strong></p><p><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd22f9ec0017', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '标题0021', 'WXBT', '<h2 style=\"FONT-SIZE: 12px; HEIGHT: 32px; FONT-FAMILY: 微软雅黑, 宋体, tahoma, arial; WHITE-SPACE: normal; BORDER-BOTTOM: rgb(227,227,227) 1px solid; FONT-WEIGHT: normal; COLOR: rgb(62,62,62); PADDING-BOTTOM: 0px; PADDING-TOP: 0px; PADDING-LEFT: 0px; MARGIN: 8px 0px 0px; LINE-HEIGHT: 18px; PADDING-RIGHT: 0px\"><span class=\"bfcolor\" style=\"FONT-SIZE: 14px; FONT-FAMILY: 微软雅黑, sans-serif !important; BORDER-BOTTOM: rgb(86,159,8) 2px solid; FLOAT: left; FONT-WEIGHT: bold; COLOR: rgb(86,159,8); PADDING-BOTTOM: 3px; PADDING-TOP: 0px; PADDING-LEFT: 2px; DISPLAY: block; LINE-HEIGHT: 28px; PADDING-RIGHT: 2px\">请在这可输入标题</span></h2><p><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd23719c0018', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '标题0022', 'WXBT', '<h2 class=\"bfcolor\" style=\"FONT-SIZE: 16px; FONT-FAMILY: 微软雅黑; BORDER-RIGHT-WIDTH: 0px; WHITE-SPACE: normal; BORDER-BOTTOM-WIDTH: 0px; COLOR: green; PADDING-BOTTOM: 0px; PADDING-TOP: 0px; PADDING-LEFT: 10px; MARGIN: 5px 0px 13px; BORDER-LEFT: rgb(111,168,51) 5px solid; LINE-HEIGHT: 25px; PADDING-RIGHT: 10px; BORDER-TOP-WIDTH: 0px; -webkit-font-smoothing: antialiased\">请在这可输入标题</h2><p><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd26032d0019', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '内容0002', 'WXNRQ', '<blockquote class=\"brcolor\" style=\"white-space: normal; border-left-color: rgb(255, 102, 0); border-left-width: 10px; border-left-style: solid; border-right-color: rgb(255, 102, 0); border-right-width: 10px; border-right-style: solid; padding: 10px; margin: 5px 0px 0px; font-family: arial, helvetica, sans-serif; max-width: 100%; font-size: 14px; box-shadow: rgb(153, 153, 153) 2px 1px 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgba(255, 255, 255, 0.388235);\"><p>欢迎使用微信编辑器!</p></blockquote><p><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd270e53001a', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '内容0003', 'WXNRQ', '<section style=\"margin: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; white-space: normal; max-width: 100%; color: rgb(62, 62, 62); line-height: 25px; word-wrap: break-word !important; box-sizing: border-box !important; background-color: rgb(255, 255, 255);\">\r\n<section style=\"margin: 0px 0px 0px 1em; padding: 0px; border: 0px; max-width: 100%; line-height: 1.4em; word-wrap: break-word !important; box-sizing: border-box !important;\">\r\n<span class=\"bkcolor\" style=\"margin: 0px; padding: 0.2em 0.5em; border: 0px; max-width: 100%; font-size: 0.8em; font-family: inherit; border-top-left-radius: 0.3em; border-top-right-radius: 0.3em; border-bottom-right-radius: 0.3em; border-bottom-left-radius: 0.3em; color: rgb(255, 255, 255); text-align: center; word-wrap: break-word !important; box-sizing: border-box !important; background-color: rgb(0, 187, 236);\">这输入标题</span> <span style=\"margin: 0px 0px 0px 0.3em; padding: 0.2em 0.5em; border: 0px; max-width: 100%; height: 1.2em; border-top-left-radius: 1.2em; border-top-right-radius: 1.2em; border-bottom-right-radius: 1.2em; border-bottom-left-radius: 1.2em; color: rgb(255, 255, 255); font-size: 0.8em; line-height: 1.2em; font-family: inherit; word-wrap: break-word !important; box-sizing: border-box !important; background-color: rgb(204, 204, 204);\">编辑器</span>\r\n</section>\r\n<section style=\"margin: -0.7em 0px 0px; padding: 1.4em 1em 1em; border: 1px solid rgb(192, 200, 209); max-width: 100%; border-top-left-radius: 0.3em; border-top-right-radius: 0.3em; border-bottom-right-radius: 0.3em; border-bottom-left-radius: 0.3em; color: rgb(51, 51, 51); font-size: 1em; font-family: inherit; word-wrap: break-word !important; box-sizing: border-box !important; background-color: rgb(239, 239, 239);\">\r\n可在这输入内容,微信编辑器,微信编辑首选。\r\n</section>\r\n</section>\r\n<p>\r\n<br>\r\n</p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd27abdb001b', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '内容0004', 'WXNRQ', '<fieldset style=\"margin: 0.5em 0px; padding: 0px; border: 0px; color: rgb(68, 68, 68); font-family: 微软雅黑; font-size: 13px; white-space: normal; max-width: 100%; line-height: 25px; word-wrap: break-word !important; box-sizing: border-box !important; background-color: rgb(255, 255, 255);\">\r\n<section style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; box-sizing: border-box; height: 1em; word-wrap: break-word !important;\">\r\n<section class=\"brcolor\" style=\"margin: 0px; padding: 0px; border-width: 0.4em 0px 0px 0.4em; border-top-style: solid; border-left-style: solid; border-color: rgb(0, 187, 236); max-width: 100%; height: 16px; width: 1.5em; float: left; word-wrap: break-word !important; box-sizing: border-box !important;\"></section>\r\n<section class=\"brcolor\" style=\"margin: 0px; padding: 0px; border-width: 0.4em 0.4em 0px 0px; border-top-style: solid; border-right-style: solid; border-color: rgb(0, 187, 236); max-width: 100%; height: 16px; width: 1.5em; float: right; word-wrap: break-word !important; box-sizing: border-box !important;\"></section>\r\n</section>\r\n<section class=\"brcolor\" style=\"margin: -0.8em 0.1em -0.8em 0.2em; padding: 0.8em; border: 1px solid rgb(0, 187, 236); max-width: 100%; box-sizing: border-box; border-top-left-radius: 0.3em; border-top-right-radius: 0.3em; border-bottom-right-radius: 0.3em; border-bottom-left-radius: 0.3em; word-wrap: break-word !important;\">\r\n<section style=\"margin: 0px; padding: 0px; border: none; max-width: 100%; word-wrap: break-word; line-height: 1.4; word-break: break-all; font-size: 1em; font-family: inherit; text-align: inherit; text-decoration: inherit; box-sizing: border-box !important; background-image: none;\">\r\n可在这输入内容, 微信编辑器,微信编辑首选。\r\n</section>\r\n</section>\r\n<section style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; box-sizing: border-box; height: 1em; word-wrap: break-word !important;\">\r\n<section class=\"brcolor\" style=\"margin: -3px 0px 0 0; padding: 0px; border-width: 0px 0px 0.4em 0.4em; border-bottom-style: solid; border-left-style: solid; border-color: rgb(0, 187, 236); max-width: 100%; height: 16px; width: 1.5em; float: left; word-wrap: break-word !important; box-sizing: border-box !important;\"></section>\r\n<section class=\"brcolor\" style=\"margin: -3px 0px 0 0; padding: 0px; border-width: 0px 0.4em 0.4em 0px; border-right-style: solid; border-bottom-style: solid; border-color: rgb(0, 187, 236); max-width: 100%; height: 16px; width: 1.5em; float: right; word-wrap: break-word !important; box-sizing: border-box !important;\"></section>\r\n</section>\r\n</fieldset>\r\n<p>\r\n<br>\r\n</p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd284a3a001c', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '内容0005', 'WXNRQ', '<blockquote class=\"brcolor\" style=\"margin: 0px; padding: 10px; border: 6px double rgb(0, 187, 236); color: rgb(68, 68, 68); font-family: 微软雅黑; font-size: 13px; line-height: 24px; white-space: normal; word-break: break-all; word-wrap: break-word !important; box-sizing: border-box !important;\">\r\n<p class=\"ue_t\" style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px;\">\r\n可在这输入内容, 微信编辑器,微信编辑首选。\r\n</p>\r\n</blockquote>\r\n<p>\r\n<br>\r\n</p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd2bfaed001d', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '内容0006', 'WXNRQ', '<fieldset style=\"margin: 0px 0px 0px 10px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; white-space: normal; max-width: 100%; color: rgb(62, 62, 62); line-height: 25px; word-wrap: break-word !important; box-sizing: border-box !important; background-color: rgb(255, 255, 255);\">\r\n<section style=\"margin: 0px 0px 0px -0.5em; padding: 0px; border: 0px; max-width: 100%; line-height: 1.4em; word-wrap: break-word !important; box-sizing: border-box !important;\">\r\n<section class=\"bkcolor\" style=\"margin: 0px; padding: 0.2em 0.5em; border: 0px; display: inline-block; max-width: 100%; border-top-left-radius: 0.3em; border-top-right-radius: 0.3em; border-bottom-right-radius: 0.3em; border-bottom-left-radius: 0.3em; color: white; font-size: 0.8em; text-align: center; -webkit-transform: rotateZ(-10deg); -webkit-transform-origin: 0% 100%; word-wrap: break-word !important; box-sizing: border-box !important; background-color: rgb(0, 187, 236);\">\r\n我的观点\r\n</section>\r\n</section>\r\n<section class=\"brcolor\" style=\"margin: -1.5em 0px 0px; padding: 0px; border: 1px solid rgb(0, 187, 236); max-width: 100%; font-size: 1em; word-wrap: break-word !important; box-sizing: border-box !important;\">\r\n<section style=\"margin: 0px; padding: 1.4em 1em 1em; border: 0px; max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;\">\r\n<span style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; font-size: 1em; line-height: 1.2; font-family: inherit; text-align: inherit; text-decoration: inherit; color: rgb(253, 176, 0); word-wrap: break-word !important; box-sizing: border-box !important;\"></span><span style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; font-size: 1em; line-height: 1.2; font-family: inherit; text-align: inherit; text-decoration: inherit; color: rgb(51, 51, 51); word-wrap: break-word !important; box-sizing: border-box !important;\">可在这输入内容, 微信编辑器,微信编辑首选。</span>\r\n</section>\r\n<p>\r\n<span style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; font-size: 1em; line-height: 1.2; font-family: inherit; text-align: inherit; text-decoration: inherit; color: rgb(51, 51, 51); word-wrap: break-word !important; box-sizing: border-box !important;\"><br></span>\r\n</p>\r\n</section>\r\n</fieldset>\r\n<p>\r\n<br>\r\n</p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd2d5b54001e', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '内容0007', 'WXNRQ', '<p class=\"brcolor\" style=\"margin:15px;padding:20px;border:1px dotted #00bbec;font-family:微软雅黑;max-width:100%;word-wrap:normal;min-height:1.5em;white-space:pre-wrap;text-align:justify;color:#494429;line-height:2em;font-size:14px;border-bottom-right-radius:15px;border-bottom-left-radius:10px;box-sizing:border-box!important;background-color:#fff\"><span style=\"margin:0;padding:0;border:0;max-width:100%;color:#00bbec;word-wrap:break-word!important;box-sizing:border-box!important\"><strong style=\"margin:0;padding:0;border:0;max-width:100%;word-wrap:break-word!important;box-sizing:border-box!important\">请输入内容</strong></span></p><p><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd2df3a0001f', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '内容0008', 'WXNRQ', '<fieldset class=\"comment_quote\" style=\"margin: 5px 0px; padding: 5px; border: 1px solid rgb(204, 204, 204); font-family: 微软雅黑; font-size: 13px; white-space: normal; max-width: 100%; color: rgb(62, 62, 62); line-height: 25px; box-shadow: rgb(165, 165, 165) 5px 5px 2px; word-wrap: break-word !important; box-sizing: border-box !important; background-color: rgb(248, 247, 245);\">\r\n<legend style=\"margin: 0px; padding: 0px; border-width: 0px; max-width: 100%; line-height: 1.8em; word-wrap: break-word !important; box-sizing: border-box !important;\">\r\n<strong style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; color: rgb(89, 89, 89); font-size: 18px; line-height: 42.6666679382324px; text-align: center; white-space: pre-wrap; word-wrap: break-word !important; box-sizing: border-box !important;\"><span class=\"bfcolor\" style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; color: rgb(0, 187, 236); text-shadow: rgb(201, 201, 201) 5px 3px 1px; word-wrap: break-word !important; box-sizing: border-box !important;\">精彩内容</span></strong>\r\n</legend>\r\n<p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; max-width: 100%; word-wrap: normal; min-height: 1em; white-space: pre-wrap; box-sizing: border-box !important;\">\r\n请输入内容<br style=\"margin: 0px; padding: 0px; border: 0px;\">\r\n</p>\r\n</fieldset>\r\n<p>\r\n<br>\r\n</p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd2ecdbc0020', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '内容0009', 'WXNRQ', '<blockquote style=\"margin: 0.2em; padding: 10px; border: 3px solid rgb(201, 201, 201); border-image-source: none; font-family: 微软雅黑; font-size: 13px; white-space: normal; max-width: 100%; color: rgb(62, 62, 62); line-height: 25.6000003814697px; box-shadow: rgb(170, 170, 170) 0px 0px 10px; -webkit-box-shadow: rgb(170, 170, 170) 0px 0px 10px; word-wrap: break-word !important; box-sizing: border-box !important; background-color: rgb(255, 255, 255);\">\r\n<p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; max-width: 100%; word-wrap: normal; min-height: 1em; box-sizing: border-box !important;\">\r\n<span style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; line-height: 25.6000003814697px; word-wrap: break-word !important; box-sizing: border-box !important;\">可在这输入内容, 微信编辑器,微信编辑首选。</span>\r\n</p>\r\n<p>\r\n<span style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; line-height: 25.6000003814697px; word-wrap: break-word !important; box-sizing: border-box !important;\"><br></span>\r\n</p>\r\n</blockquote>\r\n<p>\r\n<br>\r\n</p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd2f8c6e0021', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '内容0010', 'WXNRQ', '<blockquote class=\"bcolor\" style=\"white-space: normal; border: 1px solid rgb(225, 225, 225); margin: 5px 0px; padding: 5px 10px; overflow: hidden; font-size: 14px; line-height: 24px; font-family: 微软雅黑; color: rgb(51, 51, 51); background: rgb(241, 241, 241);\"><p style=\"border: 0px; padding: 0px; letter-spacing: 0.25px; line-height: 28px;\"><span style=\"border: 0px; margin: 0px; padding: 0px; color: rgb(127, 127, 127);\">欢迎使用微信编辑器!</span></p></blockquote><p style=\"white-space: normal;\"><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd30006f0022', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '内容0011', 'WXNRQ', '<p class=\"brcolor\" style=\"border: 1px solid #cdcdcd;box-shadow: 0 3px 6px #999999;-webkit-border-radius: 12px!important;-moz-border-radius: 12px!important;border-radius: 12px!important;width: auto;background-color:#FFFFFF;padding: 10px;background: -webkit-gradient(linear, left top, left bottom,from(#FFFFFF), to(#FFFFFF));background-image: -mozlinear-gradient(top, #FFFFFF 0%, #FFFFFF 100%);margin: 0px auto; line-height: 1.8em; min-height: 1.5em;\"><span style=\"FONT: medium/21px 微软雅黑;letter-spacing: 0.25px; line-height: 25.200000762939453px; text-indent: 28px;\">直接选择需要的样式拷贝到需要的地方,修改其中的文字即可。</span></p><p><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd307eac0023', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '内容0012', 'WXNRQ', '<blockquote class=\"bkcolor\" style=\"BORDER-LEFT-WIDTH: 2px; BORDER-RIGHT-WIDTH: 2px; WHITE-SPACE: normal; BORDER-BOTTOM-WIDTH: 2px; WORD-SPACING: 0px; TEXT-TRANSFORM: none; COLOR: rgb(255,255,255); PADDING-BOTTOM: 10px; PADDING-TOP: 10px; FONT: 16px/24px 微软雅黑; PADDING-LEFT: 20px; MARGIN: 0px; LETTER-SPACING: normal; PADDING-RIGHT: 20px; BORDER-TOP-WIDTH: 2px; BACKGROUND-COLOR: rgb(227,108,9); TEXT-INDENT: 0px; border-radius: 3px; -webkit-text-stroke-width: 0px; font-size-adjust: none; font-stretch: normal;border:none!important;\"><p style=\"margin:0;\">欢迎使用微信编辑器!</p></blockquote><p><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd30fc950024', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '内容0013', 'WXNRQ', '<blockquote class=\"brcolor\" style=\"BORDER-TOP: rgb(255,0,0) 3px dashed; BORDER-RIGHT: rgb(255,0,0) 3px dashed; BORDER-BOTTOM: rgb(255,0,0) 3px dashed; PADDING-BOTTOM: 15px; PADDING-TOP: 15px; PADDING-LEFT: 15px; MARGIN: 0px; BORDER-LEFT: rgb(255,0,0) 3px dashed; PADDING-RIGHT: 15px;border-radius:5px!important;\"><p style=\"margin:0;\">欢迎使用微信编辑器!</p></blockquote><p><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd3178710025', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '内容0014', 'WXNRQ', '<blockquote class=\"brcolor\" style=\"WORD-WRAP: break-word; FONT-SIZE: 14px; MAX-WIDTH: 100%; VERTICAL-ALIGN: baseline; PADDING-BOTTOM: 15px; PADDING-TOP: 15px; PADDING-LEFT: 25px; MARGIN: 0px; BORDER-LEFT: rgb(102,102,102) 10px solid; DISPLAY: block; LINE-HEIGHT: 24px; TOP: 0px; PADDING-RIGHT: 25px; BACKGROUND-COLOR: rgb(238,238,238);\">欢迎使用微信编辑器!</blockquote><p><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd31daf00026', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '内容0015', 'WXNRQ', '<blockquote class=\"brcolor\" style=\"border-top:#ccc 1px solid;border-right:#ccc 1px solid;background-image:url(http://www.weituibao.com/img/editor/content/1.png.pagespeed.ce.PhEOnHNGja.png);background-repeat:no-repeat;border-bottom:#ccc 1px solid;background-position:10px 11px;padding-bottom:15px;padding-top:20px;padding-left:48px;margin:0px;border-left:#ccc 1px solid;line-height:1.5;padding-right:15px;border-radius:5px\">欢迎使用微信编辑器!</blockquote><p><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd324f5e0027', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '内容0016', 'WXNRQ', '<blockquote class=\"brcolor\" style=\"border-top:#ccc 1px solid;border-right:#ccc 1px solid;background-image:url(http://www.weituibao.com/img/editor/content/2.gif.pagespeed.ce.VtjZG5Eyg2.gif);background-repeat:no-repeat;border-bottom:#ccc 1px solid;background-position:10px 11px;padding-bottom:15px;padding-top:20px;padding-left:48px;margin:0px;border-left:#ccc 1px solid;line-height:1.5;padding-right:15px;border-radius:5px\">欢迎使用微信编辑器!</blockquote><p><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd3313660028', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '内容0017', 'WXNRQ', '<fieldset class=\"brcolor\" style=\"text-align: -webkit-auto; white-space: normal; margin: 0px; padding: 5px 15px; border: 1px solid rgb(127, 63, 191); max-width: 100%; color: rgb(62, 62, 62); font-family: 宋体; line-height: 24px; orphans: 2; widows: 2; box-shadow: rgb(165, 165, 165) 1px 2px 1px; border-top-left-radius: 1em!important; border-top-right-radius: 1em!important; border-bottom-right-radius: 1em!important; border-bottom-left-radius: 1em!important; word-wrap: break-word !important; box-sizing: border-box !important; background-color: rgb(253, 253, 253);\"><legend style=\"padding: 0px; max-width: 100%; margin: 0px; color: rgb(0, 0, 0); word-wrap: break-word !important; box-sizing: border-box !important;\"><span style=\"max-width: 100%; margin: 0px; padding: 0px; color: rgb(165, 165, 165); font-family: arial, helvetica, sans-serif; word-wrap: break-word !important; box-sizing: border-box !important;\"><strong style=\"max-width: 100%; color: rgb(102, 102, 102); word-wrap: break-word !important; box-sizing: border-box !important;\"><span class=\"bkcolor\" style=\"max-width: 100%; margin: 0px 8px 0px 0px; padding: 4px 10px; border-top-left-radius: 5px!important; border-top-right-radius: 5px!important; border-bottom-right-radius: 5px!important; border-bottom-left-radius: 5px!important; color: rgb(255, 251, 240); word-wrap: break-word !important; box-sizing: border-box !important; background: rgb(127, 63, 191);font-size: 14px;\"></span></strong></span></legend><p style=\"margin-top: 0px; margin-bottom: 12px; max-width: 100%; min-height: 1.5em; white-space: pre-wrap; padding: 0px; line-height: 2em; word-wrap: break-word !important; box-sizing: border-box !important;\"><br style=\"max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;\"><br style=\"max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;\"></p></fieldset><p style=\"white-space: normal;\"><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd337dc70029', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '内容0018', 'WXNRQ', '<fieldset class=\"brcolor\" style=\"border-radius: 0.3em!important;white-space: normal; margin: 0px; padding: 5px; border: 1px solid rgb(204, 204, 204); max-width: 100%; color: rgb(62, 62, 62); line-height: 24px; text-align: justify; font-family: 微软雅黑; box-shadow: rgb(165, 165, 165) 5px 5px 2px; background-color: rgb(250, 250, 240);\"><legend style=\"margin: 0px; padding: 0px; color: rgb(0, 0, 0); max-width: 100%; text-align: center;\"><strong style=\"max-width: 100%;\"><strong style=\"max-width: 100%; color: rgb(102, 102, 102); line-height: 20px; background-color: rgb(255, 255, 245);\"><span class=\"bkcolor\" style=\"max-width: 100%; padding: 4px 10px; border-top-left-radius: 0.5em 4em!important; border-top-right-radius: 3em 1em!important; border-bottom-right-radius: 0.5em 2em!important; border-bottom-left-radius: 3em 1em!important; text-align: justify; color: white; box-shadow: rgb(165, 165, 165) 4px 4px 2px; background-color: red;\">公告通知</span></strong></strong></legend><legend style=\"margin: 0px; padding: 0px; color: rgb(0, 0, 0); max-width: 100%; text-align: center;\"><span style=\"max-width: 100%; color: rgb(112, 48, 160); text-align: justify;\"></span></legend><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; min-height: 1.5em; line-height: 2em;\">各位小伙伴们,当小伙伴们看到这个排版技巧的时候,说明我们有缘、首先再开始之前,请使用<span style=\"color: rgb(255, 0, 0);\"><strong>谷歌浏览器</strong></span>,才能达到和手机端一致的效果,其次部分效果,在其它浏览器中会无效!以免耽误大家宝贵时间</p></fieldset><p><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd341735002a', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '内容0019', 'WXNRQ', '<fieldset class=\"brcolor\" style=\"WORD-WRAP: break-word !important; MAX-WIDTH: 100%; BORDER-TOP: rgb(192,80,77) 1px dotted; FONT-FAMILY: 宋体; BORDER-RIGHT: rgb(192,80,77) 1px dotted; BORDER-BOTTOM: rgb(192,80,77) 1px dotted; PADDING-BOTTOM: 20px; PADDING-TOP: 20px; PADDING-LEFT: 20px; MIN-HEIGHT: 1.5em; BORDER-LEFT: rgb(192,80,77) 1px dotted; LINE-HEIGHT: 2em; PADDING-RIGHT: 20px; border-bottom-right-radius: 15px; border-bottom-left-radius: 10px\">\r\n<legend style=\"max-width: 100%; font-family: 微软雅黑; padding: 0px; text-align: center; margin: 0px; word-wrap: break-word !important;border:none;\">\r\n<p class=\"bkcolor\" style=\"word-wrap: normal; font-size: 14px; max-width: 100%; word-break: normal; color: rgb(255, 255, 255); padding: 0px 20px 4px; margin-top: 0px; margin-bottom: 0px; min-height: 1.5em; line-height: 2em; border-bottom-right-radius: 100%!important; border-bottom-left-radius: 100%!important; background-color: rgb(192, 80, 77);\"><strong class=\"ue_t\" style=\"MAX-WIDTH: 100%\">请输入标题</strong></p></legend><p style=\"word-wrap: normal; max-width: 100%; word-break: normal; padding: 0px; margin-top: 0px; margin-bottom: 0px; min-height: 1.5em; line-height: 2em;\"><span class=\"ue_t\" style=\"WORD-WRAP: break-word !important; MAX-WIDTH: 100%; LINE-HEIGHT: 2em;margin:0;\">欢迎使用微信编辑器!</span>\r\n</p>\r\n</fieldset><p><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd349ce7002b', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '内容0020', 'WXNRQ', '<fieldset class=\"brcolor\" style=\"BORDER-TOP: rgb(0,166,191) 1px solid; BORDER-RIGHT: rgb(0,166,191) 1px solid; BORDER-BOTTOM: rgb(0,166,191) 1px solid; PADDING-BOTTOM: 5px; PADDING-TOP: 5px; PADDING-LEFT: 5px; MARGIN: 0px; BORDER-LEFT: rgb(0,166,191) 1px solid; PADDING-RIGHT: 5px\"><legend style=\"MARGIN: 0px 10px\"><span class=\"bkcolor\" style=\"FONT-SIZE: 14px; FONT-WEIGHT: bold; COLOR: rgb(255,255,255); PADDING-BOTTOM: 3px; PADDING-TOP: 3px; PADDING-LEFT: 6px; PADDING-RIGHT: 6px; BACKGROUND-COLOR: rgb(0,166,191); border-radius: 5px\"><span id=\"_baidu_bookmark_start_69\" style=\"DISPLAY: none; LINE-HEIGHT: 0px\">?</span>输入标题</span></legend><blockquote style=\"PADDING-BOTTOM: 10px; PADDING-TOP: 10px; PADDING-LEFT: 10px; MARGIN: 0px; PADDING-RIGHT: 10px;border:none;\"><p style=\"margin:0;\">欢迎使用微信编辑器!</p></blockquote></fieldset><p><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd352dcb002c', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '内容0021', 'WXNRQ', '<fieldset class=\"brcolor\" style=\"WORD-WRAP: break-word !important; MAX-WIDTH: 100%; BORDER-TOP: rgb(204,204,204) 1px solid; BORDER-RIGHT: rgb(204,204,204) 1px solid; WHITE-SPACE: normal; WORD-SPACING: 0px; BORDER-BOTTOM: rgb(204,204,204) 1px solid; TEXT-TRANSFORM: none; COLOR: rgb(62,62,62); PADDING-BOTTOM: 15px; PADDING-TOP: 15px; FONT: 16px/24px 宋体; PADDING-LEFT: 15px; MARGIN: 0px; BORDER-LEFT: rgb(204,204,204) 1px solid; ORPHANS: 2; WIDOWS: 2; LETTER-SPACING: normal; PADDING-RIGHT: 15px; BACKGROUND-COLOR: rgb(250,250,240); TEXT-INDENT: 0px; -webkit-text-stroke-width: 0px; font-size-adjust: none; font-stretch: normal\"><legend style=\"WORD-WRAP: break-word !important; FONT-SIZE: medium; MAX-WIDTH: 100%; COLOR: rgb(0,0,0); PADDING-BOTTOM: 0px; TEXT-ALIGN: center; PADDING-TOP: 0px; PADDING-LEFT: 0px; MARGIN: 0px; PADDING-RIGHT: 0px\"><span style=\"WORD-WRAP: break-word !important; FONT-SIZE: 14px; MAX-WIDTH: 100%; FONT-FAMILY: 微软雅黑\"><strong style=\"WORD-WRAP: break-word !important; MAX-WIDTH: 100%; COLOR: rgb(102,102,102)\"><span class=\"bkcolor\" style=\"WORD-WRAP: break-word !important; MAX-WIDTH: 100%; COLOR: rgb(255,255,255); PADDING-BOTTOM: 4px; PADDING-TOP: 4px; PADDING-LEFT: 10px; PADDING-RIGHT: 10px; BACKGROUND-COLOR: rgb(0,112,192); border-radius: 2em 1em 4em / 0.5em 3em\"><span id=\"_baidu_bookmark_start_20\" style=\"DISPLAY: none; LINE-HEIGHT: 0px\">?</span>欢迎使用微信编辑器!</span></strong></span></legend><span style=\"WORD-WRAP: break-word !important; MAX-WIDTH: 100%; WHITE-SPACE: normal; WORD-SPACING: 0px; TEXT-TRANSFORM: none; COLOR: rgb(89,89,89); FONT: 14px/24px 微软雅黑, Microsoft YaHei; ORPHANS: 2; WIDOWS: 2; LETTER-SPACING: normal; BACKGROUND-COLOR: rgb(250,250,240); TEXT-INDENT: 0px; -webkit-text-stroke-width: 0px; font-size-adjust: none; font-stretch: normal;\">我是IOS7风格,没阴影。</span></fieldset><p><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd35bbe4002d', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '内容0022', 'WXNRQ', '<li>\r\n<blockquote class=\"bkcolor\" style=\"BORDER-LEFT-WIDTH: 0px; MAX-WIDTH: 100%; BORDER-RIGHT-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; FONT-WEIGHT: bold; COLOR: rgb(255,255,255); PADDING-BOTTOM: 5px; TEXT-ALIGN: left; PADDING-TOP: 5px; PADDING-LEFT: 15px; MARGIN: 0px; LINE-HEIGHT: 25px; PADDING-RIGHT: 15px; BORDER-TOP-WIDTH: 0px; BACKGROUND-COLOR: rgb(255,0,123); border-radius: 15px 15px 0 0\"><span class=\"ue_t\">在这输入标题</span></blockquote><blockquote class=\"brcolor\" style=\"MAX-WIDTH: 100%; BORDER-TOP: rgb(255,0,123) 1px solid; BORDER-RIGHT: rgb(255,0,123) 1px solid; BORDER-BOTTOM: rgb(255,0,123) 1px solid; PADDING-BOTTOM: 10px; PADDING-TOP: 10px; PADDING-LEFT: 15px; MARGIN: 0px; BORDER-LEFT: rgb(255,0,123) 1px solid; LINE-HEIGHT: 25px; PADDING-RIGHT: 15px; border-radius: 0 0 15px 15px\"><p class=\"ue_t\">欢迎使用微信编辑器!</p></blockquote><p><br></p>\r\n</li>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd36377e002e', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '内容0023', 'WXNRQ', '<blockquote class=\"bkcolor\" style=\"BORDER-LEFT-WIDTH: 0px; MAX-WIDTH: 100%; BORDER-RIGHT-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; FONT-WEIGHT: bold; COLOR: rgb(255,255,255); PADDING-BOTTOM: 5px; TEXT-ALIGN: left; PADDING-TOP: 5px; PADDING-LEFT: 15px; MARGIN: 0px; DISPLAY: inline-block; LINE-HEIGHT: 25px; PADDING-RIGHT: 15px; BORDER-TOP-WIDTH: 0px; BACKGROUND-COLOR: rgb(255,0,123); border-radius: 15px 15px 0 0\"><span class=\"ue_t\">请在这输入标题</span></blockquote><blockquote class=\"brcolor\" style=\"MAX-WIDTH: 100%; BORDER-TOP: rgb(255,0,123) 1px solid; BORDER-RIGHT: rgb(255,0,123) 1px solid; BORDER-BOTTOM: rgb(255,0,123) 1px solid; PADDING-BOTTOM: 10px; PADDING-TOP: 10px; PADDING-LEFT: 15px; MARGIN: 0px; BORDER-LEFT: rgb(255,0,123) 1px solid; LINE-HEIGHT: 25px; PADDING-RIGHT: 15px\"><p class=\"ue_t\">欢迎使用微信编辑器!</p></blockquote><p><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbce9c2014dbd37aed6002f', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '互推0001', 'WXHTZH', '<fieldset class=\"comment_quote\" style=\"white-space: normal; margin: 0px; padding: 5px; border: 1px solid rgb(204, 204, 204); color: rgb(51, 51, 51); font-size: 14px; font-family: 宋体; widows: 2; line-height: 24px; orphans: 2; background-color: rgb(248, 247, 245);\"><legend style=\"margin: 0px; padding: 0px;font-size:14px;\"><span style=\"margin: 0px; padding: 0px; font-family: arial, helvetica, sans-serif;\"><strong style=\"color: rgb(102, 102, 102);\"><span class=\"bkcolor\" style=\"margin: 0px 8px 0px 0px; padding: 4px 10px; color: rgb(255, 255, 255); border-top-left-radius: 5px!important; border-top-right-radius: 5px!important; border-bottom-right-radius: 5px!important; border-bottom-left-radius: 5px!important; background-color: rgb(191, 0, 0);\"></span></strong><strong style=\"color: rgb(60, 117, 45);\"><span style=\"margin: 0px; padding: 0px; color: rgb(192, 0, 0);\">ID:wxid</span></strong></span></legend><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 1.5em; word-wrap: break-word; word-break: normal; line-height: 2em; font-family: 微软雅黑; color: rgb(62, 62, 62); font-size: 12px;\"><span style=\"margin: 0px; padding: 0px; font-family: 宋体; color: rgb(217, 150, 148); font-size: 14px;\"><strong style=\"color: rgb(60, 117, 45);\"><span style=\"margin: 0px; padding: 0px; color: rgb(127, 127, 127); font-family: 微软雅黑; letter-spacing: 0.25px; line-height: 28px;\">直接选择需要的样式拷贝到需要的地方,修改其中的文字即可。</span><span style=\"margin: 0px; padding: 0px; color: rgb(127, 127, 127); font-family: 微软雅黑; letter-spacing: 0.25px; line-height: 28px;\">如果需要跟换颜色或者有其他需求</span></strong></span></p></fieldset><p><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd534c520000', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '互推0002', 'WXHTZH', '<fieldset class=\"brcolor\" style=\"margin: 0px; padding: 5px 15px; border-width: 1px 0px; border-style: solid; border-color: rgb(0, 187, 236); border-image-source: none; font-family: 微软雅黑; line-height: 24px; white-space: normal; max-width: 100%; color: rgb(62, 62, 62); font-size: 14px; word-wrap: break-word !important; box-sizing: border-box !important; background-color: rgb(255, 255, 255);\"><legend class=\"brcolor\" style=\"margin: 0px; padding: 4px 10px; border: 1px solid rgb(0, 187, 236); border-image-source: none; max-width: 100%; color: rgb(34, 34, 34); font-size: 16px; word-wrap: break-word !important; box-sizing: border-box !important;\"><strong style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;\">如何关注</strong></legend><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; max-width: 100%; word-wrap: normal; min-height: 1em; white-space: pre-wrap; box-sizing: border-box !important;\">①复制“微信号或ID”,在“添加朋友”中粘贴搜索号码关注。</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; max-width: 100%; word-wrap: normal; min-height: 1em; white-space: pre-wrap; box-sizing: border-box !important;\">②点击微信右上角的“+”,会出现“添加朋友”,进入“查找公众号”,输入以下公众号的名字,即可找到。</p></fieldset><p><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd541d300001', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '互推0003', 'WXHTZH', '<fieldset class=\"brcolor\" style=\"margin: 0px; padding: 5px; border: 1px solid rgb(0, 187, 236); font-family: 微软雅黑; line-height: 24px; white-space: normal; color: rgb(51, 51, 51); font-size: 12px; background-color: rgb(248, 247, 245);\"><legend style=\"margin: 0px 10px; padding: 0px; border-width: 0px;\"><span class=\"bkcolor\" style=\"margin: 0px; padding: 5px 10px; border: 0px; color: rgb(255, 255, 255); font-weight: bold; font-size: 14px; border-top-left-radius: 5px; border-top-right-radius: 5px; border-bottom-right-radius: 5px; border-bottom-left-radius: 5px; background-color: rgb(0, 187, 236);\"><span style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;\">点击上面微信号关注我</span><img data-s=\"300,640\" data-ratio=\"1.35\" data-w=\"20\" src=\"http://mmbiz.qlogo.cn/mmbiz/mj9u1OBZRqP8EvePIzqrRIHCHOzYM4ngPFYKXVcefcyCibmHkY6wA3BuiaLFOVAhuLTlfBzaD6MO5CT2DvJsy6JA/0\" style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; height: auto !important; word-wrap: break-word !important; box-sizing: border-box !important; visibility: visible !important;\"><span style=\"margin: 0px; padding: 0px; border: 0px;\">关注我哟</span></span></legend><blockquote style=\"margin: 0px; padding: 0px; border: 0px;\"><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px;\"><span style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; color: rgb(255, 192, 0); font-size: 14px; word-wrap: break-word !important; box-sizing: border-box !important;\"></span><span style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; color: rgb(255, 192, 0); font-size: 14px; word-wrap: break-word !important; box-sizing: border-box !important;\">? </span><span style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; color: rgb(127, 127, 127); line-height: 28px; white-space: pre-wrap; word-wrap: break-word !important; box-sizing: border-box !important;\">定期推送帐号</span><span style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; color: rgb(255, 192, 0); line-height: 28px; white-space: pre-wrap; word-wrap: break-word !important; box-sizing: border-box !important;\">本土文化</span><span style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; color: rgb(127, 127, 127); line-height: 28px; white-space: pre-wrap; word-wrap: break-word !important; box-sizing: border-box !important;\"><span style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;\">,<span style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; color: rgb(0, 176, 80); word-wrap: break-word !important; box-sizing: border-box !important;\">同城活动</span><span style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;\">,<span style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; color: rgb(112, 48, 160); word-wrap: break-word !important; box-sizing: border-box !important;\">吃喝玩乐</span>,<span style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; color: rgb(0, 176, 240); word-wrap: break-word !important; box-sizing: border-box !important;\">资讯八卦</span>,<span style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; color: rgb(146, 208, 80); word-wrap: break-word !important; box-sizing: border-box !important;\">商家优惠</span></span></span>等诸多优质内容,<span style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;\">最接地气</span>、<span style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;\">重服务</span>的本地微信平台!关注我们妥妥没错!(广告合作:186XXXXXXXX)</span><span style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; color: rgb(127, 127, 127); line-height: 28px; white-space: pre-wrap; word-wrap: break-word !important; box-sizing: border-box !important;\"></span></p><p><span style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; color: rgb(127, 127, 127); line-height: 28px; white-space: pre-wrap; word-wrap: break-word !important; box-sizing: border-box !important;\"><br></span></p></blockquote></fieldset><p><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd54d0b60002', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '互推0004', 'WXHTZH', '<blockquote class=\"bkcolor\" style=\"margin: 0px; padding: 5px 20px; border: 2px rgb(66, 249, 255); font-family: 微软雅黑; line-height: 24px; white-space: normal; max-width: 100%; color: rgb(255, 255, 255); text-align: center; font-weight: 700; width: 180px; border-top-left-radius: 15px; border-top-right-radius: 15px; box-shadow: rgb(153, 153, 153) 0px -1px 6px; border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; text-shadow: rgb(10, 10, 10) 0px -1px 2px; word-wrap: break-word !important; box-sizing: border-box !important; background-color: rgb(0, 187, 236);\">微信</blockquote><blockquote style=\"margin: 0px; padding: 10px; border: 1px solid rgb(204, 204, 204); font-family: 微软雅黑; line-height: 24px; white-space: normal; font-size: 12px; max-width: 100%; color: rgb(62, 62, 62); border-top-left-radius: 0px; border-top-right-radius: 0px; box-shadow: rgb(204, 204, 204) 0px -1px 6px; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; word-wrap: break-word !important; box-sizing: border-box !important; background-color: rgb(228, 228, 228);\"><span style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; color: rgb(0, 176, 80); word-wrap: break-word !important; box-sizing: border-box !important;\">微信号:</span><span style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; font-weight: 700; word-wrap: break-word !important; box-sizing: border-box !important;\"></span><span class=\"bkcolor\" style=\"margin: 0px; padding: 2px 5px; border: 0px; max-width: 100%; font-weight: 700; color: rgb(255, 255, 255); word-wrap: break-word !important; box-sizing: border-box !important; background-color: rgb(0, 187, 236);\"></span><span class=\"bfcolor\" style=\"margin: 0px; padding: 0px 0px 0px 5px; border: 0px; max-width: 100%; color: rgb(0, 187, 236); word-wrap: break-word !important; box-sizing: border-box !important;\">(←长按复制)</span><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 10px 0px 0px; border: 0px; max-width: 100%; word-wrap: normal; min-height: 1.5em; white-space: pre-wrap; word-break: normal; color: rgb(102, 102, 102); line-height: 2em; box-sizing: border-box !important;\">全力打造杭城微信营销第一品牌</p></blockquote><p><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd55894d0003', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '互推0005', 'WXHTZH', '<blockquote class=\"bfcolor\" style=\"white-space: normal; margin: 0px; padding: 10px 15px; border: 6px solid rgb(195, 54, 197); border-top-left-radius: 50px!important; border-bottom-right-radius: 50px!important; box-shadow: rgb(165, 165, 165) 5px 5px 2px; background-color: rgb(250, 250, 250);\"><p><br></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; color: rgb(195, 54, 197); line-height: 2em; font-size: 18px; min-height: 1.5em; -webkit-transform: translate(0px, -30px);\"><strong></strong></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 2em; min-height: 1.5em; -webkit-transform: translate(0px, -10px);\"><strong class=\"bkcolor\" style=\"padding: 0px 15px; color: rgb(255, 255, 255); font-size: 13px; border-bottom-right-radius: 20px!important; border-bottom-left-radius: 20px!important; background-color: rgb(195, 54, 197);\">wxid</strong></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 2em; min-height: 1.5em;\"><strong style=\"color: rgb(195, 54, 197); font-size: 14px;\">直接选择需要的样式拷贝到需要的地方,修改其中的文字即可。如果需要跟换颜色或者有其他需求。</strong></p><p><br></p></blockquote>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd5613e50004', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '互推0006', 'WXHTZH', '<blockquote class=\"brcolor\" style=\"BORDER-TOP: rgb(80,130,189) 3px dotted; BORDER-RIGHT: rgb(80,130,189) 3px dotted; BORDER-BOTTOM: rgb(80,130,189) 3px dotted; BORDER-LEFT: rgb(80,130,189) 3px dotted; PADDING-BOTTOM: 10px; PADDING-TOP: 10px; PADDING-LEFT: 10px; MARGIN: 0px; PADDING-RIGHT: 10px;border-radius:5px!important;font-weight:normal;\"><h3 style=\"color:rgb(89,89,89);font-size:14px;margin:0;\"><span class=\"bkcolor\" style=\"background-color:rgb(80,130,189);color:rgb(255,255,255);padding:2px 5px;border-radius:5px!important;font-size:14px;margin-right: 15px;\">微信</span>微信号:<span class=\"bkcolor\" style=\"background-color:#5082bd;color:rgb(255,255,255);padding:2px 5px;border-radius:5px!important;font-size:14px;\">weixinhao</span></h3><p style=\"margin:10px 0 5px 0;\">欢迎使用微信编辑器!</p></blockquote><p><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd5754490005', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '分割线0001', 'WXFGX', '<p>\r\n<br>\r\n</p>\r\n<hr class=\"awb-s1\" style=\"margin: 0px; padding: 0px; border-width: 5px 0px 0px; border-top-style: solid; border-top-color: rgb(0, 187, 236); color: rgb(68, 68, 68); font-family: 微软雅黑; font-size: 13px; line-height: 24px; white-space: normal;\">\r\n<p>\r\n<br>\r\n</p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd58d8800006', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '分割线0002', 'WXFGX', '<p>\r\n<br>\r\n</p>\r\n<hr class=\"awb-s1\" style=\"margin: 0px; padding: 0px; border-width: 5px 0px 0px; border-top-style: dashed; border-top-color: rgb(0, 187, 236); color: rgb(68, 68, 68); font-family: 微软雅黑; font-size: 13px; line-height: 24px; white-space: normal;\">\r\n<p>\r\n<br>\r\n</p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd59d2da0007', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '分割线0003', 'WXFGX', '<p>\r\n<br>\r\n</p>\r\n<hr class=\"awb-s1\" style=\"margin: 0px; padding: 0px; border-width: 5px 0px 0px; border-top-style: dotted; border-top-color: rgb(0, 187, 236); color: rgb(68, 68, 68); font-family: 微软雅黑; font-size: 13px; line-height: 24px; white-space: normal;\">\r\n<p>\r\n<br>\r\n</p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd5a71180008', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '分割线0004', 'WXFGX', '<p>\r\n<br>\r\n</p>\r\n<hr class=\"awb-s1\" style=\"margin: 0px; padding: 0px; border-width: 5px 0px 0px; border-top-style: double; border-top-color: rgb(0, 187, 236); color: rgb(68, 68, 68); font-family: 微软雅黑; font-size: 13px; line-height: 24px; white-space: normal;\">\r\n<p>\r\n<br>\r\n</p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd5b21670009', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '分割线0005', 'WXFGX', '<p>\r\n<br>\r\n</p>\r\n<section style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(68, 68, 68); font-family: 微软雅黑; font-size: 13px; line-height: 24px; white-space: normal; height: 10px; background: url(http://mmbiz.qlogo.cn/mmbiz/mj9u1OBZRqP8EvePIzqrRIHCHOzYM4ngkYThFAvY5zacs8KyJDB6CpFMWLrIgQoSFaKSXfnnibP8rYHMibMibkh5Q/0) repeat-x rgb(0, 187, 236);\"></section>\r\n<p>\r\n<br>\r\n</p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd5ddb44000b', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '原文引导0001', 'WXYWYD', '<section style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(68, 68, 68); font-family: 微软雅黑; font-size: 13px; line-height: 24px; white-space: normal;\">\r\n<section class=\"awb-s1\" style=\"margin: 0px; padding: 0px; border: 0px; height: 0.1em; background-color: rgb(0, 187, 236);\"></section>\r\n<section class=\"awb-s1\" style=\"margin: 0.3em 0px; padding: 0px; border: 0px; height: 0.3em; background-color: rgb(0, 187, 236);\"></section>\r\n<section class=\"awb-s3\" style=\"margin: 0px; padding: 0.5em; border: 1px solid rgb(0, 187, 236); box-shadow: rgb(226, 226, 226) 0em 1em 0.1em -0.8em; font-size: 1em; line-height: 1.6em; background-color: white;\">\r\n<span style=\"margin: 0px; padding: 0px; border: 0px; color: inherit; font-size: 1em; font-family: inherit;\">点击下方</span><span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(64, 84, 115); font-size: 1em; font-family: inherit;\">“阅读原文”</span><span style=\"margin: 0px; padding: 0px; border: 0px; color: inherit; font-size: 1em; font-family: inherit;\">查看更多</span>\r\n</section>\r\n<section class=\"awb-s4\" style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(0, 187, 236); font-size: 2em;\">\r\n↓↓↓\r\n</section>\r\n</section>\r\n<p>\r\n<br>\r\n</p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd5e75f1000c', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '原文引导0002', 'WXYWYD', '<p class=\"awb-s1\" style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; font-size: 13px; min-height: 1.5em; word-wrap: break-word; word-break: normal; white-space: pre-wrap; line-height: 36px; text-align: center; color: rgb(255, 255, 255); border-top-left-radius: 5px; border-top-right-radius: 5px; border-bottom-right-radius: 5px; border-bottom-left-radius: 5px; background-color: rgb(0, 187, 236);\">点击左下角查看更多</p>\r\n<p class=\"awb-s2\" style=\"margin-top: -5px; margin-bottom: 0px; margin-left: 50px; padding: 0px; border-right-width: 1em; border-bottom-width: 0px; border-left-width: 1em; border-right-style: solid; border-left-style: solid; border-top-color: rgb(0, 187, 236); color: rgb(68, 68, 68); font-family: 微软雅黑; font-size: 13px; line-height: 24px; white-space: normal; display: inline-block; border-top-width: 1.5em !important; border-top-style: solid !important; border-right-color: transparent !important; border-left-color: transparent !important;\">\r\n<br>\r\n</p>\r\n<p>\r\n<span style=\"color: rgb(68, 68, 68); font-family: 微软雅黑; font-size: 13px; line-height: 24px; background-color: rgb(255, 255, 255);\"> </span>\r\n</p>\r\n<p>\r\n<br>\r\n</p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd649681000d', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '原文引导0003', 'WXYWYD', '<section style=\"margin: 0px; padding: 0.7em 0px; border-width: 1px 0px; border-top-style: solid; border-bottom-style: solid; border-top-color: rgb(63, 71, 78); border-bottom-color: rgb(63, 71, 78); font-family: 微软雅黑; font-size: 1em; white-space: normal; max-width: 100%; line-height: 1.4em; font-style: italic; color: rgb(63, 71, 78); word-wrap: break-word !important; box-sizing: border-box !important;\">\r\n<span style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; font-size: 12px; word-wrap: break-word !important; box-sizing: border-box !important;\"><strong style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;\"><em style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;\">点击“<span style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; font-size: 16px; color: rgb(192, 80, 77); word-wrap: break-word !important; box-sizing: border-box !important;\">阅读原文</span>”体验一次简单不过的微信编辑体验,不用太久,不用太难,<span style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; font-size: 16px; color: rgb(155, 187, 89); word-wrap: break-word !important; box-sizing: border-box !important;\">瞬间</span>即可!</em></strong></span>\r\n</section>\r\n<p>\r\n<span style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; font-size: 12px; word-wrap: break-word !important; box-sizing: border-box !important;\"><strong style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;\"><em style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;\"><br></em></strong></span>\r\n</p>\r\n<p>\r\n<br>\r\n</p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd65db39000e', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '其他0001', 'WXQT', '<fieldset style=\"margin: 0px; padding: 5px; max-width: 100%; color: rgb(62, 62, 62); font-size: medium; white-space: normal; border: 1px solid rgb(204, 204, 204); border-image-source: none; line-height: 24px; font-family: 宋体; orphans: 2; widows: 2; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(248, 247, 245);\"><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; min-height: 1em; white-space: pre-wrap; overflow: hidden; box-sizing: border-box !important; word-wrap: break-word !important;\"><strong style=\"margin: 0px; padding: 0px; max-width: 100%; line-height: 2em; color: rgb(118, 146, 60); box-sizing: border-box !important; word-wrap: break-word !important;\">阅读本文用了: </strong><img src=\"https://mmbiz.qlogo.cn/mmbiz/ZFvUqSQ0vAk8yU7xZ8hDKgeBPSwDpcPSjawGj2ekAp1GMQLq7RibhFgicdpCXj3B8oBeMAia74e13FotEsrX7zRAw/0\" data-w=\"16\" data-ratio=\"2.25\" width=\"16px\" style=\"margin: 0px; padding: 0px; border: 0px currentcolor; border-image-source: none; box-sizing: border-box !important; word-wrap: break-word !important; width: 16px !important; visibility: visible !important; height: auto !important; background-image: none; background-attachment: scroll; background-position: 0% 0%;\" _width=\"16px\"><img src=\"https://mmbiz.qlogo.cn/mmbiz/ZFvUqSQ0vAk8yU7xZ8hDKgeBPSwDpcPS8UhBbKTnibWicVbs4TpCYk3u7mkKHVMwJfUXxEXeuQb0pEsicbQuyqdPw/0\" data-w=\"17\" data-ratio=\"2.1176470588235294\" width=\"16px\" style=\"margin: 0px; padding: 0px; border: 0px currentcolor; border-image-source: none; box-sizing: border-box !important; word-wrap: break-word !important; width: 16px !important; visibility: visible !important; height: auto !important; background-image: none; background-attachment: scroll; background-position: 0% 0%;\" _width=\"16px\"> <strong style=\"font-family: 宋体; font-size: medium; orphans: 2; white-space: pre-wrap; widows: 2; margin: 0px; padding: 0px; max-width: 100%; line-height: 2em; color: rgb(118, 146, 60); box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(248, 247, 245);\">分</strong> <img src=\"https://mmbiz.qlogo.cn/mmbiz/ZFvUqSQ0vAk8yU7xZ8hDKgeBPSwDpcPSwpicSWvEt3jiaepM3o5l84KT8FbQyycX580BWD8hwCZxdy3VbYpV3ylw/0\" data-w=\"16\" data-ratio=\"2.25\" width=\"16px\" style=\"margin: 0px; padding: 0px; border: 0px currentcolor; border-image-source: none; box-sizing: border-box !important; word-wrap: break-word !important; width: 16px !important; visibility: visible !important; height: auto !important; background-image: none; background-attachment: scroll; background-position: 0% 0%;\" _width=\"16px\"><img src=\"https://mmbiz.qlogo.cn/mmbiz/ZFvUqSQ0vAk8yU7xZ8hDKgeBPSwDpcPSmhSsibSUO9VCW5icqTkCfv5fUSzia42c3cWgRrCFZ8QE3ehpm9Tzs48icw/0\" data-w=\"17\" data-ratio=\"2.1176470588235294\" width=\"16px\" style=\"margin: 0px; padding: 0px; border: 0px currentcolor; border-image-source: none; box-sizing: border-box !important; word-wrap: break-word !important; width: 16px !important; visibility: visible !important; height: auto !important; background-image: none; background-attachment: scroll; background-position: 0% 0%;\" _width=\"16px\"><strong style=\"margin: 0px; padding: 0px; max-width: 100%; line-height: 2em; color: rgb(118, 146, 60); box-sizing: border-box !important; word-wrap: break-word !important;\">秒,转发只需1秒</strong><br style=\"margin: 0px; padding: 0px; max-width: 100%; box-sizing: border-box !important; word-wrap: break-word !important;\"></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; word-wrap: normal; min-height: 1.5em; white-space: pre-wrap; overflow: hidden; line-height: 2em; box-sizing: border-box !important;\"><span style=\"margin: 0px; padding: 0px; max-width: 100%; color: rgb(149, 55, 52); box-sizing: border-box !important; word-wrap: break-word !important;\"><strong style=\"margin: 0px; padding: 0px; max-width: 100%; line-height: 18px; font-family: simsun, sans-serif; box-sizing: border-box !important; word-wrap: break-word !important;\"><span style=\"margin: 0px; padding: 0px; max-width: 100%; box-sizing: border-box !important; word-wrap: break-word !important;\"><strong style=\"margin: 0px; padding: 0px; max-width: 100%; box-sizing: border-box !important; word-wrap: break-word !important;\">?</strong></span>转载是一种智慧<strong style=\"margin: 0px; padding: 0px; max-width: 100%; box-sizing: border-box !important; word-wrap: break-word !important;\">?</strong>分享是一种美德?</strong></span></p></fieldset>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd66c488000f', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '其他0002', 'WXQT', '<p style=\"margin:0 auto;white-space:normal;padding:8px 20px;color:#333;font-size:14px;max-width:100%;min-height:1.5em;line-height:2em;font-family:微软雅黑;text-align:justify;word-wrap:break-word!important;background-image:-webkit-linear-gradient(left,#eeece1,#92d050);background-color:#eeece1\"><span style=\"margin:0;padding:0;font-size:32px;color:#fff\"><strong style=\"color:#3c752d\"><span style=\"margin:0;padding:0;font-size:14px;font-family:\'Microsoft Yahei\'line-height:25px\">左右渐变</span></strong></span><span style=\"margin:0;padding:0;color:#494429\"></span></p><p><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd675c110010', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '其他0003', 'WXQT', '<p style=\"margin:0 auto;padding:8px 20px;font-size:14px;white-space:normal;max-width:100%;min-height:1.5em;line-height:2em;font-family:微软雅黑;text-align:justify;color:#494429;word-wrap:break-word!important;background-image:-webkit-linear-gradient(left,#f79646,#eeece1);background-color:#eeece1\"><span style=\"color:#fff\"><strong><span style=\"margin:0;padding:0;font-size:24px\"><span style=\"font-family:微软雅黑;font-size:14px;text-align:justify;margin:0;padding:0;line-height:32px\">右</span><span style=\"font-family:微软雅黑;font-size:14px;line-height:28px;text-align:justify\">左渐变</span></span></strong></span></p><p><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd67e5f50011', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '其他0004', 'WXQT', '<p style=\"margin:0 auto;padding:8px 20px;color:#333;font-size:14px;white-space:normal;max-width:100%;min-height:1.5em;line-height:2em;font-family:微软雅黑;text-align:justify;word-wrap:break-word!important;background-image:-webkit-linear-gradient(bottom,#c09eae,#c22b4c);background-color:#7e722f\"><span style=\"color:#fff\"><strong style=\"color:#3c752d\"><span style=\"margin:0;padding:0;font-size:14px;font-family:\'Microsoft Yahei\'line-height:25px\">从下到上</span></strong><strong style=\"color:#3c752d\"><span style=\"margin:0;padding:0;font-size:14px;font-family:\'Microsoft Yahei\'line-height:25px\"></span></strong></span></p><p><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd685d530012', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '其他0005', 'WXQT', '<p style=\"margin:0 auto;padding:8px 20px;font-size:14px;white-space:normal;max-width:100%;min-height:1.5em;line-height:2em;font-family:微软雅黑;text-align:justify;color:#494429;word-wrap:break-word!important;background-image:-webkit-linear-gradient(top,#f8f5f7,#c22b4c);background-color:#7e722f\"><span style=\"margin:0;padding:0;max-width:100%;font-size:32px;color:#fff;word-wrap:break-word!important\"><strong style=\"color:#3c752d;max-width:100%;word-wrap:break-word!important\"><span style=\"margin:0;padding:0;max-width:100%;font-size:14px;color:#fff;word-wrap:break-word!important;font-family:\'Microsoft Yahei\'line-height:25px\">从上到下,圆润</span></strong></span></p><p><br></p>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd74800a0014', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '标题0023', 'WXBT', '<section class=\"wwei-editor\"><h2 style=\"padding: 0px; margin: 8px 0px 0px; font-weight: normal; font-size: 16px; font-family: 微软雅黑; white-space: normal; height: 32px; text-align: justify; color: rgb(62, 62, 62); line-height: 18px; border-bottom-color: rgb(227, 227, 227); border-bottom-width: 1px; border-bottom-style: solid;\"><span style=\"padding: 0px 2px 3px; color: rgb(0, 112, 192); line-height: 28px; border-bottom-color: rgb(0, 187, 236); border-bottom-width: 2px; border-bottom-style: solid; float: left; display: block;\"><span style=\"padding: 4px 10px; border-top-left-radius: 80%; border-top-right-radius: 100%; border-bottom-right-radius: 90%; border-bottom-left-radius: 20%; color: rgb(255, 255, 255); margin-right: 8px; background-color: rgb(0, 187, 236);\">序号.</span><span style=\"color: rgb(0, 187, 236);\">标题党</span></span></h2></section>\r\n<p><br></p>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd7673c40015', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '标题0024', 'WXBT', '<section class=\"wwei-editor\"><blockquote style=\"padding: 10px; margin: 5px 0px 0px; white-space: normal; max-width: 100%; line-height: 25px; font-size: 14px; font-family: arial, helvetica, sans-serif; border-top-left-radius: 4px; border-top-right-radius: 4px; border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; color: rgb(255, 255, 255); border-left-color: rgb(0, 187, 236); border-left-width: 10px; border-left-style: solid; box-shadow: rgb(153, 153, 153) 2px 2px 4px; text-shadow: rgb(34, 95, 135) 0px 1px 0px; word-wrap: break-word !important; box-sizing: border-box !important; background-color: rgb(55, 57, 57);\"><span style=\"max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;\"><span style=\"max-width: 100%; font-family: 微软雅黑; font-size: 16px; word-wrap: break-word !important; box-sizing: border-box !important;\">1、这里输入标题</span></span></blockquote></section><p><br></p>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd7739610016', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '标题0025', 'WXBT', '<section class=\"wwei-editor\"><section style=\"max-width: 100%;margin: 0.8em 0px 0.5em; overflow: hidden; \"><section placeholder=\"请输入标题\" style=\"box-sizing: border-box !important; height:36px;display: inline-block;color: #FFF; font-size: 16px;font-weight:bold; padding:0 10px;line-height: 36px;float: left; vertical-align: top; background-color: rgb(249, 110, 87); \" class=\"wweibrush\">请输入标题</section><section style=\"box-sizing: border-box !important; display: inline-block;height:36px; vertical-align: top; border-left-width: 9px; border-left-style: solid; border-left-color: rgb(249, 110, 87); border-top-width: 18px !important; border-top-style: solid !important; border-top-color: transparent !important; border-bottom-width: 18px !important; border-bottom-style: solid !important; border-bottom-color: transparent !important;\"></section></section></section>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd77d4880017', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '标题0026', 'WXBT', '<section class=\"wwei-editor\"><h2 style=\"margin: 8px 0px 0px; padding: 0px; font-weight:bold;font-size:16px;line-height:28px; max-width: 100%;color:rgb(0, 112, 192); min-height: 32px;border-bottom: 2px solid rgb(0, 112, 192); text-align: justify;\"><span class=\"autonum\" placeholder=\"1\" style=\"background-color:rgb(0, 112, 192); border-radius:80% 100% 90% 20%; color:rgb(255, 255, 255); display:block; float:left; line-height:20px; margin:0px 8px 0px 0px; max-width:100%; padding:4px 10px; word-wrap:break-word !important\">1</span><strong class=\"wweibrush\" data-brushtype=\"text\">第一标题</strong></h2></section>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd78b1c10018', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '标题0027', 'WXBT', '<section class=\"wwei-editor\"><h2 class=\"wweibrush\" data-bcless=\"darken\" placeholder=\"深色边框标题\" style=\"margin: 10px 0px; padding: 10px; font-size: 16px; line-height: 25px; text-shadow: rgb(34, 95, 135) 0px 1px 0px; color: rgb(202, 251, 215); border-radius: 4px; box-shadow: rgb(153, 153, 153) 2px 2px 4px; border-left-width: 10px; border-left-style: solid; border-color: rgb(10, 137, 43); background-color: rgb(14, 184, 58);\">深色边框标题</h2></section>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd7969b00019', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '标题0028', 'WXBT', '<section class=\"wwei-editor\"><section style=\"margin: 2px 0.8em 1em 0; text-align: center; font-size: 1em; vertical-align: middle; white-space: nowrap;\"><section style=\"height: 0px; white-space: nowrap; border-top: 1.5em solid rgb(71, 193, 168); border-bottom: 1.5em solid rgb(71, 193, 168); border-left-width: 1.5em ! important; border-left-style: solid ! important; border-right-width: 1.5em ! important; border-right-style: solid ! important; border-color: rgb(71, 193, 168);\"></section><section style=\"height: 0; white-space: nowrap; margin: -2.75em 1.65em;border-top: 1.3em solid #ffffff;border-bottom: 1.3em solid #ffffff;border-left: 1.3em solid transparent;border-right: 1.3em solid transparent;\"></section><section style=\"height: 0px; white-space: nowrap; margin: 0.45em 2.1em; vertical-align: middle; border-top: 1.1em solid rgb(71, 193, 168); border-bottom: 1.1em solid rgb(71, 193, 168); border-left-width: 1.1em ! important; border-left-style: solid ! important; border-right-width: 1.1em ! important; border-right-style: solid ! important; border-color: rgb(71, 193, 168);\"><section class=\"wweibrush\" data-ct=\"fix\" placeholder=\"一行短标题\" style=\"max-height: 1em; padding: 0px; margin-top: -0.5em; color: rgb(254, 255, 253); font-size: 1.2em; line-height: 1em; white-space: nowrap; overflow: hidden; font-style: normal;\">一行短标题</section></section></section></section>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd79e32e001a', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '标题0029', 'WXBT', '<section class=\"wwei-editor\"><h2 class=\"wweibrush\" placeholder=\"请输入标题\" style=\"white-space: normal; font-size: 16px; margin: 10px 0px; padding: 10px; max-width: 100%; border-top:solid 2px;border-left:0px; border-bottom:solid 2px; line-height: 25px; color: rgb(109, 151, 200);font-weight:bold; text-align: center;\">请输入标题</h2></section>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd7a7858001b', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '标题0030', 'WXBT', '<section class=\"wwei-editor\"><fieldset style=\"clear: both; padding: 0px; border: 0px none; margin: 1em 0px 0.5em;\"><section style=\"border-top-width: 2px; border-top-style: solid; border-color: rgb(142, 201, 101); font-size: 1em; font-weight: inherit; text-decoration: inherit; color: rgb(255, 255, 255); box-sizing: border-box;\"><section class=\"wweibrush\" data-brushtype=\"text\" style=\"padding: 0px 0.5em; background-color: rgb(142, 201, 101); display: inline-block; font-size: 16px;\">微信编辑器</section></section></fieldset></section>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd7b1a20001c', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '标题0031', 'WXBT', '<section class=\"wwei-editor\"><section style=\"font-size: 1em; white-space: normal; margin: 1em 0px 0.8em; text-align: center; vertical-align: middle;\"><section style=\"height: 0px; margin: 0px 1em; border: 1.5em solid rgb(255, 202, 0); border-left-color: transparent !important;border-right-color: transparent !important;\"></section><section style=\"height: 0px; margin: -2.75em 1.65em; border-width: 1.3em; border-style: solid; border-color: rgb(255, 255, 255) transparent;\"></section><section style=\"height: 0px; margin: 0.45em 2.1em; vertical-align: middle; border:1.1em solid rgb(255, 202, 0); border-left-color: transparent !important; border-right-color: transparent !important;\"><section class=\"wweibrush\" data-brushtype=\"text\" placeholder=\"一行短标题\" style=\"max-height: 1em; padding: 0px; margin-top: -0.5em; color: rgb(255, 255, 255); font-size: 1.2em; line-height: 1em; overflow: hidden;\">一行短标题</section></section></section></section>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd7bb487001d', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '标题0032', 'WXBT', '<section class=\"wwei-editor\"><section style=\"border: 3px solid rgb(255, 129, 36); padding: 5px;\"><section data-bcless=\"lighten\" style=\"border: 1px solid rgb(255, 158, 87); padding: 15px; text-align: center; color: inherit;\"><p style=\"color: inherit;\">微信编辑器</p><p style=\"color:inherit; font-size:24px\"><strong style=\"color:inherit\"><span class=\"wweibrush\" data-brushtype=\"text\" style=\"color:inherit; font-size:24px\">操作方便才是硬道理</span></strong></p></section></section></section>\r\n');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd7c92d9001e', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '标题0033', 'WXBT', '<section class=\"wwei-editor\"><p class=\"wweibrush\" placeholder=\"请输入标题\" style=\"max-width: 100%; word-wrap: normal; min-height: 1em; white-space: pre-wrap;line-height: 25px;font-size:20px;box-sizing:border-box !important;text-shadow:rgb(0, 187, 236) 1px 0px 4px, rgb(0, 187, 236) 0px 1px 4px, rgb(0, 187, 236) 0px -1px 4px, rgb(0, 187, 236) -1px 0px 4px; word-wrap:break-word !important;color:rgb(255, 255, 255);font-weight:bold;\">请输入标题</p></section>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd7d1b20001f', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '标题0034', 'WXBT', '<section class=\"wwei-editor\"><fieldset style=\"margin: 0.5em 0px; padding: 0px; max-width: 100%; box-sizing: border-box; color: rgb(62, 62, 62); font-size: medium; line-height: 25px; white-space: normal; border: none rgb(255, 175, 205); word-wrap: break-word !important; text-align: right;\"><section style=\"margin: 0px; padding: 1.5em 0px; max-width: 100%; box-sizing: border-box; width: 12.5em; height: 9.3em; text-align: center; color: rgb(175, 0, 66); word-wrap: break-word !important; background-image: url(http://pro.wwei.cn/Public/wxeditor/css/0.png); background-color: rgb(255, 175, 205); background-size: cover;display:inline-block\"><section style=\"margin: 0px 0px 0px 20px; padding: 0px; max-width: 100%; box-sizing: border-box; width: 160px; overflow: hidden; -webkit-transform: rotate(-13deg); font-size: 22px; font-weight: inherit; text-decoration: inherit; color: rgb(255, 255, 255); word-wrap: break-word !important;\"><section style=\"margin: 0px; padding: 0px; max-width: 100%; box-sizing: border-box; word-wrap: break-word !important;\">肆意</section></section><section style=\"margin: 10px 20px; padding: 0px; max-width: 100%; box-sizing: border-box; width: 150px; overflow: hidden; -webkit-transform: rotate(-15deg); font-weight: inherit; text-decoration: inherit; color: rgb(255, 255, 255); word-wrap: break-word !important;\"><section class=\"wweibrush\" data-brushtype=\"text\" style=\"margin: 0px; padding: 0px; max-width: 100%; box-sizing: border-box; word-wrap: break-word !important;\"><p>青春,背景色你的地盘你做主</p></section></section></section></fieldset></section>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd7d8c2d0020', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '标题0035', 'WXBT', '<section class=\"wwei-editor\"><fieldset style=\"border: 0px; text-align: center; box-sizing: border-box; padding: 0px;\"><section style=\"display: inline-block; box-sizing: border-box; color: inherit;\"><section class=\"wweibrush\" data-brushtype=\"text\" style=\"margin: 0.2em 0px 0px; padding: 0px 0.5em 5px; max-width: 100%; color: rgb(107, 77, 64); font-size: 1.8em; line-height: 1; border-bottom-width: 1px; border-bottom-style: solid; border-color: rgb(107, 77, 64);\">微信编辑器</section><section class=\"wweibrush\" data-brushtype=\"text\" style=\"margin: 5px 1em; font-size: 1em; line-height: 1; color: rgb(107, 77, 64); box-sizing: border-box; border-color: rgb(107, 77, 64);\">做最易用的编辑器</section></section></fieldset></section>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd7e098d0021', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '标题0036', 'WXBT', '<section class=\"wwei-editor\"><p><span style=\"border-color:rgb(30, 155, 232); color:rgb(30, 155, 232); font-size:4em; font-weight:bolder; line-height:1em; vertical-align:middle\">“</span><span class=\"wweibrush\" data-brushtype=\"text\" style=\"color:inherit; font-size:2em; font-style:normal; line-height:1.2em; vertical-align:middle\">标题</span><span class=\"wweibrush\" data-brushtype=\"text\" style=\"border-color:rgb(30, 155, 232); color:rgb(30, 155, 232); font-size:2em; font-style:normal; line-height:1.2em; vertical-align:middle\">标题</span><span style=\"border-color:rgb(30, 155, 232); color:rgb(30, 155, 232); font-size:4em; font-weight:bolder; line-height:1em; vertical-align:middle\">”</span></p></section>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd7e84ed0022', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '标题0037', 'WXBT', '<section class=\"wwei-editor\"><section data-bcless=\"true\" style=\"font-size:20px; background: rgb(223, 240, 203);border:0 none;\"><span class=\"wweibrush\" style=\"background:rgb(255, 255, 255); color:rgb(150, 206, 84); display:inline-block; padding:0px 15px 0px 0px\">微信编辑器</span><span style=\"background:none repeat scroll 0 0 #fff; display:inline-block; margin-left:5px\"> </span><span style=\"background:none repeat scroll 0 0 #fff; display:inline-block; margin-left:5px\"> </span><span style=\"background:none repeat scroll 0 0 #fff; display:inline-block; margin-left:5px\"> </span></section></section>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd7f10190023', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '标题0038', 'WXBT', '<section class=\"wwei-editor\"><p class=\"wweibrush\" data-brushtype=\"text\" placeholder=\"请输入标题\" style=\"max-width: 100%; line-height: 24px;font-weight:bold; background-color: rgb(244, 156, 4); color: rgb(255, 255, 255); border-radius: 45%; text-align: center; margin:10px 0px;padding: 10px 15px;\">请输入标题</p></section>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd7fb7420024', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '标题0039', 'WXBT', '<section class=\"wwei-editor\"><fieldset style=\"border: 0px rgb(107, 77, 64); text-align: center; margin: 0.8em 0px 0.5em; box-sizing: border-box; padding: 0px;\"><section style=\"color: rgb(107, 77, 64); display: inline-block; width: 1em; font-size: 2.5em; font-weight: inherit; line-height: 1em; vertical-align: top; text-align: inherit; text-decoration: inherit; box-sizing: border-box; border-color: rgb(107, 77, 64);\"><section class=\"wweibrush\" data-brushtype=\"text\" style=\"box-sizing: border-box; color: inherit; border-color: rgb(107, 77, 64);\">两字</section></section><section style=\"display: inline-block; margin-left: 0.5em; margin-top: 0.2em; text-align: left; box-sizing: border-box; color: inherit;\"><section style=\"box-sizing: border-box; color: inherit;\"><section class=\"wweibrush\" data-brushtype=\"text\" style=\"background-color:rgb(107, 77, 64); border-color:rgb(107, 77, 64); box-sizing:border-box; color:rgb(224, 209, 202); display:inline-block; font-size:2em; font-weight:inherit; line-height:1; padding:0.1em; text-align:inherit; text-decoration:inherit\">副标题1</section></section><section style=\"color: rgb(107, 77, 64); margin: 0.5em 0px; font-size: 1.5em; line-height: 1em; font-weight: inherit; text-align: inherit; text-decoration: inherit; box-sizing: border-box; border-color: rgb(107, 77, 64);\"><section class=\"wweibrush\" data-brushtype=\"text\" style=\"box-sizing: border-box; color: inherit; border-color: rgb(107, 77, 64);\">副标题2</section></section></section></fieldset></section>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd8037160025', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '标题0040', 'WXBT', '<section class=\"wwei-editor\"><h2 class=\"wweibrush\" data-brushtype=\"text\" style=\"padding-bottom: 9px;border-bottom: 1px solid #eee;argin-top: 20px;margin-bottom: 10px;font-weight: 500;line-height: 1.1;font-size: 22px;\">极简标题</h2></section>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd81193e0026', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '标题0041', 'WXBT', '<section class=\"wwei-editor\" style=\"color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 12px; white-space: normal; display: inline-block; height: 2em; max-width: 100%; line-height: 1em; box-sizing: border-box; border-top-width: 1.1em; border-top-style: solid; border-top-color: rgb(0, 187, 236); border-bottom-width: 1.1em; border-bottom-style: solid; border-bottom-color: rgb(0, 187, 236); border-right-width: 1em; border-right-style: solid; border-right-color: transparent;\"><section style=\"height: 2em; margin-top: -1em; color: white; padding: 0.5em 1em; max-width: 100%; white-space: nowrap; text-overflow: ellipsis;\">这里输入标题</section></section>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd81cd570027', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '标题0042', 'WXBT', '<section class=\"wwei-editor\" style=\"color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 12px; white-space: normal; text-align: center; margin: 0px 1em; line-height: 1.6em;\"><img src=\"http://pro.wwei.cn/Public/wxeditor/css/gs640.png\" style=\"border: 0px; width: 266px; vertical-align: middle; height: 36px !important;\"><section style=\"color: white; font-size: 1em; margin-top: -2.1em; white-space: nowrap;\">请输入标题</section></section>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd8628850028', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '内容0024', 'WXNRQ', '<blockquote style=\"padding: 15px 25px; margin: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; white-space: normal; max-width: 100%; word-wrap: break-word; top: 0px; line-height: 24px; vertical-align: baseline; border-left-color: rgb(0, 187, 236); border-left-width: 10px; border-left-style: solid; background-color: rgb(239, 239, 239);\"><p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px;\">可在这输入内容,wwei微信编辑器,微信编辑首选。</p></blockquote>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd86eb350029', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '内容0025', 'WXNRQ', '<blockquote style=\"padding: 5px 15px; margin: 0px; font-family: 微软雅黑; white-space: normal; max-width: 100%; color: rgb(255, 255, 255); line-height: 25px; font-weight: bold; border-top-left-radius: 5px; border-top-right-radius: 5px; border-bottom-right-radius: 0px; border-bottom-left-radius: 0px; border: 0px; background-color: rgb(0, 187, 236);\"><span style=\"font-size: 16px;\">这输入标题</span></blockquote><blockquote style=\"padding: 10px 15px 20px; margin: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; white-space: normal; max-width: 100%; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-right-radius: 5px; border-bottom-left-radius: 5px; border: 0px; line-height: 25px; background-color: rgb(239, 239, 239);\"><p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px;\">可在这输入内容,wwei微信编辑器,微信编辑首选。</p></blockquote>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd878ac3002a', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '内容0026', 'WXNRQ', '<section style=\"color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 12px; white-space: normal; margin-top: 1.5em; display: inline-block; height: 2em; max-width: 100%; line-height: 1em; box-sizing: border-box; border-top-width: 1.1em; border-top-style: solid; border-top-color: rgb(0, 187, 236); border-bottom-width: 1.1em; border-bottom-style: solid; border-bottom-color: rgb(0, 187, 236); border-right-width: 1em; border-right-style: solid; border-right-color: transparent;\"><section style=\"height: 2em; margin-top: -1em; color: white; padding: 0.5em 1em; max-width: 100%; white-space: nowrap; text-overflow: ellipsis;\">事项1</section></section><span style=\"color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 12px; background-color: rgb(255, 255, 255);\"></span><section style=\"color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 12px; white-space: normal; padding: 1em;\"><p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px;\">请输入活动内容<br>请输入活动内容<br>......</p></section>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd887c63002b', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '内容0027', 'WXNRQ', '<section style=\"color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 12px; white-space: normal;\"><section style=\"border: 1px solid rgb(0, 187, 236); box-shadow: rgb(165, 165, 165) 0em 1em 0.1em -0.6em; line-height: 1.6em; background-color: white;\"><section style=\"padding: 1em; text-align: center; font-size: 1.4em; font-weight: bold; line-height: 1.4em; color: white; background-color: rgb(0, 187, 236);\">请输入名称</section><section style=\"margin-top: 1.5em;\"><img src=\"http://pro.wwei.cn/Public/wxeditor/css/i640.png\" style=\"border: 0px; vertical-align: top; margin-left: 1em; width: 30px;\"><section style=\"display: inline-block; width: 108.390625px; margin-left: 0.5em; padding: 0.2em;\">时间</section></section><section style=\"margin-top: 1em;\"><img src=\"http://pro.wwei.cn/Public/wxeditor/css/s640.png\" style=\"border: 0px; vertical-align: top; margin-left: 1em; width: 30px;\"><section style=\"display: inline-block; width: 108.390625px; margin-left: 0.5em; padding: 0.2em;\">地点</section></section><br><br><br></section></section>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd89181d002c', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '内容0028', 'WXNRQ', '<p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px; color: rgb(51, 51, 51); font-family: 微软雅黑; font-size: 12px; white-space: normal;\"> </p><p></p><section style=\"color: rgb(51, 51, 51); font-size: 12px; white-space: normal; font-family: sans-serif, Arial, Verdana, \'Trebuchet MS\'; background-image: url(http://www.17sucai.com/preview/1/2014-04-08/%E6%97%B6%E9%97%B4%E8%BD%B4/images/log/line-bg.png); background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 104px 30px; background-repeat: repeat-y;\"><p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px; line-height: 40px; font-size: 24px;\">2015年</p><h1 style=\"padding: 0px 0px 0px 60px; margin: -40px 0px 0px 85px; font-weight: normal; font-size: 24px; line-height: 40px; top: 0px; color: rgb(88, 166, 251); background-image: url(http://www.17sucai.com/preview/1/2014-04-08/%E6%97%B6%E9%97%B4%E8%BD%B4/images/log/clock.png); background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0% 0%; background-repeat: no-repeat;\">wwei更新日志</h1><section style=\"clear: both; line-height: 32px;\"><p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px;\"> </p><p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px; font-size: 20px;\">5月1日</p><p style=\"padding: 0px; margin-top: -42px; margin-bottom: 0px; margin-left: 90px;\"><img src=\"http://p4.qhimg.com/d/inn/05a63fc5/circle-h.png\" style=\"border: 0px; vertical-align: bottom;\"></p><section style=\"margin-left: 140px; margin-top: -32px;\"><p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px; color: rgb(99, 208, 41); font-size: 20px;\">微信图文编辑</p><p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px;\">微信在线编辑器</p><p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px;\"> </p></section><p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px; font-size: 20px;\">3月3日</p><p style=\"padding: 0px; margin-top: -42px; margin-bottom: 0px; margin-left: 90px;\"><img src=\"http://p4.qhimg.com/d/inn/05a63fc5/circle-h.png\" style=\"border: 0px; vertical-align: bottom;\"></p><section style=\"margin-left: 140px; margin-top: -32px;\"><p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px; color: rgb(99, 208, 41); font-size: 20px;\">会员VIP功能</p><p style=\"padding: 0px; margin-top: 0px; margin-bottom: 0px;\">新增了一大批功能</p></section></section></section><p></p>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd89b0a9002d', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '内容0029', 'WXNRQ', '<fieldset style=\"border: 0px; margin: 5px 0px; box-sizing: border-box; padding: 0px;\"><section style=\"height: 1em; box-sizing: border-box;\"><section style=\"height: 100%; width: 1.5em; float: left; border-top-width: 0.4em; border-top-style: solid; border-color: rgb(249, 110, 87); border-left-width: 0.4em; border-left-style: solid; box-sizing: border-box;\"></section><section style=\"height: 100%; width: 1.5em; float: right; border-top-width: 0.4em; border-top-style: solid; border-color: rgb(249, 110, 87); border-right-width: 0.4em; border-right-style: solid; box-sizing: border-box;\"></section><section style=\"display: inline-block; color: transparent; clear: both; box-sizing: border-box;\"></section></section><section style=\"margin: -0.8em 0.1em -0.8em 0.2em; padding: 0.8em; border: 1px solid rgb(249, 110, 87); border-radius: 0.3em; box-sizing: border-box;\"><section placeholder=\"四角宽边框的样式\" style=\"color: rgb(51, 51, 51); font-size: 1em; line-height: 1.4; word-break: break-all; word-wrap: break-word;\" class=\"wweibrush\">四角宽边框的样式</section></section><section style=\"height: 1em; box-sizing: border-box;\"><section style=\"height: 100%; width: 1.5em; float: left; border-bottom-width: 0.4em; border-bottom-style: solid; border-color: rgb(249, 110, 87); border-left-width: 0.4em; border-left-style: solid; box-sizing: border-box;\"></section><section style=\"height: 100%; width: 1.5em; float: right; border-bottom-width: 0.4em; border-bottom-style: solid; border-color: rgb(249, 110, 87); border-right-width: 0.4em; border-right-style: solid; box-sizing: border-box;\"></section></section></fieldset></section>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd8a35c1002e', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '内容0030', 'WXNRQ', '<section class=\"wwei-editor\"><blockquote class=\"wweibrush\" style=\"white-space: normal;font-size: 14px; line-height: 25px; margin: 2px 0px; padding: 10px 10px; border: 2px dashed #dedcde;max-width: 100%;\"><p placeholder=\"虚线框内容,作为摘要或段落内容。\">虚线框内容,作为摘要或段落内容。</p></blockquote></section>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd8af659002f', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '内容0031', 'WXNRQ', '<section class=\"wwei-editor\"><section class=\"wweibrush\" style=\"margin: 3px; padding: 15px;color: rgb(62, 62, 62); line-height: 24px;box-shadow: rgb(170, 170, 170) 0px 0px 3px; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -webkit-box-shadow: rgb(170, 170, 170) 0px 0px 3px;\"><p>边框阴影内容区域</p></section></section>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd8b911f0030', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '内容0032', 'WXNRQ', '<blockquote style=\"border-width: 1px 1px 1px 5px; border-style: solid; border-color: rgb(238, 238, 238) rgb(238, 238, 238) rgb(238, 238, 238) rgb(159, 136, 127); border-radius: 3px; padding: 10px; margin: 10px 0px;\"><h4 class=\"wweibrush\" style=\"color: rgb(159, 136, 127); font-weight: bold; font-size: 18px; margin: 5px 0px; border-color: rgb(159, 136, 127);\">标题文字</h4><section class=\"wweibrush\" data-style=\"color:inherit;font-size:14px;\" style=\"color: inherit;font-size:14px\"><p>内容描述.</p></section></blockquote></section>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd8c29da0031', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '内容0033', 'WXNRQ', '<section class=\"wwei-editor\"><section style=\"color: inherit; font-size: 16px; padding: 5px 10px 0px 35px; margin-left: 27px; border-left-width: 2px; border-left-style: dotted; border-left-color: rgb(228, 228, 228);\"><section class=\"autonum\" style=\"width: 32px; height: 32px; margin-left: -53px; margin-top: 23px; color: rgb(202, 251, 215); text-align: center; line-height: 32px; border-top-left-radius: 16px; border-top-right-radius: 16px; border-bottom-right-radius: 16px; border-bottom-left-radius: 16px; background: rgb(14, 184, 58);\">1</section><section class=\"wweibrush\" style=\"margin-top: -30px;padding-bottom: 10px; color: inherit;\"><p style=\"clear: both; line-height: 1.5em; font-size: 14px; color: inherit;\"><span style=\"color:inherit; font-size:16px\"><strong style=\"color:inherit\">如何进入【微信编辑器】?</strong></span></p><p style=\"clear: both; line-height: 1.5em; font-size: 14px; color: inherit;\">网页搜索“微信编辑器”,点击第一条搜索结果即可进入编辑器页面</p></section></section></section>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd8dfdc20032', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '内容0034', 'WXNRQ', '<section class=\"wwei-editor\"><blockquote style=\"margin: 3px; padding: 10px 15px; border-width: 3px; border-color: rgb(107, 77, 64); border-top-left-radius: 50px; border-bottom-right-radius: 50px; box-shadow: rgb(165, 165, 165) 5px 5px 2px; background-color: rgb(250, 250, 250);\"><section class=\"wweibrush\" data-style=\"margin-top: 15px; margin-bottom: 0px; padding: 0px; color: rgb(107, 77, 64); line-height: 2em; font-size: 20px; border-color: rgb(107, 77, 64);font-size: 18px;font-weight:bold;\"><p style=\"margin-top: 15px; margin-bottom: 0px; padding: 0px; color: rgb(107, 77, 64); line-height: 2em; font-size: 20px; border-color: rgb(107, 77, 64);\"><span style=\"font-size:18px\"><strong style=\"border-color:rgb(107, 77, 64); color:inherit\">读而思</strong></span></p></section><p style=\"margin-top: -10px; margin-bottom: 0px; padding: 0px; line-height: 2em; min-height: 1.5em; color: inherit;\"><span style=\"font-size:12px\"><strong class=\"wweibrush\" data-brushtype=\"text\" style=\"background-color:rgb(107, 77, 64); border-bottom-left-radius:20px; border-bottom-right-radius:20px; color:rgb(224, 209, 202); font-size:13px; padding:0px 15px\">duersi</strong></span></p><section class=\"wweibrush\" data-style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 2em; font-size: 14px; min-height: 1.5em; color: inherit;\"><p><span style=\"font-size:14px\">编辑完成后,将内容复制粘贴到微信后台素材管理的编辑器中即可。</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 2em; font-size: 16px; min-height: 1.5em; color: inherit;\"><span style=\"font-size:14px\"></span></p></section></blockquote></section>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd8eba1f0033', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '内容0035', 'WXNRQ', '<section class=\"wwei-editor\"><fieldset style=\"margin: 0px; padding: 5px; border: 1px solid rgb(204, 204, 204); max-width: 100%; color: rgb(62, 62, 62); line-height: 24px; text-align: justify; box-shadow: rgb(165, 165, 165) 5px 5px 2px; background-color: rgb(250, 250, 250);\"><legend style=\"margin: 0px; padding: 0px; text-align: left;margin-left: 20px;width: auto;\"><strong><strong style=\"background-color:rgb(255, 255, 245); color:rgb(102, 102, 102); line-height:20px\"><span class=\"wweibrush\" data-brushtype=\"text\" style=\"background-color:red; border-bottom-left-radius:3em 1em; border-bottom-right-radius:0.5em 2em; border-top-left-radius:0.5em 4em; border-top-right-radius:3em 1em; box-shadow:rgb(165, 165, 165) 4px 4px 2px; color:white; max-width:100%; padding:4px 10px; text-align:justify\">公告通知</span></strong></strong> </legend><section class=\"wweibrush\" data-style=\"margin-top: 2px; margin-bottom: 0px; padding: 0px; max-width: 100%; min-height: 1.5em; line-height: 2em;font-weight:bold;\"><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; min-height: 1.5em; line-height: 2em;\">各位小伙伴们,微信图文美化编辑器正式上线了,欢迎大家多使用多提供反馈意见。使用<span style=\"color:inherit\"><strong>谷歌与火狐浏览器</strong></span>,可获得与手机端一致的显示效果。ie内核的低版本浏览器可能有不兼容的情况</p></section></fieldset></section><p><br></p>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd9117560034', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '内容0036', 'WXNRQ', '<section class=\"wwei-editor\"><section style=\"max-width: 100%; margin: 2px; padding: 0px;\"><section style=\"max-width: 100%;margin-left:1em; line-height: 1.4em;\"><span style=\"font-size:14px\"><strong style=\"color:rgb(62, 62, 62); line-height:32px; white-space:pre-wrap\"><span class=\"wweibrush\" data-brushtype=\"text\" data-mce-style=\"color: #a5a5a5;\" placeholder=\"关于微信编辑器\" style=\"background-color:rgb(86, 159, 8); border-radius:5px; color:rgb(255, 255, 255); padding:4px 10px\">关于微信编辑器</span></strong></span> </section><section class=\"wweibrush\" data-style=\"color:rgb(89, 89, 89); font-size:14px; line-height:28px\" style=\"font-size: 1em; max-width: 100%; margin-top: -0.7em; padding: 10px 1em; border: 1px solid rgb(192, 200, 209); border-radius: 0.4em; color: rgb(51, 51, 51); background-color: rgb(239, 239, 239);\"><p><span placeholder=\"提供非常好用的微信文章编辑工具。\">非常好用的在线图文编辑工具</span> </p></section></section></section>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd92018b0035', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '微信0037', 'WXNRQ', '<section class=\"wwei-editor\"><blockquote class=\"wweibrush\" style=\"orphans: 2; white-space: normal; widows: 2; font-size: 14px; line-height: 22.39px;margin: 10px 0px; padding:15px 20px 15px 45px; outline: 0px; border: 0px currentcolor; color: rgb(62, 62, 62); vertical-align: baseline; background-image: url(http://pro.wwei.cn/Public/wxeditor/css/left_quote.jpg); background-color: rgb(241, 241, 241); background-position: 1% 5px; background-repeat: no-repeat no-repeat;\">这里插入分号引用样式的内容。</blockquote></section>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd9298e30036', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '内容0038', 'WXNRQ', '<section class=\"wwei-editor\"><fieldset style=\"margin: 0.5em 0px; padding: 0px; max-width: 100%; box-sizing: border-box; color: rgb(62, 62, 62); line-height: 25px; white-space: normal; border: 0px rgb(238, 222, 176); word-wrap: break-word !important;\"><section style=\"margin: 0px; padding: 0px; width: 100%; box-sizing: border-box;display: inline-block; text-align: center; word-wrap: break-word !important;\"><img src=\"http://pro.wwei.cn/Public/wxeditor/css/06.png\" style=\"box-sizing:border-box; color:inherit; height:65px; margin:0px auto; padding:0px; visibility:visible !important; width:60px; word-wrap:break-word !important\"></section><section style=\"margin: -2.3em 0px 0px; padding: 2em 0px 0px; max-width: 100%; box-sizing: border-box; min-height: 15em; font-size: 1em; font-weight: inherit; text-decoration: inherit; color: rgb(131, 104, 28); border-color: rgb(238, 222, 176); word-wrap: break-word !important; background-image: url(http://pro.wwei.cn/Public/wxeditor/css/07.png); background-color: rgb(238, 222, 176); background-repeat: repeat;\"><section style=\"margin: 0.3em auto; padding: 0.5em; max-width: 100%; box-sizing: border-box; width: 7em; height: 3.5em; line-height: 2em; overflow: hidden; -webkit-transform: rotate(-5deg); font-size: 32px; font-weight: inherit; text-align: center; text-decoration: inherit; color: inherit; word-wrap: break-word !important; background-image: url(http://pro.wwei.cn/Public/wxeditor/css/08.png); background-repeat: no-repeat;background-size: contain;\"><section style=\"margin: 0px; padding: 0px; max-width: 100%; box-sizing: border-box; word-wrap: break-word !important;\"><span style=\"box-sizing:border-box; color:inherit; margin:0px; max-width:100%; padding:0px; word-wrap:break-word !important\">公告</span></section></section><section style=\"margin: 0px; padding: 1em; max-width: 100%; box-sizing: border-box; word-wrap: break-word !important;\"><section class=\"wweibrush\" style=\"margin: 0px; padding: 0px; max-width: 100%; box-sizing: border-box; word-wrap: break-word !important; color: inherit;\"><p>本背景可以换色哦~</p></section></section></section></fieldset><p><br></p></section>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd931a120037', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '内容0039', 'WXNRQ', '<section class=\"wwei-editor\"><blockquote style=\"white-space: normal; margin: 5px 0px 0px; padding: 10px; max-width: 100%; border-left-width: 5px; border-left-style: solid; border-left-color: rgb(0, 176, 80); line-height: 25px; color: rgb(102, 102, 102);\"><p class=\"wweibrush\" placeholder=\"请输入内容内容。\">请输入内容内容。</p></blockquote></section>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd93dd0b0038', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '内容0040', 'WXNRQ', '<section class=\"wwei-editor\"><blockquote style=\"white-space: normal; margin: 5px 0px 0px; padding: 10px; max-width: 100%; border-left-width: 5px; border-left-style: solid; border-left-color: rgb(0, 176, 80); line-height: 25px; color: rgb(102, 102, 102);\"><p class=\"wweibrush\" placeholder=\"请输入内容内容。\">请输入内容内容。</p></blockquote></section>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd94e0ca0039', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '内容0041', 'WXNRQ', '<section class=\"wwei-editor\"><blockquote style=\"max-width: 100%; padding: 5px 15px; border: none rgb(255, 129, 36);word-wrap: break-word !important; box-sizing: border-box !important;background-size: cover; background-image: url(http://pro.wwei.cn/Public/wxeditor/css/0.gif);\"><section class=\"wweibrush\" style=\"color:#ffffff\"><p style=\"text-align: center; color: inherit;\"><br></p><p style=\"margin-top: 0px; margin-bottom: 0px; max-width: 100%; word-wrap: normal; min-height: 1em; white-space: pre-wrap; line-height: 1.75em; text-align: center; box-sizing: border-box !important;\"><span style=\"font-size:18px\"><strong>雪花动态背景样式,请输入文字</strong></span></p></section></blockquote></section>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd958d02003a', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '内容0042', 'WXNRQ', '<section class=\"wwei-editor\"><section style=\"margin: 10px 0px; padding: 50px 0px; color: rgb(202, 251, 215); text-align: center; background-color: rgb(14, 184, 58);\"><span style=\"border:1px solid rgb(202, 251, 215); font-size:18px; line-height:42px; padding:10px 15px\">微信编辑器</span><section class=\"wweibrush\" style=\"margin-top:30px;\"><p>秒刷,最易用的图文排版工具</p></section></section></section>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd95fef4003b', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '内容0043', 'WXNRQ', '<section class=\"wwei-editor\"><section style=\"padding: 0px 8px; border-left-width: 3px; border-left-style: solid; border-color: rgba(163, 163, 163, 0.843137); font-size: 22px; font-weight: inherit; text-align: inherit; text-decoration: inherit; box-sizing: border-box;\"><section style=\"line-height: 1.4; box-sizing: border-box; color: inherit;\"><section class=\"wweibrush\" data-brushtype=\"text\" style=\"border-color: rgb(117, 117, 118); color: rgb(117, 117, 118); font-size: 20px;\">标题</section></section><section class=\"wweibrush\" data-style=\"border-color: rgb(117, 117, 118); color: inherit; font-size: 12px;\" style=\"color: rgb(117, 117, 118); line-height: 1.4; margin-top: 5px; padding-left: 3px; font-size: 14px; font-weight: inherit; text-align: inherit; text-decoration: inherit; box-sizing: border-box; border-color: rgb(117, 117, 118);\"><p style=\"border-color: rgb(117, 117, 118); color: inherit; font-size: 12px;\">内容描述</p></section></section></section>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd9688c7003c', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '内容0044', 'WXNRQ', '<section class=\"wwei-editor\"><p class=\"wweibrush\" data-brushtype=\"text\" style=\"margin: 2px 5px 0px 0px; padding: 0px;color:rgb(75, 92, 196); float:left; font-size:2.7em; line-height:1em; margin-right:5px\">秒刷</p><section class=\"wweibrush\" data-style=\"clear:none;\"><p style=\"clear:none;\">选择需要应用样式的文字,然后选择要使用的样式,即可实现秒刷效果。秒刷支持所有样式,如有使用遇到问题,欢迎加入QQ群<strong>390183835</strong>,将问题反馈给我们</p><p style=\"clear:none;color:red;\">回车使下沉占两行的文字独自为一个段落,然后再使用秒刷。建议下沉的为一个或者2个文字,不要多了。</p></section></section>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd97145a003d', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '内容0045', 'WXNRQ', '<section class=\"wwei-editor\"><fieldset style=\"padding: 5px; border: 1px solid rgb(204, 204, 204); line-height: 24px; color: inherit; background-color: rgb(254, 254, 254);\"><legend style=\"margin: 0px 0px 0px 15px; padding: 0px; width: auto; font-size: 16px; color: inherit;\"><span style=\"color:inherit; margin:0px; padding:0px\"><strong style=\"color:rgb(102, 102, 102); margin:15px 8px 0px 0px\"><span class=\"wweibrush\" data-brushtype=\"text\" style=\"background-color:rgb(145, 168, 252); border-color:rgb(145, 168, 252); border-radius:5px; color:rgb(255, 255, 255); padding:4px 10px\">Wwei</span> </strong><span class=\"wweibrush\" data-brushtype=\"text\" style=\"border-color:rgb(145, 168, 252); color:rgb(145, 168, 252); margin:0px; padding:0px\">Wwei </span></span></legend><section class=\"wweibrush\" data-style=\"text-indent: 2em;;\" style=\"margin: 15px; margin-bottom: 0px; padding: 0px; line-height: 2em; color: rgb(62, 62, 62); font-size: 14px;\"><p style=\"text-indent: 2em; color: inherit;\">Wwei.cn平台是一个互联网运营平台,为运营者提供图文编辑工具,运营经验,收录公众号,定制开发微网站等服务,让运营更轻松高效。</p></section></fieldset></section>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd97b2e0003e', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '内容0046', 'WXNRQ', '<section class=\"wwei-editor\"><fieldset style=\"margin: 0.5em 0px; padding: 0px; max-width: 100%; box-sizing: border-box; color: rgb(62, 62, 62); font-family: inherit; font-size: medium; line-height: 25px; white-space: normal; border: none rgb(254, 253, 254); word-wrap: break-word !important;\"><section style=\"margin: 0px; padding: 3.8em 0px; max-width: 100%; box-sizing: border-box; width: 12.5em; height: 12.5em; float: right; text-align: center; word-wrap: break-word !important; background-image: url(http://pro.wwei.cn/Public/wxeditor/css/09.png); background-size: cover;\"><section style=\"margin: 0px 0px 0px 16px; padding: 0px; max-width: 100%; box-sizing: border-box; width: 140px; overflow: hidden; -webkit-transform: rotate(-13deg); font-size: 22px; font-family: inherit; font-weight: inherit; text-decoration: inherit; color: rgb(102, 102, 102); word-wrap: break-word !important;\"><section style=\"margin: 0px; padding: 0px; max-width: 100%; box-sizing: border-box; word-wrap: break-word !important; color: inherit;\">Tips</section></section><section style=\"margin: 10px 20px; padding: 0px; max-width: 100%; box-sizing: border-box; width: 150px; overflow: hidden; -webkit-transform: rotate(-15deg); font-size: 14px; font-family: inherit; font-weight: inherit; text-decoration: inherit; color: rgb(102, 102, 102); word-wrap: break-word !important;\"><section class=\"wweibrush\" style=\"margin: 0px; padding: 0px; max-width: 100%; box-sizing: border-box; word-wrap: break-word !important; color: inherit;\"><p>我是图片不能换色哦</p></section></section></section></fieldset></section>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbd983e95003f', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '内容0047', 'WXNRQ', '<section class=\"wwei-editor\"><section><section style=\"width:48%;display:inline-block;float:left;\"><section style=\"padding:20px 25px;border:1px solid #e7e7e7;text-align:center;\"><p><img src=\"http://pro.wwei.cn/Public/wxeditor/css/logo-135-web.png\" style=\"height:50px; margin-bottom:15px\"></p><h3 class=\"134title\" style=\"font-size:16px;font-weight:bold;margin:0 0 10px 0;\">微信编辑器</h3><section class=\"wweibrush\" data-style=\"clear:none;\"><p style=\"clear:none;margin:0 0;line-height:1.5em;\">生而排版</p><p style=\"clear:none;margin:0 0;line-height:1.5em;\"><span style=\"text-align:center\">为你而美</span></p></section></section></section><section style=\"margin-left:4%;width:48%;display:inline-block;text-align:center;\"><section style=\"padding:20px 25px;border:1px solid #e7e7e7;\"><p><img src=\"http://pro.wwei.cn/Public/wxeditor/css/0(6).jpg\" style=\"height:50px; margin-bottom:15px\"></p><h3 class=\"134title\" style=\"font-size:16px;font-weight:bold;margin:0 0 10px 0;\">秒刷</h3><section class=\"wweibrush\" data-style=\"clear:none;margin:0 0;line-height:1.5em;\"><p style=\"clear:none;margin:0 0;line-height:1.5em;\">一键排版</p><p style=\"clear:none;margin:0 0;line-height:1.5em;\">珍惜生命</p></section></section></section><p style=\"height:2px;clear:both;\"><br></p></section></section>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbda3444c0040', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '图片0001', 'WXTP', '<img src=\"http://pro.wwei.cn/Public/wxeditor/images/2mbizgif.gif\">\r\n ');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbda458ca0041', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '图片0002', 'WXTP', '<img src=\"http://pro.wwei.cn/Public/wxeditor/images/3mbizgif.gif\">');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbda4be320042', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '图片0003', 'WXTP', '<img src=\"http://pro.wwei.cn/Public/wxeditor/images/4mbizgif.gif\">');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbda5228c0043', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '图片0004', 'WXTP', '<img src=\"http://pro.wwei.cn/Public/wxeditor/images/5mbizgif.gif\">');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbda62cf70045', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '图片0006', 'WXTP', '<img src=\"http://pro.wwei.cn/Public/wxeditor/images/3zm.jpg\">');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbda67cc30046', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '图片0007', 'WXTP', '<img src=\"http://pro.wwei.cn/Public/wxeditor/css/mmbizgif.jpg\">');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbda6be240047', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '图片0008', 'WXTP', '<img src=\"http://pro.wwei.cn/Public/wxeditor/css/640_4.png\">');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbda721ea0048', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '图片0009', 'WXTP', '<img src=\"http://pro.wwei.cn/Public/wxeditor/css/mmbizgif.gif\">');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbda768e00049', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '图片0010', 'WXTP', '<img src=\"http://pro.wwei.cn/Public/wxeditor/css/mmbizgif2.gif\">');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbda7bd01004a', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '图片0011', 'WXTP', '<img src=\"http://pro.wwei.cn/Public/wxeditor/css/mmbizgif3.gif\">');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbda81cdd004b', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '图片0012', 'WXTP', '<img src=\"http://pro.wwei.cn/Public/wxeditor/css/mmbizgif4.gif\">');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbda86fce004c', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '图片0013', 'WXTP', '<img src=\"http://pro.wwei.cn/Public/wxeditor/css/01.png\">');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbda8f661004d', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '图片0014', 'WXTP', '<img src=\"http://pro.wwei.cn/Public/wxeditor/css/01.jpg\">');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbda9bcb2004e', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '图片0015', 'WXTP', '<img src=\"http://pro.wwei.cn/Public/wxeditor/css/mmbizgif7.gif\">');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbdaa18c1004f', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '图片0016', 'WXTP', '<img src=\"http://pro.wwei.cn/Public/wxeditor/css/mmbizgif8.gif\">');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbdaa75f70050', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '图片0017', 'WXTP', '<img src=\"http://pro.wwei.cn/Public/wxeditor/css/6c30531a8c718a37868c4822.gif\">');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbdaad1690051', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '图片0018', 'WXTP', '<img src=\"http://pro.wwei.cn/Public/wxeditor/css/mmbizgif9.gif\">');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbdab3b3f0052', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '图片0019', 'WXTP', '<img src=\"http://pro.wwei.cn/Public/wxeditor/css/mmbizgif1.jpg\">');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbdb012e00053', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '图片0020', 'WXTP', '<img src=\"http://pro.wwei.cn/Public/wxeditor/css/mmbizgif10.gif\">');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbdb0a9ea0054', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '图片0021', 'WXTP', '<img src=\"http://pro.wwei.cn/Public/wxeditor/css/mmbizgif18.gif\">');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbdb0f0820055', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '图片0022', 'WXTP', '<img src=\"http://pro.wwei.cn/Public/wxeditor/css/02.png\">');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbdb13dbb0056', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '图片0023', 'WXTP', '<img src=\"http://pro.wwei.cn/Public/wxeditor/css/05.jpg\">');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbdb183e60057', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '图片0024', 'WXTP', '<img src=\"http://pro.wwei.cn/Public/wxeditor/css/i640.png\">');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbdb1c6d10058', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '图片0025', 'WXTP', '<img src=\"http://pro.wwei.cn/Public/wxeditor/css/s640.png\">');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbdb241f10059', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '图片0026', 'WXTP', '<img src=\"http://pro.wwei.cn/Public/wxeditor/css/mmbizgif6.gif\">');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbdb5eb0d005a', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '关注引导0004', 'WXGZYD', '<section class=\"wwei-editor\" style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(68, 68, 68); font-family: 微软雅黑; font-size: 13px; line-height: 24px; white-space: normal;\"><section class=\"awb-s1\" style=\"margin: 0px; padding: 0px; border: 0px; height: 0.1em; background-color: rgb(0, 187, 236);\"></section><section class=\"awb-s1\" style=\"margin: 0.3em 0px; padding: 0px; border: 0px; height: 0.3em; background-color: rgb(0, 187, 236);\"></section><section class=\"awb-s3\" style=\"margin: 0px; padding: 0.5em; border: 1px solid rgb(0, 187, 236); box-shadow: rgb(226, 226, 226) 0em 1em 0.1em -0.8em; font-size: 1em; line-height: 1.6em; background-color: white;\"><span style=\"margin: 0px; padding: 0px; border: 0px; color: inherit; font-size: 1em; font-family: inherit;\">点击下方</span><span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(64, 84, 115); font-size: 1em; font-family: inherit;\">“阅读原文”</span><span style=\"margin: 0px; padding: 0px; border: 0px; color: inherit; font-size: 1em; font-family: inherit;\">查看更多</span></section><section class=\"awb-s4\" style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(0, 187, 236); font-size: 2em;\">↓↓↓</section></section>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbdb6a806005b', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '关注引导0005', 'WXGZYD', '<section class=\"wwei-editor\" style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(68, 68, 68); font-family: 微软雅黑; font-size: 13px; line-height: 24px; white-space: normal;\"><section style=\"margin: 0px; padding: 0px; border: 0px; height: 8em; white-space: nowrap; overflow: hidden;\"><img src=\"http://pro.wwei.cn/Public/wxeditor/images/6mbiz.png\" style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; max-height: 100%;\"></section><section style=\"margin: -7.2em 0.5em 5.5em; padding: 0.5em; border: 0px; height: 2em; font-size: 1em; line-height: 1.6em;\"><span style=\"margin: 0px; padding: 0px; border: 0px; color: inherit; overflow: hidden; font-size: 0.9em; font-family: inherit;\">点击下方</span><span style=\"margin: 0px; padding: 0px; border: 0px; color: rgb(64, 84, 115); overflow: hidden; font-size: 0.9em; font-family: inherit;\">“阅读原文”</span><span style=\"margin: 0px; padding: 0px; border: 0px; color: inherit; overflow: hidden; font-size: 0.9em; font-family: inherit;\">查看更多</span></section></section>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbdb71627005c', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '关注引导0006', 'WXGZYD', '<section class=\"wwei-editor\"><fieldset style=\"margin: 0px; padding: 5px; max-width: 100%; color: rgb(62, 62, 62); font-size: medium; white-space: normal; border: 1px solid rgb(204, 204, 204); border-image-source: none; line-height: 24px; font-family: 宋体; orphans: 2; widows: 2; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(248, 247, 245);\"><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; min-height: 1em; white-space: pre-wrap; overflow: hidden; box-sizing: border-box !important; word-wrap: break-word !important;\"><strong style=\"margin: 0px; padding: 0px; max-width: 100%; line-height: 2em; color: rgb(118, 146, 60); box-sizing: border-box !important; word-wrap: break-word !important;\">阅读本文用了:</strong><img src=\"https://mmbiz.qlogo.cn/mmbiz/ZFvUqSQ0vAk8yU7xZ8hDKgeBPSwDpcPSjawGj2ekAp1GMQLq7RibhFgicdpCXj3B8oBeMAia74e13FotEsrX7zRAw/0\" data-w=\"16\" data-ratio=\"2.25\" width=\"16px\" style=\"margin: 0px; padding: 0px; border: 0px currentcolor; border-image-source: none; box-sizing: border-box !important; word-wrap: break-word !important; width: 16px !important; visibility: visible !important; height: auto !important; background-image: none; background-attachment: scroll; background-position: 0% 0%;\" _width=\"16px\"><img src=\"http://pro.wwei.cn/Public/wxeditor/images/t0.gif\" data-w=\"17\" data-ratio=\"2.1176470588235294\" width=\"16px\" style=\"margin: 0px; padding: 0px; border: 0px currentcolor; border-image-source: none; box-sizing: border-box !important; word-wrap: break-word !important; width: 16px !important; visibility: visible !important; height: auto !important; background-image: none; background-attachment: scroll; background-position: 0% 0%;\" _width=\"16px\"><strong style=\"font-family: 宋体; font-size: medium; orphans: 2; white-space: pre-wrap; widows: 2; margin: 0px; padding: 0px; max-width: 100%; line-height: 2em; color: rgb(118, 146, 60); box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(248, 247, 245);\">分</strong><img src=\"http://pro.wwei.cn/Public/wxeditor/images/t0.gif\" data-w=\"16\" data-ratio=\"2.25\" width=\"16px\" style=\"margin: 0px; padding: 0px; border: 0px currentcolor; border-image-source: none; box-sizing: border-box !important; word-wrap: break-word !important; width: 16px !important; visibility: visible !important; height: auto !important; background-image: none; background-attachment: scroll; background-position: 0% 0%;\" _width=\"16px\"><img src=\"http://pro.wwei.cn/Public/wxeditor/images/t01.gif\" data-w=\"17\" data-ratio=\"2.1176470588235294\" width=\"16px\" style=\"margin: 0px; padding: 0px; border: 0px currentcolor; border-image-source: none; box-sizing: border-box !important; word-wrap: break-word !important; width: 16px !important; visibility: visible !important; height: auto !important; background-image: none; background-attachment: scroll; background-position: 0% 0%;\" _width=\"16px\"><strong style=\"margin: 0px; padding: 0px; max-width: 100%; line-height: 2em; color: rgb(118, 146, 60); box-sizing: border-box !important; word-wrap: break-word !important;\">秒,转发只需1秒</strong><br style=\"margin: 0px; padding: 0px; max-width: 100%; box-sizing: border-box !important; word-wrap: break-word !important;\"></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; word-wrap: normal; min-height: 1.5em; white-space: pre-wrap; overflow: hidden; line-height: 2em; box-sizing: border-box !important;\"><span style=\"margin: 0px; padding: 0px; max-width: 100%; color: rgb(149, 55, 52); box-sizing: border-box !important; word-wrap: break-word !important;\"><strong style=\"margin: 0px; padding: 0px; max-width: 100%; line-height: 18px; font-family: simsun, sans-serif; box-sizing: border-box !important; word-wrap: break-word !important;\"><span style=\"margin: 0px; padding: 0px; max-width: 100%; box-sizing: border-box !important; word-wrap: break-word !important;\"><strong style=\"margin: 0px; padding: 0px; max-width: 100%; box-sizing: border-box !important; word-wrap: break-word !important;\">?</strong></span>转载是一种智慧<strong style=\"margin: 0px; padding: 0px; max-width: 100%; box-sizing: border-box !important; word-wrap: break-word !important;\">?</strong>分享是一种美德?</strong></span></p></fieldset></section>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbdb79d16005d', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '关注引导0007', 'WXGZYD', '<img src=\"http://pro.wwei.cn/Public/wxeditor/images/6mbizgif.gif\">');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbdb82de6005e', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '关注引导0008', 'WXGZYD', '<img src=\"http://pro.wwei.cn/Public/wxeditor/images/0sh.gif\">');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbdb89e3b005f', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '关注引导0009', 'WXGZYD', '<img src=\"http://pro.wwei.cn/Public/wxeditor/images/2qgz.png\">');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbdb92c4d0060', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '关注引导0010', 'WXGZYD', '<section class=\"wwei-editor\"><section style=\"border-color:transparent transparent rgb(0, 112, 192); border-style:solid; border-width:12px; float:none; font-size:medium; height:0px; margin:-15px auto 0px 90px; orphans:2; text-align:-webkit-auto; widows:2; width:0px\"></section><p class=\"wweibrush\" data-brushtype=\"text\" style=\"margin-top: -1px; margin-bottom: 0px;orphans: 2; widows: 2; min-height: 30px; visibility: visible; height: 30px; line-height: 30px; color: rgb(255, 255, 255); border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; box-shadow: rgba(0, 0, 0, 0.14902) 1px 1px 3px; font-size: 15px; text-align: center; background-color: rgb(0, 112, 192);font-size:14px; font-weight:bold\">点击标题下「蓝色微信名」可快速关注</p></section>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbdb9a1750061', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '关注引导0011', 'WXGZYD', '<section class=\"wwei-editor\"><section style=\"max-width: 100%; color: rgb(62, 62, 62); margin: 0px; border-radius: 2em; height: 2.5em;line-height: 2.5em; color: rgb(255, 255, 255); font-size: 13.33px; word-wrap: break-word !important; box-sizing: border-box !important; background-color: rgb(189, 221, 34);\"><img src=\"http://pro.wwei.cn/Public/wxeditor/css/640_3.png\" style=\"border:0px rgb(189, 221, 34); box-sizing:border-box !important; float:left; height:auto !important; margin:5px 10px; vertical-align:top; visibility:visible !important; width:auto !important; word-wrap:break-word !important\"><p class=\"wweibrush\" style=\"max-width: 100%; color: inherit; display: inline-block; font-size:16px; \">关注一下又不会怀孕!</p></section></section>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbdbaa1b30062', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '关注引导0012', 'WXGZYD', '<section class=\"wwei-editor\"><p style=\"padding: 5px 20px; margin-top: auto; margin-bottom: auto; font-family: 微软雅黑; white-space: normal; font-size: medium; max-width: 100%; word-wrap: normal; min-height: 1em; line-height: 25px; text-align: center; color: rgb(255, 255, 255); border-top-left-radius: 5px; border-top-right-radius: 5px; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; box-sizing: border-box !important; background-color: rgb(0, 187, 236);\"><span style=\"font-size: 12px;\"><span style=\"font-family: 微软雅黑, \'Microsoft YaHei\'; border-color: rgb(103, 61, 189);\">点击“阅读全文”,了解详情</span></span></p><p style=\"padding: 0px; margin: auto 55px; font-family: 微软雅黑; white-space: normal; font-size: medium; max-width: 100%; word-wrap: normal; min-height: 1em; color: rgb(62, 62, 62); line-height: 25px; border: 0px solid rgb(255, 0, 0); width: auto; box-sizing: border-box !important;\"><span style=\"max-width: 100%; border-color: rgb(0, 187, 236) transparent transparent; border-width: 20px; border-style: solid dashed dashed; width: 50px; bottom: -60px; height: 50px; font-size: 0px; word-wrap: break-word !important; box-sizing: border-box !important;\"></span></p></section>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbdbb88240063', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '关注引导0013', 'WXGZYD', '<img src=\"http://pro.wwei.cn/Public/wxeditor/images/mbizgif.gif\">');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbdbc61f70064', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '关注引导0014', 'WXGZYD', '<img src=\"http://pro.wwei.cn/Public/wxeditor/images/1mbizgif.gif\">');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbdbcd8eb0065', '管理员', 'admin', '2015-06-04 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '关注引导0015', 'WXGZYD', '<section class=\"wwei-editor\"><blockquote class=\"bkcolor\" style=\"margin: 0px; padding: 5px 20px; border: 2px rgb(201, 72, 121); font-family: 微软雅黑; line-height: 24px; white-space: normal; max-width: 100%; color: rgb(255, 255, 255); text-align: center; font-weight: 700; width: 180px; border-top-left-radius: 15px; border-top-right-radius: 15px; box-shadow: rgb(153, 153, 153) 0px -1px 6px; border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; text-shadow: rgb(10, 10, 10) 0px -1px 2px; word-wrap: break-word !important; box-sizing: border-box !important; background-color: rgb(201, 72, 121);\">广州教师微信</blockquote><blockquote style=\"margin: 0px; padding: 10px; border: 1px solid rgb(204, 204, 204); font-family: 微软雅黑; line-height: 24px; white-space: normal; font-size: 12px; max-width: 100%; color: rgb(62, 62, 62); border-top-left-radius: 0px; border-top-right-radius: 0px; box-shadow: rgb(204, 204, 204) 0px -1px 6px; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; word-wrap: break-word !important; box-sizing: border-box !important; background-color: rgb(228, 228, 228);\"><span style=\"margin: 0px; padding: 0px; border: 0px rgb(201, 72, 121); max-width: 100%; color: rgb(201, 72, 121); word-wrap: break-word !important; box-sizing: border-box !important;\">微信号:</span><span style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; font-weight: 700; word-wrap: break-word !important; box-sizing: border-box !important;\"></span><span class=\"bkcolor\" style=\"margin: 0px; padding: 2px 5px; border: 0px; max-width: 100%; font-weight: 700; color: rgb(255, 255, 255); word-wrap: break-word !important; box-sizing: border-box !important; background-color: rgb(201, 72, 121);\">广州教师</span><span class=\"bfcolor\" style=\"margin: 0px; padding: 0px 0px 0px 5px; border: 0px rgb(201, 72, 121); max-width: 100%; color: rgb(201, 72, 121); word-wrap: break-word !important; box-sizing: border-box !important;\">(←长按复制)</span><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 10px 0px 0px; border: 0px; max-width: 100%; word-wrap: normal; min-height: 1.5em; white-space: pre-wrap; word-break: normal; color: rgb(102, 102, 102); line-height: 2em; box-sizing: border-box !important;\">全力打造杭城微信营销第一品牌</p></blockquote></section>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbdbe50db0066', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '关注引导0016', 'WXGZYD', '<section class=\"wwei-editor\"><fieldset class=\"brcolor\" style=\"margin: 0px; padding: 5px 15px; border-width: 1px 0px; border-style: solid; border-color: rgb(0, 187, 236); border-image-source: none; font-family: 微软雅黑; line-height: 24px; white-space: normal; max-width: 100%; color: rgb(62, 62, 62); font-size: 14px; word-wrap: break-word !important; box-sizing: border-box !important; background-color: rgb(255, 255, 255);\"><legend class=\"brcolor\" style=\"margin: 0px; padding: 4px 10px; border: 1px solid rgb(0, 187, 236); border-image-source: none; max-width: 100%; color: rgb(34, 34, 34); font-size: 16px; word-wrap: break-word !important; box-sizing: border-box !important;\"><strong style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;\">如何关注</strong></legend><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; max-width: 100%; word-wrap: normal; min-height: 1em; white-space: pre-wrap; box-sizing: border-box !important;\">①复制“微信号或ID”,在“添加朋友”中粘贴搜索号码关注。</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; max-width: 100%; word-wrap: normal; min-height: 1em; white-space: pre-wrap; box-sizing: border-box !important;\">②点击微信右上角的“+”,会出现“添加朋友”,进入“查找公众号”,输入以下公众号的名字,即可找到。</p></fieldset></section>');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbdbe9b710067', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '关注引导0017', 'WXGZYD', '<img src=\"http://pro.wwei.cn/Public/wxeditor/css/01.jpg\">');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbdbef6710068', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '关注引导0018', 'WXGZYD', '<img src=\"http://pro.wwei.cn/Public/wxeditor/css/02.jpg\">');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbdbf58560069', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '关注引导0019', 'WXGZYD', '<img src=\"http://pro.wwei.cn/Public/wxeditor/css/1d30.jpg\">');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbdbfb636006a', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '关注引导0020', 'WXGZYD', '<img src=\"http://pro.wwei.cn/Public/wxeditor/css/03.jpg\">');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbdc01c75006b', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '关注引导0021', 'WXGZYD', '<img src=\"http://pro.wwei.cn/Public/wxeditor/css/04.png\">');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbdc085a3006c', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '关注引导0022', 'WXGZYD', '<img src=\"http://pro.wwei.cn/Public/wxeditor/css/04.jpg\">');
INSERT INTO `weixin_template` VALUES ('402880cd4dbd534c014dbdc14efc006d', '管理员', 'admin', '2015-06-04 00:00:00', NULL, NULL, NULL, '关注引导0023', 'WXGZYD', '<img src=\"http://pro.wwei.cn/Public/wxeditor/css/mmbizgif19.gif\">');
INSERT INTO `weixin_template` VALUES ('8af235d44db84b91014db84b91e10000', '管理员', 'admin', '2015-06-03 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '关注引导0001', 'WXGZYD', '<section style=\"margin: 15px 0px 0px; padding: 0px; border: 0px; color: rgb(68, 68, 68); font-family: 微软雅黑; font-size: 13px; line-height: 24px; white-space: normal; max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;\">\r\n <section style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;\">\r\n <section style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;\">\r\n <section style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; color: rgb(34, 34, 34); font-family: 微软雅黑, arial, sans-serif; font-size: 14px; height: 75px; word-wrap: break-word !important; box-sizing: border-box !important; background-color: rgb(255, 255, 255);\">\r\n <section class=\"main\" style=\"margin: 0px; padding: 5px; border: 2px solid rgb(0, 187, 236); max-width: 100%; border-top-left-radius: 50px; border-top-right-radius: 50px; border-bottom-right-radius: 50px; border-bottom-left-radius: 50px; word-wrap: break-word !important; box-sizing: border-box !important;\">\r\n <section style=\"margin: 0px; padding: 0px; border: 0px; display: inline-block; max-width: 100%; float: left; height: 60px; width: 60px; word-wrap: break-word !important; box-sizing: border-box !important;\">\r\n <img class=\"awb_avatar\" data-ratio=\"1\" data-w=\"60\" _width=\"60px\" src=\"https://mmbiz.qlogo.cn/mmbiz/mj9u1OBZRqP8EvePIzqrRIHCHOzYM4ngTyTSG1yHQmHf6GZ54zRFE0jKdFVTN5wictwGhmaj0XoMr8JlVglKFSg/0\" style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; border-top-left-radius: 30px; border-top-right-radius: 30px; border-bottom-right-radius: 30px; border-bottom-left-radius: 30px; float: left; word-wrap: break-word !important; box-sizing: border-box !important; height: auto !important; width: 60px !important; visibility: visible !important;\"/><img data-ratio=\"1\" data-w=\"20\" src=\"https://mmbiz.qlogo.cn/mmbiz/mj9u1OBZRqP8EvePIzqrRIHCHOzYM4ngVB5ussUreAlK3CMe1QzN4COMOicjefeVibtS6gXUZJww9e2NAa5EdG0A/0\" style=\"margin: -60px 0px 0px; padding: 0px; border: 0px; max-width: 100%; float: right; word-wrap: break-word !important; box-sizing: border-box !important; height: auto !important; width: auto !important; visibility: visible !important;\"/>\r\n </section>\r\n <section style=\"margin: 0px; padding: 0px 10px; border: 0px; display: inline-block; max-width: 100%; height: 60px; line-height: 30px; word-wrap: break-word !important; box-sizing: border-box !important;\">\r\n <section style=\"margin: 0px; padding: 0px; border-width: 0px 0px 1px; border-bottom-style: dashed; border-bottom-color: rgb(118, 118, 118); max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;\">\r\n <span style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; color: rgb(0, 0, 0); font-weight: bold; word-wrap: break-word !important; box-sizing: border-box !important;\">点击「<span style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; color: rgb(22, 179, 255); word-wrap: break-word !important; box-sizing: border-box !important;\">箭头所指处</span>」可快速关注</span>\r\n </section>\r\n <section style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;\">\r\n <span style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; color: rgb(0, 0, 0); word-wrap: break-word !important; box-sizing: border-box !important;\">微信号:<span class=\"awb_wxwechatid\" style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; color: rgb(187, 0, 0); word-wrap: break-word !important; box-sizing: border-box !important;\">XXXXXXXXX</span></span>\r\n </section>\r\n </section>\r\n </section>\r\n <section style=\"margin: -98px 0px 0px 80px; padding: 0px; border: 0px; max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;\">\r\n <p class=\"main\" style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border-width: 12px; border-style: solid; border-color: transparent transparent rgb(0, 187, 236); max-width: 100%; word-wrap: normal; min-height: 1em; white-space: pre-wrap; width: 0px; height: 0px; float: none; box-sizing: border-box !important;\">\r\n <br style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;\"/>\r\n </p>\r\n <p style=\"margin-top: -21px; margin-bottom: 0px; padding: 0px; border-width: 12px; border-style: solid; border-color: transparent transparent rgb(255, 255, 255); max-width: 100%; word-wrap: normal; min-height: 1em; white-space: pre-wrap; width: 0px; height: 0px; float: none; box-sizing: border-box !important;\">\r\n <br style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;\"/>\r\n </p>\r\n </section>\r\n </section>\r\n </section>\r\n </section>\r\n</section>\r\n<p>\r\n <br/>\r\n</p>\r\n<p>\r\n <br/>\r\n</p>');
INSERT INTO `weixin_template` VALUES ('8af235d44db84b91014db84c5aed0001', '管理员', 'admin', '2015-06-03 00:00:00', '管理员', 'admin', '2015-06-04 00:00:00', '内容0001', 'WXNRQ', '<blockquote class=\"bkcolor\" style=\"MAX-WIDTH: 100%; BORDER: rgb(225,225,225) 2px dotted;WHITE-SPACE: normal; WORD-SPACING: 0px;TEXT-TRANSFORM: none; COLOR: rgb(62,62,62); PADDING-BOTTOM: 10px; TEXT-ALIGN: justify; PADDING-TOP: 10px; FONT: medium/21px 微软雅黑; PADDING-LEFT: 20px; MARGIN: 0px; BORDER-LEFT: rgb(225,225,225) 2px dotted; ORPHANS: 2; WIDOWS: 2; LETTER-SPACING: normal; PADDING-RIGHT: 20px; BACKGROUND-COLOR: rgb(218,136,61); TEXT-INDENT: 0px; box-shadow: rgb(225, 225, 225) 2px 2px 1px;-webkit-text-size-adjust: none;border-radius:5px!important;\"><p style=\"margin:0;\">欢迎使用微信编辑器!</p></blockquote><p><br></p>\r\n');
-- ----------------------------
-- Table structure for weixin_texttemplate
-- ----------------------------
DROP TABLE IF EXISTS `weixin_texttemplate`;
CREATE TABLE `weixin_texttemplate` (
`id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`template_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '模板名称',
`template_content` longtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '模板内容',
`jwid` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '公众号原始id',
`create_by` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人名称',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`update_by` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改人名称',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间'
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '文本模板表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of weixin_texttemplate
-- ----------------------------
INSERT INTO `weixin_texttemplate` VALUES ('402881e86eced91f016eced9c4490002', '欢迎关注JEEWX捷微官方公众号', '欢迎关注JEEWX 捷微官方公众号\n<a href=\'http://www.jeewx.com\'>www.jeewx.com</a>', 'gh_20419b74f848', 'admin', '2019-12-04 11:00:08', 'admin', '2019-12-04 11:00:22');
-- ----------------------------
-- Table structure for wx_act_goldeneggs
-- ----------------------------
DROP TABLE IF EXISTS `wx_act_goldeneggs`;
CREATE TABLE `wx_act_goldeneggs` (
`id` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT 'ID',
`title` varchar(400) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '活动名称',
`description` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '活动描述',
`starttime` datetime(0) NULL DEFAULT NULL COMMENT '开始时间',
`endtime` datetime(0) NULL DEFAULT NULL COMMENT '结束时间',
`template_code` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '模板编码',
`banner` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '背景图',
`count` int(10) NULL DEFAULT NULL COMMENT '抽奖次数',
`hdurl` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '入口地址',
`foucs_user_can_join` varchar(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '0' COMMENT '是否关注可参加 0否 1是',
`binding_mobile_can_join` varchar(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '0' COMMENT '是否绑定手机可参加 0否 1是',
`num_per_day` int(11) NULL DEFAULT 0 COMMENT '每日抽奖次数',
`prize_status` varchar(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '0' COMMENT '是否中奖可参与 0:中奖可继续参与 1:中奖不可参与',
`jwid` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '公众号原始id',
`project_code` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '活动编码',
`create_by` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`short_url` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '短链接',
`extra_lucky_draw` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否有额外的抽奖机会,0:有,1没有',
PRIMARY KEY (`id`) USING BTREE,
INDEX `idx_createby`(`create_by`) USING BTREE,
INDEX `idx_jwid`(`jwid`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '砸金蛋活动表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of wx_act_goldeneggs
-- ----------------------------
INSERT INTO `wx_act_goldeneggs` VALUES ('2c9b8381552a77c901552a77c9020000', '砸金蛋', '<p><strong>一、活动时间:</strong><br/>2016年1月1日至2016年12月31日<br/><strong>二、抽奖方式:</strong><br/>每人每天可抽3次。<br/><strong>三、兑奖须知:</strong><br/>1、用户中奖后请点击领奖,填写姓名、电话、地址,或进入“我的奖品”页面点击兑奖填写。<br/>2、奖品将在10日内送出,到货以实际时间为准。<br/>3、本活动由捷微H5平台提供技术支持,最终解释权归活动主办方所有。<br/></p>', '2016-06-07 00:00:00', '2019-10-22 00:00:00', 'hd0921', '', 1000, '${domain}/linksucai/link.do?linkid=ff8080815553071d015553071d420000&actId=2c9b8381552a77c901552a77c9020000&jwid=gh_f268aa85d1c7', '0', '', 10, '1', 'gh_f268aa85d1c7', 'goldeneggs', 'admin', '2016-11-07 15:18:13', NULL, '1');
INSERT INTO `wx_act_goldeneggs` VALUES ('402881e86ecedfaf016ecef4ab0400a8', '砸金蛋', '<p><strong>一、活动时间:</strong><br/>2016年1月1日至2016年12月31日<br/><strong>二、抽奖方式:</strong><br/>每人每天可抽3次。<br/><strong>三、兑奖须知:</strong><br/>1、用户中奖后请点击领奖,填写姓名、电话、地址,或进入“我的奖品”页面点击兑奖填写。<br/>2、奖品将在10日内送出,到货以实际时间为准。<br/>3、本活动由捷微H5平台提供技术支持,最终解释权归活动主办方所有。<br/></p>', '2019-12-04 11:26:19', '2019-12-11 11:26:19', 'hd0921', NULL, 30, '${domain}/linksucai/link.do?linkid=ff8080815553071d015553071d420000&actId=402881e86ecedfaf016ecef4ab0400a8&jwid=gh_20419b74f848', '1', NULL, 3, '0', 'gh_20419b74f848', 'goldeneggs', 'admin', '2019-12-04 11:29:31', 'https://w.url.cn/s/AdYz9dq', '0');
-- ----------------------------
-- Table structure for wx_act_goldeneggs_awards
-- ----------------------------
DROP TABLE IF EXISTS `wx_act_goldeneggs_awards`;
CREATE TABLE `wx_act_goldeneggs_awards` (
`id` varchar(36) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' COMMENT 'ID',
`awards_name` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '奖项名称',
`jwid` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '公众号原始ID',
`awards_value` int(11) NULL DEFAULT NULL COMMENT '奖项值',
`create_by` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `uniq_jwid_creteby_value`(`jwid`, `awards_value`, `create_by`) USING BTREE,
INDEX `idx_createby`(`create_by`) USING BTREE,
INDEX `idx_jwid`(`jwid`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '砸金蛋奖项表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of wx_act_goldeneggs_awards
-- ----------------------------
INSERT INTO `wx_act_goldeneggs_awards` VALUES ('402880ee5127c20a0151281efbd00006', '一等奖', 'gh_f268aa85d1c7', 10, 'admin');
INSERT INTO `wx_act_goldeneggs_awards` VALUES ('402880ee5127c20a0151281f395f000', '二等奖', 'gh_f268aa85d1c7', 50, 'admin');
INSERT INTO `wx_act_goldeneggs_awards` VALUES ('402880ee5127c20a0151281f69740008', '三等奖', 'gh_f268aa85d1c7', 100, 'admin');
INSERT INTO `wx_act_goldeneggs_awards` VALUES ('402881e86ecedfaf016ecef4ab0c00a9', '一等奖', 'gh_20419b74f848', NULL, 'admin');
INSERT INTO `wx_act_goldeneggs_awards` VALUES ('402881e86ecedfaf016ecef4ab1900ab', '二等奖', 'gh_20419b74f848', NULL, 'admin');
INSERT INTO `wx_act_goldeneggs_awards` VALUES ('402881e86ecedfaf016ecef4ab1d00ad', '安慰奖', 'gh_20419b74f848', NULL, 'admin');
-- ----------------------------
-- Table structure for wx_act_goldeneggs_prizes
-- ----------------------------
DROP TABLE IF EXISTS `wx_act_goldeneggs_prizes`;
CREATE TABLE `wx_act_goldeneggs_prizes` (
`id` varchar(36) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' COMMENT 'ID',
`name` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '奖品名称',
`img` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '奖品图片',
`jwid` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '公众号原始id',
`create_by` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '砸金蛋奖品表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of wx_act_goldeneggs_prizes
-- ----------------------------
INSERT INTO `wx_act_goldeneggs_prizes` VALUES ('402880ee5127c20a01512823001d000c', 'iphone6 plus', '/content/goldeneggs/img/default_image.png', 'gh_f268aa85d1c7', 'admin');
INSERT INTO `wx_act_goldeneggs_prizes` VALUES ('402880ee5127c20a01512823417c000d', 'iPhone6s', '/content/goldeneggs/img/default_image.png', 'gh_f268aa85d1c7', 'admin');
INSERT INTO `wx_act_goldeneggs_prizes` VALUES ('402880ee5127c20a015128237268000e', '华为', '/content/goldeneggs/img/default_image.png', 'gh_f268aa85d1c7', 'admin');
INSERT INTO `wx_act_goldeneggs_prizes` VALUES ('402881e86ecedfaf016ecef4ab1300aa', 'iPhone10', 'http://static.h5huodong.com/upload/img/goldeneggs/359cddc89c5946a59d7057105c562845.jpg', 'gh_20419b74f848', 'admin');
INSERT INTO `wx_act_goldeneggs_prizes` VALUES ('402881e86ecedfaf016ecef4ab1b00ac', 'ipad', 'http://static.h5huodong.com/upload/img/goldeneggs/df34c7114f924756b49e771a369e00bf.jpg', 'gh_20419b74f848', 'admin');
INSERT INTO `wx_act_goldeneggs_prizes` VALUES ('402881e86ecedfaf016ecef4ab1f00ae', '樱桃键盘', 'http://static.h5huodong.com/upload/img/goldeneggs/bc93d8b43ae04a6789f2ba6f419796ea.jpg', 'gh_20419b74f848', 'admin');
-- ----------------------------
-- Table structure for wx_act_goldeneggs_record
-- ----------------------------
DROP TABLE IF EXISTS `wx_act_goldeneggs_record`;
CREATE TABLE `wx_act_goldeneggs_record` (
`id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT 'ID',
`act_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '活动ID',
`openid` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '抽奖人openid',
`nickname` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '昵称',
`headimgurl` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '玩家头像',
`create_time` datetime(0) NOT NULL COMMENT '抽奖时间',
`awards_id` varchar(36) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '奖项ID',
`realname` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '收货人姓名',
`phone` varchar(15) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '收货人手机号',
`address` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '收货地址',
`seq` int(10) NULL DEFAULT NULL COMMENT '抽奖序号',
`jwid` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '公众号原始id',
`prizes_name` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '奖品名称',
`awards_name` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '奖项名称',
`prizes_state` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '中奖状态(0未中奖,1中奖)',
`code` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '中奖码',
`recieve_status` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '核销状态(1已核销)',
`recieve_time` datetime(0) NULL DEFAULT NULL COMMENT '核销时间',
`verify_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '核销员id',
`relation_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '奖品配置id',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `uniq_actid_seq`(`act_id`, `seq`, `openid`) USING BTREE,
UNIQUE INDEX `act_id`(`act_id`, `awards_id`, `seq`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '砸金蛋参与记录表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Table structure for wx_act_goldeneggs_registration
-- ----------------------------
DROP TABLE IF EXISTS `wx_act_goldeneggs_registration`;
CREATE TABLE `wx_act_goldeneggs_registration` (
`id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT 'ID',
`act_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '活动id',
`openid` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '抽奖人openid',
`nickname` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '抽奖人昵称',
`awards_num` int(10) NULL DEFAULT 0 COMMENT '抽奖次数',
`create_time` datetime(0) NOT NULL COMMENT '创建时间',
`update_time` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '更新时间',
`awards_status` varchar(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '0' COMMENT '抽奖状态0:未抽奖;1:已抽奖;',
`jwid` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '公众号原始ID',
`remain_num_day` int(11) NULL DEFAULT NULL COMMENT '每天的剩余次数',
PRIMARY KEY (`id`) USING BTREE,
INDEX `idx_openidactid`(`openid`, `act_id`) USING BTREE,
INDEX `idx_createtime`(`create_time`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '砸金蛋参与人员表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Table structure for wx_act_goldeneggs_relation
-- ----------------------------
DROP TABLE IF EXISTS `wx_act_goldeneggs_relation`;
CREATE TABLE `wx_act_goldeneggs_relation` (
`id` varchar(36) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT 'ID',
`act_id` varchar(36) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '活动ID',
`prize_id` varchar(36) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '奖品ID',
`award_id` varchar(36) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '奖项ID',
`amount` int(10) NULL DEFAULT NULL COMMENT '数量',
`remain_num` int(10) NULL DEFAULT NULL COMMENT '剩余数量',
`probability` decimal(10, 6) NULL DEFAULT 0.000000 COMMENT '中奖概率',
`jwid` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '公众号原始ID',
PRIMARY KEY (`id`) USING BTREE,
INDEX `idx_actid`(`act_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '砸金蛋奖品配置表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of wx_act_goldeneggs_relation
-- ----------------------------
INSERT INTO `wx_act_goldeneggs_relation` VALUES ('402880ec58afbd900158afff43d00014', '2c9b8381552a77c901552a77c9020000', '402880ee5127c20a01512823001d000c', '402880ee5127c20a0151281efbd00006', 10, 10, 0.100000, 'gh_f268aa85d1c7');
INSERT INTO `wx_act_goldeneggs_relation` VALUES ('402880ec58afbd900158afff43d30015', '2c9b8381552a77c901552a77c9020000', '402880ee5127c20a01512823417c000d', '402880ee5127c20a0151281f395f000', 10, 10, 0.100000, 'gh_f268aa85d1c7');
INSERT INTO `wx_act_goldeneggs_relation` VALUES ('402880ec58afbd900158afff43d60016', '2c9b8381552a77c901552a77c9020000', '402880ee5127c20a015128237268000e', '402880ee5127c20a0151281f69740008', 10, 10, 0.100000, 'gh_f268aa85d1c7');
INSERT INTO `wx_act_goldeneggs_relation` VALUES ('402881e86ecedfaf016ecef4ab2100af', '402881e86ecedfaf016ecef4ab0400a8', '402881e86ecedfaf016ecef4ab1300aa', '402881e86ecedfaf016ecef4ab0c00a9', 10, 10, 0.100000, 'gh_20419b74f848');
INSERT INTO `wx_act_goldeneggs_relation` VALUES ('402881e86ecedfaf016ecef4ab2b00b0', '402881e86ecedfaf016ecef4ab0400a8', '402881e86ecedfaf016ecef4ab1b00ac', '402881e86ecedfaf016ecef4ab1900ab', 10, 10, 0.100000, 'gh_20419b74f848');
INSERT INTO `wx_act_goldeneggs_relation` VALUES ('402881e86ecedfaf016ecef4ab2c00b1', '402881e86ecedfaf016ecef4ab0400a8', '402881e86ecedfaf016ecef4ab1f00ae', '402881e86ecedfaf016ecef4ab1d00ad', 10, 10, 0.100000, 'gh_20419b74f848');
-- ----------------------------
-- Table structure for wx_act_goldeneggs_share_record
-- ----------------------------
DROP TABLE IF EXISTS `wx_act_goldeneggs_share_record`;
CREATE TABLE `wx_act_goldeneggs_share_record` (
`id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '序号',
`act_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '活动id',
`openid` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT 'openid',
`rel_date` date NULL DEFAULT NULL COMMENT '分享时间',
`type` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '分享类型:0朋友,1朋友圈',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
PRIMARY KEY (`id`) USING BTREE,
INDEX `idx_actid_openid_reldate`(`act_id`, `openid`, `rel_date`) USING BTREE,
INDEX `idx_actid_openid_reldate_type`(`act_id`, `openid`, `rel_date`, `type`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '分享记录表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Table structure for wx_act_goldeneggs_verify
-- ----------------------------
DROP TABLE IF EXISTS `wx_act_goldeneggs_verify`;
CREATE TABLE `wx_act_goldeneggs_verify` (
`id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' COMMENT 'id',
`act_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '活动id',
`openid` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '核销员id',
`status` varchar(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '状态(0启用/1未启用)',
`headimg` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '微信头像',
`nickname` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '微信昵称',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '砸金蛋审核员表' ROW_FORMAT = Dynamic;
INSERT INTO `jw_system_auth` VALUES ('1333613596', 'aa735943eb4410268c0028dacdk5e30f', '商城类', null, '0', null, '', '', '9', '1', null, '0', 'fa-shopping-cart fa-lg');
SET FOREIGN_KEY_CHECKS = 1;
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。