-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathswgpro.sql
More file actions
149 lines (139 loc) · 115 KB
/
swgpro.sql
File metadata and controls
149 lines (139 loc) · 115 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
/*
Navicat MySQL Data Transfer
Source Server : 3306
Source Server Version : 50553
Source Host : localhost:3306
Source Database : swgpro
Target Server Type : MYSQL
Target Server Version : 50553
File Encoding : 65001
Date: 2018-09-01 19:10:55
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for categories
-- ----------------------------
DROP TABLE IF EXISTS `categories`;
CREATE TABLE `categories` (
`id` varchar(32) NOT NULL COMMENT '信息的分类表',
`name` varchar(120) NOT NULL DEFAULT '' COMMENT '分类名',
`code` varchar(60) DEFAULT NULL COMMENT '分类的code,在url中使用',
`pid` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT '主类',
`info_model_id` int(11) DEFAULT '0' COMMENT '分析所属的模型',
`path` varchar(255) DEFAULT NULL COMMENT '次类',
`rank` int(11) NOT NULL DEFAULT '0' COMMENT '导航栏排序',
`is_hide` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0:导航栏不显示,,1:导航栏显示',
`is_display` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '0商品不显示1:商品显示',
`is_ehuo` tinyint(1) DEFAULT '1' COMMENT '是否在易货商城显示',
`can_upload_image` smallint(1) DEFAULT NULL COMMENT '此分类是否可以上传图片',
`created_at` int(11) DEFAULT NULL COMMENT '数据添加时间缀,单位秒',
`updated_at` int(11) DEFAULT NULL COMMENT '数据更新时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of categories
-- ----------------------------
INSERT INTO `categories` VALUES ('1d995df6a4594c07a1f42625f520c1b3', '用户', null, '2', '0', null, '1', '1', '1', '1', null, null, null);
INSERT INTO `categories` VALUES ('4007062df9b84e57b0232af38ddc7300', '购物车', null, '2', '0', null, '3', '1', '1', '1', null, null, null);
INSERT INTO `categories` VALUES ('a0aa295178694df0a49a08f167f42760', 'api接口', null, '1', '0', null, '1', '1', '1', '1', null, null, null);
INSERT INTO `categories` VALUES ('f2e6cc2ff4e841278238f64a7279ebf3', '非码小程序框架', null, '1', '0', null, '2', '1', '1', '1', null, null, null);
INSERT INTO `categories` VALUES ('f44bb4d0feec4257b4932aff842cf34f', '门店信息', null, '2', '0', null, '2', '1', '1', '1', null, null, null);
-- ----------------------------
-- Table structure for informations
-- ----------------------------
DROP TABLE IF EXISTS `informations`;
CREATE TABLE `informations` (
`id` varchar(32) NOT NULL,
`title` varchar(100) NOT NULL COMMENT '信息的标题',
`category_id` varchar(32) NOT NULL DEFAULT '0' COMMENT '分类',
`category_name` varchar(32) NOT NULL COMMENT '分类名称',
`category_pid` int(9) DEFAULT '0' COMMENT '分类的父ID',
`user_id` int(11) NOT NULL DEFAULT '0' COMMENT '发布信息的用户ID',
`firm_id` int(11) NOT NULL DEFAULT '0' COMMENT '商家ID',
`province_id` int(11) DEFAULT '0' COMMENT '省',
`city_id` int(8) NOT NULL DEFAULT '0' COMMENT '信息所',
`area_id` int(11) DEFAULT '1',
`address_prefix` varchar(120) DEFAULT '' COMMENT '地址前缀',
`address` varchar(120) DEFAULT '' COMMENT '详细地址',
`is_hot` int(11) DEFAULT '0' COMMENT '热门,1是,0不是',
`is_recommend` int(11) DEFAULT '0' COMMENT '是否推荐,1是,0不是',
`is_new` int(1) DEFAULT '0' COMMENT '0:二手1:新品',
`thumb` varchar(200) DEFAULT '' COMMENT '列表图缩略图',
`begin_at` int(11) DEFAULT '0' COMMENT '开始时间',
`end_at` int(11) DEFAULT '0' COMMENT '结束时间',
`api_import` text COMMENT '入参示例',
`api_export` text COMMENT '出参示例',
`content` text NOT NULL COMMENT '信息详细内容',
`contact_who` varchar(60) DEFAULT '' COMMENT '联系人',
`qq` char(12) DEFAULT '' COMMENT 'qq号',
`email` varchar(50) DEFAULT '' COMMENT '邮件',
`tel` varchar(30) DEFAULT '' COMMENT '电话',
`hit` int(10) DEFAULT '0' COMMENT '点击数',
`is_member` tinyint(1) DEFAULT '0' COMMENT '是否会员',
`manage_pwd` char(32) DEFAULT '' COMMENT '管理密码',
`ip` varchar(20) DEFAULT '' COMMENT '发布者IP',
`info_level` tinyint(1) DEFAULT '0',
`img_count` smallint(3) DEFAULT '0',
`status` tinyint(3) DEFAULT '0' COMMENT '状态-1:审核未通过,0:未审核,1:审核通过',
`created_at` int(11) DEFAULT '0',
`updated_at` int(11) DEFAULT '0',
`submit_time` int(11) NOT NULL DEFAULT '0' COMMENT '添加时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of informations
-- ----------------------------
INSERT INTO `informations` VALUES ('914742aeef924516a27b74b239da634d', '查询附近的门店', 'f44bb4d0feec4257b4932aff842cf34f', '门店信息', '0', '0', '0', '0', '0', '1', '', '', '0', '0', '0', '', '0', '0', '<pre style=\"box-sizing: border-box; font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 12px; line-height: 1.45; font-family: SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, Courier, monospace; margin-top: 0px; margin-bottom: 16px; word-wrap: normal; padding: 16px; overflow: auto; background-color: #f6f8fa; border-radius: 3px; color: #24292e;\" data-source-line=\"145\"><code class=\"hljs\" style=\"box-sizing: border-box; display: inline; overflow: visible; padding: 0px; color: #333333; background: transparent; font-family: SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, Courier, monospace, sans-serif; margin: 0px; border-radius: 3px; word-break: normal; border: 0px; line-height: inherit; word-wrap: normal;\">{\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"Latitude\"</span>:<span class=\"hljs-number\" style=\"box-sizing: border-box; color: #008080;\">31.2494</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"Longitude\"</span>:<span class=\"hljs-number\" style=\"box-sizing: border-box; color: #008080;\">121.397</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"City\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"\"</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"userCity\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"\"</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"Address\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"\"</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"UserId\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"\"</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"PageNo\"</span>:<span class=\"hljs-number\" style=\"box-sizing: border-box; color: #008080;\">1</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"PageSize\"</span>:<span class=\"hljs-number\" style=\"box-sizing: border-box; color: #008080;\">10</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"keyword\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"\"</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"withTag\"</span>:<span class=\"hljs-number\" style=\"box-sizing: border-box; color: #008080;\">1</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"withPic\"</span>:<span class=\"hljs-number\" style=\"box-sizing: border-box; color: #008080;\">1</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"withBanner\"</span>:<span class=\"hljs-number\" style=\"box-sizing: border-box; color: #008080;\">1</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"Lbs\"</span>:{\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"Radius\"</span>:<span class=\"hljs-number\" style=\"box-sizing: border-box; color: #008080;\">80</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"Count\"</span>:<span class=\"hljs-number\" style=\"box-sizing: border-box; color: #008080;\">10</span>\r\n }\r\n}</code></pre>\r\n<p><audio style=\"display: none;\" controls=\"controls\"></audio></p>\r\n<p><audio style=\"display: none;\" controls=\"controls\"></audio></p>\r\n<p><audio style=\"display: none;\" controls=\"controls\"></audio></p>', '<pre style=\"box-sizing: border-box; font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 12px; line-height: 1.45; font-family: SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, Courier, monospace; margin-top: 0px; margin-bottom: 16px; word-wrap: normal; padding: 16px; overflow: auto; background-color: #f6f8fa; border-radius: 3px; color: #24292e;\" data-source-line=\"145\"><code class=\"hljs\" style=\"box-sizing: border-box; display: inline; overflow: visible; padding: 0px; color: #333333; background: transparent; font-family: SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, Courier, monospace, sans-serif; margin: 0px; border-radius: 3px; word-break: normal; border: 0px; line-height: inherit; word-wrap: normal;\">{\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"msgCode\"</span>:<span class=\"hljs-number\" style=\"box-sizing: border-box; color: #008080;\">100</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"msg\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"Success\"</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"data\"</span>:{\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"currentCity\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"<span class=\"zh-hans\" style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, sans-serif;\">上海市</span>\"</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"currentAddress\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"<span class=\"zh-hans\" style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, sans-serif;\">上海市普陀区真如镇街道大渡河路</span>1668<span class=\"zh-hans\" style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, sans-serif;\">号</span>C<span class=\"zh-hans\" style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, sans-serif;\">楼上海市普陀区人民政府</span>\"</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"storesList\"</span>:[\r\n {\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"expectSendTime\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"\"</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"storeId\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"99998\"</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"name\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"<span class=\"zh-hans\" style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, sans-serif;\">天香果园测试门店</span>1\"</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"phone\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"\"</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"shopAddress\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"<span class=\"zh-hans\" style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, sans-serif;\">上海市普陀区祁连山路</span>2888<span class=\"zh-hans\" style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, sans-serif;\">号耀光中环国际</span>B<span class=\"zh-hans\" style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, sans-serif;\">座</span>1803<span class=\"zh-hans\" style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, sans-serif;\">室</span>\"</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"distance\"</span>:<span class=\"hljs-number\" style=\"box-sizing: border-box; color: #008080;\">2725</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"longitude\"</span>:<span class=\"hljs-number\" style=\"box-sizing: border-box; color: #008080;\">121.377317</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"latitude\"</span>:<span class=\"hljs-number\" style=\"box-sizing: border-box; color: #008080;\">31.267184</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"haveConsumed\"</span>:<span class=\"hljs-number\" style=\"box-sizing: border-box; color: #008080;\">0</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"businessState\"</span>:<span class=\"hljs-number\" style=\"box-sizing: border-box; color: #008080;\">1</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"businessInfos\"</span>:[\r\n {\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"begintime\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"00:00\"</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"endtime\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"24:00\"</span>\r\n },\r\n {\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"begintime\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"00:00\"</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"endtime\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"24:00\"</span>\r\n },\r\n {\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"begintime\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"00:00\"</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"endtime\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"24:00\"</span>\r\n },\r\n {\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"begintime\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"00:00\"</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"endtime\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"24:00\"</span>\r\n },\r\n {\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"begintime\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"00:00\"</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"endtime\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"24:00\"</span>\r\n },\r\n {\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"begintime\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"00:00\"</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"endtime\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"24:00\"</span>\r\n },\r\n {\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"begintime\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"00:00\"</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"endtime\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"24:00\"</span>\r\n }\r\n ]\r\n },\r\n {\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"expectSendTime\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"\"</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"storeId\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"txtest9999\"</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"name\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"txtest99992\"</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"phone\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"\"</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"shopAddress\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"<span class=\"zh-hans\" style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, sans-serif;\">上海市普陀区祁连山路</span>2888<span class=\"zh-hans\" style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, sans-serif;\">号耀光中环国际</span>B<span class=\"zh-hans\" style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, sans-serif;\">座</span>1803<span class=\"zh-hans\" style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, sans-serif;\">室</span>\"</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"distance\"</span>:<span class=\"hljs-number\" style=\"box-sizing: border-box; color: #008080;\">3007</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"longitude\"</span>:<span class=\"hljs-number\" style=\"box-sizing: border-box; color: #008080;\">121.373317</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"latitude\"</span>:<span class=\"hljs-number\" style=\"box-sizing: border-box; color: #008080;\">31.267284</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"haveConsumed\"</span>:<span class=\"hljs-number\" style=\"box-sizing: border-box; color: #008080;\">0</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"businessState\"</span>:<span class=\"hljs-number\" style=\"box-sizing: border-box; color: #008080;\">1</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"businessInfos\"</span>:[\r\n {\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"begintime\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"00:00\"</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"endtime\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"24:00\"</span>\r\n },\r\n {\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"begintime\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"00:00\"</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"endtime\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"24:00\"</span>\r\n },\r\n {\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"begintime\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"00:00\"</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"endtime\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"24:00\"</span>\r\n },\r\n {\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"begintime\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"00:00\"</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"endtime\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"24:00\"</span>\r\n },\r\n {\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"begintime\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"00:00\"</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"endtime\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"24:00\"</span>\r\n },\r\n {\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"begintime\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"00:00\"</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"endtime\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"24:00\"</span>\r\n },\r\n {\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"begintime\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"00:00\"</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"endtime\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"24:00\"</span>\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n}</code></pre>\r\n<p><audio style=\"display: none;\" controls=\"controls\"></audio></p>\r\n<p><audio style=\"display: none;\" controls=\"controls\"></audio></p>\r\n<p><audio style=\"display: none;\" controls=\"controls\"></audio></p>', '{\"method\":\"POST\",\"api\":\"/GetStores\"}', '', '', '', '', '0', '0', '', '', '0', '0', '0', '0', '0', '1535708415');
INSERT INTO `informations` VALUES ('c28e10e563f24c72b4a0a75c6b244941', '用户登录', '1d995df6a4594c07a1f42625f520c1b3', '用户', '0', '0', '0', '0', '0', '1', '', '', '0', '0', '0', '', '0', '0', '<pre style=\"box-sizing: border-box; font-family: SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, Courier, monospace; font-size: 12px; margin-top: 0px; margin-bottom: 16px; font-stretch: normal; line-height: 1.45; word-wrap: normal; padding: 16px; overflow: auto; background-color: #f6f8fa; border-radius: 3px; color: #24292e;\" data-source-line=\"49\"><code class=\"hljs\" style=\"box-sizing: border-box; display: inline; overflow: visible; padding: 0px; color: #333333; background: transparent; font-family: SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, Courier, monospace, sans-serif; margin: 0px; border-radius: 3px; word-break: normal; border: 0px; line-height: inherit; word-wrap: normal;\">{<br /> <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"code\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"0817VGTX0CwNK22U7KXX0qGuTX07VGT5\"</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"channelType\"</span>:<span class=\"hljs-number\" style=\"box-sizing: border-box; color: #008080;\">10007</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"mobile\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"\"</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"validCode\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"\"</span>\r\n}\r\n</code></pre>\r\n<p><code class=\"hljs\" style=\"box-sizing: border-box; display: inline; overflow: visible; padding: 0px; color: #333333; background: transparent; font-family: SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, Courier, monospace, sans-serif; margin: 0px; border-radius: 3px; word-break: normal; border: 0px; line-height: inherit; word-wrap: normal;\"> </code></p>', '<pre style=\"box-sizing: border-box; font-family: SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, Courier, monospace; font-size: 12px; margin-top: 0px; margin-bottom: 16px; font-stretch: normal; line-height: 1.45; word-wrap: normal; padding: 16px; overflow: auto; background-color: #f6f8fa; border-radius: 3px; color: #24292e;\" data-source-line=\"49\">{<br /><code class=\"hljs\" style=\"box-sizing: border-box; display: inline; overflow: visible; padding: 0px; color: #333333; background: transparent; font-family: SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, Courier, monospace, sans-serif; margin: 0px; border-radius: 3px; word-break: normal; border: 0px; line-height: inherit; word-wrap: normal;\"> <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"msgCode\"</span>:<span class=\"hljs-number\" style=\"box-sizing: border-box; color: #008080;\">100</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"msg\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"Success\"</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"data\"</span>:{\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"userId\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"115331740742915458\"</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"mobile\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"13671518573\"</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"headImageUrl\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"https://wx.qlogo.cn/mmopen/vi_32/DYAIOgq83eqkzIA7jsbA5fdVmM8TicNrUhaksmB9nNZmvRuX0CnR2SciadXZPNvdUgcNWuicGSuLKO6Htib0kV5dTA/132\"</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"nickName\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"shidj\"</span>\r\n }\r\n}</code></pre>', '{\"method\":\"GET\",\"api\":\"/User/login\"}', '', '', '', '', '0', '0', '', '', '0', '0', '0', '0', '0', '1535788853');
INSERT INTO `informations` VALUES ('d5cff456abf34cc08b7dd8d755f496e2', '用户信息编辑', '1d995df6a4594c07a1f42625f520c1b3', '用户', '0', '0', '0', '0', '0', '1', '', '', '0', '0', '0', '', '0', '0', '<pre style=\"box-sizing: border-box; font-family: SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, Courier, monospace; font-size: 12px; margin-top: 0px; margin-bottom: 16px; font-stretch: normal; line-height: 1.45; word-wrap: normal; padding: 16px; overflow: auto; background-color: #f6f8fa; border-radius: 3px; color: #24292e;\" data-source-line=\"90\">{<br /><code class=\"hljs\" style=\"box-sizing: border-box; display: inline; overflow: visible; padding: 0px; color: #333333; background: transparent; font-family: SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, Courier, monospace, sans-serif; margin: 0px; border-radius: 3px; word-break: normal; border: 0px; line-height: inherit; word-wrap: normal;\"> <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"partnerId\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"DD7576AB-6DDE-4203-8977-55DE2C3DBEA8\"</span>, <span class=\"hljs-comment\" style=\"box-sizing: border-box; color: #999988; font-style: italic;\">//<span class=\"zh-hans\" style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, sans-serif;\">商户编号</span></span>\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"openId\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"string\"</span>, <span class=\"hljs-comment\" style=\"box-sizing: border-box; color: #999988; font-style: italic;\">//用户Id</span>\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"channelCode\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"xcx\"</span>, <span class=\"hljs-comment\" style=\"box-sizing: border-box; color: #999988; font-style: italic;\">//<span class=\"zh-hans\" style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, sans-serif;\">渠道编号</span> <span class=\"zh-hans\" style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, sans-serif;\">渠道编码</span>{xcx:<span class=\"zh-hans\" style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, sans-serif;\">微信小程序,</span>wxysk:<span class=\"zh-hans\" style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, sans-serif;\">微信原生卡,</span>wxgzh:<span class=\"zh-hans\" style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, sans-serif;\">微信公众号,</span>zfbxcx:<span class=\"zh-hans\" style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, sans-serif;\">支付宝小程序,</span>zfbysk:<span class=\"zh-hans\" style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, sans-serif;\">支付宝原生卡,</span>zfbshh:<span class=\"zh-hans\" style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, sans-serif;\">支付宝生活号,</span>xxdr3<span class=\"zh-hans\" style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, sans-serif;\">:线下导入,</span>dsf:<span class=\"zh-hans\" style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, sans-serif;\">第三方</span> }</span>\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"ver\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"1\"</span>, <span class=\"hljs-comment\" style=\"box-sizing: border-box; color: #999988; font-style: italic;\">//<span class=\"zh-hans\" style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, sans-serif;\">版本 </span></span>\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"sexFlag\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">1</span>, <span class=\"hljs-comment\" style=\"box-sizing: border-box; color: #999988; font-style: italic;\">//<span class=\"zh-hans\" style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, sans-serif;\">性别 男1女2</span></span>\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"birthday\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"1990-01-01\"</span>, <span class=\"hljs-comment\" style=\"box-sizing: border-box; color: #999988; font-style: italic;\">//<span class=\"zh-hans\" style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, sans-serif;\">生日</span></span>\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"email\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"123456789@qq.com\"</span>, <span class=\"hljs-comment\" style=\"box-sizing: border-box; color: #999988; font-style: italic;\">//<span class=\"zh-hans\" style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, sans-serif;\">邮箱</span></span>\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"province\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"<span class=\"zh-hans\" style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, sans-serif;\">香港</span>\"</span>, <span class=\"hljs-comment\" style=\"box-sizing: border-box; color: #999988; font-style: italic;\">//<span class=\"zh-hans\" style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, sans-serif;\">省份</span></span>\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"city\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"<span class=\"zh-hans\" style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, sans-serif;\">香港</span>\"</span> <span class=\"hljs-comment\" style=\"box-sizing: border-box; color: #999988; font-style: italic;\">//<span class=\"zh-hans\" style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, sans-serif;\">城市</span></span>\r\n}</code></pre>', '<pre style=\"box-sizing: border-box; font-family: SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, Courier, monospace; font-size: 12px; margin-top: 0px; margin-bottom: 16px; font-stretch: normal; line-height: 1.45; word-wrap: normal; padding: 16px; overflow: auto; background-color: #f6f8fa; border-radius: 3px; color: #24292e;\" data-source-line=\"90\">{<br /><code class=\"hljs\" style=\"box-sizing: border-box; display: inline; overflow: visible; padding: 0px; color: #333333; background: transparent; font-family: SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, Courier, monospace, sans-serif; margin: 0px; border-radius: 3px; word-break: normal; border: 0px; line-height: inherit; word-wrap: normal;\"> <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"code\"</span>: <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"100\"</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"message\"</span>: <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"\"</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"result\"</span>: <span class=\"hljs-literal\" style=\"box-sizing: border-box; color: #008080;\">null</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"ver\"</span>: <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"1\"</span>\r\n}</code></pre>', '{\"method\":\"GET\",\"api\":\"/User/MemberInfoEditor\"}', '', '', '', '', '0', '0', '', '', '0', '0', '0', '0', '0', '1535789352');
INSERT INTO `informations` VALUES ('e29f7cc525fb497b817c25538923d6d1', '购物车列表', '4007062df9b84e57b0232af38ddc7300', '购物车', '0', '0', '0', '0', '0', '1', '', '', '0', '0', '0', '', '0', '0', '<p style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: 14px; orphans: 3; widows: 3; margin-top: 0px; margin-bottom: 0.85em; line-height: 2; color: #333333; font-family: \'Helvetica Neue\', \'Hiragino Sans GB\', \'Microsoft YaHei\', 黑体, Arial, sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: 0.2px; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff; text-decoration-style: initial; text-decoration-color: initial;\"> </p>\r\n<pre class=\"CodeContainer\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-family: Menlo, Monaco, Consolas, \'Courier New\', monospace; font-size: 12.025px; white-space: pre-wrap; break-inside: avoid; direction: ltr; margin: 0px; padding: 8.5px; border: 1px solid rgba(0, 0, 0, 0.15); color: #333333; overflow: auto; word-wrap: break-word; background: #f5f5f5; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: 0.2px; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial; border-radius: 4px; line-height: 18px; word-break: break-all;\"><span class=\"ObjectBrace\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #00aa00; font-weight: bold;\">{</span><img style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; border: none; font-size: inherit; break-inside: avoid; max-width: 100%; margin: 0px 0px -1px; padding: 0px; vertical-align: middle; cursor: pointer;\" src=\"http://tool.oschina.net/tools/json_format/Expanded.gif\" /><span class=\"collapsible\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit;\">\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"msgCode\"</span>: <span class=\"Number\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #aa00aa;\">100<span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"msg\"</span>: <span class=\"String\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #007777;\">\"Success\"<span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"data\"</span>: <span class=\"ObjectBrace\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #00aa00; font-weight: bold;\">{</span><img style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; border: none; font-size: inherit; break-inside: avoid; max-width: 100%; margin: 0px 0px -1px; padding: 0px; vertical-align: middle; cursor: pointer;\" src=\"http://tool.oschina.net/tools/json_format/Expanded.gif\" /><span class=\"collapsible\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit;\">\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"DishCategorys\"</span>: <span class=\"ArrayBrace\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #0033ff; font-weight: bold;\">[</span><img style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; border: none; font-size: inherit; break-inside: avoid; max-width: 100%; margin: 0px 0px -1px; padding: 0px; vertical-align: middle; cursor: pointer;\" src=\"http://tool.oschina.net/tools/json_format/Expanded.gif\" /><span class=\"collapsible\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit;\">\r\n <span class=\"ObjectBrace\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #00aa00; font-weight: bold;\">{</span><img style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; border: none; font-size: inherit; break-inside: avoid; max-width: 100%; margin: 0px 0px -1px; padding: 0px; vertical-align: middle; cursor: pointer;\" src=\"http://tool.oschina.net/tools/json_format/Expanded.gif\" /><span class=\"collapsible\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit;\">\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"category\"</span>: <span class=\"ObjectBrace\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #00aa00; font-weight: bold;\">{ }</span><span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> \r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"dishList\"</span>: <span class=\"ArrayBrace\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #0033ff; font-weight: bold;\">[</span><img style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; border: none; font-size: inherit; break-inside: avoid; max-width: 100%; margin: 0px 0px -1px; padding: 0px; vertical-align: middle; cursor: pointer;\" src=\"http://tool.oschina.net/tools/json_format/Expanded.gif\" /><span class=\"collapsible\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit;\">\r\n <span class=\"ObjectBrace\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #00aa00; font-weight: bold;\">{</span><img style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; border: none; font-size: inherit; break-inside: avoid; max-width: 100%; margin: 0px 0px -1px; padding: 0px; vertical-align: middle; cursor: pointer;\" src=\"http://tool.oschina.net/tools/json_format/Expanded.gif\" /><span class=\"collapsible\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit;\">\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"id\"</span>: <span class=\"String\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #007777;\">\"117692712096069437\"<span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"dishCode\"</span>: <span class=\"String\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #007777;\">\"1023\"<span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"name\"</span>: <span class=\"String\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #007777;\">\"南非白柚2个 600g以上\"<span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"unit\"</span>: <span class=\"String\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #007777;\">\"份\"<span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"qty\"</span>: <span class=\"Number\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #aa00aa;\">0<span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"originalPrice\"</span>: <span class=\"Number\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #aa00aa;\">0<span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"price\"</span>: <span class=\"Number\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #aa00aa;\">890<span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"pic\"</span>: <span class=\"String\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #007777;\">\"http://img0.sandload.cn/qdm_master1023_1534993683.jpg\"<span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"minOrderNum\"</span>: <span class=\"Number\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #aa00aa;\">0<span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"dishDescription\"</span>: <span class=\"String\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #007777;\">\"\"<span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"rank\"</span>: <span class=\"Number\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #aa00aa;\">0<span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"dishStatus\"</span>: <span class=\"Number\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #aa00aa;\">2<span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"dishType\"</span>: <span class=\"Number\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #aa00aa;\">8<span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"productSpecification\"</span>: <span class=\"ArrayBrace\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #0033ff; font-weight: bold;\">[ ]</span><span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> \r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"dishTags\"</span>: <span class=\"ArrayBrace\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #0033ff; font-weight: bold;\">[ ]</span><span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> \r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"monthSold\"</span>: <span class=\"Number\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #aa00aa;\">0<span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"packagePrice\"</span>: <span class=\"Number\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #aa00aa;\">0<span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"packageAmount\"</span>: <span class=\"Number\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #aa00aa;\">0<span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"packageFee\"</span>: <span class=\"Number\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #aa00aa;\">0<span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"group\"</span>: <span class=\"Number\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #aa00aa;\">0<span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"remark\"</span>: <span class=\"String\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #007777;\">\"\"</span>\r\n </span><span class=\"ObjectBrace\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #00aa00; font-weight: bold;\">}</span>\r\n </span><span class=\"ArrayBrace\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #0033ff; font-weight: bold;\">]</span><span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> \r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"dishCount\"</span>: <span class=\"Number\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #aa00aa;\">1</span>\r\n </span><span class=\"ObjectBrace\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #00aa00; font-weight: bold;\">}</span>\r\n </span><span class=\"ArrayBrace\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #0033ff; font-weight: bold;\">]</span>\r\n </span><span class=\"ObjectBrace\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #00aa00; font-weight: bold;\">}</span>\r\n</span><span class=\"ObjectBrace\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #00aa00; font-weight: bold;\">}</span></pre>', '<p style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: 14px; orphans: 3; widows: 3; margin-top: 0px; margin-bottom: 0.85em; line-height: 2; color: #333333; font-family: \'Helvetica Neue\', \'Hiragino Sans GB\', \'Microsoft YaHei\', 黑体, Arial, sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: 0.2px; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff; text-decoration-style: initial; text-decoration-color: initial;\"> </p>\r\n<pre class=\"CodeContainer\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-family: Menlo, Monaco, Consolas, \'Courier New\', monospace; font-size: 12.025px; white-space: pre-wrap; break-inside: avoid; direction: ltr; margin: 0px; padding: 8.5px; border: 1px solid rgba(0, 0, 0, 0.15); color: #333333; overflow: auto; word-wrap: break-word; background: #f5f5f5; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: 0.2px; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial; border-radius: 4px; line-height: 18px; word-break: break-all;\"><span class=\"ObjectBrace\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #00aa00; font-weight: bold;\">{</span><img style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; border: none; font-size: inherit; break-inside: avoid; max-width: 100%; margin: 0px 0px -1px; padding: 0px; vertical-align: middle; cursor: pointer;\" src=\"http://tool.oschina.net/tools/json_format/Expanded.gif\" /><span class=\"collapsible\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit;\">\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"msgCode\"</span>: <span class=\"Number\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #aa00aa;\">100<span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"msg\"</span>: <span class=\"String\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #007777;\">\"Success\"<span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"data\"</span>: <span class=\"ObjectBrace\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #00aa00; font-weight: bold;\">{</span><img style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; border: none; font-size: inherit; break-inside: avoid; max-width: 100%; margin: 0px 0px -1px; padding: 0px; vertical-align: middle; cursor: pointer;\" src=\"http://tool.oschina.net/tools/json_format/Expanded.gif\" /><span class=\"collapsible\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit;\">\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"DishCategorys\"</span>: <span class=\"ArrayBrace\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #0033ff; font-weight: bold;\">[</span><img style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; border: none; font-size: inherit; break-inside: avoid; max-width: 100%; margin: 0px 0px -1px; padding: 0px; vertical-align: middle; cursor: pointer;\" src=\"http://tool.oschina.net/tools/json_format/Expanded.gif\" /><span class=\"collapsible\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit;\">\r\n <span class=\"ObjectBrace\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #00aa00; font-weight: bold;\">{</span><img style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; border: none; font-size: inherit; break-inside: avoid; max-width: 100%; margin: 0px 0px -1px; padding: 0px; vertical-align: middle; cursor: pointer;\" src=\"http://tool.oschina.net/tools/json_format/Expanded.gif\" /><span class=\"collapsible\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit;\">\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"category\"</span>: <span class=\"ObjectBrace\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #00aa00; font-weight: bold;\">{ }</span><span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> \r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"dishList\"</span>: <span class=\"ArrayBrace\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #0033ff; font-weight: bold;\">[</span><img style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; border: none; font-size: inherit; break-inside: avoid; max-width: 100%; margin: 0px 0px -1px; padding: 0px; vertical-align: middle; cursor: pointer;\" src=\"http://tool.oschina.net/tools/json_format/Expanded.gif\" /><span class=\"collapsible\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit;\">\r\n <span class=\"ObjectBrace\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #00aa00; font-weight: bold;\">{</span><img style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; border: none; font-size: inherit; break-inside: avoid; max-width: 100%; margin: 0px 0px -1px; padding: 0px; vertical-align: middle; cursor: pointer;\" src=\"http://tool.oschina.net/tools/json_format/Expanded.gif\" /><span class=\"collapsible\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit;\">\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"id\"</span>: <span class=\"String\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #007777;\">\"117692712096069437\"<span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"dishCode\"</span>: <span class=\"String\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #007777;\">\"1023\"<span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"name\"</span>: <span class=\"String\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #007777;\">\"南非白柚2个 600g以上\"<span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"unit\"</span>: <span class=\"String\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #007777;\">\"份\"<span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"qty\"</span>: <span class=\"Number\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #aa00aa;\">0<span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"originalPrice\"</span>: <span class=\"Number\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #aa00aa;\">0<span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"price\"</span>: <span class=\"Number\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #aa00aa;\">890<span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"pic\"</span>: <span class=\"String\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #007777;\">\"http://img0.sandload.cn/qdm_master1023_1534993683.jpg\"<span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"minOrderNum\"</span>: <span class=\"Number\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #aa00aa;\">0<span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"dishDescription\"</span>: <span class=\"String\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #007777;\">\"\"<span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"rank\"</span>: <span class=\"Number\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #aa00aa;\">0<span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"dishStatus\"</span>: <span class=\"Number\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #aa00aa;\">2<span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"dishType\"</span>: <span class=\"Number\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #aa00aa;\">8<span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"productSpecification\"</span>: <span class=\"ArrayBrace\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #0033ff; font-weight: bold;\">[ ]</span><span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> \r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"dishTags\"</span>: <span class=\"ArrayBrace\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #0033ff; font-weight: bold;\">[ ]</span><span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> \r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"monthSold\"</span>: <span class=\"Number\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #aa00aa;\">0<span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"packagePrice\"</span>: <span class=\"Number\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #aa00aa;\">0<span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"packageAmount\"</span>: <span class=\"Number\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #aa00aa;\">0<span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"packageFee\"</span>: <span class=\"Number\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #aa00aa;\">0<span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"group\"</span>: <span class=\"Number\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #aa00aa;\">0<span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"remark\"</span>: <span class=\"String\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #007777;\">\"\"</span>\r\n </span><span class=\"ObjectBrace\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #00aa00; font-weight: bold;\">}</span>\r\n </span><span class=\"ArrayBrace\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #0033ff; font-weight: bold;\">]</span><span class=\"Comma\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #000000; font-weight: bold;\">,</span> \r\n <span class=\"PropertyName\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #cc0000; font-weight: bold;\">\"dishCount\"</span>: <span class=\"Number\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #aa00aa;\">1</span>\r\n </span><span class=\"ObjectBrace\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #00aa00; font-weight: bold;\">}</span>\r\n </span><span class=\"ArrayBrace\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #0033ff; font-weight: bold;\">]</span>\r\n </span><span class=\"ObjectBrace\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #00aa00; font-weight: bold;\">}</span>\r\n</span><span class=\"ObjectBrace\" style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; color: #00aa00; font-weight: bold;\">}</span></pre>', '{\"method\":\"GET\",\"api\":\"/Cart/List\"}', '', '', '', '', '0', '0', '', '', '0', '0', '0', '0', '0', '1535789727');
INSERT INTO `informations` VALUES ('ebd7439851224b10b88d7da4e4521b29', '用户注册', '1d995df6a4594c07a1f42625f520c1b3', '用户', '0', '0', '0', '0', '0', '1', '', '', '0', '0', '0', '', '0', '0', '<pre class=\"CodeContainer\" style=\"margin-top: 0px; margin-bottom: 0px; padding: 8.5px; font-family: Menlo, Monaco, Consolas, \'Courier New\', monospace; font-size: 12.025px; color: #333333; border-radius: 4px; line-height: 18px; word-break: break-all; word-wrap: break-word; white-space: pre-wrap; background-color: #f5f5f5; border: 1px solid rgba(0, 0, 0, 0.15);\"><span class=\"ObjectBrace\" style=\"color: #00aa00; font-weight: bold;\">{</span><img style=\"margin: 0px 0px -1px; padding: 0px; border: none; max-width: 100%; vertical-align: middle; cursor: pointer;\" src=\"http://tool.oschina.net/tools/json_format/Expanded.gif\" /><span class=\"collapsible\">\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"msgCode\"</span>: <span class=\"Number\" style=\"color: #aa00aa;\">100<span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"msg\"</span>: <span class=\"String\" style=\"color: #007777;\">\"Success\"<span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"data\"</span>: <span class=\"ObjectBrace\" style=\"color: #00aa00; font-weight: bold;\">{</span><img style=\"margin: 0px 0px -1px; padding: 0px; border: none; max-width: 100%; vertical-align: middle; cursor: pointer;\" src=\"http://tool.oschina.net/tools/json_format/Expanded.gif\" /><span class=\"collapsible\">\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"DishCategorys\"</span>: <span class=\"ArrayBrace\" style=\"color: #0033ff; font-weight: bold;\">[</span><img style=\"margin: 0px 0px -1px; padding: 0px; border: none; max-width: 100%; vertical-align: middle; cursor: pointer;\" src=\"http://tool.oschina.net/tools/json_format/Expanded.gif\" /><span class=\"collapsible\">\r\n <span class=\"ObjectBrace\" style=\"color: #00aa00; font-weight: bold;\">{</span><img style=\"margin: 0px 0px -1px; padding: 0px; border: none; max-width: 100%; vertical-align: middle; cursor: pointer;\" src=\"http://tool.oschina.net/tools/json_format/Expanded.gif\" /><span class=\"collapsible\">\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"category\"</span>: <span class=\"ObjectBrace\" style=\"color: #00aa00; font-weight: bold;\">{ }</span><span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> \r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"dishList\"</span>: <span class=\"ArrayBrace\" style=\"color: #0033ff; font-weight: bold;\">[</span><img style=\"margin: 0px 0px -1px; padding: 0px; border: none; max-width: 100%; vertical-align: middle; cursor: pointer;\" src=\"http://tool.oschina.net/tools/json_format/Expanded.gif\" /><span class=\"collapsible\">\r\n <span class=\"ObjectBrace\" style=\"color: #00aa00; font-weight: bold;\">{</span><img style=\"margin: 0px 0px -1px; padding: 0px; border: none; max-width: 100%; vertical-align: middle; cursor: pointer;\" src=\"http://tool.oschina.net/tools/json_format/Expanded.gif\" /><span class=\"collapsible\">\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"id\"</span>: <span class=\"String\" style=\"color: #007777;\">\"117692712096069437\"<span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"dishCode\"</span>: <span class=\"String\" style=\"color: #007777;\">\"1023\"<span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"name\"</span>: <span class=\"String\" style=\"color: #007777;\">\"南非白柚2个 600g以上\"<span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"unit\"</span>: <span class=\"String\" style=\"color: #007777;\">\"份\"<span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"qty\"</span>: <span class=\"Number\" style=\"color: #aa00aa;\">0<span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"originalPrice\"</span>: <span class=\"Number\" style=\"color: #aa00aa;\">0<span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"price\"</span>: <span class=\"Number\" style=\"color: #aa00aa;\">890<span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"pic\"</span>: <span class=\"String\" style=\"color: #007777;\">\"http://img0.sandload.cn/qdm_master1023_1534993683.jpg\"<span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"minOrderNum\"</span>: <span class=\"Number\" style=\"color: #aa00aa;\">0<span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"dishDescription\"</span>: <span class=\"String\" style=\"color: #007777;\">\"\"<span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"rank\"</span>: <span class=\"Number\" style=\"color: #aa00aa;\">0<span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"dishStatus\"</span>: <span class=\"Number\" style=\"color: #aa00aa;\">2<span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"dishType\"</span>: <span class=\"Number\" style=\"color: #aa00aa;\">8<span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"productSpecification\"</span>: <span class=\"ArrayBrace\" style=\"color: #0033ff; font-weight: bold;\">[ ]</span><span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> \r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"dishTags\"</span>: <span class=\"ArrayBrace\" style=\"color: #0033ff; font-weight: bold;\">[ ]</span><span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> \r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"monthSold\"</span>: <span class=\"Number\" style=\"color: #aa00aa;\">0<span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"packagePrice\"</span>: <span class=\"Number\" style=\"color: #aa00aa;\">0<span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"packageAmount\"</span>: <span class=\"Number\" style=\"color: #aa00aa;\">0<span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"packageFee\"</span>: <span class=\"Number\" style=\"color: #aa00aa;\">0<span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"group\"</span>: <span class=\"Number\" style=\"color: #aa00aa;\">0<span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"remark\"</span>: <span class=\"String\" style=\"color: #007777;\">\"\"</span>\r\n </span><span class=\"ObjectBrace\" style=\"color: #00aa00; font-weight: bold;\">}</span>\r\n </span><span class=\"ArrayBrace\" style=\"color: #0033ff; font-weight: bold;\">]</span><span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> \r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"dishCount\"</span>: <span class=\"Number\" style=\"color: #aa00aa;\">1</span>\r\n </span><span class=\"ObjectBrace\" style=\"color: #00aa00; font-weight: bold;\">}</span>\r\n </span><span class=\"ArrayBrace\" style=\"color: #0033ff; font-weight: bold;\">]</span>\r\n </span><span class=\"ObjectBrace\" style=\"color: #00aa00; font-weight: bold;\">}</span>\r\n</span><span class=\"ObjectBrace\" style=\"color: #00aa00; font-weight: bold;\">}</span></pre>\r\n<p><audio style=\"display: none;\" controls=\"controls\"></audio></p>', '<pre class=\"CodeContainer\" style=\"margin-top: 0px; margin-bottom: 0px; padding: 8.5px; font-family: Menlo, Monaco, Consolas, \'Courier New\', monospace; font-size: 12.025px; color: #333333; border-radius: 4px; line-height: 18px; word-break: break-all; word-wrap: break-word; white-space: pre-wrap; background-color: #f5f5f5; border: 1px solid rgba(0, 0, 0, 0.15);\"><span class=\"ObjectBrace\" style=\"color: #00aa00; font-weight: bold;\">{</span><img style=\"margin: 0px 0px -1px; padding: 0px; border: none; max-width: 100%; vertical-align: middle; cursor: pointer;\" src=\"http://tool.oschina.net/tools/json_format/Expanded.gif\" /><span class=\"collapsible\">\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"msgCode\"</span>: <span class=\"Number\" style=\"color: #aa00aa;\">100<span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"msg\"</span>: <span class=\"String\" style=\"color: #007777;\">\"Success\"<span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"data\"</span>: <span class=\"ObjectBrace\" style=\"color: #00aa00; font-weight: bold;\">{</span><img style=\"margin: 0px 0px -1px; padding: 0px; border: none; max-width: 100%; vertical-align: middle; cursor: pointer;\" src=\"http://tool.oschina.net/tools/json_format/Expanded.gif\" /><span class=\"collapsible\">\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"DishCategorys\"</span>: <span class=\"ArrayBrace\" style=\"color: #0033ff; font-weight: bold;\">[</span><img style=\"margin: 0px 0px -1px; padding: 0px; border: none; max-width: 100%; vertical-align: middle; cursor: pointer;\" src=\"http://tool.oschina.net/tools/json_format/Expanded.gif\" /><span class=\"collapsible\">\r\n <span class=\"ObjectBrace\" style=\"color: #00aa00; font-weight: bold;\">{</span><img style=\"margin: 0px 0px -1px; padding: 0px; border: none; max-width: 100%; vertical-align: middle; cursor: pointer;\" src=\"http://tool.oschina.net/tools/json_format/Expanded.gif\" /><span class=\"collapsible\">\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"category\"</span>: <span class=\"ObjectBrace\" style=\"color: #00aa00; font-weight: bold;\">{ }</span><span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> \r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"dishList\"</span>: <span class=\"ArrayBrace\" style=\"color: #0033ff; font-weight: bold;\">[</span><img style=\"margin: 0px 0px -1px; padding: 0px; border: none; max-width: 100%; vertical-align: middle; cursor: pointer;\" src=\"http://tool.oschina.net/tools/json_format/Expanded.gif\" /><span class=\"collapsible\">\r\n <span class=\"ObjectBrace\" style=\"color: #00aa00; font-weight: bold;\">{</span><img style=\"margin: 0px 0px -1px; padding: 0px; border: none; max-width: 100%; vertical-align: middle; cursor: pointer;\" src=\"http://tool.oschina.net/tools/json_format/Expanded.gif\" /><span class=\"collapsible\">\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"id\"</span>: <span class=\"String\" style=\"color: #007777;\">\"117692712096069437\"<span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"dishCode\"</span>: <span class=\"String\" style=\"color: #007777;\">\"1023\"<span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"name\"</span>: <span class=\"String\" style=\"color: #007777;\">\"南非白柚2个 600g以上\"<span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"unit\"</span>: <span class=\"String\" style=\"color: #007777;\">\"份\"<span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"qty\"</span>: <span class=\"Number\" style=\"color: #aa00aa;\">0<span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"originalPrice\"</span>: <span class=\"Number\" style=\"color: #aa00aa;\">0<span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"price\"</span>: <span class=\"Number\" style=\"color: #aa00aa;\">890<span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"pic\"</span>: <span class=\"String\" style=\"color: #007777;\">\"http://img0.sandload.cn/qdm_master1023_1534993683.jpg\"<span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"minOrderNum\"</span>: <span class=\"Number\" style=\"color: #aa00aa;\">0<span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"dishDescription\"</span>: <span class=\"String\" style=\"color: #007777;\">\"\"<span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"rank\"</span>: <span class=\"Number\" style=\"color: #aa00aa;\">0<span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"dishStatus\"</span>: <span class=\"Number\" style=\"color: #aa00aa;\">2<span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"dishType\"</span>: <span class=\"Number\" style=\"color: #aa00aa;\">8<span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"productSpecification\"</span>: <span class=\"ArrayBrace\" style=\"color: #0033ff; font-weight: bold;\">[ ]</span><span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> \r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"dishTags\"</span>: <span class=\"ArrayBrace\" style=\"color: #0033ff; font-weight: bold;\">[ ]</span><span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> \r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"monthSold\"</span>: <span class=\"Number\" style=\"color: #aa00aa;\">0<span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"packagePrice\"</span>: <span class=\"Number\" style=\"color: #aa00aa;\">0<span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"packageAmount\"</span>: <span class=\"Number\" style=\"color: #aa00aa;\">0<span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"packageFee\"</span>: <span class=\"Number\" style=\"color: #aa00aa;\">0<span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"group\"</span>: <span class=\"Number\" style=\"color: #aa00aa;\">0<span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> </span>\r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"remark\"</span>: <span class=\"String\" style=\"color: #007777;\">\"\"</span>\r\n </span><span class=\"ObjectBrace\" style=\"color: #00aa00; font-weight: bold;\">}</span>\r\n </span><span class=\"ArrayBrace\" style=\"color: #0033ff; font-weight: bold;\">]</span><span class=\"Comma\" style=\"color: #000000; font-weight: bold;\">,</span> \r\n <span class=\"PropertyName\" style=\"color: #cc0000; font-weight: bold;\">\"dishCount\"</span>: <span class=\"Number\" style=\"color: #aa00aa;\">1</span>\r\n </span><span class=\"ObjectBrace\" style=\"color: #00aa00; font-weight: bold;\">}</span>\r\n </span><span class=\"ArrayBrace\" style=\"color: #0033ff; font-weight: bold;\">]</span>\r\n </span><span class=\"ObjectBrace\" style=\"color: #00aa00; font-weight: bold;\">}</span>\r\n</span><span class=\"ObjectBrace\" style=\"color: #00aa00; font-weight: bold;\">}</span></pre>\r\n<p><audio style=\"display: none;\" controls=\"controls\"></audio></p>', '{\"method\":\"POST\",\"api\":\"/User/Register\"}', '', '', '', '', '0', '0', '', '', '0', '0', '0', '0', '0', '1535771271');
INSERT INTO `informations` VALUES ('f3d98a83486f4fcd87d069798762a88b', '获取用户信息', '1d995df6a4594c07a1f42625f520c1b3', '用户', '0', '0', '0', '0', '0', '1', '', '', '0', '0', '0', '', '0', '0', '<pre style=\"box-sizing: border-box; font-family: SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, Courier, monospace; font-size: 12px; margin-top: 0px; margin-bottom: 16px; font-stretch: normal; line-height: 1.45; word-wrap: normal; padding: 16px; overflow: auto; background-color: #f6f8fa; border-radius: 3px; color: #24292e;\" data-source-line=\"116\"><code class=\"hljs\" style=\"box-sizing: border-box; display: inline; overflow: visible; padding: 0px; color: #333333; background: transparent; font-family: SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, Courier, monospace, sans-serif; margin: 0px; border-radius: 3px; word-break: normal; border: 0px; line-height: inherit; word-wrap: normal;\"> {<br /><span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\"> \"partnerId\"</span>: <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"58f78b53-7420-433d-b19d-46317c502b3e\"</span>, <span class=\"hljs-comment\" style=\"box-sizing: border-box; color: #999988; font-style: italic;\">//<span class=\"zh-hans\" style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, sans-serif;\">商户编号</span></span>\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"openId\"</span>: <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"shudian2123\"</span>, <span class=\"hljs-comment\" style=\"box-sizing: border-box; color: #999988; font-style: italic;\">//用户userId</span>\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"channelCode\"</span>: <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"xcx\"</span>, <span class=\"hljs-comment\" style=\"box-sizing: border-box; color: #999988; font-style: italic;\">//<span class=\"zh-hans\" style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, sans-serif;\">渠道编号</span> <span class=\"zh-hans\" style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, sans-serif;\">渠道编码</span>{xcx:<span class=\"zh-hans\" style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, sans-serif;\">微信小程序,</span>wxysk:<span class=\"zh-hans\" style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, sans-serif;\">微信原生卡,</span>wxgzh:<span class=\"zh-hans\" style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, sans-serif;\">微信公众号,</span>zfbxcx:<span class=\"zh-hans\" style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, sans-serif;\">支付宝小程序,</span>zfbysk:<span class=\"zh-hans\" style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, sans-serif;\">支付宝原生卡,</span>zfbshh:<span class=\"zh-hans\" style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, sans-serif;\">支付宝生活号,</span>xxdr3<span class=\"zh-hans\" style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, sans-serif;\">:线下导入,</span>dsf:<span class=\"zh-hans\" style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, sans-serif;\">第三方</span> }</span>\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"ver\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"1\"</span> <span class=\"hljs-comment\" style=\"box-sizing: border-box; color: #999988; font-style: italic;\">//<span class=\"zh-hans\" style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, sans-serif;\">版本</span></span>\r\n}</code></pre>', '<pre style=\"box-sizing: border-box; font-family: SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, Courier, monospace; font-size: 12px; margin-top: 0px; margin-bottom: 16px; font-stretch: normal; line-height: 1.45; word-wrap: normal; padding: 16px; overflow: auto; background-color: #f6f8fa; border-radius: 3px; color: #24292e;\" data-source-line=\"116\"><code class=\"hljs\" style=\"box-sizing: border-box; display: inline; overflow: visible; padding: 0px; color: #333333; background: transparent; font-family: SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, Courier, monospace, sans-serif; margin: 0px; border-radius: 3px; word-break: normal; border: 0px; line-height: inherit; word-wrap: normal;\">{<br /><span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\"> \"code\"</span>: <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"100\"</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"message\"</span>: <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"<span class=\"zh-hans\" style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, sans-serif;\">成功</span>\"</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"result\"</span>: {\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"mobile\"</span>: <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"15251744535\"</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"memberName\"</span>: <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"\"</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"sexFlag\"</span>: 1, //男1女2\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"birthday\"</span>: <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"\"</span>,\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"memberId\"</span>: <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"969503879261650944\"</span>\r\n },\r\n <span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"ver\"</span>:<span class=\"hljs-string\" style=\"box-sizing: border-box; color: #dd1144;\">\"1\"</span>\r\n}</code></pre>', '{\"method\":\"GET\",\"api\":\"/User/MemberInfoFindByOpenId\"}', '', '', '', '', '0', '0', '', '', '0', '0', '0', '0', '0', '1535789367');
-- ----------------------------
-- Table structure for users
-- ----------------------------
DROP TABLE IF EXISTS `users`;
CREATE TABLE `users` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT '用户表',
`user_type` tinyint(3) NOT NULL DEFAULT '1' COMMENT '用户类型,1普通用户 2,商家',
`user_name` varchar(60) NOT NULL COMMENT '登录用户名',
`true_name` varchar(30) DEFAULT '' COMMENT '用户真实姓名',
`password` varchar(60) NOT NULL COMMENT '密码,md5(xtp+密码)',
`mobile` varchar(11) DEFAULT '' COMMENT '手机号',
`nick_name` varchar(60) DEFAULT '' COMMENT '昵称',
`email` varchar(60) DEFAULT '' COMMENT '邮箱',
`forget_pwd_key` varchar(40) DEFAULT '' COMMENT '找回密码时用不用的Key',
`qq` varchar(15) DEFAULT '',
`platform` varchar(20) DEFAULT NULL COMMENT '平台,android/ios',
`platform_version` varchar(20) DEFAULT NULL COMMENT '平台版本号',
`version_name` varchar(20) DEFAULT NULL COMMENT 'app版本号',
`version_code` varchar(20) DEFAULT NULL COMMENT 'app版本名称',
`country_id` int(11) DEFAULT '0' COMMENT '用户所在国家ID',
`province_id` int(11) DEFAULT '0' COMMENT '用户所有在省ID',
`city_id` int(11) DEFAULT '0' COMMENT '用户所在市ID',
`status` int(11) DEFAULT '0' COMMENT '0正常,1被封',
`sid` varchar(255) DEFAULT NULL COMMENT '用户无会话ID,app使用',
`fr` varchar(255) DEFAULT NULL COMMENT '用户来源',
`device_no` varchar(255) DEFAULT NULL COMMENT '用户的设备号',
`sex` int(11) DEFAULT '1' COMMENT '0未选择,1男,2女',
`latitude` int(11) DEFAULT NULL COMMENT '纬度',
`longitude` int(11) DEFAULT NULL COMMENT '经度',
`is_cert` tinyint(1) DEFAULT '0' COMMENT '是否认证 0未认证,1已认证',
`ip` varchar(255) DEFAULT NULL COMMENT '最后一次登录IP',
`created_at` int(11) DEFAULT NULL,
`register_at` int(11) DEFAULT NULL,
`updated_at` int(11) DEFAULT NULL COMMENT ' 修改时间戳',
`avatar` varchar(255) DEFAULT NULL COMMENT '用户头像',
`introduce` varchar(255) DEFAULT NULL COMMENT '用户介绍',
`firm_id` int(11) DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `id` (`id`),
UNIQUE KEY `username_on_users` (`user_name`),
UNIQUE KEY `sid` (`sid`),
KEY `user_status_on_users` (`status`),
KEY `device_no_on_users` (`device_no`),
KEY `nickname_on_users` (`nick_name`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of users
-- ----------------------------