forked from Tencent/APIJSON
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsys.sql
528 lines (457 loc) · 794 KB
/
sys.sql
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
-- MySQL dump 10.13 Distrib 5.7.17, for macos10.12 (x86_64)
--
-- Host: apijson.cn Database: sys
-- ------------------------------------------------------
-- Server version 5.7.19-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `Access`
--
DROP TABLE IF EXISTS `Access`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Access` (
`id` bigint(15) NOT NULL AUTO_INCREMENT,
`debug` tinyint(2) NOT NULL DEFAULT '0' COMMENT '是否为调试表,只允许在开发环境使用,测试和线上环境禁用',
`name` varchar(50) NOT NULL COMMENT '实际表名,例如 apijson_user',
`alias` varchar(20) DEFAULT NULL COMMENT '外部调用的表别名,例如 User',
`get` varchar(100) NOT NULL DEFAULT '["UNKNOWN", "LOGIN", "CONTACT", "CIRCLE", "OWNER", "ADMIN"]' COMMENT '允许 get 的角色列表,例如 ["LOGIN", "CONTACT", "CIRCLE", "OWNER"]\n用 JSON 类型不能设置默认值,反正权限对应的需求是明确的,也不需要自动转 JSONArray。\nTODO: 直接 LOGIN,CONTACT,CIRCLE,OWNER 更简单,反正是开发内部用,不需要复杂查询。',
`head` varchar(100) NOT NULL DEFAULT '["UNKNOWN", "LOGIN", "CONTACT", "CIRCLE", "OWNER", "ADMIN"]' COMMENT '允许 head 的角色列表,例如 ["LOGIN", "CONTACT", "CIRCLE", "OWNER"]',
`gets` varchar(100) NOT NULL DEFAULT '["LOGIN", "CONTACT", "CIRCLE", "OWNER", "ADMIN"]' COMMENT '允许 gets 的角色列表,例如 ["LOGIN", "CONTACT", "CIRCLE", "OWNER"]',
`heads` varchar(100) NOT NULL DEFAULT '["LOGIN", "CONTACT", "CIRCLE", "OWNER", "ADMIN"]' COMMENT '允许 heads 的角色列表,例如 ["LOGIN", "CONTACT", "CIRCLE", "OWNER"]',
`post` varchar(100) NOT NULL DEFAULT '["OWNER", "ADMIN"]' COMMENT '允许 post 的角色列表,例如 ["LOGIN", "CONTACT", "CIRCLE", "OWNER"]',
`put` varchar(100) NOT NULL DEFAULT '["OWNER", "ADMIN"]' COMMENT '允许 put 的角色列表,例如 ["LOGIN", "CONTACT", "CIRCLE", "OWNER"]',
`delete` varchar(100) NOT NULL DEFAULT '["OWNER", "ADMIN"]' COMMENT '允许 delete 的角色列表,例如 ["LOGIN", "CONTACT", "CIRCLE", "OWNER"]',
`date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
PRIMARY KEY (`id`),
UNIQUE KEY `name_UNIQUE` (`name`),
UNIQUE KEY `alias_UNIQUE` (`alias`)
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8 COMMENT='权限配置';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Access`
--
LOCK TABLES `Access` WRITE;
/*!40000 ALTER TABLE `Access` DISABLE KEYS */;
INSERT INTO `Access` VALUES (1,0,'Access',NULL,'[\"UNKNOWN\", \"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"UNKNOWN\", \"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"UNKNOWN\", \"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"UNKNOWN\", \"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[]','[]','[]','2019-07-21 12:21:36'),(2,1,'Table',NULL,'[\"UNKNOWN\", \"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"UNKNOWN\", \"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[]','[]','[]','2018-11-28 16:38:14'),(3,1,'Column',NULL,'[\"UNKNOWN\", \"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"UNKNOWN\", \"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[]','[]','[]','2018-11-28 16:38:14'),(4,0,'Function',NULL,'[\"UNKNOWN\", \"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"UNKNOWN\", \"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[]','[]','[]','2018-11-28 16:38:15'),(5,0,'Request',NULL,'[\"UNKNOWN\", \"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"UNKNOWN\", \"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[]','[]','[]','2018-11-28 16:38:14'),(6,0,'Response',NULL,'[\"UNKNOWN\", \"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"UNKNOWN\", \"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[]','[]','[]','2018-11-28 16:38:15'),(7,1,'Document',NULL,'[\"LOGIN\", \"ADMIN\"]','[\"LOGIN\", \"ADMIN\"]','[\"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"OWNER\", \"ADMIN\"]','[\"LOGIN\", \"ADMIN\"]','[\"OWNER\", \"ADMIN\"]','2018-11-28 16:38:15'),(8,1,'TestRecord',NULL,'[\"LOGIN\", \"ADMIN\"]','[\"UNKNOWN\", \"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"OWNER\", \"ADMIN\"]','[\"OWNER\", \"ADMIN\"]','[\"OWNER\", \"ADMIN\"]','2018-11-28 16:38:15'),(9,0,'Test',NULL,'[\"UNKNOWN\", \"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"UNKNOWN\", \"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[]','[]','[]','2018-11-28 16:38:15'),(10,1,'PgAttribute',NULL,'[\"UNKNOWN\", \"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"UNKNOWN\", \"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[]','[]','[]','2018-11-28 16:38:14'),(11,1,'PgClass',NULL,'[\"UNKNOWN\", \"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"UNKNOWN\", \"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[]','[]','[]','2018-11-28 16:38:14'),(12,0,'Login',NULL,'[]','[]','[\"UNKNOWN\", \"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"UNKNOWN\", \"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[ \"ADMIN\"]','[ \"ADMIN\"]','[\"ADMIN\"]','2018-11-28 16:29:48'),(13,0,'Verify',NULL,'[]','[]','[\"UNKNOWN\", \"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"UNKNOWN\", \"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"UNKNOWN\", \"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[ \"ADMIN\"]','[\"ADMIN\"]','2018-11-28 16:29:48'),(14,0,'apijson_user','User','[\"UNKNOWN\", \"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"UNKNOWN\", \"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"UNKNOWN\",\"LOGIN\",\"OWNER\", \"ADMIN\"]','[\"OWNER\", \"ADMIN\"]','[\"ADMIN\"]','2018-11-28 16:28:53'),(15,0,'apijson_privacy','Privacy','[]','[]','[\"OWNER\", \"ADMIN\"]','[\"OWNER\", \"ADMIN\"]','[\"UNKNOWN\",\"LOGIN\",\"OWNER\", \"ADMIN\"]','[\"OWNER\", \"ADMIN\"]','[\"ADMIN\"]','2018-11-28 16:29:48'),(16,0,'Moment',NULL,'[\"UNKNOWN\", \"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"UNKNOWN\", \"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"OWNER\", \"ADMIN\"]','[\"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"OWNER\", \"ADMIN\"]','2018-11-28 16:29:19'),(17,0,'Comment',NULL,'[\"UNKNOWN\", \"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"UNKNOWN\", \"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"OWNER\", \"ADMIN\"]','[\"OWNER\", \"ADMIN\"]','[\"OWNER\", \"ADMIN\"]','2018-11-28 16:29:19'),(19,1,'SysTable',NULL,'[\"UNKNOWN\", \"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"UNKNOWN\", \"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[]','[]','[]','2019-10-04 01:01:20'),(20,1,'SysColumn',NULL,'[\"UNKNOWN\", \"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"UNKNOWN\", \"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[]','[]','[]','2019-10-04 01:01:20'),(21,1,'ExtendedProperty',NULL,'[\"UNKNOWN\", \"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"UNKNOWN\", \"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[]','[]','[]','2019-10-04 01:33:45'),(22,1,'Random',NULL,'[\"LOGIN\", \"ADMIN\"]','[\"LOGIN\", \"ADMIN\"]','[\"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"OWNER\", \"ADMIN\"]','[\"LOGIN\", \"OWNER\", \"ADMIN\"]','[\"OWNER\", \"ADMIN\"]','2019-12-01 15:13:13'),(23,0,'Swagger',NULL,'[\"UNKNOWN\", \"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"UNKNOWN\", \"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[]','[]','[]','2018-11-28 16:38:15'),(24,1,'Method',NULL,'[\"UNKNOWN\", \"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"LOGIN\", \"ADMIN\"]','[\"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"LOGIN\", \"CONTACT\", \"CIRCLE\", \"OWNER\", \"ADMIN\"]','[\"OWNER\", \"ADMIN\"]','[\"LOGIN\", \"ADMIN\"]','[\"OWNER\", \"ADMIN\"]','2018-11-28 16:38:15');
/*!40000 ALTER TABLE `Access` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Comment`
--
DROP TABLE IF EXISTS `Comment`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Comment` (
`id` bigint(15) NOT NULL COMMENT '唯一标识',
`toId` bigint(15) NOT NULL DEFAULT '0' COMMENT '被回复的id',
`userId` bigint(15) NOT NULL COMMENT '评论人 User 的 id',
`momentId` bigint(15) NOT NULL COMMENT '动态id',
`date` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建日期',
`content` varchar(1000) NOT NULL COMMENT '内容',
PRIMARY KEY (`id`),
KEY `userId` (`userId`),
KEY `momentId` (`momentId`),
KEY `toId` (`toId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='评论';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Comment`
--
LOCK TABLES `Comment` WRITE;
/*!40000 ALTER TABLE `Comment` DISABLE KEYS */;
INSERT INTO `Comment` VALUES (4,0,38710,470,'2017-02-01 11:20:50','This is a Content...-4'),(13,0,82005,58,'2017-02-01 11:20:50','This is a Content...-13'),(22,221,82001,470,'2017-02-01 11:20:50','测试修改评论'),(44,0,82003,170,'2017-02-01 11:20:50','This is a Content...-44'),(45,0,93793,301,'2017-02-01 11:20:50','This is a Content...-45'),(47,4,70793,470,'2017-02-01 11:20:50','This is a Content...-47'),(51,45,82003,301,'2017-02-01 11:20:50','This is a Content...-51'),(54,0,82004,170,'2017-02-01 11:20:50','This is a Content...-54'),(68,0,82005,371,'2017-02-01 11:20:50','This is a Content...-68'),(76,45,93793,301,'2017-02-01 11:20:50','This is a Content...-76'),(77,13,93793,58,'2017-02-01 11:20:50','This is a Content...-77'),(97,13,82006,58,'2017-02-01 11:20:50','This is a Content...-97'),(99,44,70793,170,'2017-02-01 11:20:50','This is a Content...-99'),(110,0,93793,371,'2017-02-01 11:23:24','This is a Content...-110'),(114,0,82001,371,'2017-03-02 05:56:06','This is a Content...-114'),(115,0,38710,371,'2017-03-02 05:56:06','This is a Content...-115'),(116,0,70793,371,'2017-03-02 05:56:06','This is a Content...-116'),(120,0,93793,301,'2017-03-02 05:56:06','This is a Content...-110'),(124,0,82001,301,'2017-03-02 05:56:06','This is a Content...-114'),(157,0,93793,371,'2017-02-01 11:20:50','This is a Content...-157'),(158,0,93793,301,'2018-07-12 17:28:23','This is a Content...-157'),(160,0,82001,235,'2017-03-02 05:56:06','This is a Content...-160'),(162,0,93793,12,'2017-03-06 05:03:45','This is a Content...-162'),(163,0,82001,235,'2017-03-02 05:56:06','This is a Content...-163'),(164,0,93793,12,'2017-03-06 05:03:45','This is a Content...-164'),(167,0,82001,58,'2017-03-25 11:48:41','Nice!'),(168,1490442545077,82001,235,'2017-03-25 11:49:14','???'),(172,162,82001,12,'2017-03-25 12:22:58','OK'),(173,0,38710,58,'2017-03-25 12:25:13','Good'),(175,0,38710,12,'2017-03-25 12:26:53','Java is the best program language!'),(176,166,38710,15,'2017-03-25 12:28:03','thank you'),(178,0,38710,511,'2017-03-25 12:30:55','wbw'),(182,110,82001,371,'2017-03-26 06:12:52','hahaha'),(188,97,82001,58,'2017-03-26 07:21:32','1646'),(190,0,82001,58,'2017-03-26 07:22:13','dbdj'),(206,54,82001,170,'2017-03-29 03:04:23','ejej'),(209,13,82001,58,'2017-03-29 03:05:59','hehj'),(300,97,82001,58,'2017-03-29 03:06:07','hj'),(301,194,82001,235,'2017-03-29 03:06:24','jj'),(4001,0,82001,58,'2017-03-29 08:39:52','I would like to say …'),(1490776944301,0,82001,58,'2017-03-29 08:42:24','hello'),(1490776966828,173,82001,58,'2017-03-29 08:42:46','me too'),(1490777905437,0,82001,543,'2017-03-29 08:58:25','rr'),(1490778122719,175,82001,12,'2017-03-29 09:02:02','Yeah! I think so!'),(1490778494751,1490778122719,82001,12,'2017-03-29 09:08:14','reply Android82001'),(1490778681337,166,82001,12,'2017-03-29 09:11:21','gg'),(1490780759866,99,82001,170,'2017-03-29 09:45:59','99'),(1490781009548,51,82001,301,'2017-03-29 09:50:09','3'),(1490781032005,45,82001,301,'2017-03-29 09:50:32','93793'),(1490781817044,209,38710,58,'2017-03-29 10:03:37','82001'),(1490781850893,1490776966828,38710,58,'2017-03-29 10:04:10','haha!'),(1490781857242,190,38710,58,'2017-03-29 10:04:17','nice'),(1490781865407,1490781857242,38710,58,'2017-03-29 10:04:25','wow'),(1490781899147,197,38710,12,'2017-03-29 10:04:59','kaka'),(1490794439561,1490778681337,82001,12,'2017-03-29 13:33:59','gg?'),(1490794610632,172,82001,12,'2017-03-29 13:36:50','All right'),(1490794937137,1490794919957,82001,12,'2017-03-29 13:42:17','All right ok ok'),(1490794953438,1490794937137,82001,12,'2017-03-29 13:42:33','All right ok ok ll'),(1490796241178,0,38710,58,'2017-03-29 14:04:01','Anything else?'),(1490796629591,175,38710,12,'2017-03-29 14:10:29','well'),(1490798710678,110,38710,371,'2017-03-29 14:45:10','110'),(1490800971064,175,38710,12,'2017-03-29 15:22:51','I do'),(1490848396072,175,82001,12,'2017-03-30 04:33:16','Lemon'),(1490848581424,166,82001,12,'2017-03-30 04:36:21','82001ejej'),(1490850764448,162,82001,12,'2017-03-30 05:12:44','-162'),(1490850844016,0,82001,12,'2017-03-30 05:14:04','I like it'),(1490850876656,1490800971064,82001,12,'2017-03-30 05:14:36','I do so'),(1490854894566,175,82001,12,'2017-03-30 06:21:34','it does be a good lang'),(1490863443219,1490850844016,82002,12,'2017-03-30 08:44:03','me too!'),(1490863469638,0,82002,15,'2017-03-30 08:44:29','Just do it'),(1490863507114,4,82003,470,'2017-03-30 08:45:07','yes'),(1490863563124,0,82003,704,'2017-03-30 08:46:03','I want one'),(1490863651493,0,70793,595,'2017-03-30 08:47:31','wow'),(1490863661426,1490780759866,70793,170,'2017-03-30 08:47:41','66'),(1490863676989,0,70793,12,'2017-03-30 08:47:56','Shy'),(1490863711703,0,70793,511,'2017-03-30 08:48:31','I hope I can join'),(1490863717947,178,70793,511,'2017-03-30 08:48:37','what?'),(1490863783276,1490863711703,93793,511,'2017-03-30 08:49:43','haha welcome'),(1490863903900,0,82006,470,'2017-03-30 08:51:43','SOGA'),(1490863915675,0,82006,235,'2017-03-30 08:51:55','Good boy'),(1490863938712,0,82006,12,'2017-03-30 08:52:18','Handsome!'),(1490863978239,1490796241178,82006,58,'2017-03-30 08:52:58','there still remains a question…'),(1490864016738,0,82006,511,'2017-03-30 08:53:36','I want to have a try!'),(1490864023700,0,82006,543,'2017-03-30 08:53:43','oops'),(1490864039264,0,82006,551,'2017-03-30 08:53:59','Wonderful!'),(1490864152008,0,82006,58,'2017-03-30 08:55:52','U R ugly( ´?` )'),(1490864254400,1490863915675,82044,235,'2017-03-30 08:57:34','And I have no idea'),(1490864276824,0,82044,12,'2017-03-30 08:57:56','Oh my God!'),(1490864292184,1490864152008,82044,58,'2017-03-30 08:58:12','haha!'),(1490864379424,1490863938712,82001,12,'2017-03-30 08:59:39','Thank you~'),(1490864400210,1490864276824,82001,12,'2017-03-30 09:00:00','Amazing, isnt it?'),(1490874908570,1490864023700,82055,543,'2017-03-30 11:55:08','yeah'),(1490874930994,1490777905437,82055,543,'2017-03-30 11:55:30','yy'),(1490874968779,0,82055,12,'2017-03-30 11:56:08','I love it'),(1490875033494,0,82055,301,'2017-03-30 11:57:13','More Comments'),(1490875040761,158,82055,301,'2017-03-30 11:57:20','157'),(1490875046704,120,82055,301,'2017-03-30 11:57:26','110'),(1490875660259,1490863469638,82055,15,'2017-03-30 12:07:40','I prove wht you said(??????)'),(1490879678127,0,82001,543,'2017-03-30 13:14:38','Baby you are a firework!'),(1490973736662,1490973715568,70793,170,'2017-03-31 15:22:16','Hello, I am a fresh man'),(1490973890875,1490864039264,93793,551,'2017-03-31 15:24:50','While I donot think so…'),(1491014830404,1490864016738,82001,511,'2017-04-01 02:47:10','Have a nice day!'),(1491119615611,1490864023700,82001,543,'2017-04-02 07:53:35','$$'),(1491119670185,68,82001,371,'2017-04-02 07:54:30','Leave a word'),(1491119695580,0,82001,371,'2017-04-02 07:54:55','leave a word'),(1491130701902,0,38710,511,'2017-04-02 10:58:21','Thanks for your supports (-^?^-)'),(1491209763162,0,82001,1491200468898,'2017-04-03 08:56:03','How do you do'),(1491277552385,0,82001,58,'2017-04-04 03:45:52','Seven'),(1491312438951,1490863651493,82001,595,'2017-04-04 13:27:18','WaKaKa!'),(1491709064513,0,82001,551,'2017-04-09 03:37:44','soga'),(1491740899179,0,82001,470,'2017-04-09 12:28:19','www'),(1491798370749,0,82002,551,'2017-04-10 04:26:10','Nice!'),(1491798499667,115,82002,371,'2017-04-10 04:28:19','I do not understand…'),(1491830543193,0,82001,170,'2017-04-10 13:22:23','What is the hell?'),(1492932228287,1491209763162,38710,1491200468898,'2017-04-23 07:23:48','fine,thanks'),(1493094307810,0,82001,551,'2017-04-25 04:25:04','删除或修改数据请先创建,不要动原来的,谢谢'),(1493094307910,0,82001,551,'2017-04-25 04:26:04','用POST新增数据'),(1493186363132,1490850764448,82001,12,'2017-04-26 05:59:23','sndnd'),(1502632433970,0,82002,1493835799335,'2017-08-13 13:53:53','just have fun!'),(1508053783278,0,82001,1508053762227,'2017-10-15 07:49:43','可以的'),(1508072695833,0,82003,1508072633830,'2017-10-15 13:04:55','心疼地抱住自己(๑´ㅂ`๑)'),(1508227456407,0,82001,15,'2017-10-17 08:04:16','hsh'),(1508227498578,1491798370749,82001,551,'2017-10-17 08:04:58','g'),(1508462026394,1490850844016,82001,12,'2017-10-20 01:13:46','欧'),(1508492585904,1508462026394,82001,12,'2017-10-20 09:43:05','my god'),(1509003045509,0,82001,1508072633830,'2017-10-26 07:30:45','hhh'),(1509346549158,0,82001,170,'2017-10-30 06:55:49','呵呵'),(1509346556395,0,82001,170,'2017-10-30 06:55:56','测试'),(1509346606036,0,82001,15,'2017-10-30 06:56:46','测'),(1509518079106,0,82001,1508073178489,'2017-11-01 06:34:39','哦哦哦'),(1510795816462,162,82001,12,'2017-11-16 01:30:16','赞'),(1510795933629,0,82001,1508073178489,'2017-11-16 01:32:13','cc'),(1510813284894,0,82001,12,'2017-11-16 06:21:24','asdasdasdas'),(1510813295700,162,82001,12,'2017-11-16 06:21:35','adsdasdasdasd'),(1511374269759,99,82001,170,'2017-11-22 18:11:09','记录里'),(1511374274194,0,82001,170,'2017-11-22 18:11:14','哦哦哦'),(1511407695342,0,1511407581570,371,'2017-11-23 03:28:15','好的'),(1511407702981,157,1511407581570,371,'2017-11-23 03:28:22','你好'),(1511878024415,0,1511761906715,12,'2017-11-28 14:07:04','你今年'),(1511878031610,1511878024415,1511761906715,12,'2017-11-28 14:07:11','不鸟你'),(1512035094555,0,82001,12,'2017-11-30 09:44:54','呵呵呵'),(1512035117021,0,82001,32,'2017-11-30 09:45:17','图片看不了啊'),(1512039030970,1512035117021,82001,32,'2017-11-30 10:50:30','一般九宫格图片都是压缩图,分辨率在300*300左右,加载很快,点击放大后才是原图,1080P左右'),(1512531859019,0,1512531601485,1512314438990,'2017-12-06 03:44:19','666'),(1512533520832,1512531859019,38710,1512314438990,'2017-12-06 04:12:00','嘿嘿'),(1513656045399,0,82001,1508072633830,'2017-12-19 04:00:45','444444'),(1514425796195,0,82001,1513094436910,'2017-12-28 01:49:56','一起'),(1514473034425,1514425796195,93793,1513094436910,'2017-12-28 14:57:14','干啥?'),(1514478784653,0,82001,1513094436910,'2017-12-28 16:33:04','bug很多'),(1514506206319,1514478784653,38710,1513094436910,'2017-12-29 00:10:06','碰到哪些了呢?欢迎指出,尽快解决^_^'),(1514617131036,0,82005,1513094436910,'2017-12-30 06:58:51','口子'),(1514858592813,0,82001,1514858533480,'2018-01-02 02:03:12','铁人'),(1514858640958,0,38710,1514858533480,'2018-01-02 02:04:00','斯塔克工业'),(1514858707767,0,70793,1514858533480,'2018-01-02 02:05:07','壕友乎?'),(1514960713300,0,82001,1513094436910,'2018-01-03 06:25:13','1'),(1514960744185,1512531859019,82001,1512314438990,'2018-01-03 06:25:44','哇'),(1515057852156,0,82001,58,'2018-01-04 09:24:12','你说'),(1515057857464,0,82001,58,'2018-01-04 09:24:17','你说'),(1515057861094,0,82001,58,'2018-01-04 09:24:21','蓉蓉'),(1515057864174,1515057857464,82001,58,'2018-01-04 09:24:24','哦轻松'),(1515057869554,0,82001,58,'2018-01-04 09:24:29',',王者荣耀'),(1515313792063,162,82001,12,'2018-01-07 08:29:52','you'),(1515313823155,164,82001,12,'2018-01-07 08:30:23','you'),(1516190557098,0,82001,1513094436910,'2018-01-17 12:02:37','哦婆婆'),(1516629533520,0,82001,1508072633830,'2018-01-22 13:58:53','小臭臭'),(1516686985310,0,82001,1516086423441,'2018-01-23 05:56:25','hologram'),(1516687072270,1516629533520,82001,1508072633830,'2018-01-23 05:57:52','咯我就'),(1516687437251,1516686985310,82001,1516086423441,'2018-01-23 06:03:57','你家里好哦'),(1516691119239,1516686985310,38710,1516086423441,'2018-01-23 07:05:19','我喜欢Hololens嘿嘿'),(1516780129884,0,82001,1516086423441,'2018-01-24 07:48:49','aaa'),(1516783920998,0,82001,1513094436910,'2018-01-24 08:52:00','这个是实时的吗'),(1516785657724,0,82001,1516086423441,'2018-01-24 09:20:57','hj'),(1516805226757,1516785657724,38710,1516086423441,'2018-01-24 14:47:06','滑稽?'),(1516805340593,1516783920998,38710,1513094436910,'2018-01-24 14:49:00','看怎么定义 实时 。这个是仿微信朋友圈列表和QQ空间说说详情,在线同步的,但没做推送,所以不是QQ微信聊天那种即时通讯。'),(1516843720270,1516780129884,82001,1516086423441,'2018-01-25 01:28:40','ghj'),(1516862537978,1515057869554,70793,58,'2018-01-25 06:42:17','绝地逃亡吃鸡'),(1516931850067,0,82001,1516086423441,'2018-01-26 01:57:30','1111111111111'),(1516951734010,1514506206319,82001,1513094436910,'2018-01-26 07:28:54','火锅'),(1516951754620,0,82001,1513094436910,'2018-01-26 07:29:14','凤飞飞刚刚好'),(1516951826863,0,82001,170,'2018-01-26 07:30:26','黑珍珠'),(1517193267472,1513656045399,82001,1508072633830,'2018-01-29 02:34:27','1'),(1517193278459,0,82001,1508072633830,'2018-01-29 02:34:38','112'),(1517229342303,0,82001,1516086423441,'2018-01-29 12:35:42','几号抢的'),(1517234768450,1517229342303,93793,1516086423441,'2018-01-29 14:06:08','9号'),(1517303775429,1490863903900,82001,470,'2018-01-30 09:16:15','???'),(1517375165233,0,82001,1508053762227,'2018-01-31 05:06:05','666'),(1517730034960,0,82001,170,'2018-02-04 07:40:34','陌陌陌陌'),(1518365470893,44,82001,170,'2018-02-11 16:11:10','野蜂飞舞'),(1518614899681,0,82001,301,'2018-02-14 13:28:19','https://goo.gl/search/JJB+Sports\nJJB Sports,'),(1519719341810,0,82001,1516086423441,'2018-02-27 08:15:41','我也想抢一张'),(1519793574249,1519719341810,93793,1516086423441,'2018-02-28 04:52:54','哈哈,春运都过了啊'),(1519813825959,0,82001,1516086423441,'2018-02-28 10:30:25','距P民'),(1519974842508,0,82001,1516086423441,'2018-03-02 07:14:02','1111'),(1519974868848,1516691119239,82001,1516086423441,'2018-03-02 07:14:28','1111'),(1519979533242,0,82001,1508072633830,'2018-03-02 08:32:13','hj'),(1520231250819,0,82001,12,'2018-03-05 06:27:30','浑身难受呢'),(1520264640815,0,70793,1520242333325,'2018-03-05 15:44:00','兰博基尼'),(1520330788006,0,1520242280259,1514017444961,'2018-03-06 10:06:28','八组'),(1520578883309,0,82001,12,'2018-03-09 07:01:23','我用流量'),(1520699466219,1520578883309,82001,12,'2018-03-10 16:31:06','壕'),(1522074343188,1513656045399,82001,1508072633830,'2018-03-26 14:25:43','rrrrr'),(1522074360206,1519979533242,82001,1508072633830,'2018-03-26 14:26:00','tttt'),(1522657767636,120,82001,301,'2018-04-02 08:29:27','云画'),(1522741138316,1517193278459,82001,1508072633830,'2018-04-03 07:38:58','哦哦哦'),(1522986959852,1508072695833,82001,1508072633830,'2018-04-06 03:55:59','!????'),(1523936378484,0,1523935772553,1523936332614,'2018-04-17 03:39:38','不错不错哦'),(1524032180807,1519719341810,82001,1516086423441,'2018-04-18 06:16:20','你好啊'),(1524032244441,1519974842508,82001,1516086423441,'2018-04-18 06:17:24','干嘛,单身吗?'),(1524032255755,1519974842508,82001,1516086423441,'2018-04-18 06:17:35','单身到底吗?'),(1524032299622,0,82001,1516086423441,'2018-04-18 06:18:19','别给我得怂'),(1524032305810,1524032299622,82001,1516086423441,'2018-04-18 06:18:25','你好'),(1524178495587,0,1524042900591,1524178455305,'2018-04-19 22:54:55','嘻嘻'),(1524178500568,1524178495587,1524042900591,1524178455305,'2018-04-19 22:55:00','哈哈哈'),(1524190367904,0,38710,1524178455305,'2018-04-20 02:12:47','你头像用的是本地的路径,只有你能看到,别人看不到哦,可以换一个url'),(1524190412418,1524190367904,38710,1524178455305,'2018-04-20 02:13:32','我的资料>编辑>改下备注'),(1524190941111,1524032244441,82003,1516086423441,'2018-04-20 02:22:21','单身约吗?'),(1524190981549,1522657767636,82003,301,'2018-04-20 02:23:01','这个6'),(1524191012552,0,82003,1524178455305,'2018-04-20 02:23:32','早上好小姐姐'),(1524214012015,1524190367904,1524042900591,1524178455305,'2018-04-20 08:46:52','怎么换url'),(1524235902970,1524214012015,82003,1524178455305,'2018-04-20 14:51:42','在我的资料界面编辑备注'),(1524297798490,0,82001,1513094436910,'2018-04-21 08:03:18','gg'),(1524461430874,1519979533242,82001,1508072633830,'2018-04-23 05:30:30','哦哦哦'),(1524461436914,0,82001,1508072633830,'2018-04-23 05:30:36','莫'),(1524461441914,0,82001,1508072633830,'2018-04-23 05:30:41','默默'),(1524488068926,1524178500568,82001,1524178455305,'2018-04-23 12:54:28','哦哦哦'),(1524582671132,1524461441914,82003,1508072633830,'2018-04-24 15:11:11','陌陌'),(1524582716289,1524461441914,70793,1508072633830,'2018-04-24 15:11:56','脉脉'),(1524798402799,0,1523626157302,1524178455305,'2018-04-27 03:06:42','能不能把本地的图片传到服务器,这样大家都能看到了,用url换头像不太习惯'),(1524799118232,0,1523626157302,1512314438990,'2018-04-27 03:18:38','这些图片是怎么发上去的呢?我发动态只有默认的两张图'),(1524843908458,1524799118232,82001,1512314438990,'2018-04-27 15:45:08','在HttpRequest.addMoment中加的,因为APIJSON的Server Demo没做图片存储,所以目前只能自己传图片的url,可以百度图片上找哈'),(1524844181029,1524798402799,82001,1524178455305,'2018-04-27 15:49:41','确实有这样的问题,但这个Demo仅供展示APIJSON的接口数据增删改查的能力,又拍云,七牛等平台又需要对接及付费,所以Demo暂时不提供哈,需要的话可以自己搞。建议先把图片上传到又拍云等平台,拿回url再传到自己的服务器^_^'),(1524844222775,1524798402799,82001,1524178455305,'2018-04-27 15:50:22','目前也可以百度一张图,把对应的url传上去,大家就都能看到了哈哈'),(1525658333654,0,82001,1513094436910,'2018-05-07 01:58:53','q'),(1527821844576,0,1527821445610,1527821296110,'2018-06-01 02:57:24','好不好用啊'),(1527821876802,1527821844576,1527495857924,1527821296110,'2018-06-01 02:57:56','当然好用啊'),(1527837906576,0,38710,1527830331780,'2018-06-01 07:25:06','哇,好漂亮'),(1527837965006,0,82002,1527830474378,'2018-06-01 07:26:05','像平板电脑哈哈'),(1527862540820,0,1527495857924,1527830331780,'2018-06-01 14:15:40','谢谢你'),(1527862609352,1527837965006,1527495857924,1527830474378,'2018-06-01 14:16:49','ㄟ(≧◇≦)ㄏ'),(1528105592852,0,82001,1516086423441,'2018-06-04 09:46:32','aaaaa'),(1528250648974,0,82001,1523936332614,'2018-06-06 02:04:08','hshdv'),(1528270188205,0,1528250827953,1527830474378,'2018-06-06 07:29:48','这个图片是怎么发出来的啊,我发动态就只是那两张默认图片'),(1528278187969,0,82001,470,'2018-06-06 09:43:07','啊啊啊啊'),(1528289446172,0,82001,1528269988360,'2018-06-06 12:50:46','因为没做前端上传和后端保存图片的功能,APIJSONApp主要是用来展示APIJSON的自动化接口的'),(1528289580140,0,38710,1528274037224,'2018-06-06 12:53:00','这两张图片的url错了哦,都是网页url,所以小图加载不出来,只能点击后用WebView查看'),(1528327885509,1528289580140,1528250827953,1528274037224,'2018-06-06 23:31:25','噢噢,没想到你能这么快回复,谢谢'),(1528333168328,0,82001,1514017444961,'2018-06-07 00:59:28','zj'),(1528333174811,0,82001,1514017444961,'2018-06-07 00:59:34','xj'),(1528393204569,1528270188205,38710,1527830474378,'2018-06-07 17:40:04','把接口里的pictureList的值改下,里面包含图片url'),(1528463152459,1528463135762,1528339692804,1528462217322,'2018-06-08 13:05:52','我想去'),(1528463165903,0,1528339692804,1528462217322,'2018-06-08 13:06:05','我想去'),(1528516951218,0,82001,1528462217322,'2018-06-09 04:02:31','这里能约到小姐姐算我输୧(๑•̀⌄•́๑)૭'),(1528554476310,0,82001,1516086423441,'2018-06-09 14:27:56','thS'),(1528676480604,0,1528339692804,1528356421201,'2018-06-11 00:21:20','nihshs'),(1528677257985,0,1528339692804,1528676875139,'2018-06-11 00:34:17','aaa'),(1528679814166,0,1528339692804,1528676875139,'2018-06-11 01:16:54','12'),(1528681265496,1528516951218,1528339692804,1528462217322,'2018-06-11 01:41:05','你输了有什么惩罚吗?'),(1528698907535,0,82001,1516086423441,'2018-06-11 06:35:07','yhbv'),(1528703971675,1528681265496,82001,1528462217322,'2018-06-11 07:59:31','一起陪小姐姐出游*。٩(ˊωˋ*)و✧'),(1528799506317,1516805340593,82001,1513094436910,'2018-06-12 10:31:46','摩恩'),(1528972547638,0,82001,1528462217322,'2018-06-14 10:35:47','古古怪怪'),(1528972555336,0,82001,1528462217322,'2018-06-14 10:35:55','合计怕v就怕vi'),(1529730035521,0,82001,1527830331780,'2018-06-23 05:00:35','还有别的吗?'),(1530528524447,0,38710,1528269988360,'2018-07-02 10:48:44','所以HttpRequest里写死了两张图片url,你可以改下'),(1531063660028,0,82003,1531062713966,'2018-07-08 15:27:40','这是哪里啊?我也想去'),(1531412238453,0,82001,1528356378455,'2018-07-12 16:17:18','去啊'),(1531412264667,0,82003,1528356378455,'2018-07-12 16:17:44','去哪呢?'),(1531887938362,1531063660028,82001,1531062713966,'2018-07-18 04:25:38','是呀'),(1531894411487,0,82001,1520242333325,'2018-07-18 06:13:31','sssx'),(1531983163150,0,1531969715979,1531969818357,'2018-07-19 06:52:43','http://q18idc.com'),(1532057419100,0,38710,1531969818357,'2018-07-20 03:30:19','可以加上标题哦'),(1533008631299,1532057419100,82001,1531969818357,'2018-07-31 03:43:51','加上'),(1533120405110,1516780129884,82001,1516086423441,'2018-08-01 10:46:45','eeeeee'),(1533120420498,1528105592852,82001,1516086423441,'2018-08-01 10:47:00','eeeeeee'),(1533186909764,0,82001,1531969818357,'2018-08-02 05:15:09','hello'),(1533187733941,0,82001,1508072633830,'2018-08-02 05:28:53','好好'),(1533188056603,1531887938362,82001,1531062713966,'2018-08-02 05:34:16','顺带'),(1533195207026,0,82001,1531062713966,'2018-08-02 07:33:27','JJ'),(1533202426013,1533186909764,82003,1531969818357,'2018-08-02 09:33:46','world'),(1533202917743,1533186909764,82001,1531969818357,'2018-08-02 09:41:57','00'),(1533629063261,0,82001,1531969818357,'2018-08-07 08:04:23','大鸡鸡'),(1533631893738,0,82001,1531969818357,'2018-08-07 08:51:33','哈哈哈哈哈哈'),(1533809879340,1533186909764,82001,1531969818357,'2018-08-09 10:17:59','434'),(1533889646344,0,82001,1508072491570,'2018-08-10 08:27:26','11111111'),(1533902815448,0,82001,1531969818357,'2018-08-10 12:06:55','很不要吃'),(1533902902749,0,82001,1531969818357,'2018-08-10 12:08:22','性能还可以'),(1534053913157,1524190941111,1508072160401,1516086423441,'2018-08-12 06:05:13','怎么约?'),(1534128014211,0,82001,1520242333325,'2018-08-13 02:40:14','zxxx'),(1534412022857,0,82001,1531969818357,'2018-08-16 09:33:42','dgf'),(1534684074665,1531983163150,82001,1531969818357,'2018-08-19 13:07:54','ggggg'),(1534684209052,110,82001,371,'2018-08-19 13:10:09','44444444444444444444444444'),(1534926143012,0,82001,1508053762227,'2018-08-22 08:22:23','治标不治本在不在不在不'),(1534926149638,1517375165233,82001,1508053762227,'2018-08-22 08:22:29','把标准版申报表上班设备'),(1534992151350,0,82001,1516086423441,'2018-08-23 02:42:31','你咋不'),(1535279823332,0,82001,1520242333325,'2018-08-26 10:37:03','斤斤计较'),(1535279827983,0,82001,1520242333325,'2018-08-26 10:37:07','斤斤计较'),(1535598334136,1534992151350,82003,1516086423441,'2018-08-30 03:05:34','啥?'),(1535600352436,0,82001,1520242333325,'2018-08-30 03:39:12','6666666'),(1535600430479,0,82001,1520242333325,'2018-08-30 03:40:30','法拉利'),(1535785537390,1535279823332,82003,1520242333325,'2018-09-01 07:05:37','不好哦'),(1535785585222,1534926143012,82003,1508053762227,'2018-09-01 07:06:25','啥?'),(1535963519864,0,82001,1535781636403,'2018-09-03 08:31:59','gghhh'),(1535963525135,1535963519864,82001,1535781636403,'2018-09-03 08:32:05','gyuji'),(1536337000073,1516686985310,82001,1516086423441,'2018-09-07 16:16:40','heh'),(1536378833060,0,82001,1508072633830,'2018-09-08 03:53:53','真的嘛'),(1536469270492,0,82001,1528356496939,'2018-09-09 05:01:10','这是啥表情?Σ(ŎдŎ|||)ノノ'),(1536805661269,0,70793,1536805585275,'2018-09-13 02:27:41','6s再战一年'),(1537373307627,0,82001,1516086423441,'2018-09-19 16:08:27','。。。'),(1537410620002,0,82001,1536805585275,'2018-09-20 02:30:20','不一样'),(1537710348414,0,82001,1516086423441,'2018-09-23 13:45:48','hhj'),(1537710359760,0,82001,1516086423441,'2018-09-23 13:45:59','锵锵锵'),(1537857324518,0,82001,1536805585275,'2018-09-25 06:35:24','嗯呢'),(1537857334299,1537857324518,82001,1536805585275,'2018-09-25 06:35:34','嗯嗯'),(1539252343243,1539252313711,82001,15,'2018-10-11 10:05:43','dxdf'),(1539252350604,1539252337210,82001,15,'2018-10-11 10:05:50','djdnjd'),(1539868250267,1531063660028,82001,1531062713966,'2018-10-18 13:10:50','555555555555555555'),(1539868258868,1533188056603,82001,1531062713966,'2018-10-18 13:10:58','555555555'),(1539868269471,1539868250267,82001,1531062713966,'2018-10-18 13:11:09','4444444444444'),(1539868275645,1531887938362,82001,1531062713966,'2018-10-18 13:11:15','22222222222222222'),(1539960436993,0,82001,1539868023868,'2018-10-19 14:47:16','111'),(1541496033857,0,82001,301,'2018-11-06 09:20:33','能解决'),(1541651688961,1539960436993,82001,1539868023868,'2018-11-08 04:34:48','哈哈'),(1541815269164,0,82001,1541667945772,'2018-11-10 02:01:09','11'),(1543193682067,0,1528339692804,1528269822710,'2018-11-26 00:54:42','ss'),(1544503960414,1537410620002,1544503822963,1536805585275,'2018-12-11 04:52:40','664984'),(1545527888416,0,82001,1553096819293,'2018-12-23 01:18:08','hello'),(1545527898986,1545527888416,82001,1553096819293,'2018-12-23 01:18:18','world'),(1545527923036,1545527888416,82001,1553096819293,'2018-12-23 01:18:43','还差还差还差'),(1545927001999,1545895875719,82001,1553096819293,'2018-12-27 16:10:02','哦哦哦www'),(1546050386785,0,82001,1516086423441,'2018-12-29 02:26:26','不鸟你'),(1551080228544,0,82001,1553096819293,'2019-02-25 07:37:08','几何画板'),(1551080263524,0,82001,1516086423441,'2019-02-25 07:37:43','你就看看'),(1551409858047,0,82001,301,'2019-03-01 03:10:58','您'),(1551430453424,0,82001,1553096819293,'2019-03-01 08:54:13','啊啊'),(1551430465241,1551430453424,82001,1553096819293,'2019-03-01 08:54:25','123'),(1551430474490,1551430453424,82001,1553096819293,'2019-03-01 08:54:34','444'),(1551430485689,1551430453424,82001,1553096819293,'2019-03-01 08:54:45','品牌'),(1551430485828,0,82001,1553096819293,'2019-03-01 08:54:45','品牌'),(1551430579358,1516691119239,82001,1516086423441,'2019-03-01 08:56:19','555555'),(1551683545557,1490863711703,82001,511,'2019-03-04 07:12:25','科技'),(1552297994119,0,82001,1512314438990,'2019-03-11 09:53:14','小米'),(1552298015880,1524799118232,82001,1512314438990,'2019-03-11 09:53:35','评论真的假的'),(1553053346095,0,82001,1553096819293,'2019-03-20 03:42:26','启'),(1553053362233,1551430485689,82001,1553096819293,'2019-03-20 03:42:42','集合vyih'),(1553065269448,0,82001,1553096819293,'2019-03-20 07:01:09','3333'),(1553095251058,0,82001,1552879777083,'2019-03-20 15:20:51','1111'),(1553433076832,0,82001,1552879777083,'2019-03-24 13:11:16','ggg'),(1553676470274,0,82001,1551184480247,'2019-03-27 08:47:50','hhhhhh'),(1553739854431,0,82001,1539868023868,'2019-03-28 02:24:14','。。。。'),(1553837780458,0,82001,1548145750536,'2019-03-29 05:36:20','王八蛋'),(1553837842352,0,82001,1541557989440,'2019-03-29 05:37:22','小赤佬'),(1554286215772,0,82001,301,'2019-04-03 10:10:15','hjkj'),(1554309729462,0,82001,1554263554668,'2019-04-03 16:42:09','没有我'),(1554309735842,1554309729462,82001,1554263554668,'2019-04-03 16:42:15','哦下午'),(1554372265517,0,82001,1554263554668,'2019-04-04 10:04:25','测试'),(1554373265740,0,82001,543,'2019-04-04 10:21:05','那你'),(1554373282941,0,82001,543,'2019-04-04 10:21:22','。'),(1554374987602,1554372265517,82001,1554263554668,'2019-04-04 10:49:47','@jj'),(1554704296003,0,82001,1554564640071,'2019-04-08 06:18:16','吃'),(1555136064488,0,82001,1555080161904,'2019-04-13 06:14:24','。。。'),(1555557851140,1512035117021,82001,32,'2019-04-18 03:24:11','1545456'),(1555557860778,1512035117021,82001,32,'2019-04-18 03:24:20','11564546'),(1555557868075,0,82001,32,'2019-04-18 03:24:28','121212312456'),(1555557877452,1555557868075,82001,32,'2019-04-18 03:24:37','123121545645'),(1556179911249,0,82001,1555146101956,'2019-04-25 08:11:51','莫有样在真'),(1556179917534,1556179911249,82001,1555146101956,'2019-04-25 08:11:57','你以为走咯'),(1556179921272,1556179911249,82001,1555146101956,'2019-04-25 08:12:01','匿名'),(1556434477631,0,82001,1556416532140,'2019-04-28 06:54:37','叶圣陶'),(1556447629955,0,82001,1556447474076,'2019-04-28 10:33:49','啦啦'),(1556447642188,0,82001,1556447473966,'2019-04-28 10:34:02','啦啦'),(1556608158926,0,82001,1556607959204,'2019-04-30 07:09:18','佛祖'),(1556953335513,0,82001,1556387217941,'2019-05-04 07:02:15','嘻嘻嘻'),(1556953340357,1556953335513,82001,1556387217941,'2019-05-04 07:02:20','额额额'),(1557024488300,1556953340357,82001,1556387217941,'2019-05-05 02:48:08','222'),(1557367770352,0,82001,1508072633830,'2019-05-09 02:09:30','哈哈'),(1557754720666,0,82001,1557754680146,'2019-05-13 13:38:40','卧槽(*`へ´*)'),(1557754765785,0,70793,1557754680146,'2019-05-13 13:39:25','链接发下'),(1557754909538,1557754765785,82012,1557754680146,'2019-05-13 13:41:49','https://baijiahao.baidu.com/s?id=1633129683262867786&wfr=spider&for=pc&isFailFlag=1'),(1557838424004,0,1508072105320,1557754680146,'2019-05-14 12:53:44','666'),(1558150056102,0,82001,1557754680146,'2019-05-18 03:27:36','哈哈哈'),(1558440302601,0,82001,1557415707105,'2019-05-21 12:05:02','咔咔咔'),(1558440307225,0,82001,1557415707105,'2019-05-21 12:05:07','i我看'),(1558440318878,0,82001,1555146144094,'2019-05-21 12:05:18','哦啊就是计算机'),(1558440335644,0,82001,1557754680146,'2019-05-21 12:05:35','就是就是觉得奖学金'),(1558440349435,0,82001,1557754680146,'2019-05-21 12:05:49','解决'),(1558440357141,1558440335644,82001,1557754680146,'2019-05-21 12:05:57','惊声尖叫额'),(1559570720109,0,82001,1555146144094,'2019-06-03 14:05:20','你妹'),(1561975421299,1555136064488,82001,1555080161904,'2019-07-01 10:03:41','是不是'),(1562736873122,1534926143012,82001,1508053762227,'2019-07-10 05:34:33','早睡早起'),(1563641514400,0,82001,1563605336326,'2019-07-20 16:51:54','年轻人不要想不开'),(1563688523833,0,82001,1563605336326,'2019-07-21 05:55:23','嗯嗯'),(1564493464049,0,82001,1557754680146,'2019-07-30 13:31:04','真牛逼'),(1564493476094,1564493464049,82001,1557754680146,'2019-07-30 13:31:16','你好'),(1566263781606,1490864016738,82001,511,'2019-08-20 01:16:21','11'),(1566270967414,0,82001,1558798664043,'2019-08-20 03:16:07','什么'),(1566270974217,0,82001,1558798664043,'2019-08-20 03:16:14','what'),(1566270981387,1566270974217,82001,1558798664043,'2019-08-20 03:16:21','什么鬼'),(1566270991974,0,82001,1558798664043,'2019-08-20 03:16:31','好的'),(1566271039886,1557838424004,82001,1557754680146,'2019-08-20 03:17:19','一部'),(1566271045802,1557838424004,82001,1557754680146,'2019-08-20 03:17:25','一部'),(1566271052875,0,82001,1557754680146,'2019-08-20 03:17:32','YY'),(1567393121856,1557754765785,82001,1557754680146,'2019-09-02 02:58:41','1'),(1568013785742,1558440302601,82001,1557415707105,'2019-09-09 07:23:05','sss'),(1569202210099,0,82001,1513094436910,'2019-09-23 01:30:10','6765765756'),(1569202223099,0,82001,1513094436910,'2019-09-23 01:30:23','3423423423'),(1569202232091,1569202210099,82001,1513094436910,'2019-09-23 01:30:32','哈哈'),(1569678189604,0,82001,1555146144094,'2019-09-28 13:43:09','测试'),(1570259450431,0,82001,1555146144094,'2019-10-05 07:10:50','测试'),(1570259496964,0,82001,1557254398070,'2019-10-05 07:11:36','测试'),(1570262731881,0,82001,1512314438990,'2019-10-05 08:05:31','Ghhh'),(1570414190099,1556179911249,82001,1555146101956,'2019-10-07 02:09:50','走着走着'),(1570609939135,0,82001,704,'2019-10-09 08:32:19','哈哈哈'),(1570609944245,0,82001,704,'2019-10-09 08:32:24','呃呃呃'),(1570848489553,0,82001,15,'2019-10-12 02:48:09','new test comment'),(1571143167015,0,82001,1557754680146,'2019-10-15 12:39:27','回老家了'),(1571143189570,1566271052875,82001,1557754680146,'2019-10-15 12:39:49','龙'),(1571143196630,1571143189570,82001,1557754680146,'2019-10-15 12:39:56','哦哦哦'),(1571186443512,0,82001,1568087960412,'2019-10-16 00:40:43','3条重复的'),(1571213891638,0,82001,1571204743107,'2019-10-16 08:18:11','tygh'),(1571273540137,0,82001,543,'2019-10-17 00:52:20','太快了'),(1571898706927,1571213891638,82001,1571204743107,'2019-10-24 06:31:46','刚刚'),(1571898712528,1571898706927,82001,1571204743107,'2019-10-24 06:31:52','高杠杆'),(1571898717482,1571213891638,82001,1571204743107,'2019-10-24 06:31:57','高杠杆'),(1571898744731,1571213891638,82001,1571204743107,'2019-10-24 06:32:24','大多数'),(1572016865523,0,82001,1571204743107,'2019-10-25 15:21:05','上'),(1572414457179,0,82001,1571204743107,'2019-10-30 05:47:37','what'),(1573024400998,1545527888416,82001,1553096819293,'2019-11-06 07:13:21','回来了'),(1573260321560,1551080228544,82001,1553096819293,'2019-11-09 00:45:21','不错'),(1575335926376,0,82001,1557415707105,'2019-12-03 01:18:46','你这个垃圾'),(1575518027953,0,82001,1572177746393,'2019-12-05 03:53:47','APIJSON,let interfaces and documents go to hell !'),(1576044746336,0,82001,1555140354825,'2019-12-11 06:12:26','KKK'),(1576044757973,0,82001,1554980613514,'2019-12-11 06:12:37','啊啊啊啊'),(1576678033649,1558440307225,82001,1557415707105,'2019-12-18 14:07:13','124'),(1576678047584,0,82001,1557415707105,'2019-12-18 14:07:27','12'),(1576678066098,0,82001,1576656048938,'2019-12-18 14:07:46','1'),(1576678070313,0,82001,1576656048938,'2019-12-18 14:07:50','4'),(1576678075715,1576678066098,82001,1576656048938,'2019-12-18 14:07:55','3'),(1576678097192,1576678075715,82001,1576656048938,'2019-12-18 14:08:17','7'),(1576678207904,0,82001,1572177746393,'2019-12-18 14:10:07','W'),(1577755506035,0,82001,1577614101414,'2019-12-31 01:25:06','好'),(1577757099959,0,82001,1576656048938,'2019-12-31 01:51:39','Xgh'),(1578752019362,1576678066098,82001,1576656048938,'2020-01-11 14:13:39','哦'),(1578805724906,0,82002,1578749963572,'2020-01-12 05:08:44','不错不错'),(1578887125067,0,82001,1555146144094,'2020-01-13 03:45:25','哈哈哈'),(1578887136566,1578887125067,82001,1555146144094,'2020-01-13 03:45:36','好'),(1578887186427,1541815269164,82001,1541667945772,'2020-01-13 03:46:26','哈哈'),(1578887189795,1541815269164,82001,1541667945772,'2020-01-13 03:46:29','哈哈哈哈哈'),(1579054015278,0,82001,1579005935420,'2020-01-15 02:06:55','的'),(1580809235970,0,82001,15,'2020-02-04 09:40:35','测试新增评论'),(1580809243433,0,82001,15,'2020-02-04 09:40:43','测试新增评论'),(1580809247199,0,82002,15,'2020-02-04 09:40:47','测试新增评论'),(1580809253279,0,82002,15,'2020-02-04 09:40:53','测试新增评论'),(1580809261753,0,82003,15,'2020-02-04 09:41:01','测试新增评论'),(1580809267795,0,82003,15,'2020-02-04 09:41:07','测试新增评论'),(1581059432012,0,82001,1554263554668,'2020-02-07 07:10:32','f7udfu'),(1581271679320,0,82001,15,'2020-02-09 18:07:59','测试新增评论'),(1581271679641,0,82001,15,'2020-02-09 18:07:59','test'),(1581314845034,0,82001,12,'2020-02-01 16:00:00','测试新增评论'),(1581314846085,0,82001,15,'2020-02-10 06:07:26','测试新增评论'),(1581317301595,0,82001,15,'2020-02-10 06:48:21','测试新增评论'),(1581317302080,0,82001,15,'2020-02-10 06:48:22','测试新增评论'),(1581318494232,0,82002,15,'2020-02-10 07:08:14','测试新增评论'),(1581318494526,0,82002,15,'2020-02-10 07:08:14','测试新增评论'),(1581840085336,0,82001,15,'2020-02-16 08:01:25','测试新增评论'),(1581840085566,0,82001,15,'2020-02-16 08:01:25','测试新增评论'),(1581840090846,0,82001,15,'2020-02-16 08:01:30','测试新增评论'),(1581840091119,0,82001,15,'2020-02-16 08:01:31','测试新增评论'),(1581840561792,0,82001,15,'2020-02-16 08:09:21','测试新增评论'),(1581840562190,0,82001,15,'2020-02-16 08:09:22','测试新增评论'),(1581840563668,0,82002,15,'2020-02-16 08:09:23','测试新增评论'),(1581840564061,0,82002,15,'2020-02-16 08:09:24','测试新增评论'),(1581840565551,0,82003,15,'2020-02-16 08:09:25','测试新增评论'),(1581840565868,0,82003,15,'2020-02-16 08:09:25','测试新增评论'),(1581892352819,0,82001,1508053762227,'2020-02-16 22:32:32','哈哈'),(1582186658233,0,82001,1581840085564,'2020-02-20 08:17:38','十九大'),(1582285792834,0,82001,1581840090886,'2020-02-21 11:49:52','test'),(1582519512994,0,82001,1555140354825,'2020-02-24 04:45:12','shjs'),(1582640020344,0,82001,15,'2020-02-25 14:13:40','12312312'),(1582640020430,0,82001,15,'2020-02-25 14:13:40','12312312'),(1582640240197,0,82001,15,'2020-02-25 14:17:20','6565656'),(1582644957177,0,82001,15,'2020-02-25 15:35:57','654342365656'),(1582701813671,0,82001,15,'2020-02-26 07:23:33','测试新增评论'),(1582701814183,0,82001,15,'2020-02-26 07:23:34','测试新增评论'),(1582702330333,0,82003,15,'2020-02-26 07:32:10','测试新增评论'),(1582858859448,0,82001,15,'2020-02-28 03:00:59','测试新增评论'),(1582957239941,0,82001,1555146144094,'2020-02-29 06:20:39','来了'),(1583049847990,0,82001,15,'2020-03-01 08:04:07','测试新增评论'),(1583049848025,0,82001,15,'2020-03-01 08:04:08','测试新增评论'),(1583049851116,0,82001,15,'2020-03-01 08:04:11','测试新增评论'),(1583138159829,0,82002,15,'2020-03-02 08:35:59','测试新增评论'),(1583138160312,0,82002,15,'2020-03-02 08:36:00','测试新增评论'),(1583138266389,0,82002,15,'2020-03-02 08:37:46','测试新增评论'),(1583138266895,0,82002,15,'2020-03-02 08:37:46','测试新增评论'),(1583138410402,0,82001,1581475064861,'2020-03-02 08:40:10',';;;;;;;'),(1583140729801,0,82001,15,'2020-03-02 09:18:49','测试新增评论'),(1583140730287,0,82001,15,'2020-03-02 09:18:50','测试新增评论'),(1583165325702,0,82001,1582956883276,'2020-03-02 16:08:45','苓'),(1583212576906,1583138410402,82001,1581475064861,'2020-03-03 05:16:16',';;;;;;'),(1583212615761,1583138410402,82003,1581475064861,'2020-03-03 05:16:55','.....\n,,,,,,'),(1583212636095,1583138410402,82003,1581475064861,'2020-03-03 05:17:16','.....\n,,,,,,'),(1583313729056,0,82001,15,'2020-03-04 09:22:09','测试新增评论'),(1583313729639,0,82001,15,'2020-03-04 09:22:09','测试新增评论'),(1583379331644,0,82001,1581475094366,'2020-03-05 03:35:31','1111'),(1583379343007,1583379331644,82001,1581475094366,'2020-03-05 03:35:43','99999'),(1583561033388,1583212636095,82003,1581475064861,'2020-03-07 06:03:53','test\n....\n,,,,,'),(1583574205958,0,82003,15,'2020-03-07 09:43:25','测试新增评论'),(1583848843283,0,82001,1583574596245,'2020-03-10 14:00:43','哼哼唧唧'),(1583897660640,0,82001,1583574596245,'2020-03-11 03:34:20','打击打击'),(1583899494163,0,82001,15,'2020-03-11 04:04:54','测试新增评论'),(1584336841458,1583897660640,82001,1583574596245,'2020-03-16 05:34:01','好吧'),(1584336845779,1584336841458,82001,1583574596245,'2020-03-16 05:34:05','宝宝'),(1584974419803,0,82001,15,'2020-03-23 14:40:19','测试新增评论'),(1586415513001,0,82001,15,'2020-04-09 06:58:33','测试新增评论'),(1586651416816,0,82001,1581840085564,'2020-04-12 00:30:16','vv'),(1586711265952,0,82001,15,'2020-04-12 17:07:45','测试新增评论'),(1586758559597,0,82001,1586712081979,'2020-04-13 06:15:59','ububhbbhbhbh'),(1587120653760,0,82002,15,'2020-04-17 10:50:53','测试新增评论'),(1587446034099,0,82001,1587349974300,'2020-04-21 05:13:54','www'),(1587669249879,0,82003,15,'2020-04-23 19:14:09','测试新增评论'),(1587738623636,1587446034099,82001,1587349974300,'2020-04-24 14:30:23','ssss'),(1588068327783,0,82001,15,'2020-04-28 10:05:27','测试新增评论'),(1588170650271,0,82001,1588122569746,'2020-04-29 14:30:50','厉害'),(1588174179864,0,82001,1588083161530,'2020-04-29 15:29:39','记录'),(1588777859578,0,82001,15,'2020-05-06 15:10:59','测试新增评论'),(1589165545506,0,82001,1583574596245,'2020-05-11 02:52:25','地方唱歌'),(1589255344034,1511407702981,82001,371,'2020-05-12 03:49:04','就刚才v'),(1589255358661,1491119695580,82001,371,'2020-05-12 03:49:18','好吃'),(1589255368635,1491119695580,82001,371,'2020-05-12 03:49:28','家常菜比较'),(1589255382551,116,82001,371,'2020-05-12 03:49:42','u好v发'),(1589255390204,1589255382551,82001,371,'2020-05-12 03:49:50','u好赶紧'),(1590459074594,0,82001,1590145433460,'2020-05-26 02:11:14','哈哈'),(1590473610565,1590459074594,82001,1590145433460,'2020-05-26 06:13:30','啦啦啦啦');
/*!40000 ALTER TABLE `Comment` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Document`
--
DROP TABLE IF EXISTS `Document`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Document` (
`id` bigint(15) NOT NULL COMMENT '唯一标识',
`userId` bigint(15) NOT NULL COMMENT '用户id\n应该用adminId,只有当登录账户是管理员时才能操作文档。\n需要先建Admin表,新增登录等相关接口。',
`version` tinyint(4) NOT NULL DEFAULT '2' COMMENT '接口版本号\n<=0 - 不限制版本,任意版本都可用这个接口\n>0 - 在这个版本添加的接口',
`name` varchar(100) NOT NULL COMMENT '接口名称',
`url` varchar(250) NOT NULL COMMENT '请求地址',
`request` text NOT NULL COMMENT '请求\n用json格式会导致强制排序,而请求中引用赋值只能引用上面的字段,必须有序。',
`response` text COMMENT '标准返回结果JSON\n用json格式会导致强制排序,而请求中引用赋值只能引用上面的字段,必须有序。',
`header` text COMMENT '请求头 Request Header:\nkey: value //注释',
`date` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建日期',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='测试用例文档\n后端开发者在测试好后,把选好的测试用例上传,这样就能共享给前端/客户端开发者';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Document`
--
LOCK TABLES `Document` WRITE;
/*!40000 ALTER TABLE `Document` DISABLE KEYS */;
INSERT INTO `Document` VALUES (1,0,1,'test','/login','{\"type\": 0, \"phone\": \"13000082001\", \"version\": 1, \"password\": \"123456\"}',NULL,NULL,'2017-11-26 07:35:19'),(2,0,1,'注册(先获取验证码type:1)','/register','{\n \"Privacy\": {\n \"phone\": \"13000083333\",\n \"_password\": \"123456\"\n },\n \"User\": {\n \"name\": \"APIJSONUser\"\n },\n \"verify\": \"6840\"\n}','{\"code\":412,\"msg\":\"手机号或验证码错误!\"}',NULL,'2017-11-26 06:56:10'),(3,0,1,'退出登录','/logout','{}',NULL,NULL,'2017-11-26 09:36:10'),(1511689914598,0,1,'获取用户隐私信息','/gets','{\"tag\": \"Privacy\", \"Privacy\": {\"id\": 82001}}','{\"Privacy\":{\"id\":82001,\"more\":true,\"certified\":1,\"phone\":13000082001,\"balance\":9835.11},\"code\":200,\"msg\":\"success\"}',NULL,'2017-11-26 09:51:54'),(1511796155276,0,1,'获取验证码','/post/verify','{\"type\": 0, \"phone\": \"13000082001\"}','{\"Verify\":{\"id\":1533396718012,\"type\":0,\"phone\":13000082001,\"verify\":4995,\"date\":\"2018-08-04 23:31:58.0\"},\"tag\":\"Verify\",\"code\":200,\"msg\":\"success\"}',NULL,'2017-11-27 15:22:35'),(1511796208669,0,1,'检查验证码是否存在','/heads/verify','{\"type\": 0, \"phone\": \"13000082001\"}','{\"Verify\":{\"code\":200,\"msg\":\"success\",\"count\":1},\"code\":200,\"msg\":\"success\"}',NULL,'2017-11-27 15:23:28'),(1511796589078,0,1,'修改登录密码(先获取验证码type:2)-手机号+验证码','/put/password','{\"verify\": \"10322\", \"Privacy\": {\"phone\": \"13000082001\", \"_password\": \"666666\"}}','{\"code\":412,\"msg\":\"手机号或验证码错误!\"}',NULL,'2017-11-27 15:29:49'),(1511796882183,0,1,'充值(需要支付密码)/提现','/put/balance','{\"tag\": \"Privacy\", \"Privacy\": {\"id\": 82001, \"balance+\": 100.15, \"_payPassword\": \"123456\"}}','{\"Privacy\":{\"code\":200,\"msg\":\"success\",\"id\":82001,\"count\":1},\"code\":200,\"msg\":\"success\"}',NULL,'2017-11-27 15:34:42'),(1511963330794,0,2,'获取文档列表(即在线解析网页上的共享)-API调用方式','/get','{\n \"Document[]\": {\n \"Document\": {\n \"@role\": \"login\",\n \"@order\": \"version-,date-\"\n }\n }\n}',NULL,NULL,'2017-11-29 13:48:50'),(1511963677324,0,1,'获取用户','/get','{\"User\": {\"id\": 82001}}','{\"User\":{\"id\":82001,\"sex\":0,\"name\":\"测试改名\",\"tag\":\"APIJSON User\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\",\"contactIdList\":[82025,82024,82003,93793,70793],\"pictureList\":[\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"},\"code\":200,\"msg\":\"success\"}',NULL,'2017-11-29 13:54:37'),(1511963722969,0,1,'获取用户列表(\"id{}\":contactIdList)-朋友页','/get','{\n \"User[]\": {\n \"count\": 10,\n \"page\": 0,\n \"User\": {\n \"@column\": \"id,sex,name,tag,head\",\n \"@order\": \"name+\",\n \"id{}\": [\n 82002,\n 82004,\n 70793\n ]\n }\n }\n}','{\"User[]\":[{\"id\":82002,\"sex\":1,\"name\":\"Happy~\",\"tag\":\"iOS\",\"head\":\"http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000\"},{\"id\":70793,\"sex\":0,\"name\":\"Strong\",\"tag\":\"djdj\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\"},{\"id\":82004,\"sex\":0,\"name\":\"Tommy\",\"tag\":\"fasef\",\"head\":\"http://static.oschina.net/uploads/user/1200/2400261_50.png?t=1439638750000\"}],\"code\":200,\"msg\":\"success\"}',NULL,'2017-11-29 13:55:22'),(1511963990071,0,1,'获取动态Moment+User+praiseUserList','/get','{\n \"Moment\": {\n \"id\": 15\n },\n \"User\": {\n \"id@\": \"Moment/userId\",\n \"@column\": \"id,name,head\"\n },\n \"User[]\": {\n \"count\": 10,\n \"User\": {\n \"id{}@\": \"Moment/praiseUserIdList\",\n \"@column\": \"id,name\"\n }\n }\n}','{\"Moment\":{\"id\":15,\"userId\":70793,\"date\":\"2017-02-08 16:06:11.0\",\"content\":\"APIJSON is a JSON Transmission Structure Protocol…\",\"praiseUserIdList\":[82055,82002,38710],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"]},\"User\":{\"id\":70793,\"name\":\"Strong\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\"},\"User[]\":[{\"id\":38710,\"name\":\"TommyLemon\"},{\"id\":82002,\"name\":\"Happy~\"},{\"id\":82055,\"name\":\"Solid\"}],\"code\":200,\"msg\":\"success\"}',NULL,'2017-11-29 13:59:50'),(1511964176688,0,1,'获取评论列表-动态详情页Comment+User','/get','{\n \"[]\": {\n \"count\": 20,\n \"page\": 0,\n \"Comment\": {\n \"@order\": \"date+\",\n \"momentId\": 15\n },\n \"User\": {\n \"id@\": \"/Comment/userId\",\n \"@column\": \"id,name,head\"\n }\n }\n}','{\"[]\":[{\"Comment\":{\"id\":176,\"toId\":166,\"userId\":38710,\"momentId\":15,\"date\":\"2017-03-25 20:28:03.0\",\"content\":\"thank you\"},\"User\":{\"id\":38710,\"name\":\"TommyLemon\",\"head\":\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\"}},{\"Comment\":{\"id\":1490863469638,\"toId\":0,\"userId\":82002,\"momentId\":15,\"date\":\"2017-03-30 16:44:29.0\",\"content\":\"Just do it\"},\"User\":{\"id\":82002,\"name\":\"Happy~\",\"head\":\"http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000\"}},{\"Comment\":{\"id\":1490875660259,\"toId\":1490863469638,\"userId\":82055,\"momentId\":15,\"date\":\"2017-03-30 20:07:40.0\",\"content\":\"I prove wht you said(??????)\"},\"User\":{\"id\":82055,\"name\":\"Solid\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1508227456407,\"toId\":0,\"userId\":82001,\"momentId\":15,\"date\":\"2017-10-17 16:04:16.0\",\"content\":\"hsh\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1509346606036,\"toId\":0,\"userId\":82001,\"momentId\":15,\"date\":\"2017-10-30 14:56:46.0\",\"content\":\"测\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1525933255901,\"userId\":82001,\"momentId\":15,\"date\":\"2018-05-10 14:20:55.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1527949266037,\"userId\":82001,\"momentId\":15,\"date\":\"2018-06-02 22:21:06.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1528339777338,\"userId\":82001,\"momentId\":15,\"date\":\"2018-06-07 10:49:37.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1528366915282,\"userId\":82001,\"momentId\":15,\"date\":\"2018-06-07 18:21:55.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1528366931410,\"userId\":82001,\"momentId\":15,\"date\":\"2018-06-07 18:22:11.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1528392773597,\"userId\":82001,\"momentId\":15,\"date\":\"2018-06-08 01:32:53.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1529034360708,\"userId\":82001,\"momentId\":15,\"date\":\"2018-06-15 11:46:00.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1529078537044,\"userId\":82001,\"momentId\":15,\"date\":\"2018-06-16 00:02:17.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1529401004622,\"userId\":82001,\"momentId\":15,\"date\":\"2018-06-19 17:36:44.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1529401505690,\"userId\":82001,\"momentId\":15,\"date\":\"2018-06-19 17:45:05.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1529468113356,\"userId\":82001,\"momentId\":15,\"date\":\"2018-06-20 12:15:13.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1529724026842,\"userId\":82001,\"momentId\":15,\"date\":\"2018-06-23 11:20:26.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1529909214303,\"userId\":82001,\"momentId\":15,\"date\":\"2018-06-25 14:46:54.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1530276831779,\"userId\":82001,\"momentId\":15,\"date\":\"2018-06-29 20:53:51.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1531365764793,\"userId\":82001,\"momentId\":15,\"date\":\"2018-07-12 11:22:44.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}}],\"code\":200,\"msg\":\"success\"}',NULL,'2017-11-29 14:02:56'),(1511967853339,0,1,'获取动态列表Moment+User+User:parise[]+Comment[]','/get','{ \"[]\": { \"count\": 5, \"page\": 0, \"Moment\": { \"@order\": \"date+\" }, \"User\": { \"id@\": \"/Moment/userId\", \"@column\": \"id,name,head\" }, \"User[]\": { \"count\": 10, \"User\": { \"id{}@\": \"[]/Moment/praiseUserIdList\", \"@column\": \"id,name\" } }, \"[]\": { \"count\": 6, \"Comment\": { \"@order\": \"date+\", \"momentId@\": \"[]/Moment/id\" }, \"User\": { \"id@\": \"/Comment/userId\", \"@column\": \"id,name\" } } } }','{\"[]\":[{\"Moment\":{\"id\":301,\"userId\":93793,\"date\":\"2017-02-01 19:14:31.0\",\"content\":\"This is a Content...-301\",\"praiseUserIdList\":[38710,93793,82003,82005,82040,82055,82002,82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\"]},\"User\":{\"id\":93793,\"name\":\"Mike\",\"head\":\"http://static.oschina.net/uploads/user/48/96331_50.jpg\"},\"User[]\":[{\"id\":38710,\"name\":\"TommyLemon\"},{\"id\":82001,\"name\":\"测试改名\"},{\"id\":82002,\"name\":\"Happy~\"},{\"id\":82003,\"name\":\"Wechat\"},{\"id\":82005,\"name\":\"Jan\"},{\"id\":82040,\"name\":\"Dream\"},{\"id\":82055,\"name\":\"Solid\"},{\"id\":93793,\"name\":\"Mike\"}],\"[]\":[{\"Comment\":{\"id\":45,\"toId\":0,\"userId\":93793,\"momentId\":301,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"This is a Content...-45\"},\"User\":{\"id\":93793,\"name\":\"Mike\"}},{\"Comment\":{\"id\":51,\"toId\":45,\"userId\":82003,\"momentId\":301,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"This is a Content...-51\"},\"User\":{\"id\":82003,\"name\":\"Wechat\"}},{\"Comment\":{\"id\":76,\"toId\":45,\"userId\":93793,\"momentId\":301,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"This is a Content...-76\"},\"User\":{\"id\":93793,\"name\":\"Mike\"}},{\"Comment\":{\"id\":120,\"toId\":0,\"userId\":93793,\"momentId\":301,\"date\":\"2017-03-02 13:56:06.0\",\"content\":\"This is a Content...-110\"},\"User\":{\"id\":93793,\"name\":\"Mike\"}},{\"Comment\":{\"id\":124,\"toId\":0,\"userId\":82001,\"momentId\":301,\"date\":\"2017-03-02 13:56:06.0\",\"content\":\"This is a Content...-114\"},\"User\":{\"id\":82001,\"name\":\"测试改名\"}},{\"Comment\":{\"id\":1490781009548,\"toId\":51,\"userId\":82001,\"momentId\":301,\"date\":\"2017-03-29 17:50:09.0\",\"content\":\"3\"},\"User\":{\"id\":82001,\"name\":\"测试改名\"}}]},{\"Moment\":{\"id\":58,\"userId\":90814,\"date\":\"2017-02-01 19:14:31.0\",\"content\":\"This is a Content...-435\",\"praiseUserIdList\":[38710,82003,82005,93793,82006,82044,82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172507_aMmH.jpg\"]},\"User\":{\"id\":90814,\"name\":\"007\",\"head\":\"http://static.oschina.net/uploads/user/51/102723_50.jpg?t=1449212504000\"},\"User[]\":[{\"id\":38710,\"name\":\"TommyLemon\"},{\"id\":82001,\"name\":\"测试改名\"},{\"id\":82003,\"name\":\"Wechat\"},{\"id\":82005,\"name\":\"Jan\"},{\"id\":82006,\"name\":\"Meria\"},{\"id\":82044,\"name\":\"Love\"},{\"id\":93793,\"name\":\"Mike\"}],\"[]\":[{\"Comment\":{\"id\":13,\"toId\":0,\"userId\":82005,\"momentId\":58,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"This is a Content...-13\"},\"User\":{\"id\":82005,\"name\":\"Jan\"}},{\"Comment\":{\"id\":77,\"toId\":13,\"userId\":93793,\"momentId\":58,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"This is a Content...-77\"},\"User\":{\"id\":93793,\"name\":\"Mike\"}},{\"Comment\":{\"id\":97,\"toId\":13,\"userId\":82006,\"momentId\":58,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"This is a Content...-97\"},\"User\":{\"id\":82006,\"name\":\"Meria\"}},{\"Comment\":{\"id\":167,\"userId\":82001,\"momentId\":58,\"date\":\"2017-03-25 19:48:41.0\",\"content\":\"Nice!\"},\"User\":{\"id\":82001,\"name\":\"测试改名\"}},{\"Comment\":{\"id\":173,\"userId\":38710,\"momentId\":58,\"date\":\"2017-03-25 20:25:13.0\",\"content\":\"Good\"},\"User\":{\"id\":38710,\"name\":\"TommyLemon\"}},{\"Comment\":{\"id\":188,\"toId\":97,\"userId\":82001,\"momentId\":58,\"date\":\"2017-03-26 15:21:32.0\",\"content\":\"1646\"},\"User\":{\"id\":82001,\"name\":\"测试改名\"}}]},{\"Moment\":{\"id\":371,\"userId\":82002,\"date\":\"2017-02-01 19:14:31.0\",\"content\":\"This is a Content...-371\",\"praiseUserIdList\":[90814,93793,82003,82005,82006,82040,82002,82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/c98b1c86af136745cc4626c6ece830f76de9ee83/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343930383036362d313837323233393236352e6a7067\",\"http://static.oschina.net/uploads/img/201604/22172507_aMmH.jpg\",\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\"]},\"User\":{\"id\":82002,\"name\":\"Happy~\",\"head\":\"http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000\"},\"User[]\":[{\"id\":82001,\"name\":\"测试改名\"},{\"id\":82002,\"name\":\"Happy~\"},{\"id\":82003,\"name\":\"Wechat\"},{\"id\":82005,\"name\":\"Jan\"},{\"id\":82006,\"name\":\"Meria\"},{\"id\":82040,\"name\":\"Dream\"},{\"id\":90814,\"name\":\"007\"},{\"id\":93793,\"name\":\"Mike\"}],\"[]\":[{\"Comment\":{\"id\":68,\"toId\":0,\"userId\":82005,\"momentId\":371,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"This is a Content...-68\"},\"User\":{\"id\":82005,\"name\":\"Jan\"}},{\"Comment\":{\"id\":157,\"userId\":93793,\"momentId\":371,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"This is a Content...-157\"},\"User\":{\"id\":93793,\"name\":\"Mike\"}},{\"Comment\":{\"id\":110,\"toId\":0,\"userId\":93793,\"momentId\":371,\"date\":\"2017-02-01 19:23:24.0\",\"content\":\"This is a Content...-110\"},\"User\":{\"id\":93793,\"name\":\"Mike\"}},{\"Comment\":{\"id\":114,\"toId\":0,\"userId\":82001,\"momentId\":371,\"date\":\"2017-03-02 13:56:06.0\",\"content\":\"This is a Content...-114\"},\"User\":{\"id\":82001,\"name\":\"测试改名\"}},{\"Comment\":{\"id\":115,\"toId\":0,\"userId\":38710,\"momentId\":371,\"date\":\"2017-03-02 13:56:06.0\",\"content\":\"This is a Content...-115\"},\"User\":{\"id\":38710,\"name\":\"TommyLemon\"}},{\"Comment\":{\"id\":116,\"toId\":0,\"userId\":70793,\"momentId\":371,\"date\":\"2017-03-02 13:56:06.0\",\"content\":\"This is a Content...-116\"},\"User\":{\"id\":70793,\"name\":\"Strong\"}}]},{\"Moment\":{\"id\":170,\"userId\":70793,\"date\":\"2017-02-01 19:14:31.0\",\"content\":\"This is a Content...-73\",\"praiseUserIdList\":[82044,82002,82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172508_mpwj.jpg\"]},\"User\":{\"id\":70793,\"name\":\"Strong\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\"},\"User[]\":[{\"id\":82001,\"name\":\"测试改名\"},{\"id\":82002,\"name\":\"Happy~\"},{\"id\":82044,\"name\":\"Love\"}],\"[]\":[{\"Comment\":{\"id\":44,\"toId\":0,\"userId\":82003,\"momentId\":170,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"This is a Content...-44\"},\"User\":{\"id\":82003,\"name\":\"Wechat\"}},{\"Comment\":{\"id\":54,\"toId\":0,\"userId\":82004,\"momentId\":170,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"This is a Content...-54\"},\"User\":{\"id\":82004,\"name\":\"Tommy\"}},{\"Comment\":{\"id\":99,\"toId\":44,\"userId\":70793,\"momentId\":170,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"This is a Content...-99\"},\"User\":{\"id\":70793,\"name\":\"Strong\"}},{\"Comment\":{\"id\":206,\"toId\":54,\"userId\":82001,\"momentId\":170,\"date\":\"2017-03-29 11:04:23.0\",\"content\":\"ejej\"},\"User\":{\"id\":82001,\"name\":\"测试改名\"}},{\"Comment\":{\"id\":1490780759866,\"toId\":99,\"userId\":82001,\"momentId\":170,\"date\":\"2017-03-29 17:45:59.0\",\"content\":\"99\"},\"User\":{\"id\":82001,\"name\":\"测试改名\"}},{\"Comment\":{\"id\":1490863661426,\"toId\":1490780759866,\"userId\":70793,\"momentId\":170,\"date\":\"2017-03-30 16:47:41.0\",\"content\":\"66\"},\"User\":{\"id\":70793,\"name\":\"Strong\"}}]},{\"Moment\":{\"id\":470,\"userId\":38710,\"date\":\"2017-02-01 19:14:31.0\",\"content\":\"This is a Content...-470\",\"praiseUserIdList\":[82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172507_Pz9Y.png\"]},\"User\":{\"id\":38710,\"name\":\"TommyLemon\",\"head\":\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\"},\"User[]\":[{\"id\":82001,\"name\":\"测试改名\"}],\"[]\":[{\"Comment\":{\"id\":4,\"toId\":0,\"userId\":38710,\"momentId\":470,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"This is a Content...-4\"},\"User\":{\"id\":38710,\"name\":\"TommyLemon\"}},{\"Comment\":{\"id\":22,\"toId\":221,\"userId\":82001,\"momentId\":470,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"测试修改评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\"}},{\"Comment\":{\"id\":47,\"toId\":4,\"userId\":70793,\"momentId\":470,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"This is a Content...-47\"},\"User\":{\"id\":70793,\"name\":\"Strong\"}},{\"Comment\":{\"id\":1490863507114,\"toId\":4,\"userId\":82003,\"momentId\":470,\"date\":\"2017-03-30 16:45:07.0\",\"content\":\"yes\"},\"User\":{\"id\":82003,\"name\":\"Wechat\"}},{\"Comment\":{\"id\":1490863903900,\"toId\":0,\"userId\":82006,\"momentId\":470,\"date\":\"2017-03-30 16:51:43.0\",\"content\":\"SOGA\"},\"User\":{\"id\":82006,\"name\":\"Meria\"}},{\"Comment\":{\"id\":1491740899179,\"toId\":0,\"userId\":82001,\"momentId\":470,\"date\":\"2017-04-09 20:28:19.0\",\"content\":\"www\"},\"User\":{\"id\":82001,\"name\":\"测试改名\"}}]}],\"code\":200,\"msg\":\"success\"}',NULL,'2017-11-29 15:04:13'),(1511969181103,0,1,'添加朋友','/put','{\n \"User\": {\n \"id\": 82001,\n \"contactIdList+\": [93793]\n },\n \"tag\": \"User\"\n}','{\"User\":{\"id\":82001,\"contactIdList+\":[93793],\"@role\":\"owner\"},\"code\":409,\"msg\":\"PUT User, contactIdList:93793 已存在!\"}',NULL,'2017-11-29 15:26:21'),(1511969417632,0,1,'点赞/取消点赞','/put','{\n \"Moment\": {\n \"id\": 15,\n \"praiseUserIdList-\": [\n 82001\n ]\n },\n \"tag\": \"Moment\"\n}','{\"Moment\":{\"code\":200,\"msg\":\"success\",\"id\":15,\"count\":1},\"code\":200,\"msg\":\"success\"}',NULL,'2017-11-29 15:30:17'),(1511969630371,0,1,'新增评论','/post','{ \"Comment\": { \"momentId\": 15, \"content\": \"测试新增评论\" }, \"tag\": \"Comment\" }','{\"Comment\":{\"code\":200,\"msg\":\"success\",\"id\":1533140610714,\"count\":1},\"code\":200,\"msg\":\"success\"}',NULL,'2017-11-29 15:33:50'),(1511970009071,0,1,'新增动态','/post','{ \"Moment\": { \"content\": \"测试新增动态\", \"pictureList\": [\"http://static.oschina.net/uploads/user/48/96331_50.jpg\" ] }, \"tag\": \"Moment\" }','{\"Moment\":{\"code\":200,\"msg\":\"success\",\"id\":1533140610716,\"count\":1},\"code\":200,\"msg\":\"success\"}',NULL,'2017-11-29 15:40:09'),(1511970224332,0,1,'修改用户信息','/put','{\r \"User\": {\r \"id\": 82001,\r \"name\": \"测试账号\"\r },\r \"tag\": \"User\"\r }','{\"User\":{\"code\":200,\"msg\":\"success\",\"id\":82001,\"count\":1},\"code\":200,\"msg\":\"success\"}',NULL,'2017-11-29 15:43:44'),(1512216131854,0,1,'获取文档列表(即在线解析网页上的文档)-表和字段、请求格式限制','/get','{\n \"[]\": {\n \"Table\": {\n \"TABLE_SCHEMA\": \"sys\",\n \"TABLE_TYPE\": \"BASE TABLE\",\n \"TABLE_NAME!$\": [\n \"\\\\_%\",\n \"sys\\\\_%\",\n \"system\\\\_%\"\n ],\n \"@order\": \"TABLE_NAME+\",\n \"@column\": \"TABLE_NAME,TABLE_COMMENT\"\n },\n \"Column[]\": {\n \"Column\": {\n \"TABLE_NAME@\": \"[]/Table/TABLE_NAME\",\n \"@column\": \"COLUMN_NAME,COLUMN_TYPE,IS_NULLABLE,COLUMN_COMMENT\"\n }\n }\n },\n \"Request[]\": {\n \"Request\": {\n \"@order\": \"version-,method-\"\n }\n }\n}',NULL,NULL,'2017-12-02 12:02:11'),(1521901518764,0,2,'功能符(对象关键词): ⑤从pictureList获取第0张图片:','/get','{ \"User\": { \"id\": 38710, \"@position\": 0, \"firstPicture()\": \"getFromArray(pictureList,@position)\" } }','{\"User\":{\"id\":38710,\"sex\":0,\"name\":\"TommyLemon\",\"tag\":\"Android&Java\",\"head\":\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"contactIdList\":[82003,82005,90814,82004,82009,82002,82044,93793,70793],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\",\"@position\":0,\"firstPicture\":\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\"},\"code\":200,\"msg\":\"success\"}',NULL,'2018-03-24 14:25:18'),(1521901610783,0,2,'功能符(对象关键词): ④查询 按userId分组、id最大值>=100 的Moment数组','/get','{\"[]\":{\"count\":10,\"Moment\":{\"@column\":\"userId;max(id):maxId\",\"@group\":\"userId\",\"@having\":\"maxId>=100\"}}}','{\"[]\":[{\"Moment\":{\"userId\":38710,\"maxId\":1537025707417}},{\"Moment\":{\"userId\":70793,\"maxId\":551}},{\"Moment\":{\"userId\":82001,\"maxId\":1537025634931}},{\"Moment\":{\"userId\":82002,\"maxId\":1531062713966}},{\"Moment\":{\"userId\":82003,\"maxId\":1536805585275}},{\"Moment\":{\"userId\":82045,\"maxId\":1508073178489}},{\"Moment\":{\"userId\":82056,\"maxId\":1514858533480}},{\"Moment\":{\"userId\":93793,\"maxId\":1516086423441}},{\"Moment\":{\"userId\":1520242280259,\"maxId\":1520242333325}},{\"Moment\":{\"userId\":1523626157302,\"maxId\":1523936332614}}],\"code\":200,\"msg\":\"success\"}',NULL,'2018-03-24 14:26:50'),(1521901682845,0,2,'功能符(对象关键词): ③查询按userId分组的Moment数组','/get','{\"[]\":{\"count\":10,\"Moment\":{\"@column\":\"userId,id\",\"@group\":\"userId,id\"}}}','{\"[]\":[{\"Moment\":{\"userId\":38710,\"id\":235}},{\"Moment\":{\"userId\":38710,\"id\":470}},{\"Moment\":{\"userId\":38710,\"id\":511}},{\"Moment\":{\"userId\":38710,\"id\":595}},{\"Moment\":{\"userId\":38710,\"id\":704}},{\"Moment\":{\"userId\":38710,\"id\":1491200468898}},{\"Moment\":{\"userId\":38710,\"id\":1493835799335}},{\"Moment\":{\"userId\":38710,\"id\":1512314438990}},{\"Moment\":{\"userId\":38710,\"id\":1513094436910}},{\"Moment\":{\"userId\":38710,\"id\":1537025625613}}],\"code\":200,\"msg\":\"success\"}',NULL,'2018-03-24 14:28:02'),(1521901746808,0,2,'功能符(对象关键词): ②查询按 name降序、id默认顺序 排序的User数组','/get','{\"[]\":{\"count\":10,\"User\":{\"@column\":\"name,id\",\"@order\":\"name-,id\"}}}','{\"[]\":[{\"User\":{\"name\":\"赵钱孙李\",\"id\":1508072071492}},{\"User\":{\"name\":\"测试改名\",\"id\":82001}},{\"User\":{\"name\":\"梦\",\"id\":1528264711016}},{\"User\":{\"name\":\"宁旭\",\"id\":1532188114543}},{\"User\":{\"name\":\"四五六\",\"id\":1508072160401}},{\"User\":{\"name\":\"哈哈哈\",\"id\":1524042900591}},{\"User\":{\"name\":\"周吴郑王\",\"id\":1508072105320}},{\"User\":{\"name\":\"七八九十\",\"id\":1508072202871}},{\"User\":{\"name\":\"一二三\",\"id\":1499057230629}},{\"User\":{\"name\":\"Yong\",\"id\":82027}}],\"code\":200,\"msg\":\"success\"}',NULL,'2018-03-24 14:29:06'),(1521901787202,0,2,'功能符(对象关键词): ①只查询id,sex,name这几列并且请求结果也按照这个顺序','/get','{\"User\":{\"@column\":\"id,sex,name\",\"id\":38710}}','{\"User\":{\"id\":38710,\"sex\":0,\"name\":\"TommyLemon\"},\"code\":200,\"msg\":\"success\"}',NULL,'2018-03-24 14:29:47'),(1521902033331,0,2,'功能符(数组关键词): ③查询User数组和对应的User总数','/get','{\"[]\":{\"query\":2,\"count\":5,\"User\":{}},\"total@\":\"/[]/total\"}','{\"[]\":[{\"User\":{\"id\":38710,\"sex\":0,\"name\":\"TommyLemon\",\"tag\":\"Android&Java\",\"head\":\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"contactIdList\":[82003,82005,90814,82004,82009,82002,82044,93793,70793],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":70793,\"sex\":0,\"name\":\"Strong\",\"tag\":\"djdj\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\",\"contactIdList\":[38710,82002],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/788c0a7e11a\",\"https://camo.githubusercontent.com/f513f67\"],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82001,\"sex\":0,\"name\":\"测试改名\",\"tag\":\"APIJSON User\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\",\"contactIdList\":[82025,82024,82003,93793,82012,82028,82021,82006,82030,82035],\"pictureList\":[\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82002,\"sex\":1,\"name\":\"Happy~\",\"tag\":\"iOS\",\"head\":\"http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000\",\"contactIdList\":[82005,82001,38710],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82003,\"sex\":1,\"name\":\"Wechat\",\"head\":\"http://common.cnblogs.com/images/wechat.png\",\"contactIdList\":[82001,93793],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}}],\"total\":121,\"code\":200,\"msg\":\"success\"}',NULL,'2018-03-24 14:33:53'),(1521902069870,0,2,'功能符(数组关键词): ②查询第3页的User数组,每页5个','/get','{\"[]\":{\"count\":5,\"page\":3,\"User\":{}}}','{\"[]\":[{\"User\":{\"id\":82025,\"sex\":1,\"name\":\"Tommy\",\"head\":\"http://static.oschina.net/uploads/user/629/1258821_50.jpg?t=1378063141000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82026,\"sex\":0,\"name\":\"iOS\",\"head\":\"http://static.oschina.net/uploads/user/1200/2400261_50.png?t=1439638750000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82027,\"sex\":0,\"name\":\"Yong\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82028,\"sex\":1,\"name\":\"gaeg\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82029,\"sex\":0,\"name\":\"GASG\",\"head\":\"http://common.cnblogs.com/images/wechat.png\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}}],\"code\":200,\"msg\":\"success\"}',NULL,'2018-03-24 14:34:29'),(1521902110679,0,2,'功能符(数组关键词): ①查询User数组,最多5个','/get','{\"[]\":{\"count\":5,\"User\":{}}}','{\"[]\":[{\"User\":{\"id\":38710,\"sex\":0,\"name\":\"TommyLemon\",\"tag\":\"Android&Java\",\"head\":\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"contactIdList\":[82003,82005,90814,82004,82009,82002,82044,93793,70793],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":70793,\"sex\":0,\"name\":\"Strong\",\"tag\":\"djdj\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\",\"contactIdList\":[38710,82002],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/788c0a7e11a\",\"https://camo.githubusercontent.com/f513f67\"],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82001,\"sex\":0,\"name\":\"测试改名\",\"tag\":\"APIJSON User\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\",\"contactIdList\":[82025,82024,82003,93793,82012,82028,82021,82006,82030,82035],\"pictureList\":[\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82002,\"sex\":1,\"name\":\"Happy~\",\"tag\":\"iOS\",\"head\":\"http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000\",\"contactIdList\":[82005,82001,38710],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82003,\"sex\":1,\"name\":\"Wechat\",\"head\":\"http://common.cnblogs.com/images/wechat.png\",\"contactIdList\":[82001,93793],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}}],\"code\":200,\"msg\":\"success\"}',NULL,'2018-03-24 14:35:10'),(1521903761688,0,2,'功能符(逻辑运算): ③ ! 非运算','/head','{\"User\":{\"id!{}\":[82001,38710]}}','{\"User\":{\"code\":200,\"msg\":\"success\",\"count\":119},\"code\":200,\"msg\":\"success\"}',NULL,'2018-03-24 15:02:41'),(1521903828409,0,2,'功能符(逻辑运算): ② | 或运算','/head','{\"User\":{\"id|{}\":\">90000,<=80000\"}}','{\"User\":{\"code\":200,\"msg\":\"success\",\"count\":72},\"code\":200,\"msg\":\"success\"}',NULL,'2018-03-24 15:03:48'),(1521903882829,0,2,'功能符(逻辑运算): ① & 与运算','/head','{\"User\":{\"id&{}\":\">80000,<=90000\"}}','{\"User\":{\"code\":200,\"msg\":\"success\",\"count\":49},\"code\":200,\"msg\":\"success\"}',NULL,'2018-03-24 15:04:42'),(1521904098110,0,2,'功能符: 减少 或 去除','/put/balance','{\n \n \"Privacy\": {\n \"id\": 82001,\n \"balance+\": -100,\n \"_payPassword\": \"123456\"\n },\"tag\": \"Privacy\"\n}','{\"Privacy\":{\"code\":200,\"msg\":\"success\",\"id\":82001,\"count\":1},\"code\":200,\"msg\":\"success\"}',NULL,'2018-03-24 15:08:18'),(1521904162065,0,2,'功能符: 增加 或 扩展','/put','{\n \"Moment\": {\n \"id\": 15,\n \"praiseUserIdList+\": [\n 82001\n ]\n },\n \"tag\": \"Moment\"\n}','{\"Moment\":{\"code\":200,\"msg\":\"success\",\"id\":15,\"count\":1},\"code\":200,\"msg\":\"success\"}',NULL,'2018-03-24 15:09:22'),(1521904337053,0,2,'功能符: 新建别名','/get','{\"Comment\":{\"@column\":\"id,toId:parentId\",\"id\":51}}','{\"Comment\":{\"id\":51,\"parentId\":45},\"code\":200,\"msg\":\"success\"}',NULL,'2018-03-24 15:12:17'),(1521904394041,0,2,'功能符: 正则匹配','/get','{\"User[]\":{\"count\":3,\"User\":{\"name?\":\"^[0-9]+$\"}}}','{\"User[]\":[{\"id\":90814,\"sex\":0,\"name\":\"007\",\"head\":\"http://static.oschina.net/uploads/user/51/102723_50.jpg?t=1449212504000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":1528339692804,\"sex\":1,\"name\":\"568599\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[1528250827953,1528264711016],\"date\":\"2018-06-07 10:48:12.0\"}],\"code\":200,\"msg\":\"success\"}',NULL,'2018-03-24 15:13:14'),(1521904437583,0,2,'功能符: 模糊搜索','/get','{\"User[]\":{\"count\":3,\"User\":{\"name$\":\"%m%\"}}}','{\"User[]\":[{\"id\":38710,\"sex\":0,\"name\":\"TommyLemon\",\"tag\":\"Android&Java\",\"head\":\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"contactIdList\":[82003,82005,90814,82004,82009,82002,82044,93793,70793],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":82004,\"sex\":0,\"name\":\"Tommy\",\"tag\":\"fasef\",\"head\":\"http://static.oschina.net/uploads/user/1200/2400261_50.png?t=1439638750000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":82006,\"sex\":1,\"name\":\"Meria\",\"head\":\"http://static.oschina.net/uploads/user/998/1997902_50.jpg?t=1407806577000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}],\"code\":200,\"msg\":\"success\"}',NULL,'2018-03-24 15:13:57'),(1521904547991,0,2,'功能符: 引用赋值','/get','{\"Moment\":{\n \"userId\":38710\n},\n\"User\":{\n \"id@\":\"/Moment/userId\"\n}}','{\"Moment\":{\"id\":235,\"userId\":38710,\"date\":\"2017-02-08 16:06:11.0\",\"content\":\"APIJSON,let interfaces and documents go to hell !\",\"praiseUserIdList\":[82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_mpwj.jpg\",\"http://static.oschina.net/uploads/user/1332/2664107_50.jpg?t=1457405500000\"]},\"User\":{\"id\":38710,\"sex\":0,\"name\":\"TommyLemon\",\"tag\":\"Android&Java\",\"head\":\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"contactIdList\":[82003,82005,90814,82004,82009,82002,82044,93793,70793],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"},\"code\":200,\"msg\":\"success\"}',NULL,'2018-03-24 15:15:47'),(1521904617126,0,2,'功能符: 远程调用函数','/get','{ \"Moment\": { \"id\": 301, \"@column\": \"userId,praiseUserIdList\", \"isPraised()\": \"isContain(praiseUserIdList,userId)\" } }','{\"Moment\":{\"userId\":93793,\"praiseUserIdList\":[38710,93793,82003,82005,82040,82055,82002,82001],\"isPraised\":true},\"code\":200,\"msg\":\"success\"}',NULL,'2018-03-24 15:16:57'),(1521904653621,0,2,'功能符: 包含选项范围','/get','{\"User[]\":{\"count\":3,\"User\":{\"contactIdList<>\":38710}}}','{\"User[]\":[{\"id\":70793,\"sex\":0,\"name\":\"Strong\",\"tag\":\"djdj\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\",\"contactIdList\":[38710,82002],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/788c0a7e11a\",\"https://camo.githubusercontent.com/f513f67\"],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":82002,\"sex\":1,\"name\":\"Happy~\",\"tag\":\"iOS\",\"head\":\"http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000\",\"contactIdList\":[82005,82001,38710],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":82005,\"sex\":1,\"name\":\"Jan\",\"tag\":\"AG\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[82001,38710,1532439021068],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}],\"code\":200,\"msg\":\"success\"}',NULL,'2018-03-24 15:17:33'),(1521904698934,0,2,'功能符: 匹配条件范围','/get','{\"User[]\":{\"count\":3,\"User\":{\"id{}\":\"<=80000,>90000\"}}}','{\"User[]\":[{\"id\":38710,\"sex\":0,\"name\":\"TommyLemon\",\"tag\":\"Android&Java\",\"head\":\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"contactIdList\":[82003,82005,90814,82004,82009,82002,82044,93793,70793],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":70793,\"sex\":0,\"name\":\"Strong\",\"tag\":\"djdj\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\",\"contactIdList\":[38710,82002],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/788c0a7e11a\",\"https://camo.githubusercontent.com/f513f67\"],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":90814,\"sex\":0,\"name\":\"007\",\"head\":\"http://static.oschina.net/uploads/user/51/102723_50.jpg?t=1449212504000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}],\"code\":200,\"msg\":\"success\"}',NULL,'2018-03-24 15:18:18'),(1521904756673,0,2,'功能符: 查询数组','/get','{\"User[]\":{\"count\":3,\"User\":{}}}','{\"User[]\":[{\"id\":38710,\"sex\":0,\"name\":\"TommyLemon\",\"tag\":\"Android&Java\",\"head\":\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"contactIdList\":[82003,82005,90814,82004,82009,82002,82044,93793,70793],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":70793,\"sex\":0,\"name\":\"Strong\",\"tag\":\"djdj\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\",\"contactIdList\":[38710,82002],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/788c0a7e11a\",\"https://camo.githubusercontent.com/f513f67\"],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":82001,\"sex\":0,\"name\":\"测试改名\",\"tag\":\"APIJSON User\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\",\"contactIdList\":[82025,82024,82003,93793],\"pictureList\":[\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"}],\"code\":200,\"msg\":\"success\"}',NULL,'2018-03-24 15:19:16'),(1521905263827,0,2,'操作方法(DELETE): 删除数据','/delete','{\n \"Moment\":{\n \"id\":120\n },\n \"tag\":\"Moment\"\n}','{\"Moment\":{\"code\":404,\"msg\":\"可能对象不存在!\",\"id\":120,\"count\":0},\"Comment\":{\"code\":404,\"msg\":\"可能对象不存在!\",\"count\":0},\"code\":200,\"msg\":\"success\"}',NULL,'2018-03-24 15:27:43'),(1521905599149,0,2,'操作方法(PUT): 修改数据,只修改所传的字段','/put','{\n \"Moment\":{\n \"id\":235,\n \"content\":\"APIJSON,let interfaces and documents go to hell !\"\n },\n \"tag\":\"Moment\"\n}','{\"Moment\":{\"code\":200,\"msg\":\"success\",\"id\":235,\"count\":1},\"code\":200,\"msg\":\"success\"}',NULL,'2018-03-24 15:33:19'),(1521905680679,0,2,'操作方法(POST): 新增数据','/post','{ \"Moment\": { \"content\": \"APIJSON,let interfaces and documents go to hell !\" }, \"tag\": \"Moment\" }','{\"Moment\":{\"code\":200,\"msg\":\"success\",\"id\":1538112282445,\"count\":1},\"code\":200,\"msg\":\"success\"}',NULL,'2018-03-24 15:34:40'),(1521905787849,0,2,'操作方法(HEADS): 安全/私密获取数量,用于获取银行卡数量等 对安全性要求高的数据总数','/heads','{\n \"Login\": {\n \"userId\": 38710,\"type\":1\n },\n \"tag\": \"Login\"\n}','{\"Login\":{\"code\":200,\"msg\":\"success\",\"count\":1},\"code\":200,\"msg\":\"success\"}',NULL,'2018-03-24 15:36:27'),(1521905868718,0,2,'操作方法(GETS): 安全/私密获取数据,用于获取钱包等 对安全性要求高的数据','/gets','{\n \"Privacy\": {\n \"id\": 82001\n },\n \"tag\": \"Privacy\"\n}','{\"Privacy\":{\"id\":82001,\"certified\":1,\"phone\":13000082001,\"balance\":9832.86},\"code\":200,\"msg\":\"success\"}',NULL,'2018-03-24 15:37:48'),(1521905895590,0,2,'操作方法(HEAD): 普通获取数量,可用浏览器调试','/head','{\n \"Moment\":{\n \"userId\":38710\n }\n}','{\"Moment\":{\"code\":200,\"msg\":\"success\",\"count\":10},\"code\":200,\"msg\":\"success\"}',NULL,'2018-03-24 15:38:15'),(1521905913187,0,2,'操作方法(GET): 普通获取数据,可用浏览器调试','/get','{\n \"Moment\":{\n \"id\":235\n }\n}','{\"Moment\":{\"id\":235,\"userId\":38710,\"date\":\"2017-02-08 16:06:11.0\",\"content\":\"APIJSON,let interfaces and documents go to hell !\",\"praiseUserIdList\":[82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_mpwj.jpg\",\"http://static.oschina.net/uploads/user/1332/2664107_50.jpg?t=1457405500000\"]},\"code\":200,\"msg\":\"success\"}',NULL,'2018-03-24 15:38:33'),(1521906240331,0,2,'User发布的Moment列表,每个Moment包括 1.发布者User 2.前3条Comment: ③不查已获取的User','/get','{\n \"[]\":{\n \"page\":0,\n \"count\":3, \n \"Moment\":{\n \"userId\":38710\n },\n \"Comment[]\":{\n \"count\":3,\n \"Comment\":{\n \"momentId@\":\"[]/Moment/id\"\n }\n }\n }\n}','{\"[]\":[{\"Moment\":{\"id\":235,\"userId\":38710,\"date\":\"2017-02-08 16:06:11.0\",\"content\":\"APIJSON,let interfaces and documents go to hell !\",\"praiseUserIdList\":[82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_mpwj.jpg\",\"http://static.oschina.net/uploads/user/1332/2664107_50.jpg?t=1457405500000\"]},\"Comment[]\":[{\"id\":160,\"toId\":0,\"userId\":82001,\"momentId\":235,\"date\":\"2017-03-02 13:56:06.0\",\"content\":\"This is a Content...-160\"},{\"id\":163,\"toId\":0,\"userId\":82001,\"momentId\":235,\"date\":\"2017-03-02 13:56:06.0\",\"content\":\"This is a Content...-163\"},{\"id\":168,\"toId\":1490442545077,\"userId\":82001,\"momentId\":235,\"date\":\"2017-03-25 19:49:14.0\",\"content\":\"???\"}]},{\"Moment\":{\"id\":470,\"userId\":38710,\"date\":\"2017-02-01 19:14:31.0\",\"content\":\"This is a Content...-470\",\"praiseUserIdList\":[82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172507_Pz9Y.png\"]},\"Comment[]\":[{\"id\":4,\"toId\":0,\"userId\":38710,\"momentId\":470,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"This is a Content...-4\"},{\"id\":22,\"toId\":221,\"userId\":82001,\"momentId\":470,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"测试修改评论\"},{\"id\":47,\"toId\":4,\"userId\":70793,\"momentId\":470,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"This is a Content...-47\"}]},{\"Moment\":{\"id\":511,\"userId\":38710,\"date\":\"2017-02-08 16:06:11.0\",\"praiseUserIdList\":[70793,93793,82001],\"pictureList\":[\"https://camo.githubusercontent.com/f513fa631bd780dc0ec3cf2663777e356dc3664f/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343733323232332d3337333933303233322e6a7067\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/c98b1c86af136745cc4626c6ece830f76de9ee83/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343930383036362d313837323233393236352e6a7067\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_aMmH.jpg\",\"https://camo.githubusercontent.com/c98b1c86af136745cc4626c6ece830f76de9ee83/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343930383036362d313837323233393236352e6a7067\"]},\"Comment[]\":[{\"id\":178,\"userId\":38710,\"momentId\":511,\"date\":\"2017-03-25 20:30:55.0\",\"content\":\"wbw\"},{\"id\":1490863711703,\"toId\":0,\"userId\":70793,\"momentId\":511,\"date\":\"2017-03-30 16:48:31.0\",\"content\":\"I hope I can join\"},{\"id\":1490863717947,\"toId\":178,\"userId\":70793,\"momentId\":511,\"date\":\"2017-03-30 16:48:37.0\",\"content\":\"what?\"}]}],\"code\":200,\"msg\":\"success\"}',NULL,'2018-03-24 15:44:00'),(1521906265959,0,2,'User发布的Moment列表,每个Moment包括 1.发布者User 2.前3条Comment: ②省去重复的User','/get','{\n \"User\":{\n \"id\":38710\n },\n \"[]\":{\n \"page\":0,\n \"count\":3, \n \"Moment\":{\n \"userId\":38710\n }, \n \"Comment[]\":{\n \"count\":3,\n \"Comment\":{\n \"momentId@\":\"[]/Moment/id\"\n }\n }\n }\n}','{\"User\":{\"id\":38710,\"sex\":0,\"name\":\"TommyLemon\",\"tag\":\"Android&Java\",\"head\":\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"contactIdList\":[82003,82005,90814,82004,82009,82002,82044,93793,70793],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"},\"[]\":[{\"Moment\":{\"id\":235,\"userId\":38710,\"date\":\"2017-02-08 16:06:11.0\",\"content\":\"APIJSON,let interfaces and documents go to hell !\",\"praiseUserIdList\":[82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_mpwj.jpg\",\"http://static.oschina.net/uploads/user/1332/2664107_50.jpg?t=1457405500000\"]},\"Comment[]\":[{\"id\":160,\"toId\":0,\"userId\":82001,\"momentId\":235,\"date\":\"2017-03-02 13:56:06.0\",\"content\":\"This is a Content...-160\"},{\"id\":163,\"toId\":0,\"userId\":82001,\"momentId\":235,\"date\":\"2017-03-02 13:56:06.0\",\"content\":\"This is a Content...-163\"},{\"id\":168,\"toId\":1490442545077,\"userId\":82001,\"momentId\":235,\"date\":\"2017-03-25 19:49:14.0\",\"content\":\"???\"}]},{\"Moment\":{\"id\":470,\"userId\":38710,\"date\":\"2017-02-01 19:14:31.0\",\"content\":\"This is a Content...-470\",\"praiseUserIdList\":[82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172507_Pz9Y.png\"]},\"Comment[]\":[{\"id\":4,\"toId\":0,\"userId\":38710,\"momentId\":470,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"This is a Content...-4\"},{\"id\":22,\"toId\":221,\"userId\":82001,\"momentId\":470,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"测试修改评论\"},{\"id\":47,\"toId\":4,\"userId\":70793,\"momentId\":470,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"This is a Content...-47\"}]},{\"Moment\":{\"id\":511,\"userId\":38710,\"date\":\"2017-02-08 16:06:11.0\",\"praiseUserIdList\":[70793,93793,82001],\"pictureList\":[\"https://camo.githubusercontent.com/f513fa631bd780dc0ec3cf2663777e356dc3664f/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343733323232332d3337333933303233322e6a7067\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/c98b1c86af136745cc4626c6ece830f76de9ee83/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343930383036362d313837323233393236352e6a7067\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_aMmH.jpg\",\"https://camo.githubusercontent.com/c98b1c86af136745cc4626c6ece830f76de9ee83/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343930383036362d313837323233393236352e6a7067\"]},\"Comment[]\":[{\"id\":178,\"userId\":38710,\"momentId\":511,\"date\":\"2017-03-25 20:30:55.0\",\"content\":\"wbw\"},{\"id\":1490863711703,\"toId\":0,\"userId\":70793,\"momentId\":511,\"date\":\"2017-03-30 16:48:31.0\",\"content\":\"I hope I can join\"},{\"id\":1490863717947,\"toId\":178,\"userId\":70793,\"momentId\":511,\"date\":\"2017-03-30 16:48:37.0\",\"content\":\"what?\"}]}],\"code\":200,\"msg\":\"success\"}',NULL,'2018-03-24 15:44:25'),(1521906517000,0,2,'User发布的Moment列表,每个Moment包括 1.发布者User 2.前3条Comment: ①指定id','/get','{\n \"[]\": {\n \"page\": 0,\n \"count\": 3,\n \"Moment\":{\"userId\":38710}, \"User\":{\"id\":38710} ,\n \"Comment[]\": {\n \"count\": 3,\n \"Comment\": {\n \"momentId@\": \"[]/Moment/id\"\n }\n }\n }\n}','{\"[]\":[{\"Moment\":{\"id\":235,\"userId\":38710,\"date\":\"2017-02-08 16:06:11.0\",\"content\":\"APIJSON,let interfaces and documents go to hell !\",\"praiseUserIdList\":[82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_mpwj.jpg\",\"http://static.oschina.net/uploads/user/1332/2664107_50.jpg?t=1457405500000\"]},\"User\":{\"id\":38710,\"sex\":0,\"name\":\"TommyLemon\",\"tag\":\"Android&Java\",\"head\":\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"contactIdList\":[82003,82005,90814,82004,82009,82002,82044,93793,70793],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"},\"Comment[]\":[{\"id\":160,\"toId\":0,\"userId\":82001,\"momentId\":235,\"date\":\"2017-03-02 13:56:06.0\",\"content\":\"This is a Content...-160\"},{\"id\":163,\"toId\":0,\"userId\":82001,\"momentId\":235,\"date\":\"2017-03-02 13:56:06.0\",\"content\":\"This is a Content...-163\"},{\"id\":168,\"toId\":1490442545077,\"userId\":82001,\"momentId\":235,\"date\":\"2017-03-25 19:49:14.0\",\"content\":\"???\"}]},{\"Moment\":{\"id\":470,\"userId\":38710,\"date\":\"2017-02-01 19:14:31.0\",\"content\":\"This is a Content...-470\",\"praiseUserIdList\":[82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172507_Pz9Y.png\"]},\"User\":{\"id\":38710,\"sex\":0,\"name\":\"TommyLemon\",\"tag\":\"Android&Java\",\"head\":\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"contactIdList\":[82003,82005,90814,82004,82009,82002,82044,93793,70793],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"},\"Comment[]\":[{\"id\":4,\"toId\":0,\"userId\":38710,\"momentId\":470,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"This is a Content...-4\"},{\"id\":22,\"toId\":221,\"userId\":82001,\"momentId\":470,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"测试修改评论\"},{\"id\":47,\"toId\":4,\"userId\":70793,\"momentId\":470,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"This is a Content...-47\"}]},{\"Moment\":{\"id\":511,\"userId\":38710,\"date\":\"2017-02-08 16:06:11.0\",\"praiseUserIdList\":[70793,93793,82001],\"pictureList\":[\"https://camo.githubusercontent.com/f513fa631bd780dc0ec3cf2663777e356dc3664f/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343733323232332d3337333933303233322e6a7067\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/c98b1c86af136745cc4626c6ece830f76de9ee83/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343930383036362d313837323233393236352e6a7067\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_aMmH.jpg\",\"https://camo.githubusercontent.com/c98b1c86af136745cc4626c6ece830f76de9ee83/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343930383036362d313837323233393236352e6a7067\"]},\"User\":{\"id\":38710,\"sex\":0,\"name\":\"TommyLemon\",\"tag\":\"Android&Java\",\"head\":\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"contactIdList\":[82003,82005,90814,82004,82009,82002,82044,93793,70793],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"},\"Comment[]\":[{\"id\":178,\"userId\":38710,\"momentId\":511,\"date\":\"2017-03-25 20:30:55.0\",\"content\":\"wbw\"},{\"id\":1490863711703,\"toId\":0,\"userId\":70793,\"momentId\":511,\"date\":\"2017-03-30 16:48:31.0\",\"content\":\"I hope I can join\"},{\"id\":1490863717947,\"toId\":178,\"userId\":70793,\"momentId\":511,\"date\":\"2017-03-30 16:48:37.0\",\"content\":\"what?\"}]}],\"code\":200,\"msg\":\"success\"}',NULL,'2018-03-24 15:48:37'),(1521907009307,0,2,'Moment列表,每个Moment包括 1.发布者User 2.前3条Comment','/get','{\n \"[]\":{\n \"page\":0, \n \"count\":3, \n \"Moment\":{}, \n \"User\":{\n \"id@\":\"/Moment/userId\"\n },\n \"Comment[]\":{\n \"count\":3,\n \"Comment\":{\n \"momentId@\":\"[]/Moment/id\"\n }\n }\n }\n}','{\"[]\":[{\"Moment\":{\"id\":12,\"userId\":70793,\"date\":\"2017-02-08 16:06:11.0\",\"content\":\"APIJSON,let interfaces and documents go to hell !\",\"praiseUserIdList\":[70793,93793,82044,82040,82055,90814,38710,82002,82006,1508072105320,82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/788c0a7e11a4f5aadef3c886f028c79b4808613a/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343932353935372d313732303737333630382e6a7067\",\"http://static.oschina.net/uploads/img/201604/22172507_Pz9Y.png\",\"https://camo.githubusercontent.com/c98b1c86af136745cc4626c6ece830f76de9ee83/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343930383036362d313837323233393236352e6a7067\",\"https://camo.githubusercontent.com/f513fa631bd780dc0ec3cf2663777e356dc3664f/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343733323232332d3337333933303233322e6a7067\",\"https://camo.githubusercontent.com/c98b1c86af136745cc4626c6ece830f76de9ee83/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343930383036362d313837323233393236352e6a7067\",\"https://camo.githubusercontent.com/f513fa631bd780dc0ec3cf2663777e356dc3664f/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343733323232332d3337333933303233322e6a7067\"]},\"User\":{\"id\":70793,\"sex\":0,\"name\":\"Strong\",\"tag\":\"djdj\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\",\"contactIdList\":[38710,82002],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/788c0a7e11a\",\"https://camo.githubusercontent.com/f513f67\"],\"date\":\"2017-02-01 19:21:50.0\"},\"Comment[]\":[{\"id\":162,\"toId\":0,\"userId\":93793,\"momentId\":12,\"date\":\"2017-03-06 13:03:45.0\",\"content\":\"This is a Content...-162\"},{\"id\":164,\"toId\":0,\"userId\":93793,\"momentId\":12,\"date\":\"2017-03-06 13:03:45.0\",\"content\":\"This is a Content...-164\"},{\"id\":172,\"toId\":162,\"userId\":82001,\"momentId\":12,\"date\":\"2017-03-25 20:22:58.0\",\"content\":\"OK\"}]},{\"Moment\":{\"id\":15,\"userId\":70793,\"date\":\"2017-02-08 16:06:11.0\",\"content\":\"APIJSON is a JSON Transmission Structure Protocol…\",\"praiseUserIdList\":[82002,70793,38710,93793,82001],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"]},\"User\":{\"id\":70793,\"sex\":0,\"name\":\"Strong\",\"tag\":\"djdj\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\",\"contactIdList\":[38710,82002],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/788c0a7e11a\",\"https://camo.githubusercontent.com/f513f67\"],\"date\":\"2017-02-01 19:21:50.0\"},\"Comment[]\":[{\"id\":176,\"toId\":166,\"userId\":38710,\"momentId\":15,\"date\":\"2017-03-25 20:28:03.0\",\"content\":\"thank you\"},{\"id\":1490863469638,\"toId\":0,\"userId\":82002,\"momentId\":15,\"date\":\"2017-03-30 16:44:29.0\",\"content\":\"Just do it\"},{\"id\":1490875660259,\"toId\":1490863469638,\"userId\":82055,\"momentId\":15,\"date\":\"2017-03-30 20:07:40.0\",\"content\":\"I prove wht you said(??????)\"}]},{\"Moment\":{\"id\":32,\"userId\":82002,\"date\":\"2017-02-08 16:06:11.0\",\"praiseUserIdList\":[38710,82002,82001],\"pictureList\":[\"https://camo.githubusercontent.com/f513fa631bd780dc0ec3cf2663777e356dc3664f/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343733323232332d3337333933303233322e6a7067\",\"https://camo.githubusercontent.com/5f5c4e0c4dc539c34e8eae8ac0cbc6dccdfee5d3/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343533333831362d323032373434343231382e6a7067\",\"http://static.oschina.net/uploads/img/201604/22172508_mpwj.jpg\"]},\"User\":{\"id\":82002,\"sex\":1,\"name\":\"Happy~\",\"tag\":\"iOS\",\"head\":\"http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000\",\"contactIdList\":[82005,82001,38710],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"},\"Comment[]\":[{\"id\":1512035117021,\"toId\":0,\"userId\":82001,\"momentId\":32,\"date\":\"2017-11-30 17:45:17.0\",\"content\":\"图片看不了啊\"},{\"id\":1512039030970,\"toId\":1512035117021,\"userId\":82001,\"momentId\":32,\"date\":\"2017-11-30 18:50:30.0\",\"content\":\"一般九宫格图片都是压缩图,分辨率在300*300左右,加载很快,点击放大后才是原图,1080P左右\"},{\"id\":1555557851140,\"toId\":1512035117021,\"userId\":82001,\"momentId\":32,\"date\":\"2019-04-18 11:24:11.0\",\"content\":\"1545456\"}]}],\"code\":200,\"msg\":\"success\",\"time:start/duration/end\":\"1556501639028/18/1556501639046\",\"query:depth/max\":\"5/5\",\"sql:generate/cache/execute/maxExecute\":\"15/9/6/200\"}',NULL,'2018-03-24 15:56:49'),(1521907303539,0,2,'User列表','/get','{\n \"User[]\":{\n \"page\":0,\n \"count\":3, \n \"User\":{\n \"sex\":0\n }\n }\n}','{\"User[]\":[{\"id\":38710,\"sex\":0,\"name\":\"TommyLemon\",\"tag\":\"Android&Java\",\"head\":\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"contactIdList\":[82003,82005,90814,82004,82009,82002,82044,93793,70793],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":70793,\"sex\":0,\"name\":\"Strong\",\"tag\":\"djdj\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\",\"contactIdList\":[38710,82002],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/788c0a7e11a\",\"https://camo.githubusercontent.com/f513f67\"],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":82001,\"sex\":0,\"name\":\"测试账号\",\"tag\":\"Dev\",\"head\":\"https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png\",\"contactIdList\":[82034,82006,82030,82021,82038],\"pictureList\":[\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"}],\"code\":200,\"msg\":\"success\",\"time:start/duration/end\":\"1556501639031/9/1556501639040\",\"query:depth/max\":\"3/5\",\"sql:generate/cache/execute/maxExecute\":\"3/2/1/200\"}',NULL,'2018-03-24 16:01:43'),(1521907317870,0,2,'Moment和对应的User','/get','{\n \"Moment\":{\n \"userId\":38710\n }, \n \"User\":{\n \"id\":38710\n }\n}','{\"Moment\":{\"id\":235,\"userId\":38710,\"date\":\"2017-02-08 16:06:11.0\",\"content\":\"APIJSON,let interfaces and documents go to hell !\",\"praiseUserIdList\":[82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_mpwj.jpg\",\"http://static.oschina.net/uploads/user/1332/2664107_50.jpg?t=1457405500000\"]},\"User\":{\"id\":38710,\"sex\":0,\"name\":\"TommyLemon\",\"tag\":\"Android&Java\",\"head\":\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"contactIdList\":[82003,82005,90814,82004,82009,82002,82044,93793,70793],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"},\"code\":200,\"msg\":\"success\",\"time:start/duration/end\":\"1556501639026/16/1556501639042\",\"query:depth/max\":\"1/5\",\"sql:generate/cache/execute/maxExecute\":\"2/0/2/200\"}',NULL,'2018-03-24 16:01:57'),(1521907333044,0,2,'User','/get','{\n \"User\":{\n \"id\":38710\n }\n}','{\"User\":{\"id\":38710,\"sex\":0,\"name\":\"TommyLemon\",\"tag\":\"Android&Java\",\"head\":\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"contactIdList\":[82003,82005,90814,82004,82009,82002,82044,93793,70793],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"},\"code\":200,\"msg\":\"success\",\"time:start/duration/end\":\"1556501639010/3/1556501639013\",\"query:depth/max\":\"1/5\",\"sql:generate/cache/execute/maxExecute\":\"1/0/1/200\"}',NULL,'2018-03-24 16:02:13'),(1521907333046,0,2,'Moment INNER JOIN User LEFT JOIN Comment','/get','{\n \"[]\": {\n \"count\": 10,\n \"page\": 0,\n \"join\": \"&/User/id@,</Comment/momentId@\",\n \"Moment\": {\n \"@order\": \"date+\"\n },\n \"User\": {\n \"name?\": [\n \"a\",\n \"t\"\n ],\n \"id@\": \"/Moment/userId\",\n \"@column\": \"id,name,head\"\n },\n \"Comment\": {\n \"momentId@\": \"/Moment/id\",\n \"@column\": \"id,momentId,content\"\n }\n }\n}','{\"[]\":[{\"Moment\":{\"id\":170,\"userId\":70793,\"date\":\"2017-02-01 19:14:31.0\",\"content\":\"This is a Content...-73\",\"praiseUserIdList\":[82044,82002,82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172508_mpwj.jpg\"]},\"User\":{\"id\":70793,\"name\":\"Strong\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\"},\"Comment\":{\"id\":99,\"momentId\":170,\"content\":\"This is a Content...-99\"}},{\"Moment\":{\"id\":170,\"userId\":70793,\"date\":\"2017-02-01 19:14:31.0\",\"content\":\"This is a Content...-73\",\"praiseUserIdList\":[82044,82002,82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172508_mpwj.jpg\"]},\"User\":{\"id\":70793,\"name\":\"Strong\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\"},\"Comment\":{\"id\":99,\"momentId\":170,\"content\":\"This is a Content...-99\"}},{\"Moment\":{\"id\":371,\"userId\":82002,\"date\":\"2017-02-01 19:14:31.0\",\"content\":\"This is a Content...-371\",\"praiseUserIdList\":[90814,93793,82003,82005,82006,82040,82002,82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/c98b1c86af136745cc4626c6ece830f76de9ee83/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343930383036362d313837323233393236352e6a7067\",\"http://static.oschina.net/uploads/img/201604/22172507_aMmH.jpg\",\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\"]},\"User\":{\"id\":82002,\"name\":\"Happy~\",\"head\":\"http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000\"},\"Comment\":{\"id\":182,\"momentId\":371,\"content\":\"hahaha\"}},{\"Moment\":{\"id\":170,\"userId\":70793,\"date\":\"2017-02-01 19:14:31.0\",\"content\":\"This is a Content...-73\",\"praiseUserIdList\":[82044,82002,82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172508_mpwj.jpg\"]},\"User\":{\"id\":70793,\"name\":\"Strong\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\"},\"Comment\":{\"id\":99,\"momentId\":170,\"content\":\"This is a Content...-99\"}},{\"Moment\":{\"id\":371,\"userId\":82002,\"date\":\"2017-02-01 19:14:31.0\",\"content\":\"This is a Content...-371\",\"praiseUserIdList\":[90814,93793,82003,82005,82006,82040,82002,82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/c98b1c86af136745cc4626c6ece830f76de9ee83/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343930383036362d313837323233393236352e6a7067\",\"http://static.oschina.net/uploads/img/201604/22172507_aMmH.jpg\",\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\"]},\"User\":{\"id\":82002,\"name\":\"Happy~\",\"head\":\"http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000\"},\"Comment\":{\"id\":182,\"momentId\":371,\"content\":\"hahaha\"}},{\"Moment\":{\"id\":371,\"userId\":82002,\"date\":\"2017-02-01 19:14:31.0\",\"content\":\"This is a Content...-371\",\"praiseUserIdList\":[90814,93793,82003,82005,82006,82040,82002,82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/c98b1c86af136745cc4626c6ece830f76de9ee83/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343930383036362d313837323233393236352e6a7067\",\"http://static.oschina.net/uploads/img/201604/22172507_aMmH.jpg\",\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\"]},\"User\":{\"id\":82002,\"name\":\"Happy~\",\"head\":\"http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000\"},\"Comment\":{\"id\":182,\"momentId\":371,\"content\":\"hahaha\"}},{\"Moment\":{\"id\":371,\"userId\":82002,\"date\":\"2017-02-01 19:14:31.0\",\"content\":\"This is a Content...-371\",\"praiseUserIdList\":[90814,93793,82003,82005,82006,82040,82002,82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/c98b1c86af136745cc4626c6ece830f76de9ee83/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343930383036362d313837323233393236352e6a7067\",\"http://static.oschina.net/uploads/img/201604/22172507_aMmH.jpg\",\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\"]},\"User\":{\"id\":82002,\"name\":\"Happy~\",\"head\":\"http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000\"},\"Comment\":{\"id\":182,\"momentId\":371,\"content\":\"hahaha\"}},{\"Moment\":{\"id\":371,\"userId\":82002,\"date\":\"2017-02-01 19:14:31.0\",\"content\":\"This is a Content...-371\",\"praiseUserIdList\":[90814,93793,82003,82005,82006,82040,82002,82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/c98b1c86af136745cc4626c6ece830f76de9ee83/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343930383036362d313837323233393236352e6a7067\",\"http://static.oschina.net/uploads/img/201604/22172507_aMmH.jpg\",\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\"]},\"User\":{\"id\":82002,\"name\":\"Happy~\",\"head\":\"http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000\"},\"Comment\":{\"id\":182,\"momentId\":371,\"content\":\"hahaha\"}},{\"Moment\":{\"id\":371,\"userId\":82002,\"date\":\"2017-02-01 19:14:31.0\",\"content\":\"This is a Content...-371\",\"praiseUserIdList\":[90814,93793,82003,82005,82006,82040,82002,82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/c98b1c86af136745cc4626c6ece830f76de9ee83/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343930383036362d313837323233393236352e6a7067\",\"http://static.oschina.net/uploads/img/201604/22172507_aMmH.jpg\",\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\"]},\"User\":{\"id\":82002,\"name\":\"Happy~\",\"head\":\"http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000\"},\"Comment\":{\"id\":182,\"momentId\":371,\"content\":\"hahaha\"}},{\"Moment\":{\"id\":371,\"userId\":82002,\"date\":\"2017-02-01 19:14:31.0\",\"content\":\"This is a Content...-371\",\"praiseUserIdList\":[90814,93793,82003,82005,82006,82040,82002,82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/c98b1c86af136745cc4626c6ece830f76de9ee83/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343930383036362d313837323233393236352e6a7067\",\"http://static.oschina.net/uploads/img/201604/22172507_aMmH.jpg\",\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\"]},\"User\":{\"id\":82002,\"name\":\"Happy~\",\"head\":\"http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000\"},\"Comment\":{\"id\":182,\"momentId\":371,\"content\":\"hahaha\"}}],\"code\":200,\"msg\":\"success\",\"time:start/duration/end\":\"1556501638957/51/1556501639008\",\"query:depth/max\":\"3/5\",\"sql:generate/cache/execute/maxExecute\":\"30/27/3/200\"}',NULL,'2018-03-24 16:02:43'),(1521907333047,0,2,'获取粉丝的动态列表','/get','{ \"Moment[]\": { \"join\": \"&/User/id@\", \"Moment\": {}, \"User\": { \"id@\": \"/Moment/userId\", \"contactIdList<>\": 82001, \"@column\": \"id\" } } }','{\"Moment[]\":[{\"id\":32,\"userId\":82002,\"date\":\"2017-02-08 16:06:11.0\",\"praiseUserIdList\":[38710,82002,82001],\"pictureList\":[\"https://camo.githubusercontent.com/f513fa631bd780dc0ec3cf2663777e356dc3664f/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343733323232332d3337333933303233322e6a7067\",\"https://camo.githubusercontent.com/5f5c4e0c4dc539c34e8eae8ac0cbc6dccdfee5d3/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343533333831362d323032373434343231382e6a7067\",\"http://static.oschina.net/uploads/img/201604/22172508_mpwj.jpg\"]},{\"id\":371,\"userId\":82002,\"date\":\"2017-02-01 19:14:31.0\",\"content\":\"This is a Content...-371\",\"praiseUserIdList\":[90814,93793,82003,82005,82006,82040,82002,82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/c98b1c86af136745cc4626c6ece830f76de9ee83/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343930383036362d313837323233393236352e6a7067\",\"http://static.oschina.net/uploads/img/201604/22172507_aMmH.jpg\",\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\"]},{\"id\":1508053762227,\"userId\":82003,\"date\":\"2017-10-15 15:49:22.0\",\"content\":\"我也试试\",\"praiseUserIdList\":[1515565976140,82001],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"]},{\"id\":1508072491570,\"userId\":82002,\"date\":\"2017-10-15 21:01:31.0\",\"content\":\"有点冷~\",\"praiseUserIdList\":[82001,82002],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"]},{\"id\":1508073178489,\"userId\":82045,\"date\":\"2017-10-15 21:12:58.0\",\"content\":\"发动态\",\"praiseUserIdList\":[82001],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"]},{\"id\":1514017444961,\"userId\":82002,\"date\":\"2017-12-23 16:24:04.0\",\"content\":\"123479589679\",\"praiseUserIdList\":[82002,1520242280259,82001,70793,1524042900591,1528264711016],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"]},{\"id\":1531062713966,\"userId\":82002,\"date\":\"2018-07-08 23:11:53.0\",\"content\":\"云南好美啊( ◞˟૩˟)◞\",\"praiseUserIdList\":[82001,82005,38710,70793,93793,82003,1531969715979],\"pictureList\":[\"https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1531072366455&di=c0d4b15b2c4b70aad49e6ae747f60742&imgtype=0&src=http%3A%2F%2Fpic1.win4000.com%2Fwallpaper%2F3%2F57a2a41f57d09.jpg\",\"https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1531072499167&di=5b5621d117edbc5d344a03ba0a6b580b&imgtype=0&src=http%3A%2F%2Fi0.szhomeimg.com%2FUploadFiles%2FBBS%2F2006%2F08%2F05%2F24752199_79122.91.jpg\"]},{\"id\":1536805585275,\"userId\":82003,\"date\":\"2018-09-13 10:26:25.0\",\"content\":\"iPhone Xs发布了,大家怎么看?\",\"praiseUserIdList\":[82002,82005,70793,82003,82001],\"pictureList\":[\"https://pic1.zhimg.com/80/v2-e129b40810070443add1c28e6185c894_hd.jpg\"]},{\"id\":1545564986045,\"userId\":82003,\"date\":\"2018-12-23 19:36:26.0\",\"content\":\"测试新增动态\",\"praiseUserIdList\":[82001],\"pictureList\":[\"http://static.oschina.net/uploads/user/48/96331_50.jpg\"]},{\"id\":1548145750536,\"userId\":82003,\"date\":\"2019-01-22 16:29:10.0\",\"content\":\"APIJSON,let interfaces and documents go to hell !\",\"praiseUserIdList\":[82001],\"pictureList\":[]}],\"code\":200,\"msg\":\"success\",\"time:start/duration/end\":\"1556501638963/39/1556501639002\",\"query:depth/max\":\"3/5\",\"sql:generate/cache/execute/maxExecute\":\"20/16/4/200\"}',NULL,'2018-03-24 16:03:13'),(1521907546128,0,2,'获取类似微信朋友圈的动态列表','/get','{\n \"[]\": {\n \"page\": 0,\n \"count\": 2,\n \"Moment\": {\n \"content$\": \"%a%\"\n },\n \"User\": {\n \"id@\": \"/Moment/userId\",\n \"@column\": \"id,name,head\"\n },\n \"Comment[]\": {\n \"count\": 2,\n \"Comment\": {\n \"momentId@\": \"[]/Moment/id\"\n }\n }\n }\n}','{\"[]\":[{\"Moment\":{\"id\":12,\"userId\":70793,\"date\":\"2017-02-08 16:06:11.0\",\"content\":\"APIJSON,let interfaces and documents go to hell !\",\"praiseUserIdList\":[70793,93793,82044,82040,82055,90814,38710,82002,82006,1508072105320,82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/788c0a7e11a4f5aadef3c886f028c79b4808613a/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343932353935372d313732303737333630382e6a7067\",\"http://static.oschina.net/uploads/img/201604/22172507_Pz9Y.png\",\"https://camo.githubusercontent.com/c98b1c86af136745cc4626c6ece830f76de9ee83/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343930383036362d313837323233393236352e6a7067\",\"https://camo.githubusercontent.com/f513fa631bd780dc0ec3cf2663777e356dc3664f/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343733323232332d3337333933303233322e6a7067\",\"https://camo.githubusercontent.com/c98b1c86af136745cc4626c6ece830f76de9ee83/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343930383036362d313837323233393236352e6a7067\",\"https://camo.githubusercontent.com/f513fa631bd780dc0ec3cf2663777e356dc3664f/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343733323232332d3337333933303233322e6a7067\"]},\"User\":{\"id\":70793,\"name\":\"Strong\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\"},\"Comment[]\":[{\"id\":162,\"toId\":0,\"userId\":93793,\"momentId\":12,\"date\":\"2017-03-06 13:03:45.0\",\"content\":\"This is a Content...-162\"},{\"id\":164,\"toId\":0,\"userId\":93793,\"momentId\":12,\"date\":\"2017-03-06 13:03:45.0\",\"content\":\"This is a Content...-164\"}]},{\"Moment\":{\"id\":15,\"userId\":70793,\"date\":\"2017-02-08 16:06:11.0\",\"content\":\"APIJSON is a JSON Transmission Structure Protocol…\",\"praiseUserIdList\":[82002,70793,38710,93793,82001],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"]},\"User\":{\"id\":70793,\"name\":\"Strong\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\"},\"Comment[]\":[{\"id\":176,\"toId\":166,\"userId\":38710,\"momentId\":15,\"date\":\"2017-03-25 20:28:03.0\",\"content\":\"thank you\"},{\"id\":1490863469638,\"toId\":0,\"userId\":82002,\"momentId\":15,\"date\":\"2017-03-30 16:44:29.0\",\"content\":\"Just do it\"}]}],\"code\":200,\"msg\":\"success\",\"time:start/duration/end\":\"1556501638962/38/1556501639000\",\"query:depth/max\":\"5/5\",\"sql:generate/cache/execute/maxExecute\":\"8/4/4/200\"}',NULL,'2018-03-24 16:05:46'),(1521907570451,0,2,'获取动态及发布者用户','/get','{\n \"Moment\": {},\n \"User\": {\n \"id@\": \"Moment/userId\"\n }\n}','{\"Moment\":{\"id\":12,\"userId\":70793,\"date\":\"2017-02-08 16:06:11.0\",\"content\":\"APIJSON,let interfaces and documents go to hell !\",\"praiseUserIdList\":[70793,93793,82044,82040,82055,90814,38710,82002,82006,1508072105320,82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/788c0a7e11a4f5aadef3c886f028c79b4808613a/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343932353935372d313732303737333630382e6a7067\",\"http://static.oschina.net/uploads/img/201604/22172507_Pz9Y.png\",\"https://camo.githubusercontent.com/c98b1c86af136745cc4626c6ece830f76de9ee83/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343930383036362d313837323233393236352e6a7067\",\"https://camo.githubusercontent.com/f513fa631bd780dc0ec3cf2663777e356dc3664f/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343733323232332d3337333933303233322e6a7067\",\"https://camo.githubusercontent.com/c98b1c86af136745cc4626c6ece830f76de9ee83/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343930383036362d313837323233393236352e6a7067\",\"https://camo.githubusercontent.com/f513fa631bd780dc0ec3cf2663777e356dc3664f/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343733323232332d3337333933303233322e6a7067\"]},\"User\":{\"id\":70793,\"sex\":0,\"name\":\"Strong\",\"tag\":\"djdj\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\",\"contactIdList\":[38710,82002],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/788c0a7e11a\",\"https://camo.githubusercontent.com/f513f67\"],\"date\":\"2017-02-01 19:21:50.0\"},\"code\":200,\"msg\":\"success\",\"time:start/duration/end\":\"1556501638952/40/1556501638992\",\"query:depth/max\":\"1/5\",\"sql:generate/cache/execute/maxExecute\":\"2/0/2/200\"}',NULL,'2018-03-24 16:06:10'),(1521907587429,0,2,'获取用户列表','/get','{\n \"[]\": {\n \"count\": 3,\n \"User\": {\n \"@column\": \"id,name\"\n }\n }\n}','{\"[]\":[{\"User\":{\"id\":38710,\"name\":\"TommyLemon\"}},{\"User\":{\"id\":70793,\"name\":\"Strong\"}},{\"User\":{\"id\":82001,\"name\":\"测试账号\"}}],\"code\":200,\"msg\":\"success\",\"sql:generate|cache|execute|maxExecute\":\"3|2|1|200\",\"depth:count|max\":\"3|5\",\"time:start|duration|end\":\"1576852241223|13|1576852241236\"}',NULL,'2018-03-24 16:06:27'),(1521907601298,0,2,'获取用户','/get','{\n \"User\":{\n }\n}','{\"User\":{\"id\":38710,\"sex\":0,\"name\":\"TommyLemon\",\"tag\":\"Android&Java\",\"head\":\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"contactIdList\":[82003,82005,90814,82004,82009,82002,82044,93793,70793],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"},\"code\":200,\"msg\":\"success\",\"sql:generate|cache|execute|maxExecute\":\"1|0|1|200\",\"depth:count|max\":\"1|5\",\"time:start|duration|end\":\"1576852233033|37|1576852233070\"}',NULL,'2018-03-24 16:06:41'),(1569382296303,82001,2,'登录','/login','{\n \"type\": 0,\n \"phone\": \"13000082001\",\n \"password\": \"123456\",\n \"version\": 1,\n \"remember\": false,\n \"defaults\": {\n \"@database\": \"MYSQL\",\n \"@schema\": \"sys\"\n }\n}',NULL,'','2019-09-25 03:31:36'),(1569382305979,82001,2,'测试查询','/get','{\n \"User\": {\n \"id\": 82001\n },\n \"[]\": {\n \"Comment\": {\n \"userId@\": \"User/id\"\n }\n }\n}','{\"User\":{\"id\":82001,\"sex\":0,\"name\":\"测试账号\",\"tag\":\"Dev\",\"head\":\"https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png\",\"contactIdList\":[82005,82009,82006,93794],\"pictureList\":[\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"},\"[]\":[{\"Comment\":{\"id\":22,\"toId\":221,\"userId\":82001,\"momentId\":470,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"测试修改评论\"}},{\"Comment\":{\"id\":114,\"toId\":0,\"userId\":82001,\"momentId\":371,\"date\":\"2017-03-02 13:56:06.0\",\"content\":\"This is a Content...-114\"}},{\"Comment\":{\"id\":124,\"toId\":0,\"userId\":82001,\"momentId\":301,\"date\":\"2017-03-02 13:56:06.0\",\"content\":\"This is a Content...-114\"}},{\"Comment\":{\"id\":160,\"toId\":0,\"userId\":82001,\"momentId\":235,\"date\":\"2017-03-02 13:56:06.0\",\"content\":\"This is a Content...-160\"}},{\"Comment\":{\"id\":163,\"toId\":0,\"userId\":82001,\"momentId\":235,\"date\":\"2017-03-02 13:56:06.0\",\"content\":\"This is a Content...-163\"}},{\"Comment\":{\"id\":167,\"toId\":0,\"userId\":82001,\"momentId\":58,\"date\":\"2017-03-25 19:48:41.0\",\"content\":\"Nice!\"}},{\"Comment\":{\"id\":168,\"toId\":1490442545077,\"userId\":82001,\"momentId\":235,\"date\":\"2017-03-25 19:49:14.0\",\"content\":\"???\"}},{\"Comment\":{\"id\":172,\"toId\":162,\"userId\":82001,\"momentId\":12,\"date\":\"2017-03-25 20:22:58.0\",\"content\":\"OK\"}},{\"Comment\":{\"id\":182,\"toId\":110,\"userId\":82001,\"momentId\":371,\"date\":\"2017-03-26 14:12:52.0\",\"content\":\"hahaha\"}},{\"Comment\":{\"id\":188,\"toId\":97,\"userId\":82001,\"momentId\":58,\"date\":\"2017-03-26 15:21:32.0\",\"content\":\"1646\"}}],\"code\":200,\"msg\":\"success\",\"sql:generate|cache|execute|maxExecute\":\"11|9|2|200\",\"depth:count|max\":\"3|5\",\"time:start|duration|end\":\"1580172104675|4|1580172104679\"}','','2019-09-25 03:31:45');
/*!40000 ALTER TABLE `Document` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Function`
--
DROP TABLE IF EXISTS `Function`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Function` (
`id` bigint(15) NOT NULL AUTO_INCREMENT,
`userId` bigint(15) NOT NULL COMMENT '管理员用户Id',
`name` varchar(50) NOT NULL COMMENT '方法名',
`arguments` varchar(100) DEFAULT NULL COMMENT '参数列表,每个参数的类型都是 String。\n用 , 分割的字符串 比 [JSONArray] 更好,例如 array,item ,更直观,还方便拼接函数。',
`demo` json NOT NULL COMMENT '可用的示例。\nTODO 改成 call,和返回值示例 back 对应。',
`detail` varchar(1000) NOT NULL COMMENT '详细描述',
`type` varchar(50) NOT NULL DEFAULT 'Object' COMMENT '返回值类型。TODO RemoteFunction 校验 type 和 back',
`version` tinyint(4) NOT NULL DEFAULT '0' COMMENT '允许的最低版本号,只限于GET,HEAD外的操作方法。\nTODO 使用 requestIdList 替代 version,tag,methods',
`tag` varchar(20) DEFAULT NULL COMMENT '允许的标签.\nnull - 允许全部\nTODO 使用 requestIdList 替代 version,tag,methods',
`methods` varchar(50) DEFAULT NULL COMMENT '允许的操作方法。\nnull - 允许全部\nTODO 使用 requestIdList 替代 version,tag,methods',
`date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`back` varchar(45) DEFAULT NULL COMMENT '返回值示例',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8 COMMENT='远程函数。强制在启动时校验所有demo是否能正常运行通过';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Function`
--
LOCK TABLES `Function` WRITE;
/*!40000 ALTER TABLE `Function` DISABLE KEYS */;
INSERT INTO `Function` VALUES (3,0,'countArray','array','{\"array\": [1, 2, 3]}','获取数组长度。没写调用键值对,会自动补全 \"result()\": \"countArray(array)\"','Object',0,NULL,NULL,'2018-10-13 08:23:23',NULL),(4,0,'countObject','object','{\"object\": {\"key0\": 1, \"key1\": 2}}','获取对象长度。','Object',0,NULL,NULL,'2018-10-13 08:23:23',NULL),(5,0,'isContain','array,value','{\"array\": [1, 2, 3], \"value\": 2}','判断是否数组包含值。','Object',0,NULL,NULL,'2018-10-13 08:23:23',NULL),(6,0,'isContainKey','object,key','{\"key\": \"id\", \"object\": {\"id\": 1}}','判断是否对象包含键。','Object',0,NULL,NULL,'2018-10-13 08:30:31',NULL),(7,0,'isContainValue','object,value','{\"value\": 1, \"object\": {\"id\": 1}}','判断是否对象包含值。','Object',0,NULL,NULL,'2018-10-13 08:30:31',NULL),(8,0,'getFromArray','array,position','{\"array\": [1, 2, 3], \"result()\": \"getFromArray(array,1)\"}','根据下标获取数组里的值。position 传数字时直接作为值,而不是从所在对象 request 中取值','Object',0,NULL,NULL,'2018-10-13 08:30:31',NULL),(9,0,'getFromObject','object,key','{\"key\": \"id\", \"object\": {\"id\": 1}}','根据键获取对象里的值。','Object',0,NULL,NULL,'2018-10-13 08:30:31',NULL),(10,0,'deleteCommentOfMoment','momentId','{\"momentId\": 1}','根据动态 id 删除它的所有评论','Object',0,'Moment','DELETE','2019-08-17 18:46:56',NULL),(11,0,'verifyIdList','array','{\"array\": [1, 2, 3], \"result()\": \"verifyIdList(array)\"}','校验类型为 id 列表','Object',0,NULL,NULL,'2019-08-17 19:58:33',NULL),(12,0,'verifyURLList','array','{\"array\": [\"http://123.com/1.jpg\", \"http://123.com/a.png\", \"http://www.abc.com/test.gif\"], \"result()\": \"verifyURLList(array)\"}','校验类型为 URL 列表','Object',0,NULL,NULL,'2019-08-17 19:58:33',NULL),(13,0,'getWithDefault','value,defaultValue','{\"value\": null, \"defaultValue\": 1}','如果 value 为 null,则返回 defaultValue','Object',0,NULL,NULL,'2019-08-20 15:26:36',NULL),(14,0,'removeKey','key','{\"key\": \"s\", \"key2\": 2}','从对象里移除 key','Object',0,NULL,NULL,'2019-08-20 15:26:36',NULL),(15,0,'getFunctionDemo',NULL,'{}','获取远程函数的 Demo','Object',0,NULL,NULL,'2019-08-20 15:26:36',NULL),(16,0,'getFunctionDetail',NULL,'{}','获取远程函数的详情','Object',0,NULL,NULL,'2019-08-20 15:26:36',NULL),(17,0,'getMethodArguments','methodArgs','{\"methodArgs\": \"methodArgs\"}','获取方法参数','Object',0,NULL,NULL,'2020-04-05 17:44:07',NULL),(18,0,'getMethodDefination','method,arguments,type,exceptions,language','{\"method\": \"method\"}','获取方法定义','Object',0,NULL,NULL,'2020-04-05 17:44:07',NULL),(19,0,'getMethodRequest',NULL,'{}','获取方法请求','Object',0,NULL,NULL,'2020-04-05 17:44:07',NULL);
/*!40000 ALTER TABLE `Function` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Login`
--
DROP TABLE IF EXISTS `Login`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Login` (
`id` bigint(15) NOT NULL COMMENT '唯一标识',
`userId` bigint(15) NOT NULL COMMENT '用户id',
`type` tinyint(2) NOT NULL COMMENT '类型\n0-密码登录\n1-验证码登录',
`date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建日期',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='@deprecated,登录信息存session';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Login`
--
LOCK TABLES `Login` WRITE;
/*!40000 ALTER TABLE `Login` DISABLE KEYS */;
INSERT INTO `Login` VALUES (1488365732208,0,0,'2017-03-01 10:55:32'),(1488379391681,1488378558927,0,'2017-03-01 14:43:11'),(1488379908786,1488378449469,0,'2017-03-01 14:51:48'),(1488379961820,1488379935755,0,'2017-03-01 14:52:41'),(1488386227319,1488380023998,0,'2017-03-01 16:37:07'),(1488387166592,1488378449469,0,'2017-03-01 16:52:46'),(1488423710531,1488423676823,0,'2017-03-02 03:01:50'),(1488428867991,1488428734202,0,'2017-03-02 04:27:47'),(1488473261705,1488473066471,0,'2017-03-02 16:47:41'),(1488516623869,1488378449469,0,'2017-03-03 04:50:23'),(1488540997715,1488540991808,0,'2017-03-03 11:36:37'),(1488541075533,1488541028865,0,'2017-03-03 11:37:55'),(1488541560585,1488541531131,0,'2017-03-03 11:46:00'),(1488569711657,1488569508197,0,'2017-03-03 19:35:11'),(1488569782719,1488569732797,0,'2017-03-03 19:36:22'),(1488569807192,1488569798561,0,'2017-03-03 19:36:47'),(1488572273190,1488572225956,0,'2017-03-03 20:17:53'),(1488572823466,1488569798561,0,'2017-03-03 20:27:03'),(1488572844863,1488572838263,0,'2017-03-03 20:27:24'),(1488572852849,1488572838263,0,'2017-03-03 20:27:32'),(1488572994566,1488572838263,0,'2017-03-03 20:29:54'),(1488602587483,1488602583693,0,'2017-03-04 04:43:07'),(1488602732477,1488602583693,0,'2017-03-04 04:45:32'),(1488602739644,1488569508197,0,'2017-03-04 04:45:39'),(1488616804093,82012,0,'2017-03-04 09:30:21'),(1488619853762,82012,0,'2017-03-04 09:30:53'),(1488619853763,1488621574081,0,'2017-03-04 09:59:34'),(1488621807871,1488621574081,0,'2017-03-04 10:03:27'),(1488621807872,1488621574081,0,'2017-03-04 10:03:43'),(1488621827734,1488621574081,0,'2017-03-04 10:03:47'),(1488621827735,1488621574081,0,'2017-03-04 10:04:03'),(1488621846267,1488621574081,0,'2017-03-04 10:04:06'),(1488621846268,1488621873562,0,'2017-03-04 10:04:33'),(1488621876782,1488621873562,0,'2017-03-04 10:04:36'),(1488621876783,1488621904086,0,'2017-03-04 10:05:04'),(1488622533567,1488621904086,0,'2017-03-04 10:15:33'),(1488622533568,1488622827857,0,'2017-03-04 10:20:27'),(1488622831418,1488622827857,0,'2017-03-04 10:20:31'),(1488622831419,1488473066471,0,'2017-03-04 10:21:52'),(1488622919890,1488473066471,0,'2017-03-04 10:21:59'),(1488622919891,1488622959038,0,'2017-03-04 10:22:39'),(1488623021260,1488622959038,0,'2017-03-04 10:23:41'),(1488623021261,1488622959038,0,'2017-03-04 10:25:02'),(1488623107782,1488622959038,0,'2017-03-04 10:25:07'),(1488623107783,1488622959038,0,'2017-03-04 14:23:31'),(1488638599393,1488622959038,0,'2017-03-04 14:43:19'),(1488638599394,1488622959038,0,'2017-03-04 15:07:50'),(1488640073476,1488622959038,0,'2017-03-04 15:07:53'),(1488640255126,1488640277910,0,'2017-03-04 15:11:18'),(1488640325578,1488640277910,0,'2017-03-04 15:12:05'),(1488640325579,1488640277910,0,'2017-03-04 15:12:08'),(1488640330490,1488640277910,0,'2017-03-04 15:12:10'),(1488640330491,1488640277910,0,'2017-03-04 15:59:25'),(1488643309485,1488640277910,0,'2017-03-04 16:01:49'),(1488643309486,1488643325534,0,'2017-03-04 16:02:05'),(1488643330578,1488643325534,0,'2017-03-04 16:02:10'),(1488643414031,1488643442503,0,'2017-03-04 16:04:02'),(1488643446184,1488643442503,0,'2017-03-04 16:04:06'),(1488645359252,82012,0,'2017-03-04 16:43:41'),(1488645825647,82012,0,'2017-03-04 16:43:45'),(1488645825648,82012,0,'2017-03-04 16:44:32'),(1488645964496,82012,0,'2017-03-04 16:46:04'),(1488645964497,82012,0,'2017-03-04 16:46:06'),(1488645968694,82012,0,'2017-03-04 16:46:08'),(1488707458563,1488643442503,0,'2017-03-05 09:51:32'),(1488707494290,1488643442503,0,'2017-03-05 09:51:34'),(1488707494291,1488707511472,0,'2017-03-05 09:51:51'),(1488707514358,1488707511472,0,'2017-03-05 09:51:54'),(1488707514359,1488707511472,1,'2017-03-05 09:52:15'),(1488707539344,1488707511472,0,'2017-03-05 09:52:19'),(1488707539345,1488707572184,0,'2017-03-05 09:52:52'),(1488707575181,1488707572184,0,'2017-03-05 09:52:55'),(1488707575182,1488707617655,0,'2017-03-05 09:53:37'),(1488707626071,1488707617655,0,'2017-03-05 09:53:46'),(1488707626072,1488707617655,0,'2017-03-05 09:53:52'),(1488707635801,1488707617655,0,'2017-03-05 09:53:55'),(1488707635802,1488707617655,0,'2017-03-05 09:57:26'),(1488707850222,1488707617655,0,'2017-03-05 09:57:30'),(1488707850223,1488707874944,0,'2017-03-05 09:57:55'),(1488707877660,1488707874944,0,'2017-03-05 09:57:57'),(1488707877661,1488707874944,1,'2017-03-05 09:58:27'),(1488707915649,1488707874944,0,'2017-03-05 09:58:35'),(1488727516722,1488727542397,0,'2017-03-05 15:25:42'),(1488727548031,1488727542397,0,'2017-03-05 15:25:48'),(1488803302239,1488727542397,0,'2017-03-06 12:28:24'),(1488803306640,1488727542397,0,'2017-03-06 12:28:26'),(1488803306641,1488803343874,0,'2017-03-06 12:29:04'),(1488803346374,1488803343874,0,'2017-03-06 12:29:06'),(1488803346375,1488803343874,0,'2017-03-06 15:06:09'),(1488812773144,1488803343874,0,'2017-03-06 15:06:13'),(1489244600336,1489244640435,0,'2017-03-11 15:04:00'),(1489244647438,1489244640435,0,'2017-03-11 15:04:07'),(1489244647439,1489244640435,1,'2017-03-11 15:04:25'),(1489244669153,1489244640435,0,'2017-03-11 15:04:29'),(1489246281612,1489244640435,0,'2017-03-11 15:31:37'),(1489246300085,1489244640435,0,'2017-03-11 15:31:40'),(1489246300086,1489244640435,0,'2017-03-11 15:32:00'),(1489246323014,1489244640435,0,'2017-03-11 15:32:03'),(1489246323015,1489246345610,0,'2017-03-11 15:32:25'),(1489246350667,1489246345610,0,'2017-03-11 15:32:30'),(1489298452742,1488727542397,0,'2017-03-12 06:01:02'),(1489298464822,1488727542397,0,'2017-03-12 06:01:04'),(1489298464823,1489298483829,0,'2017-03-12 06:01:23'),(1489298490008,1489298483829,0,'2017-03-12 06:01:30'),(1489298490009,82005,0,'2017-03-12 06:02:12'),(1489298931649,82005,0,'2017-03-12 06:08:53'),(1489298971069,82005,0,'2017-03-12 06:09:31'),(1489298971070,82005,0,'2017-03-12 06:09:40'),(1489299084011,82005,0,'2017-03-12 06:11:24'),(1489299139305,90814,0,'2017-03-12 06:12:23'),(1489317763943,1489317784114,0,'2017-03-12 11:23:04'),(1489317856607,1489317784114,0,'2017-03-12 11:24:16'),(1489934937901,1489934955220,0,'2017-03-19 14:49:15'),(1489934967736,1489934955220,0,'2017-03-19 14:49:27'),(1490105370959,1490105418731,0,'2017-03-21 14:10:18'),(1490105432172,1490105418731,0,'2017-03-21 14:10:32'),(1490109211714,1490109742863,0,'2017-03-21 15:22:23'),(1490109746858,1490109742863,0,'2017-03-21 15:22:26'),(1490109746859,1490109845208,0,'2017-03-21 15:24:05'),(1490109847412,1490109845208,0,'2017-03-21 15:24:07'),(1490109847413,1490109845208,1,'2017-03-21 15:25:39'),(1490109943463,1490109845208,0,'2017-03-21 15:25:43'),(1490420549513,1488707874944,0,'2017-03-25 05:43:30'),(1490420612726,1488707874944,0,'2017-03-25 05:43:32'),(1490420612727,1490420651686,0,'2017-03-25 05:44:11'),(1490420694018,1490420651686,0,'2017-03-25 05:44:54'),(1490425995551,1490427139175,0,'2017-03-25 07:32:19'),(1490427142481,1490427139175,0,'2017-03-25 07:32:22'),(1490427142482,1490427139175,0,'2017-03-25 07:32:25'),(1490427147907,1490427139175,0,'2017-03-25 07:32:27'),(1490427147908,1490427139175,1,'2017-03-25 07:32:46'),(1490427169820,1490427139175,0,'2017-03-25 07:32:49'),(1490427169821,1490427139175,1,'2017-03-25 07:36:09'),(1490427460928,1490427139175,0,'2017-03-25 07:37:40'),(1490427550424,1490427577823,0,'2017-03-25 07:39:37'),(1490427581040,1490427577823,0,'2017-03-25 07:39:41'),(1490584927873,1490584952968,0,'2017-03-27 03:22:33'),(1490584967616,1490584952968,0,'2017-03-27 03:22:47'),(1490585175679,1490585192903,0,'2017-03-27 03:26:33'),(1490585175680,1490585226494,0,'2017-03-27 03:27:06'),(1490585175681,1490586230028,0,'2017-03-27 03:43:50'),(1490586242829,1490586230028,0,'2017-03-27 03:44:02'),(1490586242830,1490586417277,0,'2017-03-27 03:46:57'),(1490586420868,1490586417277,0,'2017-03-27 03:47:00'),(1490586420869,1490587219677,0,'2017-03-27 04:00:20'),(1490587222853,1490587219677,0,'2017-03-27 04:00:22'),(1490587222854,1490587219677,0,'2017-03-27 04:00:30'),(1490587232018,1490587219677,0,'2017-03-27 04:00:32'),(1490763654616,1489317784114,0,'2017-03-29 05:01:03'),(1490763665719,1489317784114,0,'2017-03-29 05:01:05'),(1490763665720,1490763680229,0,'2017-03-29 05:01:20'),(1490763684749,1490763680229,0,'2017-03-29 05:01:24'),(1490763684750,1490763889677,0,'2017-03-29 05:04:49'),(1490763892907,1490763889677,0,'2017-03-29 05:04:52'),(1490763892908,1490763889677,1,'2017-03-29 05:09:04'),(1490764146839,1490763889677,0,'2017-03-29 05:09:06'),(1490764146840,1490763889677,0,'2017-03-29 05:09:17'),(1490764160920,1490763889677,0,'2017-03-29 05:09:20'),(1490796426168,1490796536716,0,'2017-03-29 14:08:56'),(1490796539768,1490796536716,0,'2017-03-29 14:08:59'),(1490796539769,1490796536716,1,'2017-03-29 14:09:25'),(1490796612462,1490796536716,0,'2017-03-29 14:10:12'),(1490796612463,1490796536716,0,'2017-03-29 14:10:14'),(1490797130482,1490796536716,0,'2017-03-29 14:18:50'),(1490797130483,1490796536716,0,'2017-03-29 14:21:17'),(1490799078694,1490796536716,0,'2017-03-29 14:51:18'),(1490799078695,1490796536716,0,'2017-03-29 15:04:49'),(1490863478648,82003,0,'2017-03-30 08:44:40'),(1490863574695,82003,0,'2017-03-30 08:46:14'),(1490863574696,82005,0,'2017-03-30 08:46:16'),(1490863617906,82005,0,'2017-03-30 08:46:57'),(1490863617907,70793,1,'2017-03-30 08:47:12'),(1490863735458,70793,0,'2017-03-30 08:48:55'),(1490863735459,93793,0,'2017-03-30 08:49:01'),(1490863793209,93793,0,'2017-03-30 08:49:53'),(1490863793210,82006,0,'2017-03-30 08:50:07'),(1490864162242,82006,0,'2017-03-30 08:56:02'),(1490864162243,82044,1,'2017-03-30 08:56:39'),(1490864359458,82044,0,'2017-03-30 08:59:19'),(1490874790302,82040,0,'2017-03-30 11:53:14'),(1490874856899,82040,0,'2017-03-30 11:54:16'),(1490874856900,82055,0,'2017-03-30 11:54:22'),(1490875711368,82055,0,'2017-03-30 12:08:31'),(1490875711369,82056,0,'2017-03-30 12:08:37'),(1490875721491,82056,0,'2017-03-30 12:08:41'),(1490875721492,82060,0,'2017-03-30 12:08:43'),(1490875725467,82060,0,'2017-03-30 12:08:45'),(1490875725468,1490875855144,0,'2017-03-30 12:10:55'),(1490875857334,1490875855144,0,'2017-03-30 12:10:57'),(1490880027108,82054,0,'2017-03-30 13:20:27'),(1490880030859,82054,0,'2017-03-30 13:20:30'),(1490880030860,1490880220255,0,'2017-03-30 13:23:40'),(1490880236865,1490880220255,0,'2017-03-30 13:23:56'),(1490880236866,1490880254410,0,'2017-03-30 13:24:14'),(1490880256555,1490880254410,0,'2017-03-30 13:24:16'),(1490973548451,1490973670928,0,'2017-03-31 15:21:11'),(1490974102842,1490973670928,0,'2017-03-31 15:28:22'),(1490974212206,70793,0,'2017-03-31 15:30:27'),(1490974347168,70793,0,'2017-03-31 15:32:27'),(1491014963729,82049,0,'2017-04-01 02:49:29'),(1491014970908,82049,0,'2017-04-01 02:49:30'),(1491014970909,82051,0,'2017-04-01 02:49:32'),(1491014975055,82051,0,'2017-04-01 02:49:35'),(1491014975056,1490420651686,0,'2017-04-01 02:49:37'),(1491014978929,1490420651686,0,'2017-04-01 02:49:38'),(1491014978930,1491015049274,0,'2017-04-01 02:50:49'),(1491015064226,1491015049274,0,'2017-04-01 02:51:04'),(1491015064227,70793,0,'2017-04-01 02:57:27'),(1491130974601,82049,0,'2017-04-02 11:03:06'),(1491130988304,82049,0,'2017-04-02 11:03:08'),(1491130988305,82050,0,'2017-04-02 11:03:10'),(1491130992091,82050,0,'2017-04-02 11:03:12'),(1491130992092,1490420651686,0,'2017-04-02 11:03:13'),(1491130996226,1490420651686,0,'2017-04-02 11:03:16'),(1491130996227,1491131016872,0,'2017-04-02 11:03:37'),(1491131020967,1491131016872,0,'2017-04-02 11:03:40'),(1491131114629,1491131208618,0,'2017-04-02 11:06:48'),(1491131215621,1491131208618,0,'2017-04-02 11:06:55'),(1491131215622,1491131208618,0,'2017-04-02 12:32:26'),(1491136484469,1491131208618,0,'2017-04-02 12:34:44'),(1491137049692,1491137170621,0,'2017-04-02 12:46:10'),(1491137175158,1491137170621,0,'2017-04-02 12:46:15'),(1491137175159,70793,0,'2017-04-02 12:46:27'),(1491210186666,82046,0,'2017-04-03 09:05:37'),(1491210340156,82046,0,'2017-04-03 09:05:40'),(1491210340157,82041,0,'2017-04-03 09:05:41'),(1491210344197,82041,0,'2017-04-03 09:05:44'),(1491210344198,1491210361659,1,'2017-04-03 09:06:23'),(1491210385826,1491210361659,0,'2017-04-03 09:06:25'),(1491210385827,1491210948591,0,'2017-04-03 09:15:48'),(1491210951970,1491210948591,0,'2017-04-03 09:15:51'),(1491210951971,1491210948591,1,'2017-04-03 09:16:01'),(1491210964359,1491210948591,0,'2017-04-03 09:16:04'),(1491210964360,1491210948591,0,'2017-04-03 09:16:07'),(1491210969546,1491210948591,0,'2017-04-03 09:16:09'),(1491231490642,82003,0,'2017-04-03 14:58:13'),(1491231560497,82003,0,'2017-04-03 14:59:20'),(1491231560498,93793,0,'2017-04-03 14:59:31'),(1491231602048,93793,0,'2017-04-03 15:00:02'),(1491231602049,93793,0,'2017-04-03 15:09:42'),(1491232187135,93793,0,'2017-04-03 15:09:47'),(1491278106043,1490109742863,0,'2017-04-04 03:55:15'),(1491278117918,1490109742863,0,'2017-04-04 03:55:17'),(1491278117919,1490427577823,0,'2017-04-04 03:55:19'),(1491278121481,1490427577823,0,'2017-04-04 03:55:21'),(1491278121482,1491278203315,0,'2017-04-04 03:56:43'),(1491283571224,1491278203315,0,'2017-04-04 05:26:11'),(1491283708324,1491210314249,1,'2017-04-04 05:28:55'),(1491283800948,1491210314249,0,'2017-04-04 05:30:00'),(1491706177615,1491706263570,0,'2017-04-09 02:51:03'),(1491713830487,1491713931091,0,'2017-04-09 04:58:51'),(1491713972850,1491713931091,0,'2017-04-09 04:59:32'),(1491728210153,1490427139175,0,'2017-04-09 08:56:53'),(1491728216317,1490427139175,0,'2017-04-09 08:56:56'),(1491728216318,82054,0,'2017-04-09 08:56:58'),(1491728221137,82054,0,'2017-04-09 08:57:01'),(1491728221138,1491728303733,0,'2017-04-09 08:58:23'),(1491728316688,1491728303733,0,'2017-04-09 08:58:36'),(1491798585269,1490420651686,0,'2017-04-10 04:30:17'),(1491798619163,1490420651686,0,'2017-04-10 04:30:19'),(1491798619164,1491015049274,0,'2017-04-10 04:30:21'),(1491798623156,1491015049274,0,'2017-04-10 04:30:23'),(1491798623157,1491798705995,0,'2017-04-10 04:31:46'),(1491798824157,1491798705995,0,'2017-04-10 04:33:44'),(1491830822528,1491830893899,0,'2017-04-10 13:28:14'),(1491831356223,1491830893899,0,'2017-04-10 13:35:56'),(1491838437130,1491838521279,0,'2017-04-10 15:35:21'),(1491838535040,1491838521279,0,'2017-04-10 15:35:35'),(1491917352614,1491728303733,0,'2017-04-11 13:29:22'),(1491917364596,1491728303733,0,'2017-04-11 13:29:24'),(1491917364597,1491917447333,0,'2017-04-11 13:30:47'),(1491917916123,1491917447333,0,'2017-04-11 13:38:36'),(1492865677465,82058,0,'2017-04-22 12:54:45'),(1492865687807,82058,0,'2017-04-22 12:54:47'),(1492865687808,1492866224074,0,'2017-04-22 13:03:44'),(1492866227861,1492866224074,0,'2017-04-22 13:03:47'),(1492866227862,1492866224074,0,'2017-04-22 13:03:52'),(1492866235005,1492866224074,0,'2017-04-22 13:03:55'),(1492866235006,1492866322486,0,'2017-04-22 13:05:22'),(1492866325550,1492866322486,0,'2017-04-22 13:05:25'),(1492936150349,1492936169722,0,'2017-04-23 08:29:30'),(1492936172897,1492936169722,0,'2017-04-23 08:29:32'),(1492936172898,1492936169722,0,'2017-04-23 08:33:44'),(1492936427137,1492936169722,0,'2017-04-23 08:33:47'),(1492936427138,1492936169722,0,'2017-04-23 08:37:29'),(1492936651770,1492936169722,0,'2017-04-23 08:37:31'),(1493456282571,90814,0,'2017-04-29 08:58:09'),(1493457036233,90814,0,'2017-04-29 09:10:36'),(1493480121888,1490427139175,0,'2017-04-29 15:35:26'),(1493480129111,1490427139175,0,'2017-04-29 15:35:29'),(1493480129112,1493480142628,0,'2017-04-29 15:35:42'),(1493480148564,1493480142628,0,'2017-04-29 15:35:48'),(1493480148565,1493480142628,0,'2017-04-29 15:35:54'),(1493480156757,1493480142628,0,'2017-04-29 15:35:56'),(1493480156758,90814,0,'2017-04-29 15:36:01'),(1493480162695,90814,0,'2017-04-29 15:36:02'),(1493480162696,93793,0,'2017-04-29 15:36:06'),(1493480189011,93793,0,'2017-04-29 15:36:29'),(1493747501699,1493747512860,0,'2017-05-02 17:51:53'),(1493747519493,1493747512860,0,'2017-05-02 17:51:59'),(1493747519494,1493747777770,0,'2017-05-02 17:56:17'),(1493747780534,1493747777770,0,'2017-05-02 17:56:20'),(1493748571679,1493748594003,0,'2017-05-02 18:09:54'),(1493748596459,1493748594003,0,'2017-05-02 18:09:56'),(1493748596460,1493748615711,0,'2017-05-02 18:10:15'),(1493748617966,1493748615711,0,'2017-05-02 18:10:17'),(1493748617967,1493749090643,0,'2017-05-02 18:18:10'),(1493749100206,1493749090643,0,'2017-05-02 18:18:20'),(1493836047659,1493836043151,0,'2017-05-03 18:27:27'),(1493836049490,1493836043151,0,'2017-05-03 18:27:29'),(1493883116023,1493883110132,0,'2017-05-04 07:31:56'),(1493883118007,1493883110132,0,'2017-05-04 07:31:58'),(1493890214303,1493890214167,0,'2017-05-04 09:30:14'),(1493890216183,1493890214167,0,'2017-05-04 09:30:16'),(1493890699755,1493890303473,0,'2017-05-04 09:38:19'),(1493890702129,1493890303473,0,'2017-05-04 09:38:22'),(1493891565732,82001,0,'2017-05-04 09:52:45'),(1493891782837,82001,0,'2017-05-04 09:56:22'),(1493891784591,82002,0,'2017-05-04 09:56:24'),(1493891793881,82002,0,'2017-05-04 09:56:33'),(1493891806372,38710,1,'2017-05-04 09:56:46');
/*!40000 ALTER TABLE `Login` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Method`
--
DROP TABLE IF EXISTS `Method`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Method` (
`id` bigint(15) NOT NULL AUTO_INCREMENT,
`userId` bigint(15) NOT NULL COMMENT '管理员用户Id',
`package` varchar(500) NOT NULL DEFAULT 'apijson/demo/server',
`class` varchar(50) NOT NULL DEFAULT 'DemoFunction',
`classArgs` text COMMENT '[\n { //User user\n "type": "apijson/demo/server/model/User",\n "value": {\n "id": 1,\n "name": "APIJSON"\n }\n },\n { //String id,不填 type 的话会根据 value 自动确定\n "value": "id"\n }\n]',
`method` varchar(50) NOT NULL COMMENT '方法名',
`methodArgs` text COMMENT '参数列表,格式是\n[\n { //User user\n "type": "apijson/demo/server/model/User",\n "value": {\n "id": 1,\n "name": "APIJSON"\n }\n },\n { //String id,不填 type 的话会根据 value 自动确定\n "value": "id"\n }\n]',
`exceptions` varchar(500) DEFAULT NULL COMMENT '异常类型列表',
`type` varchar(50) DEFAULT 'Object' COMMENT '返回值类型。TODO RemoteMethod 校验 type 和 back',
`static` tinyint(2) NOT NULL DEFAULT '0' COMMENT '是否为 static 方法: 0-false; 1-true',
`request` text,
`demo` json DEFAULT NULL COMMENT '可用的示例。\nTODO 改成 call,和返回值示例 back 对应。',
`detail` varchar(1000) NOT NULL COMMENT '详细描述',
`date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1587388700247 DEFAULT CHARSET=utf8 COMMENT='要做单元测试的方法';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Method`
--
LOCK TABLES `Method` WRITE;
/*!40000 ALTER TABLE `Method` DISABLE KEYS */;
INSERT INTO `Method` VALUES (3,0,'apijson/demo/server','DemoFunction','[\n {}, //RequestMethod method\n {}, //String tag\n {\n \"value\": 0 //int version\n },\n {} //HttpSession session\n ]','countArray','[\n {\n \"value\": {\n \"arr\": [\n 1,\n 2,\n 3\n ]\n }\n },\n {\n \"value\": \"arr\"\n }\n ]',NULL,'Integer',0,NULL,'{\"array\": [1, 2, 3]}','获取数组长度。没写调用键值对,会自动补全 \"result()\": \"countArray(array)\"','2018-10-13 08:23:23'),(4,0,'apijson/demo/server','DemoFunction','[\n {}, //RequestMethod method\n {}, //String tag\n {\n \"value\": 0 //int version\n },\n {} //HttpSession session\n ]','countObject','[\n { //JSONObject request\n \"value\": {\n \"1\": 1,\n \"2\": 2\n }\n },\n { //String num0\n \"value\": \"1\"\n },\n { //String num1\n \"type\": \"String\",\n \"value\": \"2\"\n }\n ]',NULL,'Integer',0,NULL,'{\"object\": {\"key0\": 1, \"key1\": 2}}','获取对象长度。','2018-10-13 08:23:23'),(5,0,'apijson/demo/server','DemoFunction','[]','isContain','[\n { //JSONObject request\n \"value\": {\n \"arr\": [\n 1,\n 2,\n 4\n ],\n \"num\": 2\n }\n },\n { //String arr\n \"value\": \"arr\"\n },\n { //String item\n \"value\": \"num\"\n }\n ]',NULL,'Boolean',0,NULL,'{\"array\": [1, 2, 3], \"value\": 2}','判断是否数组包含值。','2018-10-13 08:23:23'),(6,0,'apijson/demo/server','DemoFunction','[\n {}, //RequestMethod method\n {}, //String tag\n {\n \"value\": 0 //int version\n },\n {} //HttpSession session\n ]','isContainKey','[\n {\n \"value\": {\n \"obj\": {\n \"a\": 1,\n \"b\": \"2\"\n },\n \"key\": \"a\"\n }\n },\n {\n \"value\": \"obj\"\n },\n {\n \"value\": \"key\"\n }\n ]',NULL,'Boolean',0,'{\n \"methodArgs\": [\n {\n \"value\": {\n \"obj\": {\n \"a\": 1,\n \"b\": \"2\"\n },\n \"key\": \"a\"\n }\n },\n {\n \"value\": \"obj\"\n },\n {\n \"value\": \"key\"\n }\n ]\n}','{\"key\": \"id\", \"object\": {\"id\": 1}}','判断是否对象包含键。','2018-10-13 08:30:31'),(7,0,'apijson/demo/server','DemoFunction','[\n {}, //RequestMethod method\n {}, //String tag\n {\n \"value\": 0 //int version\n },\n {} //HttpSession session\n ]','isContainValue','[\n {\n \"value\": {\n \"obj\": {\n \"a\": 1,\n \"b\": \"2\"\n },\n \"val\": \"2\"\n }\n },\n {\n \"value\": \"obj\"\n },\n {\n \"value\": \"val\"\n }\n ]',NULL,'Boolean',0,'{\n \"methodArgs\": [\n {\n \"value\": {\n \"obj\": {\n \"a\": 1,\n \"b\": \"2\"\n },\n \"val\": \"2\"\n }\n },\n {\n \"value\": \"obj\"\n },\n {\n \"value\": \"val\"\n }\n ]\n}','{\"value\": 1, \"object\": {\"id\": 1}}','判断是否对象包含值。','2018-10-13 08:30:31'),(8,0,'apijson/demo/server','DemoFunction','[\n {}, //RequestMethod method\n {}, //String tag\n {\n \"value\": 0 //int version\n },\n {} //HttpSession session\n ]','getFromArray','[\n { //JSONObject request\n \"type\": \"JSONObject\",\n \"value\": {\n \"arr\": [\n 1,\n 2\n ],\n \"index\": 0\n }\n },\n { //String arrKey\n \"type\": \"String\",\n \"value\": \"arr\"\n },\n { //String indexKey\n \"type\": \"String\",\n \"value\": \"index\"\n }\n ],\n \"classArgs\": [\n {}, //RequestMethod method\n {}, //String tag\n { //int version\n \"value\": 0\n },\n {} //HttpSession session\n ]',NULL,'Object',0,'{\n \"methodArgs\": [\n { //JSONObject request\n \"type\": \"JSONObject\",\n \"value\": {\n \"arr\": [\n 1,\n 2\n ],\n \"index\": 0\n }\n },\n { //String arrKey\n \"type\": \"String\",\n \"value\": \"arr\"\n },\n { //String indexKey\n \"type\": \"String\",\n \"value\": \"index\"\n }\n ],\n \"classArgs\": [\n {}, //RequestMethod method\n {}, //String tag\n { //int version\n \"value\": 0\n },\n {} //HttpSession session\n ]\n}','{\"array\": [1, 2, 3], \"result()\": \"getFromArray(array,1)\"}','根据下标获取数组里的值。position 传数字时直接作为值,而不是从所在对象 request 中取值','2018-10-13 08:30:31'),(9,0,'apijson/demo/server','DemoFunction','[\n {}, //RequestMethod method\n {}, //String tag\n {\n \"value\": 0 //int version\n },\n {} //HttpSession session\n ]','getFromObject','[\n { //JSONObject request\n \"value\": {\n \"obj\": {\n \"a\": 1,\n \"b\": \"2\"\n },\n \"key\": \"a\"\n }\n },\n { //String objKey\n \"value\": \"obj\"\n },\n { //String keyKey\n \"value\": \"key\"\n }\n ],\n \"classArgs\": [\n {}, //RequestMethod method\n {}, //String tag\n { //int version\n \"value\": 0\n },\n {} //HttpSession session\n ]',NULL,'Object',0,'{\n \"methodArgs\": [\n { //JSONObject request\n \"value\": {\n \"obj\": {\n \"a\": 1,\n \"b\": \"2\"\n },\n \"key\": \"a\"\n }\n },\n { //String objKey\n \"value\": \"obj\"\n },\n { //String keyKey\n \"value\": \"key\"\n }\n ],\n \"classArgs\": [\n {}, //RequestMethod method\n {}, //String tag\n { //int version\n \"value\": 0\n },\n {} //HttpSession session\n ]\n}','{\"key\": \"id\", \"object\": {\"id\": 1}}','根据键获取对象里的值。','2018-10-13 08:30:31'),(10,82002,'apijson/demo/server','DemoFunction','[\n {}, //RequestMethod method\n {}, //String tag\n {\n \"value\": 0 //int version\n },\n {} //HttpSession session\n ]','deleteCommentOfMoment','[\n { //JSONObject request\n \"value\": {\n \"1\": 1,\n \"2\": 2\n }\n },\n { //String num0\n \"value\": \"1\"\n },\n { //String num1\n \"type\": \"String\",\n \"value\": \"2\"\n }\n ]',NULL,NULL,0,NULL,'{\"momentId\": 1}','根据动态 id 删除它的所有评论','2019-08-17 18:46:56'),(11,82002,'apijson/demo/server','DemoFunction','[\n {}, //RequestMethod method\n {}, //String tag\n {\n \"value\": 0 //int version\n },\n {} //HttpSession session\n ]','verifyIdList','[\n { //JSONObject request\n \"value\": {\n \"1\": 1,\n \"2\": 2\n }\n },\n { //String num0\n \"value\": \"1\"\n },\n { //String num1\n \"type\": \"String\",\n \"value\": \"2\"\n }\n ]',NULL,NULL,0,NULL,'{\"array\": [1, 2, 3], \"result()\": \"verifyIdList(array)\"}','校验类型为 id 列表','2019-08-17 19:58:33'),(12,82002,'apijson/demo/server','DemoFunction','[\n {}, //RequestMethod method\n {}, //String tag\n {\n \"value\": 0 //int version\n },\n {} //HttpSession session\n ]','verifyURLList','[\n { //JSONObject request\n \"value\": {\n \"1\": 1,\n \"2\": 2\n }\n },\n { //String num0\n \"value\": \"1\"\n },\n { //String num1\n \"type\": \"String\",\n \"value\": \"2\"\n }\n ]',NULL,NULL,0,NULL,'{\"array\": [\"http://123.com/1.jpg\", \"http://123.com/a.png\", \"http://www.abc.com/test.gif\"], \"result()\": \"verifyURLList(array)\"}','校验类型为 URL 列表','2019-08-17 19:58:33'),(13,82002,'apijson/demo/server','DemoFunction','[\n {}, //RequestMethod method\n {}, //String tag\n {\n \"value\": 0 //int version\n },\n {} //HttpSession session\n ]','getWithDefault','[\n { //JSONObject request\n \"value\": {\n \"value\": null,\n \"defaultValue\": 0\n }\n },\n { //String valueKey\n \"value\": \"value\"\n },\n { //String defaultValueKey\n \"value\": \"defaultValue\"\n }\n ]',NULL,'Object',0,'{\n \"methodArgs\": [\n { //JSONObject request\n \"value\": {\n \"value\": null,\n \"defaultValue\": 0\n }\n },\n { //String valueKey\n \"value\": \"value\"\n },\n { //String defaultValueKey\n \"value\": \"defaultValue\"\n }\n ],\n \"classArgs\": [\n {}, //RequestMethod method\n {}, //String tag\n { //int version\n \"value\": 0\n },\n {} //HttpSession session\n ]\n}','{\"value\": null, \"defaultValue\": 1}','如果 value 为 null,则返回 defaultValue','2019-08-20 15:26:36'),(14,82002,'apijson/demo/server','DemoFunction','[\n {}, //RequestMethod method\n {}, //String tag\n {\n \"value\": 0 //int version\n },\n {} //HttpSession session\n ]','removeKey','[\n { //JSONObject request\n \"value\": {\n \"1\": 1,\n \"2\": 2\n }\n },\n { //String num0\n \"value\": \"1\"\n },\n { //String num1\n \"type\": \"String\",\n \"value\": \"2\"\n }\n ]',NULL,NULL,0,NULL,'{\"key\": \"s\", \"key2\": 2}','从对象里移除 key','2019-08-20 15:26:36'),(15,82002,'apijson/demo/server','DemoFunction','[\n {}, //RequestMethod method\n {}, //String tag\n {\n \"value\": 0 //int version\n },\n {} //HttpSession session\n ]','getMethodDemo','[\n { //JSONObject request\n \"value\": {\n \"1\": 1,\n \"2\": 2\n }\n },\n { //String num0\n \"value\": \"1\"\n },\n { //String num1\n \"type\": \"String\",\n \"value\": \"2\"\n }\n ]',NULL,'JSONObject',0,NULL,'{}','获取远程函数的 Demo','2019-08-20 15:26:36'),(16,82002,'apijson/demo/server','DemoFunction','[\n {}, //RequestMethod method\n {}, //String tag\n {\n \"value\": 0 //int version\n },\n {} //HttpSession session\n ]','getMethodDetail','[\n { //JSONObject request\n \"value\": {\n \"1\": 1,\n \"2\": 2\n }\n },\n { //String num0\n \"value\": \"1\"\n },\n { //String num1\n \"type\": \"String\",\n \"value\": \"2\"\n }\n ]',NULL,'String',0,NULL,'{}','获取远程函数的详情','2019-08-20 15:26:36'),(1578823653121,82001,'apijson/demo/server/model','User',NULL,'getName','[]',NULL,'java/lang/String',0,NULL,NULL,'getName','2020-01-12 10:07:38'),(1578823653136,82001,'apijson/demo/server/model','User',NULL,'getId','[]',NULL,'java/lang/Object',0,NULL,NULL,'getId','2020-01-12 10:07:38'),(1578823653325,82001,'apijson/demo/server/model','User',NULL,'setTag','[{\"type\":\"String\"}]',NULL,'apijson/demo/server/model/User',0,NULL,NULL,'setTag','2020-01-12 10:07:38'),(1578823653332,82001,'apijson/demo/server/model','User',NULL,'getTag','[]',NULL,'java/lang/String',0,NULL,NULL,'getTag','2020-01-12 10:07:38'),(1578823653336,82001,'apijson/demo/server/model','User',NULL,'getHead','[]',NULL,'java/lang/String',0,NULL,NULL,'getHead','2020-01-12 10:07:39'),(1578823653760,82001,'apijson/demo/server/model','User',NULL,'setHead','[{\"type\":\"String\"}]',NULL,'apijson/demo/server/model/User',0,NULL,NULL,'setHead','2020-01-12 10:07:39'),(1578823653803,82001,'apijson/demo/server/model','User',NULL,'getSex','[]',NULL,'java/lang/Integer',0,NULL,NULL,'getSex','2020-01-12 10:07:39'),(1578823653807,82001,'apijson/demo/server/model','User',NULL,'setSex','[{\"type\":\"Integer\"}]',NULL,'apijson/demo/server/model/User',0,NULL,NULL,'setSex','2020-01-12 10:07:39'),(1578823745384,82001,'apijson/demo/server','APIJSONApplication',NULL,'main','[{\"type\":\"String\"}]',NULL,'void',0,NULL,NULL,'main','2020-01-12 10:09:10'),(1578823745468,82001,'apijson/demo/server','APIJSONApplication',NULL,'corsFilter','[]',NULL,'org/springframework/web/filter/CorsFilter',0,NULL,NULL,'corsFilter','2020-01-12 10:09:11'),(1578823745809,82001,'apijson/demo/server','APIJSONApplication',NULL,'buildConfig','[]',NULL,'org/springframework/web/cors/CorsConfiguration',0,NULL,NULL,'buildConfig','2020-01-12 10:09:11'),(1578823751884,82001,'apijson/demo/server','DemoParser',NULL,'getSession','[]',NULL,'javax/servlet/http/HttpSession',0,NULL,NULL,'getSession','2020-01-12 10:09:17'),(1578823752022,82001,'apijson/demo/server','DemoParser',NULL,'createVerifier','[]',NULL,'apijson/demo/server/DemoVerifier',0,NULL,NULL,'createVerifier','2020-01-12 10:09:17'),(1578823752064,82001,'apijson/demo/server','DemoParser',NULL,'createVerifier','[]',NULL,'zuo/biao/apijson/server/Verifier',0,NULL,NULL,'createVerifier','2020-01-12 10:09:17'),(1578823752192,82001,'apijson/demo/server','DemoParser',NULL,'createSQLConfig','[]',NULL,'apijson/demo/server/DemoSQLConfig',0,NULL,NULL,'createSQLConfig','2020-01-12 10:09:17'),(1578823752309,82001,'apijson/demo/server','DemoParser',NULL,'createSQLExecutor','[]',NULL,'zuo/biao/apijson/server/SQLExecutor',0,NULL,NULL,'createSQLExecutor','2020-01-12 10:09:17'),(1578823752363,82001,'apijson/demo/server','DemoParser',NULL,'createSQLExecutor','[]',NULL,'apijson/demo/server/DemoSQLExecutor',0,NULL,NULL,'createSQLExecutor','2020-01-12 10:09:18'),(1578823752576,82001,'apijson/demo/server','DemoParser',NULL,'onFunctionParse','[{\"type\":\"com/alibaba/fastjson/JSONObject\"},{\"type\":\"String\"}]',NULL,'java/lang/Object',0,NULL,NULL,'onFunctionParse','2020-01-12 10:09:18'),(1578823752692,82001,'apijson/demo/server','DemoParser',NULL,'createObjectParser','[{\"type\":\"com/alibaba/fastjson/JSONObject\"},{\"type\":\"String\"},{\"type\":\"String\"},{\"type\":\"zuo/biao/apijson/server/SQLConfig\"},{\"type\":\"boolean\"}]',NULL,'zuo/biao/apijson/server/ObjectParser',0,NULL,NULL,'createObjectParser','2020-01-12 10:09:18'),(1578823752743,82001,'apijson/demo/server','DemoParser',NULL,'createObjectParser','[{\"type\":\"com/alibaba/fastjson/JSONObject\"},{\"type\":\"String\"},{\"type\":\"String\"},{\"type\":\"zuo/biao/apijson/server/SQLConfig\"},{\"type\":\"boolean\"}]',NULL,'apijson/demo/server/DemoObjectParser',0,NULL,NULL,'createObjectParser','2020-01-12 10:09:18'),(1578823752778,82001,'apijson/demo/server','DemoParser',NULL,'onVerifyContent','[]',NULL,'void',0,NULL,NULL,'onVerifyContent','2020-01-12 10:09:18'),(1578823752952,82001,'apijson/demo/server','DemoSQLConfig',NULL,'getIdKey','[]',NULL,'java/lang/String',0,NULL,NULL,'getIdKey','2020-01-12 10:09:18'),(1578823753174,82001,'apijson/demo/server','DemoSQLConfig',NULL,'getUserIdKey','[]',NULL,'java/lang/String',0,NULL,NULL,'getUserIdKey','2020-01-12 10:09:18'),(1578823753296,82001,'apijson/demo/server','DemoSQLConfig',NULL,'getDBUri','[]',NULL,'java/lang/String',0,NULL,NULL,'getDBUri','2020-01-12 10:09:18'),(1578823753309,82001,'apijson/demo/server','DemoSQLConfig',NULL,'getDBVersion','[]',NULL,'java/lang/String',0,NULL,NULL,'getDBVersion','2020-01-12 10:09:18'),(1578823753494,82001,'apijson/demo/server','DemoSQLConfig',NULL,'getDBPassword','[]',NULL,'java/lang/String',0,NULL,NULL,'getDBPassword','2020-01-12 10:09:19'),(1578823753526,82001,'apijson/demo/server','DemoSQLConfig',NULL,'getDBAccount','[]',NULL,'java/lang/String',0,NULL,NULL,'getDBAccount','2020-01-12 10:09:19'),(1578823753588,82001,'apijson/demo/server','DemoVerifier',NULL,'value','[{\"type\":\"Long\"}]',NULL,'long',0,NULL,NULL,'value','2020-01-12 10:09:19'),(1578823753877,82001,'apijson/demo/server','DemoVerifier',NULL,'init','[{\"type\":\"boolean\"}]',NULL,'com/alibaba/fastjson/JSONObject',0,NULL,NULL,'init','2020-01-12 10:09:19'),(1578823753882,82001,'apijson/demo/server','DemoVerifier',NULL,'init','[]',NULL,'com/alibaba/fastjson/JSONObject',0,NULL,NULL,'init','2020-01-12 10:09:19'),(1578823753990,82001,'apijson/demo/server','DemoVerifier',NULL,'getVisitorId','[{\"type\":\"javax/servlet/http/HttpSession\"}]',NULL,'long',0,NULL,NULL,'getVisitorId','2020-01-12 10:09:19'),(1578823754058,82001,'apijson/demo/server','DemoVerifier',NULL,'createParser','[]',NULL,'apijson/demo/server/DemoParser',0,NULL,NULL,'createParser','2020-01-12 10:09:19'),(1578823754178,82001,'apijson/demo/server','DemoVerifier',NULL,'verifyLogin','[{\"type\":\"javax/servlet/http/HttpSession\"}]',NULL,'void',0,NULL,NULL,'verifyLogin','2020-01-12 10:09:19'),(1578823754180,82001,'apijson/demo/server','DemoVerifier',NULL,'onServerError','[{\"type\":\"String\"},{\"type\":\"boolean\"}]',NULL,'void',0,NULL,NULL,'onServerError','2020-01-12 10:09:19'),(1578823754576,82001,'apijson/demo/server','StructureUtil',NULL,'onServerError','[{\"type\":\"String\"},{\"type\":\"boolean\"}]',NULL,'void',0,NULL,NULL,'onServerError','2020-01-12 10:09:20'),(1578823754771,82001,'apijson/demo/server','StructureUtil',NULL,'test','[]',NULL,'void',0,NULL,NULL,'test','2020-01-12 10:09:20'),(1578842597303,82001,'apijson/demo/server','APIJSONApplication',NULL,'main','[{\"type\":\"String[]\"}]',NULL,'Object',0,NULL,NULL,'main','2020-01-12 15:23:19'),(1578842597504,82001,'apijson/demo/server','APIJSONApplication',NULL,'corsFilter',NULL,NULL,'org/springframework/web/filter/CorsFilter',0,NULL,NULL,'corsFilter','2020-01-12 15:23:19'),(1578842597509,82001,'apijson/demo/server','APIJSONApplication',NULL,'buildConfig',NULL,NULL,'org/springframework/web/cors/CorsConfiguration',0,NULL,NULL,'buildConfig','2020-01-12 15:23:19'),(1578844232963,82001,'apijson/demo/server','DemoSQLConfig',NULL,'getUserIdKey',NULL,NULL,'String',0,NULL,NULL,'getUserIdKey','2020-01-12 15:50:37'),(1578844232996,82001,'apijson/demo/server','DemoSQLConfig',NULL,'getIdKey',NULL,NULL,'String',0,NULL,NULL,'getIdKey','2020-01-12 15:50:37'),(1578844233275,82001,'apijson/demo/server','DemoSQLConfig',NULL,'getDBVersion',NULL,NULL,'String',0,NULL,NULL,'getDBVersion','2020-01-12 15:50:37'),(1578844233279,82001,'apijson/demo/server','DemoSQLConfig',NULL,'getDBUri',NULL,NULL,'String',0,NULL,NULL,'getDBUri','2020-01-12 15:50:37'),(1578844233318,82001,'apijson/demo/server','DemoSQLConfig',NULL,'getDBAccount',NULL,NULL,'String',0,NULL,NULL,'getDBAccount','2020-01-12 15:50:37'),(1578845808890,82001,'apijson/demo/server','DemoObjectParser',NULL,'setMethod','[{\"type\":\"zuo/biao/apijson/RequestMethod\"}]',NULL,'zuo/biao/apijson/server/AbstractObjectParser',0,NULL,NULL,'setMethod','2020-01-12 16:16:54'),(1578845808904,82001,'apijson/demo/server','DemoObjectParser',NULL,'setMethod','[{\"type\":\"zuo/biao/apijson/RequestMethod\"}]',NULL,'zuo/biao/apijson/server/ObjectParser',0,NULL,NULL,'setMethod','2020-01-12 16:16:54'),(1578845808921,82001,'apijson/demo/server','Controller',NULL,'reload','[{\"type\":\"String\"}]',NULL,'JSONObject',0,NULL,NULL,'reload','2020-01-12 16:16:54'),(1578845808935,82001,'apijson/demo/server','DemoObjectParser',NULL,'setMethod','[{\"type\":\"zuo/biao/apijson/RequestMethod\"}]',NULL,'apijson/demo/server/DemoObjectParser',0,NULL,NULL,'setMethod','2020-01-12 16:16:54'),(1578845808942,82001,'apijson/demo/server','DemoObjectParser',NULL,'setParser','[{\"type\":\"zuo/biao/apijson/server/Parser<?>\"}]',NULL,'apijson/demo/server/DemoObjectParser',0,NULL,NULL,'setParser','2020-01-12 16:16:54'),(1578845809280,82001,'apijson/demo/server','DemoParser',NULL,'getSession',NULL,NULL,'javax/servlet/http/HttpSession',0,NULL,NULL,'getSession','2020-01-12 16:16:55'),(1578845809313,82001,'apijson/demo/server','DemoObjectParser',NULL,'setParser','[{\"type\":\"zuo/biao/apijson/server/Parser\"}]',NULL,'zuo/biao/apijson/server/AbstractObjectParser',0,NULL,NULL,'setParser','2020-01-12 16:16:55'),(1578845809417,82001,'apijson/demo/server','DemoParser',NULL,'setSession','[{\"type\":\"javax/servlet/http/HttpSession\"}]',NULL,'apijson/demo/server/DemoParser',0,NULL,NULL,'setSession','2020-01-12 16:16:55'),(1578845809422,82001,'apijson/demo/server','DemoParser',NULL,'createVerifier',NULL,NULL,'zuo/biao/apijson/server/Verifier',0,NULL,NULL,'createVerifier','2020-01-12 16:16:55'),(1578845809425,82001,'apijson/demo/server','DemoParser',NULL,'parseResponse','[{\"type\":\"JSONObject\"}]',NULL,'JSONObject',0,NULL,NULL,'parseResponse','2020-01-12 16:16:55'),(1578845809536,82001,'apijson/demo/server','DemoParser',NULL,'createVerifier',NULL,NULL,'apijson/demo/server/DemoVerifier',0,NULL,NULL,'createVerifier','2020-01-12 16:16:55'),(1578845809673,82001,'apijson/demo/server','DemoParser',NULL,'createSQLConfig',NULL,NULL,'zuo/biao/apijson/server/SQLConfig',0,NULL,NULL,'createSQLConfig','2020-01-12 16:16:55'),(1578845809806,82001,'apijson/demo/server','DemoParser',NULL,'createSQLConfig',NULL,NULL,'apijson/demo/server/DemoSQLConfig',0,NULL,NULL,'createSQLConfig','2020-01-12 16:16:55'),(1578845809825,82001,'apijson/demo/server','DemoParser',NULL,'createSQLExecutor',NULL,NULL,'apijson/demo/server/DemoSQLExecutor',0,NULL,NULL,'createSQLExecutor','2020-01-12 16:16:55'),(1578845809846,82001,'apijson/demo/server','DemoParser',NULL,'createSQLExecutor',NULL,NULL,'zuo/biao/apijson/server/SQLExecutor',0,NULL,NULL,'createSQLExecutor','2020-01-12 16:16:55'),(1578845810083,82001,'apijson/demo/server','DemoSQLConfig',NULL,'getIdKey',NULL,NULL,'String',0,NULL,NULL,'getIdKey','2020-01-12 16:16:55'),(1578845810260,82001,'apijson/demo/server','DemoSQLConfig',NULL,'getUserIdKey',NULL,NULL,'String',0,NULL,NULL,'getUserIdKey','2020-01-12 16:16:56'),(1578845810344,82001,'apijson/demo/server','DemoSQLConfig',NULL,'getDBVersion',NULL,NULL,'String',0,NULL,NULL,'getDBVersion','2020-01-12 16:16:56'),(1578845810386,82001,'apijson/demo/server','DemoSQLConfig',NULL,'getDBPassword',NULL,NULL,'String',0,NULL,NULL,'getDBPassword','2020-01-12 16:16:56'),(1578845810477,82001,'apijson/demo/server','DemoSQLConfig',NULL,'getDBUri',NULL,NULL,'String',0,NULL,NULL,'getDBUri','2020-01-12 16:16:56'),(1578845810539,82001,'apijson/demo/server','DemoVerifier',NULL,'value','[{\"type\":\"Long\"}]',NULL,'long',0,NULL,NULL,'value','2020-01-12 16:16:56'),(1578846020713,82001,'apijson/demo/server','DemoSQLConfig',NULL,'getDBPassword',NULL,NULL,'String',0,NULL,NULL,'getDBPassword','2020-01-12 16:20:26'),(1578846020738,82001,'apijson/demo/server','DemoSQLConfig',NULL,'getUserIdKey',NULL,NULL,'String',0,NULL,NULL,'getUserIdKey','2020-01-12 16:20:26'),(1578846020741,82001,'apijson/demo/server','DemoSQLConfig',NULL,'getDBAccount',NULL,NULL,'String',0,NULL,NULL,'getDBAccount','2020-01-12 16:20:26'),(1578846020762,82001,'apijson/demo/server','DemoSQLConfig',NULL,'getIdKey',NULL,NULL,'String',0,NULL,NULL,'getIdKey','2020-01-12 16:20:26'),(1578846020771,82001,'apijson/demo/server','DemoSQLConfig',NULL,'getDBUri',NULL,NULL,'String',0,NULL,NULL,'getDBUri','2020-01-12 16:20:26'),(1578846020846,82001,'apijson/demo/server','DemoSQLConfig',NULL,'getDBVersion',NULL,NULL,'String',0,NULL,NULL,'getDBVersion','2020-01-12 16:20:26'),(1578848528373,82001,'apijson/demo/server','Controller',NULL,'get','[{\"type\":\"String\"},{\"type\":\"javax/servlet/http/HttpSession\"}]',NULL,'String',0,NULL,NULL,'get','2020-01-12 17:02:17'),(1578848528402,82001,'apijson/demo/server','Controller',NULL,'register','[{\"type\":\"String\"}]',NULL,'JSONObject',0,NULL,NULL,'register','2020-01-12 17:02:17'),(1578848528406,82001,'apijson/demo/server','Controller',NULL,'put','[{\"type\":\"String\"},{\"type\":\"javax/servlet/http/HttpSession\"}]',NULL,'String',0,NULL,NULL,'put','2020-01-12 17:02:17'),(1578848528411,82001,'apijson/demo/server','Controller',NULL,'delete','[{\"type\":\"String\"},{\"type\":\"javax/servlet/http/HttpSession\"}]',NULL,'String',0,NULL,NULL,'delete','2020-01-12 17:02:17'),(1578848528540,82001,'apijson/demo/server','Controller',NULL,'delegate','[{\"type\":\"String\"},{\"type\":\"String\"},{\"type\":\"org/springframework/http/HttpMethod\"},{\"type\":\"javax/servlet/http/HttpSession\"}]',NULL,'String',0,NULL,NULL,'delegate','2020-01-12 17:02:17'),(1578848528583,82001,'apijson/demo/server','Controller',NULL,'head','[{\"type\":\"String\"},{\"type\":\"javax/servlet/http/HttpSession\"}]',NULL,'String',0,NULL,NULL,'head','2020-01-12 17:02:17'),(1578848528883,82001,'apijson/demo/server','Controller',NULL,'invokeMethod','[{\"type\":\"String\"}]',NULL,'JSONObject',0,NULL,NULL,'invokeMethod','2020-01-12 17:02:17'),(1578848528904,82001,'apijson/demo/server','Controller',NULL,'login','[{\"type\":\"String\"},{\"type\":\"javax/servlet/http/HttpSession\"}]',NULL,'JSONObject',0,NULL,NULL,'login','2020-01-12 17:02:17'),(1578848528968,82001,'apijson/demo/server','Controller',NULL,'reload','[{\"type\":\"String\"}]',NULL,'JSONObject',0,NULL,NULL,'reload','2020-01-12 17:02:17'),(1578848529016,82001,'apijson/demo/server','Controller',NULL,'gets','[{\"type\":\"String\"},{\"type\":\"javax/servlet/http/HttpSession\"}]',NULL,'String',0,NULL,NULL,'gets','2020-01-12 17:02:17'),(1578848529235,82001,'apijson/demo/server','Controller',NULL,'heads','[{\"type\":\"String\"},{\"type\":\"javax/servlet/http/HttpSession\"}]',NULL,'String',0,NULL,NULL,'heads','2020-01-12 17:02:18'),(1578848529296,82001,'apijson/demo/server','Controller',NULL,'post','[{\"type\":\"String\"},{\"type\":\"javax/servlet/http/HttpSession\"}]',NULL,'String',0,NULL,NULL,'post','2020-01-12 17:02:18'),(1578848529414,82001,'apijson/demo/server','Controller',NULL,'openGet','[{\"type\":\"String\"},{\"type\":\"javax/servlet/http/HttpSession\"}]',NULL,'String',0,NULL,NULL,'openGet','2020-01-12 17:02:18'),(1578848529603,82001,'apijson/demo/server','Controller',NULL,'openHead','[{\"type\":\"String\"},{\"type\":\"javax/servlet/http/HttpSession\"}]',NULL,'String',0,NULL,NULL,'openHead','2020-01-12 17:02:18'),(1578848529608,82001,'apijson/demo/server','Controller',NULL,'headVerify','[{\"type\":\"int\"},{\"type\":\"String\"},{\"type\":\"String\"}]',NULL,'JSONObject',0,NULL,NULL,'headVerify','2020-01-12 17:02:18'),(1578848529627,82001,'apijson/demo/server','Controller',NULL,'postVerify','[{\"type\":\"String\"}]',NULL,'JSONObject',0,NULL,NULL,'postVerify','2020-01-12 17:02:18'),(1578848529875,82001,'apijson/demo/server','Controller',NULL,'getVerify','[{\"type\":\"String\"}]',NULL,'JSONObject',0,NULL,NULL,'getVerify','2020-01-12 17:02:18'),(1578848530040,82001,'apijson/demo/server','Controller',NULL,'newVerifyRequest','[{\"type\":\"int\"},{\"type\":\"String\"},{\"type\":\"String\"}]',NULL,'zuo/biao/apijson/JSONRequest',0,NULL,NULL,'newVerifyRequest','2020-01-12 17:02:19'),(1578848530124,82001,'apijson/demo/server','Controller',NULL,'logout','[{\"type\":\"javax/servlet/http/HttpSession\"}]',NULL,'JSONObject',0,NULL,NULL,'logout','2020-01-12 17:02:19'),(1578848530242,82001,'apijson/demo/server','Controller',NULL,'newIllegalArgumentResult','[{\"type\":\"JSONObject\"},{\"type\":\"String\"},{\"type\":\"String\"}]',NULL,'JSONObject',0,NULL,NULL,'newIllegalArgumentResult','2020-01-12 17:02:19'),(1578848530386,82001,'apijson/demo/server','Controller',NULL,'putBalance','[{\"type\":\"String\"},{\"type\":\"javax/servlet/http/HttpSession\"}]',NULL,'JSONObject',0,NULL,NULL,'putBalance','2020-01-12 17:02:19'),(1578848530401,82001,'apijson/demo/server','Controller',NULL,'newIllegalArgumentResult','[{\"type\":\"JSONObject\"},{\"type\":\"String\"}]',NULL,'JSONObject',0,NULL,NULL,'newIllegalArgumentResult','2020-01-12 17:02:19'),(1578848530611,82001,'apijson/demo/server','Controller',NULL,'swaggerAPIDocs',NULL,NULL,'JSONObject',0,NULL,NULL,'swaggerAPIDocs','2020-01-12 17:02:19'),(1578848530868,82001,'apijson/demo/server','Controller',NULL,'listMethod','[{\"type\":\"String\"}]',NULL,'JSONObject',0,NULL,NULL,'listMethod','2020-01-12 17:02:19'),(1578848530940,82001,'apijson/demo/server','DemoObjectParser',NULL,'setMethod','[{\"type\":\"zuo/biao/apijson/RequestMethod\"}]',NULL,'zuo/biao/apijson/server/ObjectParser',0,NULL,NULL,'setMethod','2020-01-12 17:02:19'),(1578848531037,82001,'apijson/demo/server','DemoParser',NULL,'createSQLConfig',NULL,NULL,'apijson/demo/server/DemoSQLConfig',0,NULL,NULL,'createSQLConfig','2020-01-12 17:02:20'),(1578848531039,82001,'apijson/demo/server','DemoObjectParser',NULL,'setMethod','[{\"type\":\"zuo/biao/apijson/RequestMethod\"}]',NULL,'apijson/demo/server/DemoObjectParser',0,NULL,NULL,'setMethod','2020-01-12 17:02:19'),(1578848531230,82001,'apijson/demo/server','DemoObjectParser',NULL,'setMethod','[{\"type\":\"zuo/biao/apijson/RequestMethod\"}]',NULL,'zuo/biao/apijson/server/AbstractObjectParser',0,NULL,NULL,'setMethod','2020-01-12 17:02:20'),(1578848531337,82001,'apijson/demo/server','DemoParser',NULL,'createVerifier',NULL,NULL,'zuo/biao/apijson/server/Verifier',0,NULL,NULL,'createVerifier','2020-01-12 17:02:20'),(1578848531396,82001,'apijson/demo/server','DemoParser',NULL,'createSQLConfig',NULL,NULL,'zuo/biao/apijson/server/SQLConfig',0,NULL,NULL,'createSQLConfig','2020-01-12 17:02:20'),(1578848531497,82001,'apijson/demo/server','DemoParser',NULL,'createVerifier',NULL,NULL,'apijson/demo/server/DemoVerifier',0,NULL,NULL,'createVerifier','2020-01-12 17:02:20'),(1578848531660,82001,'apijson/demo/server','DemoParser',NULL,'getSession',NULL,NULL,'javax/servlet/http/HttpSession',0,NULL,NULL,'getSession','2020-01-12 17:02:20'),(1578848531698,82001,'apijson/demo/server','DemoParser',NULL,'setSession','[{\"type\":\"javax/servlet/http/HttpSession\"}]',NULL,'apijson/demo/server/DemoParser',0,NULL,NULL,'setSession','2020-01-12 17:02:20'),(1578848531891,82001,'apijson/demo/server','DemoParser',NULL,'createSQLExecutor',NULL,NULL,'zuo/biao/apijson/server/SQLExecutor',0,NULL,NULL,'createSQLExecutor','2020-01-12 17:02:20'),(1578848532047,82001,'apijson/demo/server','DemoParser',NULL,'parseResponse','[{\"type\":\"JSONObject\"}]',NULL,'JSONObject',0,NULL,NULL,'parseResponse','2020-01-12 17:02:21'),(1578848532118,82001,'apijson/demo/server','DemoParser',NULL,'createSQLExecutor',NULL,NULL,'apijson/demo/server/DemoSQLExecutor',0,NULL,NULL,'createSQLExecutor','2020-01-12 17:02:21'),(1578848532400,82001,'apijson/demo/server','DemoSQLConfig',NULL,'getIdKey',NULL,NULL,'String',0,NULL,NULL,'getIdKey','2020-01-12 17:02:21'),(1578848532484,82001,'apijson/demo/server','DemoSQLConfig',NULL,'getUserIdKey',NULL,NULL,'String',0,NULL,NULL,'getUserIdKey','2020-01-12 17:02:21'),(1578848532711,82001,'apijson/demo/server','DemoSQLConfig',NULL,'getDBVersion',NULL,NULL,'String',0,NULL,NULL,'getDBVersion','2020-01-12 17:02:21'),(1578848532725,82001,'apijson/demo/server','DemoSQLConfig',NULL,'getDBUri',NULL,NULL,'String',0,NULL,NULL,'getDBUri','2020-01-12 17:02:21'),(1578848532812,82001,'apijson/demo/server','DemoSQLConfig',NULL,'getDBAccount',NULL,NULL,'String',0,NULL,NULL,'getDBAccount','2020-01-12 17:02:21'),(1578848533002,82001,'apijson/demo/server','DemoVerifier',NULL,'value','[{\"type\":\"Long\"}]',NULL,'long',0,NULL,NULL,'value','2020-01-12 17:02:22'),(1578848533219,82001,'apijson/demo/server','DemoSQLConfig',NULL,'getDBPassword',NULL,NULL,'String',0,NULL,NULL,'getDBPassword','2020-01-12 17:02:22'),(1579023989288,82001,'apijson/demo/server/model','BaseModel',NULL,'get','[{\"type\":\"Map\",\"genericType\":\"Map<K, V>\"},{\"type\":\"Object\",\"genericType\":\"K\"}]',NULL,'V',0,NULL,NULL,'get','2020-01-14 17:46:50'),(1579023989328,82001,'apijson/demo/server/model','BaseModel',NULL,'get','[{\"type\":\"Object\",\"genericType\":\"T[]\"},{\"type\":\"int\"}]',NULL,'T',0,NULL,NULL,'get','2020-01-14 17:46:50'),(1579023989386,82001,'apijson/demo/server/model','BaseModel',NULL,'get','[{\"type\":\"Collection\",\"genericType\":\"Collection<T>\"},{\"type\":\"int\"}]',NULL,'T',0,NULL,NULL,'get','2020-01-14 17:46:50'),(1579023989388,82001,'apijson/demo/server/model','BaseModel',NULL,'value','[{\"type\":\"Float\"}]',NULL,'float',0,NULL,NULL,'value','2020-01-14 17:46:50'),(1579023989391,82001,'apijson/demo/server/model','BaseModel',NULL,'value','[{\"type\":\"Integer\"}]',NULL,'int',0,NULL,NULL,'value','2020-01-14 17:46:50'),(1579023989396,82001,'apijson/demo/server/model','BaseModel',NULL,'value','[{\"type\":\"Long\"}]',NULL,'long',0,NULL,NULL,'value','2020-01-14 17:46:50'),(1579023989882,82001,'apijson/demo/server/model','BaseModel',NULL,'value','[{\"type\":\"Double\"}]',NULL,'double',0,NULL,NULL,'value','2020-01-14 17:46:50'),(1579023990005,82001,'apijson/demo/server/model','BaseModel',NULL,'value','[{\"type\":\"Boolean\"}]',NULL,'boolean',0,NULL,NULL,'value','2020-01-14 17:46:50'),(1579023990055,82001,'apijson/demo/server/model','BaseModel',NULL,'count','[{\"type\":\"Object\",\"genericType\":\"T[]\"}]',NULL,'int',0,NULL,NULL,'count','2020-01-14 17:46:50'),(1579023990056,82001,'apijson/demo/server/model','BaseModel',NULL,'toString',NULL,NULL,'String',0,NULL,NULL,'toString','2020-01-14 17:46:50'),(1579023990097,82001,'apijson/demo/server/model','BaseModel',NULL,'count','[{\"type\":\"Collection\",\"genericType\":\"Collection<T>\"}]',NULL,'int',0,NULL,NULL,'count','2020-01-14 17:46:50'),(1579023990100,82001,'apijson/demo/server/model','BaseModel',NULL,'count','[{\"type\":\"Map\",\"genericType\":\"Map<K, V>\"}]',NULL,'int',0,NULL,NULL,'count','2020-01-14 17:46:50'),(1579023990531,82001,'apijson/demo/server/model','BaseModel',NULL,'isEmpty','[{\"type\":\"Map\",\"genericType\":\"Map<K, V>\"}]',NULL,'boolean',0,NULL,NULL,'isEmpty','2020-01-14 17:46:51'),(1579023990558,82001,'apijson/demo/server/model','BaseModel',NULL,'isEmpty','[{\"type\":\"Collection\",\"genericType\":\"Collection<T>\"}]',NULL,'boolean',0,NULL,NULL,'isEmpty','2020-01-14 17:46:51'),(1579023990661,82001,'apijson/demo/server/model','BaseModel',NULL,'isEmpty','[{\"type\":\"Object\",\"genericType\":\"T[]\"}]',NULL,'boolean',0,NULL,NULL,'isEmpty','2020-01-14 17:46:51'),(1579023990664,82001,'apijson/demo/server/model','BaseModel',NULL,'setId','[{\"type\":\"Long\"}]',NULL,'apijson/demo/server/model/BaseModel',0,NULL,NULL,'setId','2020-01-14 17:46:51'),(1579023990672,82001,'apijson/demo/server/model','BaseModel',NULL,'getTimeMillis','[{\"type\":\"String\"}]',NULL,'long',0,NULL,NULL,'getTimeMillis','2020-01-14 17:46:51'),(1579023990680,82001,'apijson/demo/server/model','BaseModel',NULL,'getId',NULL,NULL,'Long',0,NULL,NULL,'getId','2020-01-14 17:46:51'),(1579023990957,82001,'apijson/demo/server/model','BaseModel',NULL,'getUserId',NULL,NULL,'Long',0,NULL,NULL,'getUserId','2020-01-14 17:46:51'),(1579023991075,82001,'apijson/demo/server/model','BaseModel',NULL,'getTimeStamp','[{\"type\":\"String\"}]',NULL,'java/sql/Timestamp',0,NULL,NULL,'getTimeStamp','2020-01-14 17:46:51'),(1579023991128,82001,'apijson/demo/server/model','BaseModel',NULL,'getDate',NULL,NULL,'String',0,NULL,NULL,'getDate','2020-01-14 17:46:52'),(1579023991168,82001,'apijson/demo/server/model','BaseModel',NULL,'setDate','[{\"type\":\"String\"}]',NULL,'apijson/demo/server/model/BaseModel',0,NULL,NULL,'setDate','2020-01-14 17:46:52'),(1579023991217,82001,'apijson/demo/server/model','BaseModel',NULL,'currentTimeStamp',NULL,NULL,'java/sql/Timestamp',0,NULL,NULL,'currentTimeStamp','2020-01-14 17:46:52'),(1579023991244,82001,'apijson/demo/server/model','BaseModel',NULL,'isContain','[{\"type\":\"Object\",\"genericType\":\"T[]\"},{\"type\":\"Object\",\"genericType\":\"T\"}]',NULL,'boolean',0,NULL,NULL,'isContain','2020-01-14 17:46:52'),(1579023991404,82001,'apijson/demo/server/model','BaseModel',NULL,'isContain','[{\"type\":\"Collection\",\"genericType\":\"Collection<T>\"},{\"type\":\"Object\",\"genericType\":\"T\"}]',NULL,'boolean',0,NULL,NULL,'isContain','2020-01-14 17:46:52'),(1579023991577,82001,'apijson/demo/server/model','BaseModel',NULL,'isContainKey','[{\"type\":\"Map\",\"genericType\":\"Map<K, V>\"},{\"type\":\"Object\",\"genericType\":\"K\"}]',NULL,'boolean',0,NULL,NULL,'isContainKey','2020-01-14 17:46:52'),(1579023991695,82001,'apijson/demo/server/model','BaseModel',NULL,'getIndexInRange','[{\"type\":\"Integer\"},{\"type\":\"Object[]\"}]',NULL,'int',0,NULL,NULL,'getIndexInRange','2020-01-14 17:46:52'),(1579023991751,82001,'apijson/demo/server/model','BaseModel',NULL,'isContainValue','[{\"type\":\"Map\",\"genericType\":\"Map<K, V>\"},{\"type\":\"Object\",\"genericType\":\"V\"}]',NULL,'boolean',0,NULL,NULL,'isContainValue','2020-01-14 17:46:52'),(1579023991755,82001,'apijson/demo/server/model','BaseModel',NULL,'isIndexInRange','[{\"type\":\"Integer\"},{\"type\":\"Object[]\"}]',NULL,'boolean',0,NULL,NULL,'isIndexInRange','2020-01-14 17:46:52'),(1579023991767,82001,'apijson/demo/server/model','BaseModel',NULL,'getIndexInRange','[{\"type\":\"Integer\"},{\"type\":\"Object[]\"},{\"type\":\"int\"}]',NULL,'int',0,NULL,NULL,'getIndexInRange','2020-01-14 17:46:52'),(1579023991942,82001,'apijson/demo/server/model','BaseModel',NULL,'getInRange','[{\"type\":\"Integer\"},{\"type\":\"Object\",\"genericType\":\"T[]\"}]',NULL,'T',0,NULL,NULL,'getInRange','2020-01-14 17:46:52'),(1579023991948,82001,'apijson/demo/server/model','BaseModel',NULL,'getInRange','[{\"type\":\"Integer\"},{\"type\":\"Object\",\"genericType\":\"T[]\"},{\"type\":\"int\"}]',NULL,'T',0,NULL,NULL,'getInRange','2020-01-14 17:46:52'),(1579023992179,82001,'apijson/demo/server/model','Login',NULL,'getType',NULL,NULL,'Integer',0,NULL,NULL,'getType','2020-01-14 17:46:53'),(1579023992189,82001,'apijson/demo/server/model','BaseModel',NULL,'setUserId','[{\"type\":\"Long\"}]',NULL,'apijson/demo/server/model/BaseModel',0,NULL,NULL,'setUserId','2020-01-14 17:46:53'),(1579023992206,82001,'apijson/demo/server/model','Login',NULL,'setType','[{\"type\":\"Integer\"}]',NULL,'apijson/demo/server/model/Login',0,NULL,NULL,'setType','2020-01-14 17:46:53'),(1579023992349,82001,'apijson/demo/server/model','Privacy',NULL,'setPassword','[{\"type\":\"String\"}]',NULL,'apijson/demo/server/model/Privacy',0,NULL,NULL,'setPassword','2020-01-14 17:46:53'),(1579023992377,82001,'apijson/demo/server/model','Privacy',NULL,'setPhone','[{\"type\":\"String\"}]',NULL,'apijson/demo/server/model/Privacy',0,NULL,NULL,'setPhone','2020-01-14 17:46:53'),(1579023992478,82001,'apijson/demo/server/model','Privacy',NULL,'setPayPassword','[{\"type\":\"String\"}]',NULL,'apijson/demo/server/model/Privacy',0,NULL,NULL,'setPayPassword','2020-01-14 17:46:53'),(1579023992741,82001,'apijson/demo/server/model','Privacy',NULL,'getBalance',NULL,NULL,'Double',0,NULL,NULL,'getBalance','2020-01-14 17:46:53'),(1579023992785,82001,'apijson/demo/server/model','Privacy',NULL,'getPhone',NULL,NULL,'String',0,NULL,NULL,'getPhone','2020-01-14 17:46:53'),(1579023992820,82001,'apijson/demo/server/model','Privacy',NULL,'get__password',NULL,NULL,'String',0,NULL,NULL,'get__password','2020-01-14 17:46:53'),(1579023992830,82001,'apijson/demo/server/model','Privacy',NULL,'get__payPassword',NULL,NULL,'String',0,NULL,NULL,'get__payPassword','2020-01-14 17:46:53'),(1579023992945,82001,'apijson/demo/server/model','User',NULL,'getName',NULL,NULL,'String',0,NULL,NULL,'getName','2020-01-14 17:46:53'),(1579023992968,82001,'apijson/demo/server/model','Privacy',NULL,'setBalance','[{\"type\":\"Double\"}]',NULL,'apijson/demo/server/model/Privacy',0,NULL,NULL,'setBalance','2020-01-14 17:46:53'),(1579023993149,82001,'apijson/demo/server/model','User',NULL,'getId',NULL,NULL,'Object',0,NULL,NULL,'getId','2020-01-14 17:46:53'),(1579023993162,82001,'apijson/demo/server/model','User',NULL,'setName','[{\"type\":\"String\"}]',NULL,'apijson/demo/server/model/User',0,NULL,NULL,'setName','2020-01-14 17:46:53'),(1579023993342,82001,'apijson/demo/server/model','User',NULL,'getTag',NULL,NULL,'String',0,NULL,NULL,'getTag','2020-01-14 17:46:54'),(1579023993416,82001,'apijson/demo/server/model','User',NULL,'setHead','[{\"type\":\"String\"}]',NULL,'apijson/demo/server/model/User',0,NULL,NULL,'setHead','2020-01-14 17:46:54'),(1579023993520,82001,'apijson/demo/server/model','User',NULL,'setTag','[{\"type\":\"String\"}]',NULL,'apijson/demo/server/model/User',0,NULL,NULL,'setTag','2020-01-14 17:46:54'),(1579023993655,82001,'apijson/demo/server/model','User',NULL,'setSex','[{\"type\":\"Integer\"}]',NULL,'apijson/demo/server/model/User',0,NULL,NULL,'setSex','2020-01-14 17:46:54'),(1579023993669,82001,'apijson/demo/server/model','User',NULL,'getSex',NULL,NULL,'Integer',0,NULL,NULL,'getSex','2020-01-14 17:46:54'),(1579023993895,82001,'apijson/demo/server/model','User',NULL,'getPictureList',NULL,NULL,'List<String>',0,NULL,NULL,'getPictureList','2020-01-14 17:46:54'),(1579023993930,82001,'apijson/demo/server/model','User',NULL,'setPictureList','[{\"type\":\"List\",\"genericType\":\"List<String>\"}]',NULL,'apijson/demo/server/model/User',0,NULL,NULL,'setPictureList','2020-01-14 17:46:54'),(1579023994028,82001,'apijson/demo/server/model','User',NULL,'getContactIdList',NULL,NULL,'List<Long>',0,NULL,NULL,'getContactIdList','2020-01-14 17:46:54'),(1579023994171,82001,'apijson/demo/server/model','User',NULL,'setContactIdList','[{\"type\":\"List\",\"genericType\":\"List<Long>\"}]',NULL,'apijson/demo/server/model/User',0,NULL,NULL,'setContactIdList','2020-01-14 17:46:54'),(1579023994195,82001,'apijson/demo/server/model','Verify',NULL,'getType',NULL,NULL,'Integer',0,NULL,NULL,'getType','2020-01-14 17:46:54'),(1579023994325,82001,'apijson/demo/server/model','Verify',NULL,'getVerify',NULL,NULL,'String',0,NULL,NULL,'getVerify','2020-01-14 17:46:55'),(1579023994537,82001,'apijson/demo/server/model','Verify',NULL,'setVerify','[{\"type\":\"String\"}]',NULL,'apijson/demo/server/model/Verify',0,NULL,NULL,'setVerify','2020-01-14 17:46:55'),(1579023994552,82001,'apijson/demo/server/model','Verify',NULL,'setPhone','[{\"type\":\"String\"}]',NULL,'apijson/demo/server/model/Verify',0,NULL,NULL,'setPhone','2020-01-14 17:46:55'),(1579023994660,82001,'apijson/demo/server/model','Verify',NULL,'getPhone',NULL,NULL,'String',0,NULL,NULL,'getPhone','2020-01-14 17:46:55'),(1580192355999,82001,'apijson/demo/server/model','BaseModel',NULL,'value','[{\"type\":\"Long\"}]',NULL,'long',1,NULL,NULL,'value','2020-01-28 06:19:17'),(1580192356001,82001,'apijson/demo/server/model','BaseModel',NULL,'get','[{\"type\":\"Object\",\"genericType\":\"T[]\"},{\"type\":\"int\"}]',NULL,'T',1,NULL,NULL,'get','2020-01-28 06:19:17'),(1580192356002,82001,'apijson/demo/server/model','BaseModel',NULL,'get','[{\"type\":\"Collection\",\"genericType\":\"Collection<T>\"},{\"type\":\"int\"}]',NULL,'T',1,NULL,NULL,'get','2020-01-28 06:19:17'),(1580192356056,82001,'apijson/demo/server/model','BaseModel',NULL,'get','[{\"type\":\"Map\",\"genericType\":\"Map<K, V>\"},{\"type\":\"Object\",\"genericType\":\"K\"}]',NULL,'V',1,NULL,NULL,'get','2020-01-28 06:19:17'),(1580192356414,82001,'apijson/demo/server/model','BaseModel',NULL,'value','[{\"type\":\"Integer\"}]',NULL,'int',1,NULL,NULL,'value','2020-01-28 06:19:17'),(1580192356445,82001,'apijson/demo/server/model','BaseModel',NULL,'count','[{\"type\":\"Collection\",\"genericType\":\"Collection<T>\"}]',NULL,'int',1,NULL,NULL,'count','2020-01-28 06:19:17'),(1580192356450,82001,'apijson/demo/server/model','BaseModel',NULL,'count','[{\"type\":\"Map\",\"genericType\":\"Map<K, V>\"}]',NULL,'int',1,NULL,NULL,'count','2020-01-28 06:19:17'),(1580192356490,82001,'apijson/demo/server/model','BaseModel',NULL,'value','[{\"type\":\"Boolean\"}]',NULL,'boolean',1,NULL,NULL,'value','2020-01-28 06:19:17'),(1580192356544,82001,'apijson/demo/server/model','BaseModel',NULL,'count','[{\"type\":\"Object\",\"genericType\":\"T[]\"}]',NULL,'int',1,NULL,NULL,'count','2020-01-28 06:19:17'),(1580192356578,82001,'apijson/demo/server/model','BaseModel',NULL,'toString',NULL,NULL,'String',0,NULL,NULL,'toString','2020-01-28 06:19:17'),(1580192356910,82001,'apijson/demo/server/model','BaseModel',NULL,'isEmpty','[{\"type\":\"Object\",\"genericType\":\"T[]\"}]',NULL,'boolean',1,NULL,NULL,'isEmpty','2020-01-28 06:19:18'),(1580192356916,82001,'apijson/demo/server/model','BaseModel',NULL,'isEmpty','[{\"type\":\"Map\",\"genericType\":\"Map<K, V>\"}]',NULL,'boolean',1,NULL,NULL,'isEmpty','2020-01-28 06:19:18'),(1580192356938,82001,'apijson/demo/server/model','BaseModel',NULL,'isEmpty','[{\"type\":\"Collection\",\"genericType\":\"Collection<T>\"}]',NULL,'boolean',1,NULL,NULL,'isEmpty','2020-01-28 06:19:18'),(1580192356947,82001,'apijson/demo/server/model','BaseModel',NULL,'getTimeMillis','[{\"type\":\"String\"}]',NULL,'long',1,NULL,NULL,'getTimeMillis','2020-01-28 06:19:18'),(1580192357029,82001,'apijson/demo/server/model','BaseModel',NULL,'setId','[{\"type\":\"Long\"}]',NULL,'apijson/demo/server/model/BaseModel',0,NULL,NULL,'setId','2020-01-28 06:19:18'),(1580192357036,82001,'apijson/demo/server/model','BaseModel',NULL,'getId',NULL,NULL,'Long',0,NULL,NULL,'getId','2020-01-28 06:19:18'),(1580192357350,82001,'apijson/demo/server/model','BaseModel',NULL,'getTimeStamp','[{\"type\":\"String\"}]',NULL,'java/sql/Timestamp',1,NULL,NULL,'getTimeStamp','2020-01-28 06:19:18'),(1580192357372,82001,'apijson/demo/server/model','BaseModel',NULL,'getDate',NULL,NULL,'String',0,NULL,NULL,'getDate','2020-01-28 06:19:18'),(1580192357403,82001,'apijson/demo/server/model','BaseModel',NULL,'setUserId','[{\"type\":\"Long\"}]',NULL,'apijson/demo/server/model/BaseModel',0,NULL,NULL,'setUserId','2020-01-28 06:19:18'),(1580192357406,82001,'apijson/demo/server/model','BaseModel',NULL,'setDate','[{\"type\":\"String\"}]',NULL,'apijson/demo/server/model/BaseModel',0,NULL,NULL,'setDate','2020-01-28 06:19:18'),(1580192357415,82001,'apijson/demo/server/model','BaseModel',NULL,'currentTimeStamp',NULL,NULL,'java/sql/Timestamp',1,NULL,NULL,'currentTimeStamp','2020-01-28 06:19:18'),(1580192357522,82001,'apijson/demo/server/model','BaseModel',NULL,'isContain','[{\"type\":\"Object\",\"genericType\":\"T[]\"},{\"type\":\"Object\",\"genericType\":\"T\"}]',NULL,'boolean',1,NULL,NULL,'isContain','2020-01-28 06:19:18'),(1580192357736,82001,'apijson/demo/server/model','BaseModel',NULL,'isContain','[{\"type\":\"Collection\",\"genericType\":\"Collection<T>\"},{\"type\":\"Object\",\"genericType\":\"T\"}]',NULL,'boolean',1,NULL,NULL,'isContain','2020-01-28 06:19:18'),(1580192357835,82001,'apijson/demo/server/model','BaseModel',NULL,'getUserId',NULL,NULL,'Long',0,NULL,NULL,'getUserId','2020-01-28 06:19:19'),(1580192357837,82001,'apijson/demo/server/model','BaseModel',NULL,'isIndexInRange','[{\"type\":\"Integer\"},{\"type\":\"Object[]\"}]',NULL,'boolean',1,NULL,NULL,'isIndexInRange','2020-01-28 06:19:19'),(1580192357845,82001,'apijson/demo/server/model','BaseModel',NULL,'isContainKey','[{\"type\":\"Map\",\"genericType\":\"Map<K, V>\"},{\"type\":\"Object\",\"genericType\":\"K\"}]',NULL,'boolean',1,NULL,NULL,'isContainKey','2020-01-28 06:19:19'),(1580192357881,82001,'apijson/demo/server/model','BaseModel',NULL,'getIndexInRange','[{\"type\":\"Integer\"},{\"type\":\"Object[]\"},{\"type\":\"int\"}]',NULL,'int',1,NULL,NULL,'getIndexInRange','2020-01-28 06:19:19'),(1580192357889,82001,'apijson/demo/server/model','BaseModel',NULL,'isContainValue','[{\"type\":\"Map\",\"genericType\":\"Map<K, V>\"},{\"type\":\"Object\",\"genericType\":\"V\"}]',NULL,'boolean',1,NULL,NULL,'isContainValue','2020-01-28 06:19:19'),(1580192358133,82001,'apijson/demo/server/model','BaseModel',NULL,'getIndexInRange','[{\"type\":\"Integer\"},{\"type\":\"Object[]\"}]',NULL,'int',1,NULL,NULL,'getIndexInRange','2020-01-28 06:19:19'),(1580192358264,82001,'apijson/demo/server/model','BaseModel',NULL,'getInRange','[{\"type\":\"Integer\"},{\"type\":\"Object\",\"genericType\":\"T[]\"}]',NULL,'T',1,NULL,NULL,'getInRange','2020-01-28 06:19:19'),(1580192358269,82001,'apijson/demo/server/model','BaseModel',NULL,'getInRange','[{\"type\":\"Integer\"},{\"type\":\"Object\",\"genericType\":\"T[]\"},{\"type\":\"int\"}]',NULL,'T',1,NULL,NULL,'getInRange','2020-01-28 06:19:19'),(1580193674844,82001,'apijson/demo/server/model','BaseModel',NULL,'value',NULL,NULL,'int',0,'{\n \"static\": true,\n \"methodArgs\": [\n {\n \"type\": \"Integer\" }\n ]\n}',NULL,'value','2020-01-28 06:41:16'),(1580397926847,82001,'apijson/demo/server','Controller',NULL,'register','[{\"type\":\"String\"}]',NULL,'JSONObject',0,NULL,NULL,'register','2020-01-30 15:25:26'),(1580397926859,82001,'apijson/demo/server','Controller',NULL,'get','[{\"type\":\"String\"},{\"type\":\"javax/servlet/http/HttpSession\"}]',NULL,'String',0,NULL,NULL,'get','2020-01-30 15:25:26'),(1580397926870,82001,'apijson/demo/server','Controller',NULL,'delete','[{\"type\":\"String\"},{\"type\":\"javax/servlet/http/HttpSession\"}]',NULL,'String',0,NULL,NULL,'delete','2020-01-30 15:25:26'),(1580397926904,82001,'apijson/demo/server','',NULL,'customize','[{\"type\":\"org/springframework/boot/context/embedded/ConfigurableEmbeddedServletContainer\"}]',NULL,'Object',0,NULL,NULL,'customize','2020-01-30 15:25:26'),(1580397926920,82001,'apijson/demo/server','Controller',NULL,'head','[{\"type\":\"String\"},{\"type\":\"javax/servlet/http/HttpSession\"}]',NULL,'String',0,NULL,NULL,'head','2020-01-30 15:25:26'),(1580397927365,82001,'apijson/demo/server','Controller',NULL,'invokeMethod','[{\"type\":\"String\"}]',NULL,'JSONObject',0,NULL,NULL,'invokeMethod','2020-01-30 15:25:27'),(1580397927402,82001,'apijson/demo/server','Controller',NULL,'gets','[{\"type\":\"String\"},{\"type\":\"javax/servlet/http/HttpSession\"}]',NULL,'String',0,NULL,NULL,'gets','2020-01-30 15:25:27'),(1580397927432,82001,'apijson/demo/server','Controller',NULL,'reload','[{\"type\":\"String\"}]',NULL,'JSONObject',0,NULL,NULL,'reload','2020-01-30 15:25:27'),(1580397927461,82001,'apijson/demo/server','Controller',NULL,'heads','[{\"type\":\"String\"},{\"type\":\"javax/servlet/http/HttpSession\"}]',NULL,'String',0,NULL,NULL,'heads','2020-01-30 15:25:27'),(1580397927686,82001,'apijson/demo/server','Controller',NULL,'post','[{\"type\":\"String\"},{\"type\":\"javax/servlet/http/HttpSession\"}]',NULL,'String',0,NULL,NULL,'post','2020-01-30 15:25:27'),(1580397927892,82001,'apijson/demo/server','Controller',NULL,'openGet','[{\"type\":\"String\"},{\"type\":\"javax/servlet/http/HttpSession\"}]',NULL,'String',0,NULL,NULL,'openGet','2020-01-30 15:25:27'),(1580397927957,82001,'apijson/demo/server','Controller',NULL,'headVerify','[{\"type\":\"int\"},{\"type\":\"String\"},{\"type\":\"String\"}]',NULL,'JSONObject',0,NULL,NULL,'headVerify','2020-01-30 15:25:27'),(1580397928022,82001,'apijson/demo/server','Controller',NULL,'postVerify','[{\"type\":\"String\"}]',NULL,'JSONObject',0,NULL,NULL,'postVerify','2020-01-30 15:25:28'),(1580397928048,82001,'apijson/demo/server','Controller',NULL,'openHead','[{\"type\":\"String\"},{\"type\":\"javax/servlet/http/HttpSession\"}]',NULL,'String',0,NULL,NULL,'openHead','2020-01-30 15:25:28'),(1580397928216,82001,'apijson/demo/server','Controller',NULL,'headVerify','[{\"type\":\"String\"}]',NULL,'JSONObject',0,NULL,NULL,'headVerify','2020-01-30 15:25:28'),(1580397928245,82001,'apijson/demo/server','Controller',NULL,'getVerify','[{\"type\":\"String\"}]',NULL,'JSONObject',0,NULL,NULL,'getVerify','2020-01-30 15:25:28'),(1580397928530,82001,'apijson/demo/server','Controller',NULL,'logout','[{\"type\":\"javax/servlet/http/HttpSession\"}]',NULL,'JSONObject',0,NULL,NULL,'logout','2020-01-30 15:25:28'),(1580397928783,82001,'apijson/demo/server','Controller',NULL,'putPassword','[{\"type\":\"String\"}]',NULL,'JSONObject',0,NULL,NULL,'putPassword','2020-01-30 15:25:28'),(1580397928803,82001,'apijson/demo/server','Controller',NULL,'putBalance','[{\"type\":\"String\"},{\"type\":\"javax/servlet/http/HttpSession\"}]',NULL,'JSONObject',0,NULL,NULL,'putBalance','2020-01-30 15:25:28'),(1580397928811,82001,'apijson/demo/server','Controller',NULL,'newIllegalArgumentResult','[{\"type\":\"JSONObject\"},{\"type\":\"String\"}]',NULL,'JSONObject',0,NULL,NULL,'newIllegalArgumentResult','2020-01-30 15:25:28'),(1580397929267,82001,'apijson/demo/server','Controller',NULL,'listMethod','[{\"type\":\"String\"}]',NULL,'JSONObject',0,NULL,NULL,'listMethod','2020-01-30 15:25:29'),(1580397929280,82001,'apijson/demo/server','DemoObjectParser',NULL,'setParser','[{\"type\":\"zuo/biao/apijson/server/Parser\"}]',NULL,'zuo/biao/apijson/server/AbstractObjectParser',0,NULL,NULL,'setParser','2020-01-30 15:25:29'),(1580397929296,82001,'apijson/demo/server','DemoParser',NULL,'createVerifier',NULL,NULL,'apijson/demo/server/DemoVerifier',0,NULL,NULL,'createVerifier','2020-01-30 15:25:29'),(1580397929300,82001,'apijson/demo/server','DemoObjectParser',NULL,'setParser','[{\"type\":\"zuo/biao/apijson/server/Parser<?>\"}]',NULL,'apijson/demo/server/DemoObjectParser',0,NULL,NULL,'setParser','2020-01-30 15:25:29'),(1580397929321,82001,'apijson/demo/server','DemoParser',NULL,'createSQLConfig',NULL,NULL,'apijson/demo/server/DemoSQLConfig',0,NULL,NULL,'createSQLConfig','2020-01-30 15:25:29'),(1580397929736,82001,'apijson/demo/server','DemoParser',NULL,'createSQLExecutor',NULL,NULL,'zuo/biao/apijson/server/SQLExecutor',0,NULL,NULL,'createSQLExecutor','2020-01-30 15:25:29'),(1580397929762,82001,'apijson/demo/server','DemoParser',NULL,'createSQLConfig',NULL,NULL,'zuo/biao/apijson/server/SQLConfig',0,NULL,NULL,'createSQLConfig','2020-01-30 15:25:29'),(1580397929784,82001,'apijson/demo/server','DemoParser',NULL,'createSQLExecutor',NULL,NULL,'apijson/demo/server/DemoSQLExecutor',0,NULL,NULL,'createSQLExecutor','2020-01-30 15:25:29'),(1580397929832,82001,'apijson/demo/server','',NULL,'getUserIdKey','[{\"type\":\"String\"},{\"type\":\"String\"},{\"type\":\"String\"}]',NULL,'String',0,NULL,NULL,'getUserIdKey','2020-01-30 15:25:29'),(1580397929838,82001,'apijson/demo/server','',NULL,'getSQLConfig','[{\"type\":\"zuo/biao/apijson/RequestMethod\"},{\"type\":\"String\"},{\"type\":\"String\"},{\"type\":\"String\"}]',NULL,'zuo/biao/apijson/server/AbstractSQLConfig',0,NULL,NULL,'getSQLConfig','2020-01-30 15:25:29'),(1580397930016,82001,'apijson/demo/server','DemoSQLConfig',NULL,'getIdKey',NULL,NULL,'String',0,NULL,NULL,'getIdKey','2020-01-30 15:25:29'),(1580397930159,82001,'apijson/demo/server','DemoSQLConfig',NULL,'getUserIdKey',NULL,NULL,'String',0,NULL,NULL,'getUserIdKey','2020-01-30 15:25:30'),(1580397930202,82001,'apijson/demo/server','DemoSQLConfig',NULL,'getDBVersion',NULL,NULL,'String',0,NULL,NULL,'getDBVersion','2020-01-30 15:25:30'),(1580397930226,82001,'apijson/demo/server','DemoSQLConfig',NULL,'getDBAccount',NULL,NULL,'String',0,NULL,NULL,'getDBAccount','2020-01-30 15:25:30'),(1580397930321,82001,'apijson/demo/server','DemoSQLConfig',NULL,'getDBUri',NULL,NULL,'String',0,NULL,NULL,'getDBUri','2020-01-30 15:25:30'),(1580397930429,82001,'apijson/demo/server','DemoVerifier',NULL,'value','[{\"type\":\"Long\"}]',NULL,'long',0,NULL,NULL,'value','2020-01-30 15:25:30'),(1580397930438,82001,'apijson/demo/server','DemoSQLConfig',NULL,'getDBPassword',NULL,NULL,'String',0,NULL,NULL,'getDBPassword','2020-01-30 15:25:30'),(1580397930647,82001,'apijson/demo/server','',NULL,'createSQLConfig',NULL,NULL,'zuo/biao/apijson/server/SQLConfig',0,NULL,NULL,'createSQLConfig','2020-01-30 15:25:30'),(1580397930672,82001,'apijson/demo/server','',NULL,'createSQLExecutor',NULL,NULL,'zuo/biao/apijson/server/SQLExecutor',0,NULL,NULL,'createSQLExecutor','2020-01-30 15:25:30'),(1580398202342,82001,'apijson/demo/server','',NULL,'customize','[{\"type\":\"org/springframework/boot/context/embedded/ConfigurableEmbeddedServletContainer\"}]',NULL,'Object',0,NULL,NULL,'customize','2020-01-30 15:30:02'),(1580398202352,82001,'apijson/demo/server','Controller',NULL,'put','[{\"type\":\"String\"},{\"type\":\"javax/servlet/http/HttpSession\"}]',NULL,'String',0,NULL,NULL,'put','2020-01-30 15:30:01'),(1580398202361,82001,'apijson/demo/server','Controller',NULL,'delete','[{\"type\":\"String\"},{\"type\":\"javax/servlet/http/HttpSession\"}]',NULL,'String',0,NULL,NULL,'delete','2020-01-30 15:30:02'),(1580398202405,82001,'apijson/demo/server','Controller',NULL,'register','[{\"type\":\"String\"}]',NULL,'JSONObject',0,NULL,NULL,'register','2020-01-30 15:30:02'),(1580398202433,82001,'apijson/demo/server','Controller',NULL,'get','[{\"type\":\"String\"},{\"type\":\"javax/servlet/http/HttpSession\"}]',NULL,'String',0,NULL,NULL,'get','2020-01-30 15:30:02'),(1580398202436,82001,'apijson/demo/server','Controller',NULL,'head','[{\"type\":\"String\"},{\"type\":\"javax/servlet/http/HttpSession\"}]',NULL,'String',0,NULL,NULL,'head','2020-01-30 15:30:02'),(1580398202717,82001,'apijson/demo/server','Controller',NULL,'invokeMethod','[{\"type\":\"String\"}]',NULL,'JSONObject',0,NULL,NULL,'invokeMethod','2020-01-30 15:30:02'),(1580398202724,82001,'apijson/demo/server','Controller',NULL,'reload','[{\"type\":\"String\"}]',NULL,'JSONObject',0,NULL,NULL,'reload','2020-01-30 15:30:02'),(1580398202760,82001,'apijson/demo/server','Controller',NULL,'login','[{\"type\":\"String\"},{\"type\":\"javax/servlet/http/HttpSession\"}]',NULL,'JSONObject',0,NULL,NULL,'login','2020-01-30 15:30:02'),(1580398202954,82001,'apijson/demo/server','Controller',NULL,'gets','[{\"type\":\"String\"},{\"type\":\"javax/servlet/http/HttpSession\"}]',NULL,'String',0,NULL,NULL,'gets','2020-01-30 15:30:02'),(1580398202973,82001,'apijson/demo/server','Controller',NULL,'heads','[{\"type\":\"String\"},{\"type\":\"javax/servlet/http/HttpSession\"}]',NULL,'String',0,NULL,NULL,'heads','2020-01-30 15:30:02'),(1580398203072,82001,'apijson/demo/server','Controller',NULL,'post','[{\"type\":\"String\"},{\"type\":\"javax/servlet/http/HttpSession\"}]',NULL,'String',0,NULL,NULL,'post','2020-01-30 15:30:02'),(1580398203187,82001,'apijson/demo/server','Controller',NULL,'headVerify','[{\"type\":\"int\"},{\"type\":\"String\"},{\"type\":\"String\"}]',NULL,'JSONObject',0,NULL,NULL,'headVerify','2020-01-30 15:30:02'),(1580398203190,82001,'apijson/demo/server','Controller',NULL,'openHead','[{\"type\":\"String\"},{\"type\":\"javax/servlet/http/HttpSession\"}]',NULL,'String',0,NULL,NULL,'openHead','2020-01-30 15:30:02'),(1580398203250,82001,'apijson/demo/server','Controller',NULL,'openGet','[{\"type\":\"String\"},{\"type\":\"javax/servlet/http/HttpSession\"}]',NULL,'String',0,NULL,NULL,'openGet','2020-01-30 15:30:02'),(1580398203295,82001,'apijson/demo/server','Controller',NULL,'postVerify','[{\"type\":\"String\"}]',NULL,'JSONObject',0,NULL,NULL,'postVerify','2020-01-30 15:30:02'),(1580398203367,82001,'apijson/demo/server','Controller',NULL,'headVerify','[{\"type\":\"String\"}]',NULL,'JSONObject',0,NULL,NULL,'headVerify','2020-01-30 15:30:03'),(1580398203425,82001,'apijson/demo/server','Controller',NULL,'getVerify','[{\"type\":\"String\"}]',NULL,'JSONObject',0,NULL,NULL,'getVerify','2020-01-30 15:30:03'),(1580398203581,82001,'apijson/demo/server','Controller',NULL,'logout','[{\"type\":\"javax/servlet/http/HttpSession\"}]',NULL,'JSONObject',0,NULL,NULL,'logout','2020-01-30 15:30:03'),(1580398203630,82001,'apijson/demo/server','Controller',NULL,'newIllegalArgumentResult','[{\"type\":\"JSONObject\"},{\"type\":\"String\"},{\"type\":\"String\"}]',NULL,'JSONObject',1,NULL,NULL,'newIllegalArgumentResult','2020-01-30 15:30:03'),(1580398203680,82001,'apijson/demo/server','Controller',NULL,'newIllegalArgumentResult','[{\"type\":\"JSONObject\"},{\"type\":\"String\"}]',NULL,'JSONObject',1,NULL,NULL,'newIllegalArgumentResult','2020-01-30 15:30:03'),(1580398203690,82001,'apijson/demo/server','Controller',NULL,'putPassword','[{\"type\":\"String\"}]',NULL,'JSONObject',0,NULL,NULL,'putPassword','2020-01-30 15:30:03'),(1580398203898,82001,'apijson/demo/server','Controller',NULL,'putBalance','[{\"type\":\"String\"},{\"type\":\"javax/servlet/http/HttpSession\"}]',NULL,'JSONObject',0,NULL,NULL,'putBalance','2020-01-30 15:30:03'),(1580398203918,82001,'apijson/demo/server','Controller',NULL,'swaggerAPIDocs',NULL,NULL,'JSONObject',0,NULL,NULL,'swaggerAPIDocs','2020-01-30 15:30:03'),(1580398204134,82001,'apijson/demo/server','Controller',NULL,'listMethod','[{\"type\":\"String\"}]',NULL,'JSONObject',0,NULL,NULL,'listMethod','2020-01-30 15:30:03'),(1580398204135,82001,'apijson/demo/server','DemoObjectParser',NULL,'setParser','[{\"type\":\"zuo/biao/apijson/server/Parser\"}]',NULL,'zuo/biao/apijson/server/AbstractObjectParser',0,NULL,NULL,'setParser','2020-01-30 15:30:03'),(1580398204136,82001,'apijson/demo/server','DemoObjectParser',NULL,'setParser','[{\"type\":\"zuo/biao/apijson/server/Parser<?>\"}]',NULL,'apijson/demo/server/DemoObjectParser',0,NULL,NULL,'setParser','2020-01-30 15:30:03'),(1580398204145,82001,'apijson/demo/server','DemoParser',NULL,'createVerifier',NULL,NULL,'apijson/demo/server/DemoVerifier',0,NULL,NULL,'createVerifier','2020-01-30 15:30:03'),(1580398204354,82001,'apijson/demo/server','DemoParser',NULL,'createVerifier',NULL,NULL,'zuo/biao/apijson/server/Verifier',0,NULL,NULL,'createVerifier','2020-01-30 15:30:03'),(1580398204365,82001,'apijson/demo/server','DemoParser',NULL,'createSQLConfig',NULL,NULL,'apijson/demo/server/DemoSQLConfig',0,NULL,NULL,'createSQLConfig','2020-01-30 15:30:03'),(1580398204524,82001,'apijson/demo/server','DemoParser',NULL,'createSQLConfig',NULL,NULL,'zuo/biao/apijson/server/SQLConfig',0,NULL,NULL,'createSQLConfig','2020-01-30 15:30:04'),(1580398204570,82001,'apijson/demo/server','DemoParser',NULL,'createSQLExecutor',NULL,NULL,'zuo/biao/apijson/server/SQLExecutor',0,NULL,NULL,'createSQLExecutor','2020-01-30 15:30:04'),(1580398204653,82001,'apijson/demo/server','DemoParser',NULL,'createSQLExecutor',NULL,NULL,'apijson/demo/server/DemoSQLExecutor',0,NULL,NULL,'createSQLExecutor','2020-01-30 15:30:04'),(1580398204708,82001,'apijson/demo/server','',NULL,'getUserIdKey','[{\"type\":\"String\"},{\"type\":\"String\"},{\"type\":\"String\"}]',NULL,'String',0,NULL,NULL,'getUserIdKey','2020-01-30 15:30:04'),(1580398204818,82001,'apijson/demo/server','DemoSQLConfig',NULL,'getIdKey',NULL,NULL,'String',0,NULL,NULL,'getIdKey','2020-01-30 15:30:04'),(1580398204837,82001,'apijson/demo/server','',NULL,'getSQLConfig','[{\"type\":\"zuo/biao/apijson/RequestMethod\"},{\"type\":\"String\"},{\"type\":\"String\"},{\"type\":\"String\"}]',NULL,'zuo/biao/apijson/server/AbstractSQLConfig',0,NULL,NULL,'getSQLConfig','2020-01-30 15:30:04'),(1580398204942,82001,'apijson/demo/server','DemoSQLConfig',NULL,'getDBVersion',NULL,NULL,'String',0,NULL,NULL,'getDBVersion','2020-01-30 15:30:04'),(1580398204979,82001,'apijson/demo/server','DemoSQLConfig',NULL,'getUserIdKey',NULL,NULL,'String',0,NULL,NULL,'getUserIdKey','2020-01-30 15:30:04'),(1580398205004,82001,'apijson/demo/server','DemoSQLConfig',NULL,'getDBUri',NULL,NULL,'String',0,NULL,NULL,'getDBUri','2020-01-30 15:30:04'),(1580398205139,82001,'apijson/demo/server','DemoVerifier',NULL,'value','[{\"type\":\"Long\"}]',NULL,'long',1,NULL,NULL,'value','2020-01-30 15:30:04'),(1580398205174,82001,'apijson/demo/server','DemoSQLConfig',NULL,'getDBAccount',NULL,NULL,'String',0,NULL,NULL,'getDBAccount','2020-01-30 15:30:04'),(1580398205196,82001,'apijson/demo/server','DemoSQLConfig',NULL,'getDBPassword',NULL,NULL,'String',0,NULL,NULL,'getDBPassword','2020-01-30 15:30:04'),(1580398205217,82001,'apijson/demo/server','',NULL,'createSQLConfig',NULL,NULL,'zuo/biao/apijson/server/SQLConfig',0,NULL,NULL,'createSQLConfig','2020-01-30 15:30:04'),(1580398205332,82001,'apijson/demo/server','',NULL,'createSQLExecutor',NULL,NULL,'zuo/biao/apijson/server/SQLExecutor',0,NULL,NULL,'createSQLExecutor','2020-01-30 15:30:04'),(1586108443057,82001,'apijson/demo/server/model','BaseModel',NULL,'value',NULL,NULL,'JSON',0,'{\n \"static\": true,\n \"methodArgs\": [\n {\n \"type\": \"Boolean\",\n \"value\": false\n }\n ]\n}',NULL,'value','2020-04-05 17:40:44'),(1586108857346,82001,'apijson/demo/server/model','BaseModel',NULL,'value',NULL,NULL,'JSON',0,'{\n \"static\": true,\n \"methodArgs\": [\n {\n \"type\": \"Boolean\",\n \"value\": false\n }\n ]\n}',NULL,'value','2020-04-05 17:47:39'),(1586159628678,82001,'apijson/demo/server','MathUtil',NULL,'divide',NULL,NULL,'double',0,'{\n \"static\": true,\n \"methodArgs\": [\n {\n \"type\": \"long\",\n \"value\": 1\n },\n {\n \"type\": \"long\",\n \"value\": 2\n }\n ]\n}',NULL,'divide','2020-04-06 07:53:49'),(1586160409871,82001,'apijson/demo/server','MathUtil',NULL,'sqrt','[{\"type\":\"Number\"}]',NULL,'double',1,NULL,NULL,'sqrt','2020-04-06 08:06:51'),(1586160409875,82001,'apijson/demo/server','MathUtil',NULL,'sqrt','[{\"type\":\"double\"}]',NULL,'double',1,NULL,NULL,'sqrt','2020-04-06 08:06:51'),(1586160409878,82001,'apijson/demo/server','MathUtil',NULL,'sqrt','[{\"type\":\"long\"}]',NULL,'double',1,NULL,NULL,'sqrt','2020-04-06 08:06:51'),(1586160409881,82001,'apijson/demo/server','MathUtil',NULL,'pow','[{\"type\":\"long\"},{\"type\":\"long\"}]',NULL,'long',1,NULL,NULL,'pow','2020-04-06 08:06:51'),(1586160409905,82001,'apijson/demo/server','MathUtil',NULL,'pow','[{\"type\":\"double\"},{\"type\":\"double\"}]',NULL,'double',1,NULL,NULL,'pow','2020-04-06 08:06:51'),(1586160409914,82001,'apijson/demo/server','MathUtil',NULL,'pow','[{\"type\":\"Number\"},{\"type\":\"Number\"}]',NULL,'double',1,NULL,NULL,'pow','2020-04-06 08:06:51'),(1586160410255,82001,'apijson/demo/server','MathUtil',NULL,'divide','[{\"type\":\"Number\"},{\"type\":\"Number\"}]',NULL,'double',1,NULL,NULL,'divide','2020-04-06 08:06:52'),(1586160410319,82001,'apijson/demo/server','MathUtil',NULL,'multiply','[{\"type\":\"Number\"},{\"type\":\"Number\"}]',NULL,'double',1,NULL,NULL,'multiply','2020-04-06 08:06:52'),(1586160410343,82001,'apijson/demo/server','MathUtil',NULL,'divide','[{\"type\":\"long\"},{\"type\":\"long\"}]',NULL,'double',1,NULL,NULL,'divide','2020-04-06 08:06:52'),(1586160410358,82001,'apijson/demo/server','MathUtil',NULL,'multiply','[{\"type\":\"double\"},{\"type\":\"double\"}]',NULL,'double',1,NULL,NULL,'multiply','2020-04-06 08:06:52'),(1586160410808,82001,'apijson/demo/server','MathUtil',NULL,'plus','[{\"type\":\"double\"},{\"type\":\"double\"}]',NULL,'double',1,NULL,NULL,'plus','2020-04-06 08:06:52'),(1586160410822,82001,'apijson/demo/server','MathUtil',NULL,'plus','[{\"type\":\"long\"},{\"type\":\"long\"}]',NULL,'long',1,NULL,NULL,'plus','2020-04-06 08:06:52'),(1586160410853,82001,'apijson/demo/server','MathUtil',NULL,'plus','[{\"type\":\"Number\"},{\"type\":\"Number\"}]',NULL,'double',1,NULL,NULL,'plus','2020-04-06 08:06:52'),(1586160410926,82001,'apijson/demo/server','MathUtil',NULL,'minus','[{\"type\":\"long\"},{\"type\":\"long\"}]',NULL,'long',1,NULL,NULL,'minus','2020-04-06 08:06:52'),(1586160410941,82001,'apijson/demo/server','MathUtil',NULL,'minus','[{\"type\":\"double\"},{\"type\":\"double\"}]',NULL,'double',1,NULL,NULL,'minus','2020-04-06 08:06:52'),(1586160410942,82001,'apijson/demo/server','MathUtil',NULL,'minus','[{\"type\":\"Number\"},{\"type\":\"Number\"}]',NULL,'double',1,NULL,NULL,'minus','2020-04-06 08:06:52'),(1586198428686,82001,'apijson/demo/server','MathUtil',NULL,'divide',NULL,NULL,'double',0,'{\n \"static\": true,\n \"methodArgs\": [\n {\n \"type\": \"long\",\n \"value\": -1\n },\n {\n \"type\": \"long\",\n \"value\": 0\n }\n ]\n}',NULL,'divide','2020-04-06 18:40:28'),(1587388700246,82001,'apijson/demo/server','DemoFunction',NULL,'removeKey',NULL,NULL,'Object',0,'{\n \"methodArgs\": [\n { //JSONObject request\n \"value\": {\n \"obj\": {\n \"a\": 1,\n \"b\": \"2\"\n },\n \"key\": \"a\"\n }\n },\n { //String objKey\n \"value\": \"obj\"\n }\n ],\n \"classArgs\": [\n {}, //RequestMethod method\n {}, //String tag\n { //int version\n \"value\": 0\n },\n {} //HttpSession session\n ]\n}',NULL,'removeKey','2020-04-20 13:18:20');
/*!40000 ALTER TABLE `Method` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Moment`
--
DROP TABLE IF EXISTS `Moment`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Moment` (
`id` bigint(15) NOT NULL COMMENT '唯一标识',
`userId` bigint(15) NOT NULL COMMENT '用户id',
`date` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建日期',
`content` varchar(300) DEFAULT NULL COMMENT '内容',
`praiseUserIdList` json NOT NULL COMMENT '点赞的用户id列表',
`pictureList` json NOT NULL COMMENT '图片列表',
PRIMARY KEY (`id`),
KEY `userId` (`userId`,`date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='动态';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Moment`
--
LOCK TABLES `Moment` WRITE;
/*!40000 ALTER TABLE `Moment` DISABLE KEYS */;
INSERT INTO `Moment` VALUES (12,70793,'2017-02-08 08:06:11','APIJSON,let interfaces and documents go to hell !','[70793, 93793, 82044, 82040, 82055, 90814, 38710, 82002, 82006, 1508072105320, 82001]','[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\", \"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\", \"https://camo.githubusercontent.com/788c0a7e11a4f5aadef3c886f028c79b4808613a/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343932353935372d313732303737333630382e6a7067\", \"http://static.oschina.net/uploads/img/201604/22172507_Pz9Y.png\", \"https://camo.githubusercontent.com/c98b1c86af136745cc4626c6ece830f76de9ee83/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343930383036362d313837323233393236352e6a7067\", \"https://camo.githubusercontent.com/f513fa631bd780dc0ec3cf2663777e356dc3664f/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343733323232332d3337333933303233322e6a7067\", \"https://camo.githubusercontent.com/c98b1c86af136745cc4626c6ece830f76de9ee83/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343930383036362d313837323233393236352e6a7067\", \"https://camo.githubusercontent.com/f513fa631bd780dc0ec3cf2663777e356dc3664f/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343733323232332d3337333933303233322e6a7067\"]'),(15,70793,'2017-02-08 08:06:11','APIJSON is a JSON Transmission Structure Protocol…','[82002, 70793, 38710, 93793]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]'),(32,82002,'2017-02-08 08:06:11','tst','[38710, 82001, 82005]','[\"https://camo.githubusercontent.com/f513fa631bd780dc0ec3cf2663777e356dc3664f/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343733323232332d3337333933303233322e6a7067\", \"https://camo.githubusercontent.com/5f5c4e0c4dc539c34e8eae8ac0cbc6dccdfee5d3/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343533333831362d323032373434343231382e6a7067\", \"http://static.oschina.net/uploads/img/201604/22172508_mpwj.jpg\"]'),(58,90814,'2017-02-01 11:14:31','This is a Content...-435','[38710, 82003, 82005, 93793, 82006, 82044, 82001]','[\"http://static.oschina.net/uploads/img/201604/22172507_aMmH.jpg\"]'),(170,70793,'2017-02-01 11:14:31','This is a Content...-73','[82044, 82002, 82001]','[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\", \"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\", \"http://static.oschina.net/uploads/img/201604/22172508_mpwj.jpg\"]'),(235,38710,'2017-02-08 08:06:11','APIJSON,let interfaces and documents go to hell !','[82001]','[\"http://static.oschina.net/uploads/img/201604/22172508_mpwj.jpg\", \"http://static.oschina.net/uploads/user/1332/2664107_50.jpg?t=1457405500000\"]'),(301,93793,'2017-02-01 11:14:31','This is a Content...-301','[38710, 93793, 82003, 82005, 82040, 82055, 82002, 82001]','[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\"]'),(371,82002,'2017-02-01 11:14:31','This is a Content...-371','[90814, 93793, 82003, 82005, 82006, 82040, 82002]','[\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\", \"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\", \"https://camo.githubusercontent.com/c98b1c86af136745cc4626c6ece830f76de9ee83/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343930383036362d313837323233393236352e6a7067\", \"http://static.oschina.net/uploads/img/201604/22172507_aMmH.jpg\", \"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\"]'),(470,38710,'2017-02-01 11:14:31','This is a Content...-470','[]','[\"http://static.oschina.net/uploads/img/201604/22172507_Pz9Y.png\"]'),(511,38710,'2017-02-08 08:06:11',NULL,'[70793, 93793, 82001]','[\"https://camo.githubusercontent.com/f513fa631bd780dc0ec3cf2663777e356dc3664f/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343733323232332d3337333933303233322e6a7067\", \"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\", \"https://camo.githubusercontent.com/c98b1c86af136745cc4626c6ece830f76de9ee83/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343930383036362d313837323233393236352e6a7067\", \"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\", \"http://static.oschina.net/uploads/img/201604/22172507_aMmH.jpg\", \"https://camo.githubusercontent.com/c98b1c86af136745cc4626c6ece830f76de9ee83/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343930383036362d313837323233393236352e6a7067\"]'),(543,93793,'2017-02-08 08:06:11',NULL,'[82001]','[\"https://camo.githubusercontent.com/5f5c4e0c4dc539c34e8eae8ac0cbc6dccdfee5d3/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343533333831362d323032373434343231382e6a7067\", \"https://camo.githubusercontent.com/c98b1c86af136745cc4626c6ece830f76de9ee83/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343930383036362d313837323233393236352e6a7067\", \"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\", \"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\", \"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\"]'),(551,70793,'2017-02-08 08:06:11','test','[82001]','[\"http://static.oschina.net/uploads/img/201604/22172507_Pz9Y.png\"]'),(595,38710,'2017-03-05 05:29:19',NULL,'[70793, 82002, 82001]','[\"http://common.cnblogs.com/images/icon_weibo_24.png\", \"http://static.oschina.net/uploads/user/19/39085_50.jpg\"]'),(704,38710,'2017-03-12 09:39:44','APIJSON is a JSON Transmission Structure Protocol…','[82003, 82002, 82001]','[\"http://static.oschina.net/uploads/user/629/1258821_50.jpg?t=1378063141000\", \"http://static.oschina.net/uploads/user/1332/2664107_50.jpg?t=1457405500000\"]'),(1491200468898,38710,'2017-04-03 06:21:08','APIJSON, let interfaces go to hell!','[82001]','[\"http://static.oschina.net/uploads/user/998/1997902_50.jpg?t=1407806577000\", \"http://static.oschina.net/uploads/user/1200/2400261_50.png?t=1439638750000\"]'),(1493835799335,38710,'2017-05-03 18:23:19','APIJSON is a JSON Transmission Structure Protocol…','[82002, 82001]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]'),(1508053762227,82003,'2017-10-15 07:49:22','我也试试','[1515565976140, 82001]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]'),(1508072491570,82002,'2017-10-15 13:01:31','有点冷~','[82001, 82002]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]'),(1508072633830,93793,'2017-10-15 13:03:53','天凉了\n有男朋友的抱男盆友\n有女朋友的抱女朋友\n而我就比较牛逼了\n我不冷。','[82005, 82002, 70793, 38710, 82045, 82001]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]'),(1508073178489,82045,'2017-10-15 13:12:58','发动态','[82001]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]'),(1512314438990,38710,'2017-12-03 15:20:38','APIJSON iOS-Swift版发布,自动生成请求代码,欢迎使用^_^ \n https://github.com/TommyLemon/APIJSON','[82002, 70793, 1512531601485, 82001]','[\"https://images2018.cnblogs.com/blog/660067/201712/660067-20171203231829476-1202860128.jpg\"]'),(1513094436910,38710,'2017-12-12 16:00:36','APIJSON-Python已发布,欢迎体验^_^\nhttps://github.com/TommyLemon/APIJSON','[82005, 82001]','[\"https://raw.githubusercontent.com/TommyLemon/APIJSON/master/picture/APIJSON_Auto_get.jpg\", \"https://raw.githubusercontent.com/TommyLemon/APIJSON/master/picture/APIJSON_Auto_code.jpg\", \"https://raw.githubusercontent.com/TommyLemon/APIJSON/master/picture/APIJSON_Auto_doc.jpg\"]'),(1514017444961,82002,'2017-12-23 08:24:04','123479589679','[82002, 1520242280259, 82001, 70793, 1524042900591, 1528264711016]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]'),(1514858533480,82056,'2018-01-02 02:02:13','I am the Iron Man','[82001]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]'),(1516086423441,93793,'2018-01-16 07:07:03','抢到票了,开心ପ( ˘ᵕ˘ ) ੭ ☆','[93793, 38710, 82001]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]'),(1520242333325,1520242280259,'2018-03-05 09:32:13','法拉利','[1520242280259, 70793, 82001]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]'),(1523935589834,1523626157302,'2018-04-17 03:26:29','by第一条动态','[]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]'),(1523936332614,1523626157302,'2018-04-17 03:38:52','by第二条','[82001, 1523935772553]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]'),(1524178455305,1524042900591,'2018-04-19 22:54:15','早上好啊','[1524042900591, 38710, 82003, 82001, 1523626157302]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]'),(1524298780222,1524298730523,'2018-04-21 08:19:40','e说点什么吧~','[82001]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]'),(1524826652626,1524298730523,'2018-04-27 10:57:32','说点什么吧~哈哈哈','[82001]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]'),(1527498273102,1527498229991,'2018-05-28 09:04:33','说点什么吧~yui','[82001]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]'),(1527821296110,1527495857924,'2018-06-01 02:48:16','这是我的商品1号','[1527821445610, 82003, 82001]','[\"http://pic31.nipic.com/20130710/13151003_093759013311_2.jpg\", \"https://cbu01.alicdn.com/img/ibank/2013/514/580/740085415_2101098104.310x310.jpg\"]'),(1527830331780,1527495857924,'2018-06-01 05:18:51','各种购物袋','[38710, 82002, 1527495857924, 82003]','[\"https://cbu01.alicdn.com/img/ibank/2018/292/335/8058533292_57202994.310x310.jpg\", \"https://cbu01.alicdn.com/img/ibank/2018/089/747/8586747980_1843977904.310x310.jpg\", \"https://cbu01.alicdn.com/img/ibank/2016/025/123/3012321520_471514049.310x310.jpg\", \"https://cbu01.alicdn.com/img/ibank/2017/729/995/4800599927_69233977.310x310.jpg\", \"https://cbu01.alicdn.com/img/ibank/2016/377/263/3755362773_609022431.310x310.jpg\"]'),(1527830474378,1527495857924,'2018-06-01 05:21:14','电视机','[1527495857924]','[\"https://cbu01.alicdn.com/img/ibank/2017/231/077/4524770132_781046171.310x310.jpg\"]'),(1528251335464,1528250827953,'2018-06-06 02:15:35','meiyou','[1528250827953]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]'),(1528260617722,1528255497767,'2018-06-06 04:50:17','。。。。','[]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]'),(1528269822710,1528264711016,'2018-06-06 07:23:42','hhhhhhh','[1528250827953, 82001]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]'),(1528269988360,1528250827953,'2018-06-06 07:26:28','为什么发动态默认会有这两张图片啊?不可以选择自己的图片','[1528250827953]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]'),(1528274037224,1528250827953,'2018-06-06 08:33:57','说点什么吧~hgdsryh','[]','[\"https://image.baidu.com/search/detail?ct=503316480&z=0&ipn=d&word=%E4%BA%91%E5%8D%97%E9%A3%8E%E6%99%AF%E5%9B%BE%E7%89%87&step_word=&hs=0&pn=0&spn=0&di=163958046450&pi=0&rn=1&tn=baiduimagedetail&is=0%2C0&istype=2&ie=utf-8&oe=utf-8&in=&cl=2&lm=-1&st=-1&cs=1403824732%2C1921310327&os=1571651475%2C3950546936&simid=3426978648%2C550887139&adpicid=0&lpn=0&ln=1985&fr=&fmq=1528273681226_R&fm=result&ic=0&s=undefined&se=&sme=&tab=0&width=&height=&face=undefined&ist=&jit=&cg=&bdtype=0&oriquery=&objurl=http%3A%2F%2Fpic1.win4000.com%2Fwallpaper%2F3%2F57a2a41f57d09.jpg&fromurl=ippr_z2C%24qAzdH3FAzdH3Fooo_z%26e3Botg9aaa_z%26e3Bv54AzdH3Fowssrwrj6_kt2_88an88_8_z%26e3Bip4s&gsm=0&rpstart=0&rpnum=0&islist=&querylist=\", \"https://image.baidu.com/search/detail?ct=503316480&z=0&ipn=d&word=%E4%BA%91%E5%8D%97%E9%A3%8E%E6%99%AF%E5%9B%BE%E7%89%87&step_word=&hs=0&pn=12&spn=0&di=105575240210&pi=0&rn=1&tn=baiduimagedetail&is=0%2C0&istype=2&ie=utf-8&oe=utf-8&in=&cl=2&lm=-1&st=-1&cs=832573604%2C2847830718&os=1862795828%2C1682403963&simid=4268934412%2C608274877&adpicid=0&lpn=0&ln=1985&fr=&fmq=1528273681226_R&fm=result&ic=0&s=undefined&se=&sme=&tab=0&width=&height=&face=undefined&ist=&jit=&cg=&bdtype=0&oriquery=&objurl=http%3A%2F%2Fi0.szhomeimg.com%2FUploadFiles%2FBBS%2F2006%2F08%2F05%2F24752199_79122.91.jpg&fromurl=ippr_z2C%24qAzdH3FAzdH3Fkkf_z%26e3Bfzi54j_z%26e3Bv54AzdH3Fna-ccbaa-1jpwts-d90cd8ll-a-8_z%26e3Bip4s&gsm=0&rpstart=0&rpnum=0&islist=&querylist=\"]'),(1528356378455,1528264711016,'2018-06-07 07:26:18','去旅游嘛~','[82001]','[]'),(1528356421201,1528264711016,'2018-06-07 07:27:01','(ง •̀_•́)ง','[]','[]'),(1528356496939,1528356470041,'2018-06-07 07:28:16','(๑•ั็ω•็ั๑)','[]','[]'),(1528462217322,1528339692804,'2018-06-08 12:50:17','有没有小姐姐准备端午出游的?\n地点:北戴河','[]','[\"https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1531072366455&di=c0d4b15b2c4b70aad49e6ae747f60742&imgtype=0&src=http%3A%2F%2Fpic1.win4000.com%2Fwallpaper%2F3%2F57a2a41f57d09.jpg\", \"https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1531072499167&di=5b5621d117edbc5d344a03ba0a6b580b&imgtype=0&src=http%3A%2F%2Fi0.szhomeimg.com%2FUploadFiles%2FBBS%2F2006%2F08%2F05%2F24752199_79122.91.jpg\"]'),(1528676875139,1528339692804,'2018-06-11 00:27:55','123456','[82001]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]'),(1531062713966,82002,'2018-07-08 15:11:53','云南好美啊( ◞˟૩˟)◞','[82001, 82005, 38710, 70793, 93793, 82003, 1531969715979]','[\"https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1531072366455&di=c0d4b15b2c4b70aad49e6ae747f60742&imgtype=0&src=http%3A%2F%2Fpic1.win4000.com%2Fwallpaper%2F3%2F57a2a41f57d09.jpg\", \"https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1531072499167&di=5b5621d117edbc5d344a03ba0a6b580b&imgtype=0&src=http%3A%2F%2Fi0.szhomeimg.com%2FUploadFiles%2FBBS%2F2006%2F08%2F05%2F24752199_79122.91.jpg\"]'),(1531969818357,1531969715979,'2018-07-19 03:10:18','http://q18idc.com','[1531969715979, 82001, 38710, 1534926301956]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]'),(1533908589726,1533835176109,'2018-08-10 13:43:09','我的','[82001]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]'),(1535781636403,1532188114543,'2018-09-01 06:00:36','这是一个测试','[82001]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]'),(1536064087117,1532188114543,'2018-09-04 12:28:07','说点什么吧~奥哈达','[]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]'),(1536805585275,82003,'2018-09-13 02:26:25','iPhone Xs发布了,大家怎么看?','[82002, 82005, 70793, 82003, 82001]','[\"https://pic1.zhimg.com/80/v2-e129b40810070443add1c28e6185c894_hd.jpg\"]'),(1539868023868,82001,'2018-10-18 13:07:03','说点什么吧~3','[]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]'),(1541557989440,38710,'2018-11-07 02:33:09','自动化接口和文档 APIJSON 3.0.0 发布\nhttps://www.oschina.net/news/101548/apijson-3-0-released','[82001]','[\"https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Auto_get.jpg\"]'),(1541667945772,82001,'2018-11-08 09:05:45','说点什么吧~都有','[82001]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]'),(1544276216289,1544276209348,'2018-12-08 13:36:56','说点什么吧~ey','[1544276209348]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]'),(1545187924367,1544503822963,'2018-12-19 02:52:04','说哼哼唧唧点什么吧~','[1544503822963, 82001]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]'),(1548145750536,82003,'2019-01-22 08:29:10','APIJSON,let interfaces and documents go to hell !','[82001]','[]'),(1551184480247,82001,'2019-02-26 12:34:40','测试新增动态','[82001]','[\"http://static.oschina.net/uploads/user/48/96331_50.jpg\"]'),(1552879777083,82001,'2019-03-18 03:29:37','测试新增动态','[82001]','[\"http://static.oschina.net/uploads/user/48/96331_50.jpg\"]'),(1553096819293,1553095415917,'2019-03-20 15:46:59','说点什么吧~睡觉觉很喜欢','[82001]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]'),(1554263554668,82001,'2019-04-03 03:52:34','测试新增动态','[82001]','[\"http://static.oschina.net/uploads/user/48/96331_50.jpg\"]'),(1554548884409,82001,'2019-04-06 11:08:04','说点什么吧~ yyuyy','[82001]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]'),(1554564640071,82001,'2019-04-06 15:30:40','测试新增动态','[]','[\"http://static.oschina.net/uploads/user/48/96331_50.jpg\"]'),(1554980613514,82001,'2019-04-11 11:03:33','说点什么吧~vjbunu','[82001]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]'),(1555080161904,82001,'2019-04-12 14:42:41','APIJSON, let interfaces go to hell!','[82001]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]'),(1555140354825,82001,'2019-04-13 07:25:54','测试新增动态','[82001]','[\"http://static.oschina.net/uploads/user/48/96331_50.jpg\"]'),(1555146144094,82001,'2019-04-13 09:02:24','APIJSON,let interfaces and documents go to hell !','[82001]','[]'),(1556387217941,82002,'2019-04-27 17:46:57','说点什么吧~啦啦啦','[82001]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]'),(1557415707105,82003,'2019-05-09 15:28:27','APIJSON,let interfaces and documents go to hell !','[82001]','[]'),(1557754680146,82012,'2019-05-13 13:38:00','马云:工作上要有996的精神,生活上要669,也就是6天6次关键要“久”。大家怎么看?','[]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]'),(1558798664043,82003,'2019-05-25 15:37:44','测试新增动态','[82001]','[\"http://static.oschina.net/uploads/user/48/96331_50.jpg\"]'),(1559129731896,1559129626356,'2019-05-29 11:35:31','xfshter','[]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]'),(1561949917622,82002,'2019-07-01 02:58:37','测试新增动态','[82001]','[\"http://static.oschina.net/uploads/user/48/96331_50.jpg\"]'),(1563605336326,1563605318975,'2019-07-20 06:48:56','说点什么吧~死','[82001]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]'),(1568086574157,70793,'2019-09-10 03:36:14','今天天气不错,到处都是提拉米苏雪','[]','[]'),(1568087960391,70793,'2019-09-10 03:59:20','今天天气不错,到处都是提拉米苏雪','[82001]','[]'),(1568087960412,70793,'2019-09-10 03:59:20','今天天气不错,到处都是提拉米苏雪','[]','[]'),(1572177746393,82002,'2019-10-27 12:02:26','APIJSON,let interfaces and documents go to hell !','[82001]','[]'),(1576656048938,82001,'2019-12-18 08:00:48','APIJSON, let interfaces go to hell!','[82001]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]'),(1577614101414,82001,'2019-12-29 10:08:21','APIJSON,let interfaces and documents go to hell !','[82001]','[]'),(1577855941093,38710,'2020-01-01 05:19:01','大家新年快乐鸭~','[82001]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]'),(1578749963572,82001,'2020-01-11 13:39:23','今天风和日丽','[82002, 82001]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]'),(1581318494527,82002,'2020-02-10 07:08:14','测试新增动态','[82001]','[\"http://static.oschina.net/uploads/user/48/96331_50.jpg\"]'),(1581475064861,82001,'2020-02-12 02:37:44','说点什么吧哦','[82001]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]'),(1581475094366,82001,'2020-02-12 02:38:14','','[82001]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]'),(1581840085564,82001,'2020-02-16 08:01:25','测试新增动态','[82001]','[\"http://static.oschina.net/uploads/user/48/96331_50.jpg\"]'),(1582186740910,82001,'2020-02-20 08:19:00','点击记得记得','[82001]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]'),(1582519463650,82001,'2020-02-24 04:44:23','说点什么吧~jdjsn','[]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]'),(1582956883276,82001,'2020-02-29 06:14:43','说点什么吧来了','[82001]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]'),(1583574596245,82003,'2020-03-07 09:49:56','测试新增动态','[82001]','[\"http://static.oschina.net/uploads/user/48/96331_50.jpg\"]'),(1585196271956,82002,'2020-03-26 04:17:51','测试新增动态','[]','[\"http://static.oschina.net/uploads/user/48/96331_50.jpg\"]'),(1590144452492,82001,'2020-05-22 10:47:32','测试新增动态','[82001]','[\"http://static.oschina.net/uploads/user/48/96331_50.jpg\"]'),(1590145433460,82001,'2020-05-22 11:03:53','说点什么吧~黄可口可乐了了','[82001]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]'),(1590577441741,82001,'2020-05-27 11:04:01','说点什么吧~ hshhsh','[]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]');
/*!40000 ALTER TABLE `Moment` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Praise`
--
DROP TABLE IF EXISTS `Praise`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Praise` (
`id` bigint(15) NOT NULL AUTO_INCREMENT COMMENT '动态id',
`momentId` bigint(15) NOT NULL COMMENT '唯一标识',
`userId` bigint(15) NOT NULL COMMENT '用户id',
`date` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '点赞时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8 COMMENT='如果对Moment写安全要求高,可以将Moment内praiserUserIdList分离到Praise表中,作为userIdList。\n权限注解也改下:\n@MethodAccess(\n PUT = {OWNER, ADMIN}\n )\nclass Moment {\n …\n}\n\n@MethodAccess(\n PUT = {LOGIN, CONTACT, CIRCLE, OWNER, ADMIN}\n )\n class Praise {\n …\n }\n';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Praise`
--
LOCK TABLES `Praise` WRITE;
/*!40000 ALTER TABLE `Praise` DISABLE KEYS */;
INSERT INTO `Praise` VALUES (1,12,82001,'2017-11-19 13:02:30'),(2,15,82002,'2017-11-19 13:02:30'),(3,32,82003,'2017-11-19 13:02:30'),(4,58,82004,'2017-11-19 13:02:30'),(5,170,82005,'2017-11-19 13:02:30'),(6,235,82006,'2017-11-19 13:02:30'),(7,301,82007,'2017-11-19 13:02:30'),(8,371,82008,'2017-11-19 13:02:30'),(9,470,82009,'2017-11-19 13:02:30'),(10,511,82010,'2017-11-19 13:02:30'),(11,543,82011,'2017-11-19 13:02:30'),(12,551,82012,'2017-11-19 13:02:30'),(13,594,82013,'2017-11-19 13:02:30'),(14,595,82014,'2017-11-19 13:02:30'),(15,704,82015,'2017-11-19 13:02:30'),(16,1491200468898,82016,'2017-11-19 13:02:30'),(17,1491277116776,82017,'2017-11-19 13:02:30'),(18,1493835799335,82018,'2017-11-19 13:02:30');
/*!40000 ALTER TABLE `Praise` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Random`
--
DROP TABLE IF EXISTS `Random`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Random` (
`id` bigint(15) NOT NULL COMMENT '唯一标识',
`toId` bigint(15) NOT NULL DEFAULT '0' COMMENT '父项 id',
`userId` bigint(15) NOT NULL,
`documentId` bigint(15) NOT NULL COMMENT '测试用例 Document 的 id',
`count` int(3) NOT NULL DEFAULT '1' COMMENT '请求次数,默认 1',
`name` varchar(100) NOT NULL COMMENT '名称',
`config` varchar(5000) NOT NULL COMMENT '配置',
`date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='随机测试';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Random`
--
LOCK TABLES `Random` WRITE;
/*!40000 ALTER TABLE `Random` DISABLE KEYS */;
INSERT INTO `Random` VALUES (1575129210368,0,82001,1560244940013,2,'配置2','User/id : RANDOM_IN(82001,82002,82003,70793,93793) //从这几个值随机取数\nUser/sex : RANDOM_INT(0,2) //从 0-2 随机取整数\n[]/count : RANDOM_IN(3,5,10,20,\'1\',\'s\',false,[],{}) //从这几个值随机取数\n[]/page : Math.round(10*Math.random()) //通过代码来自定义\n// []/Comment/toId : RANDOM_REAL //从数据库随机取值,替换 User/id 键值对','2020-01-14 18:19:47'),(1575129533653,0,82001,1560244940013,5,'count 和 page','[]/count : RANDOM_IN(3,5,10,20,\'1\',\'s\',false,[],{}) //从这几个值随机取数 []/page : Math.round(10*Math.random()) //通过代码来自定义 // []/Comment/toId : RANDOM_REAL //从数据库随机取值,替换 User/id 键值对','2020-01-14 18:19:47'),(1575134003381,0,82001,1560075285563,1,'[]/Comment/toId : RANDOM_IN(0,4,7,13,21)','[]/Comment/toId : RANDOM_IN(0,4,7,13,21) //从数据库随机取值,替换 User/id 键值对','2020-01-14 18:19:47'),(1575141548694,0,82001,1560244940013,1,'count & page','[]/count : RANDOM_IN(3,5,10,20) //从这几个值随机取数\n[]/page : Math.round(10*Math.random()) //通过代码来自定义','2020-01-14 18:19:47'),(1575141679778,0,82001,1560244940013,1,'随机配置 2019-12-01 03:21','[]/count : RANDOM_IN(3,5,10) //从这几个值随机取数\n[]/page : Math.round(3*Math.random()) //通过代码来自定义','2020-01-14 18:19:47'),(1579025903314,0,82001,6,5,'methodArgs/0/value/key 随机已有值 : true','methodArgs/0/value/key : RANDOM_IN(\'a\', \'b\')','2020-01-14 10:19:47'),(1579025903315,0,82001,6,7,'methodArgs/0/value/key 随机无效值 : false','methodArgs/0/value/key : RANDOM_IN(\'c\', \'X\', \'ab\', null, 1, false)','2020-01-14 10:19:48'),(1579025903316,0,82001,6,2,'methodArgs/2/value 顺序非法值 : throw','methodArgs/2/value : RANDOM_IN(0, -1, 2.3, false, true, {}, [])','2020-01-14 10:19:48'),(1586160312990,0,82001,1586159628678,6,'顺序 type,顺序 value : 正常 return','methodArgs/0/type : ORDER_IN(\'long\', \'double\', \'Number\') //顺序取值\nmethodArgs/0/value : ORDER_IN(1, 0.1, -10) //顺序取值\n\nmethodArgs/1/type : ORDER_IN(\'long\', \'double\', \'Number\') //顺序取值\nmethodArgs/1/value : ORDER_IN(2, 3.14, 5) //顺序取值','2020-04-06 00:05:14'),(1586161210976,0,82001,6,1,'methodArgs/0/value/key 随机无效值 : false - Temp 0','methodArgs/0/value/key : null','2020-04-06 00:20:13'),(1586161247084,0,82001,6,1,'methodArgs/0/value/key 随机无效值 : false - Temp 1','methodArgs/0/value/key : 1','2020-04-06 00:20:49'),(1586161247306,0,82001,6,1,'methodArgs/0/value/key 随机无效值 : false - Temp 1','methodArgs/0/value/key : 1','2020-04-06 00:20:49'),(1586165928721,0,82001,1586159628678,30,'顺序 type,随机 value : 正常或报错','methodArgs/0/type : ORDER_IN(\'long\', \'double\', \'Number\', \'int\', \'Float\', null) //随机取值\nmethodArgs/0/value : RANDOM_IN(1, 0.1, -10, 9.99, null) //随机取值\n\nmethodArgs/1/type : ORDER_IN(\'long\', \'double\', \'Number\', \'int\', \'Float\', null) //随机取值\nmethodArgs/1/value : RANDOM_IN(2, 3.14, 5, -0.1, null) //随机取值','2020-04-06 01:38:56'),(1586166010170,0,82001,1586159628678,20,'随机 type,随机 value : 正常或报错','methodArgs/0/type : RANDOM_IN(\'long\', \'double\') //随机取值\nmethodArgs/0/value : RANDOM_IN(1, 0.1, -10, 9.99, null) //随机取值\n\nmethodArgs/1/type : RANDOM_IN(\'long\', \'double\') //随机取值\nmethodArgs/1/value : RANDOM_IN(2, 3.14, 5, -0.1, null) //随机取值','2020-04-06 01:40:17'),(1586166079775,0,82001,1586159628678,30,'顺序 type,顺序 value : 正常或报错','methodArgs/0/type : ORDER_IN(\'long\', \'double\', \'Number\', \'int\', \'Float\') //顺序取值\nmethodArgs/0/value : ORDER_IN(1, 0.1, -10, 9.99, null) //顺序取值\n\nmethodArgs/1/type : ORDER_IN(\'long\', \'double\', \'Number\', \'int\', \'Float\') //顺序取值\nmethodArgs/1/value : ORDER_IN(2, 3.14, 5, -0.1, null) //顺序取值','2020-04-06 01:41:27'),(1586166554562,0,82001,1586159628678,1,'double 0.1, double 3.14','methodArgs/0/type : \"double\" \nmethodArgs/0/value : 0.1 \nmethodArgs/1/type : \"double\" \nmethodArgs/1/value : 3.14','2020-04-06 01:49:22'),(1586166561747,0,82001,1586159628678,1,'long 1, long 2','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 1 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 2','2020-04-06 01:49:30'),(1586166563381,0,82001,1586159628678,1,'double 0.1, double 3.14','methodArgs/0/type : \"double\" \nmethodArgs/0/value : 0.1 \nmethodArgs/1/type : \"double\" \nmethodArgs/1/value : 3.14','2020-04-06 01:49:31'),(1586166564661,0,82001,1586159628678,1,'Number -10, Number 5','methodArgs/0/type : \"Number\" \nmethodArgs/0/value : -10 \nmethodArgs/1/type : \"Number\" \nmethodArgs/1/value : 5','2020-04-06 01:49:33'),(1586167627326,0,82001,1586159628678,0,'long ORDER_IN, long RANDOM_INT (20) : 正常 return','methodArgs/0/type : \'long\'\nmethodArgs/0/value : ORDER_IN(0, 1, -1, 2, -2, 5, -5, 10, 99, 100, 101, -128) //顺序取值\n\nmethodArgs/1/type : \'long\'\nmethodArgs/1/value : RANDOM_INT(-10000, 100000000) //随机整数','2020-04-06 02:07:16'),(1586167725143,0,82001,1586159628678,1,'long 100, long 23647003','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 100 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 23647003','2020-04-06 02:08:54'),(1586167727522,0,82001,1586159628678,1,'long 101, long 21275596','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 101 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 21275596','2020-04-06 02:08:57'),(1586167729635,0,82001,1586159628678,1,'long -128, long 56191505','methodArgs/0/type : \"long\" \nmethodArgs/0/value : -128 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 56191505','2020-04-06 02:08:59'),(1586167731202,0,82001,1586159628678,1,'long 0, long 48527682','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 0 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 48527682','2020-04-06 02:09:00'),(1586167735912,0,82001,1586159628678,1,'long 1, long 89922375','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 1 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 89922375','2020-04-06 02:09:05'),(1586167740094,0,82001,1586159628678,1,'long -1, long 39242809','methodArgs/0/type : \"long\" \nmethodArgs/0/value : -1 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 39242809','2020-04-06 02:09:09'),(1586169941994,1579025903315,82001,6,1,'methodArgs/0/value/key 随机无效值 : false - Temp','methodArgs/0/value/key : 1','2020-04-06 02:45:54'),(1586171727997,1579025903315,82001,6,1,'methodArgs/0/value/key 随机无效值 : false - Temp 0','methodArgs/0/value/key : 1','2020-04-06 03:15:41'),(1586171860292,1579025903315,82001,6,1,'methodArgs/0/value/key : null','methodArgs/0/value/key : null','2020-04-06 03:17:54'),(1586171873734,1579025903315,82001,6,1,'methodArgs/0/value/key 随机无效值 : false - Temp 1','methodArgs/0/value/key : \"c\"','2020-04-06 03:18:07'),(1586171875763,1579025903315,82001,6,1,'methodArgs/0/value/key 随机无效值 : false - Temp 3','methodArgs/0/value/key : 1','2020-04-06 03:18:09'),(1586171926247,1579025903316,82001,6,1,'methodArgs/2/value 顺序非法值 : throw - Temp 6','methodArgs/2/value : {}','2020-04-06 03:19:00'),(1586171933213,1579025903314,82001,6,1,'methodArgs/0/value/key 随机已有值 : true - Temp 0','methodArgs/0/value/key : \"b\"','2020-04-06 03:19:07'),(1586171934803,1579025903314,82001,6,1,'methodArgs/0/value/key 随机已有值 : true - Temp 1','methodArgs/0/value/key : \"a\"','2020-04-06 03:19:08'),(1586172371236,1579025903316,82001,6,1,'methodArgs/2/value 顺序非法值 : throw - Temp 0','methodArgs/2/value : 2.3','2020-04-06 03:26:25'),(1586172381706,1579025903316,82001,6,1,'methodArgs/2/value 顺序非法值 : throw - Temp 6','methodArgs/2/value : -1','2020-04-06 03:26:36'),(1586172983136,1579025903315,82001,6,1,'methodArgs/0/value/key 随机无效值 : false - Temp 5','methodArgs/0/value/key : null','2020-04-06 03:36:38'),(1586173005184,1579025903314,82001,6,1,'methodArgs/0/value/key 随机已有值 : true - Temp 3','methodArgs/0/value/key : \"b\"','2020-04-06 03:37:00'),(1586173045809,1579025903314,82001,6,1,'methodArgs/0/value/key 随机已有值 : true - Temp 2','methodArgs/0/value/key : \"b\"','2020-04-06 03:37:40'),(1586173072436,1579025903315,82001,6,1,'methodArgs/0/value/key 随机无效值 : false - Temp 6','methodArgs/0/value/key : \"c\"','2020-04-06 03:38:07'),(1586175845253,1579025903314,82001,6,1,'methodArgs/0/value/key 随机已有值 : true - Temp 4','methodArgs/0/value/key : \"a\"','2020-04-06 04:24:03'),(1586189268266,1586166010170,82001,1586159628678,1,'double 0.1, double 3.14','methodArgs/0/type : \"double\" \nmethodArgs/0/value : 0.1 \nmethodArgs/1/type : \"double\" \nmethodArgs/1/value : 3.14','2020-04-06 08:08:01'),(1586193949946,1586165928721,82001,1586159628678,1,'long, 0.1, long, 5','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 0.1 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 5','2020-04-06 09:26:08'),(1586193987577,1586165928721,82001,1586159628678,1,'Number, 9.99, Number, -0.1','methodArgs/0/type : \"Number\" \nmethodArgs/0/value : 9.99 \nmethodArgs/1/type : \"Number\" \nmethodArgs/1/value : -0.1','2020-04-06 09:26:45'),(1586194045072,1586165928721,82001,1586159628678,1,'double, 9.99, double, 2','methodArgs/0/type : \"double\" \nmethodArgs/0/value : 9.99 \nmethodArgs/1/type : \"double\" \nmethodArgs/1/value : 2','2020-04-06 09:27:43'),(1586194047823,1586165928721,82001,1586159628678,1,'Number, 1, Number, -0.1','methodArgs/0/type : \"Number\" \nmethodArgs/0/value : 1 \nmethodArgs/1/type : \"Number\" \nmethodArgs/1/value : -0.1','2020-04-06 09:27:46'),(1586194050068,1586165928721,82001,1586159628678,1,'double, -10, double, 5','methodArgs/0/type : \"double\" \nmethodArgs/0/value : -10 \nmethodArgs/1/type : \"double\" \nmethodArgs/1/value : 5','2020-04-06 09:27:48'),(1586194052335,1586165928721,82001,1586159628678,1,'Number, 9.99, Number, 2','methodArgs/0/type : \"Number\" \nmethodArgs/0/value : 9.99 \nmethodArgs/1/type : \"Number\" \nmethodArgs/1/value : 2','2020-04-06 09:27:50'),(1586194056043,1586165928721,82001,1586159628678,1,'double, -10, double, -0.1','methodArgs/0/type : \"double\" \nmethodArgs/0/value : -10 \nmethodArgs/1/type : \"double\" \nmethodArgs/1/value : -0.1','2020-04-06 09:27:54'),(1586194292235,1586166079775,82001,1586159628678,1,'double, 0.1, double, 3.14','methodArgs/0/type : \"double\" \nmethodArgs/0/value : 0.1 \nmethodArgs/1/type : \"double\" \nmethodArgs/1/value : 3.14','2020-04-06 09:31:50'),(1586194297208,1586166079775,82001,1586159628678,1,'long, 1, long, 2','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 1 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 2','2020-04-06 09:31:55'),(1586194323228,1586165928721,82001,1586159628678,1,'long, 9.99, long, 2','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 9.99 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 2','2020-04-06 09:32:21'),(1586194354978,1586165928721,82001,1586159628678,1,'Number, 1, Number, 3.14','methodArgs/0/type : \"Number\" \nmethodArgs/0/value : 1 \nmethodArgs/1/type : \"Number\" \nmethodArgs/1/value : 3.14','2020-04-06 09:32:53'),(1586194370747,1586165928721,82001,1586159628678,1,'Number, -10, Number, 5','methodArgs/0/type : \"Number\" \nmethodArgs/0/value : -10 \nmethodArgs/1/type : \"Number\" \nmethodArgs/1/value : 5','2020-04-06 09:33:09'),(1586194470991,1586165928721,82001,1586159628678,1,'long, 9.99, long, 3.14','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 9.99 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 3.14','2020-04-06 09:34:49'),(1586194474729,1586165928721,82001,1586159628678,1,'Number, -10, Number, -0.1','methodArgs/0/type : \"Number\" \nmethodArgs/0/value : -10 \nmethodArgs/1/type : \"Number\" \nmethodArgs/1/value : -0.1','2020-04-06 09:34:53'),(1586194476655,1586165928721,82001,1586159628678,1,'double, 0.1, double, -0.1','methodArgs/0/type : \"double\" \nmethodArgs/0/value : 0.1 \nmethodArgs/1/type : \"double\" \nmethodArgs/1/value : -0.1','2020-04-06 09:34:55'),(1586194583999,1586165928721,82001,1586159628678,1,'Number, 0.1, Number, 3.14','methodArgs/0/type : \"Number\" \nmethodArgs/0/value : 0.1 \nmethodArgs/1/type : \"Number\" \nmethodArgs/1/value : 3.14','2020-04-06 09:36:42'),(1586194591151,1586165928721,82001,1586159628678,1,'double, 9.99, double, -0.1','methodArgs/0/type : \"double\" \nmethodArgs/0/value : 9.99 \nmethodArgs/1/type : \"double\" \nmethodArgs/1/value : -0.1','2020-04-06 09:36:50'),(1586194594906,1586165928721,82001,1586159628678,1,'Number, 1, Number, 5','methodArgs/0/type : \"Number\" \nmethodArgs/0/value : 1 \nmethodArgs/1/type : \"Number\" \nmethodArgs/1/value : 5','2020-04-06 09:36:53'),(1586194624546,1586165928721,82001,1586159628678,1,'Number, 0.1, Number, 5','methodArgs/0/type : \"Number\" \nmethodArgs/0/value : 0.1 \nmethodArgs/1/type : \"Number\" \nmethodArgs/1/value : 5','2020-04-06 09:37:23'),(1586195304834,1586167627326,82001,1586159628678,1,'long, 99, long, 6892628','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 99 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 6892628','2020-04-06 09:48:44'),(1586195307580,1586167627326,82001,1586159628678,1,'long, 10, long, 13678529','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 10 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 13678529','2020-04-06 09:48:47'),(1586195310393,1586167627326,82001,1586159628678,1,'long, -5, long, 31010241','methodArgs/0/type : \"long\" \nmethodArgs/0/value : -5 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 31010241','2020-04-06 09:48:50'),(1586195312026,1586167627326,82001,1586159628678,1,'long, 5, long, 33700725','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 5 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 33700725','2020-04-06 09:48:51'),(1586195313624,1586167627326,82001,1586159628678,1,'long, -2, long, 17954702','methodArgs/0/type : \"long\" \nmethodArgs/0/value : -2 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 17954702','2020-04-06 09:48:53'),(1586195315466,1586167627326,82001,1586159628678,1,'long, -1, long, 35324031','methodArgs/0/type : \"long\" \nmethodArgs/0/value : -1 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 35324031','2020-04-06 09:48:55'),(1586195316596,1586167627326,82001,1586159628678,1,'long, 1, long, 94305646','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 1 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 94305646','2020-04-06 09:48:56'),(1586195317876,1586167627326,82001,1586159628678,1,'long, 2, long, 70173680','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 2 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 70173680','2020-04-06 09:48:57'),(1586195320449,1586167627326,82001,1586159628678,1,'long, 0, long, 68708292','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 0 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 68708292','2020-04-06 09:49:00'),(1586195322653,1586167627326,82001,1586159628678,1,'long, 101, long, 63653362','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 101 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 63653362','2020-04-06 09:49:02'),(1586195324152,1586167627326,82001,1586159628678,1,'long, 100, long, 34403982','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 100 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 34403982','2020-04-06 09:49:03'),(1586195325652,1586167627326,82001,1586159628678,1,'long, -128, long, 30210189','methodArgs/0/type : \"long\" \nmethodArgs/0/value : -128 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 30210189','2020-04-06 09:49:05'),(1586195327133,1586167627326,82001,1586159628678,1,'long, 0, long, 52191107','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 0 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 52191107','2020-04-06 09:49:06'),(1586195330601,1586167627326,82001,1586159628678,1,'long, 1, long, 31823035','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 1 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 31823035','2020-04-06 09:49:10'),(1586195606215,1586166010170,82001,1586159628678,1,'double, 0.1, double, 3.14','methodArgs/0/type : \"double\" \nmethodArgs/0/value : 0.1 \nmethodArgs/1/type : \"double\" \nmethodArgs/1/value : 3.14','2020-04-06 09:53:46'),(1586197339783,1586165928721,82001,1586159628678,1,'Number, 0.1, Number, 2','methodArgs/0/type : \"Number\" \nmethodArgs/0/value : 0.1 \nmethodArgs/1/type : \"Number\" \nmethodArgs/1/value : 2','2020-04-06 18:22:19'),(1586197347349,1586165928721,82001,1586159628678,1,'double, 9.99, double, -0.1','methodArgs/0/type : \"double\" \nmethodArgs/0/value : 9.99 \nmethodArgs/1/type : \"double\" \nmethodArgs/1/value : -0.1','2020-04-06 18:22:27'),(1586197350665,1586165928721,82001,1586159628678,1,'Number, 0.1, Number, null','methodArgs/0/type : \"Number\" \nmethodArgs/0/value : 0.1 \nmethodArgs/1/type : \"Number\" \nmethodArgs/1/value : null','2020-04-06 18:22:30'),(1586197366258,1586165928721,82001,1586159628678,1,'double, 0.1, double, 5','methodArgs/0/type : \"double\" \nmethodArgs/0/value : 0.1 \nmethodArgs/1/type : \"double\" \nmethodArgs/1/value : 5','2020-04-06 18:22:46'),(1586197692128,1586166010170,82001,1586159628678,1,'double, -10, double, 5','methodArgs/0/type : \"double\" \nmethodArgs/0/value : -10 \nmethodArgs/1/type : \"double\" \nmethodArgs/1/value : 5','2020-04-06 18:28:12'),(1586197699530,1586166010170,82001,1586159628678,1,'double, -10, double, 5','methodArgs/0/type : \"double\" \nmethodArgs/0/value : -10 \nmethodArgs/1/type : \"double\" \nmethodArgs/1/value : 5','2020-04-06 18:28:19'),(1586197707927,1586166010170,82001,1586159628678,1,'double, -10, double, 5','methodArgs/0/type : \"double\" \nmethodArgs/0/value : -10 \nmethodArgs/1/type : \"double\" \nmethodArgs/1/value : 5','2020-04-06 18:28:27'),(1586197709965,1586166010170,82001,1586159628678,1,'double, 1, double, 5','methodArgs/0/type : \"double\" \nmethodArgs/0/value : 1 \nmethodArgs/1/type : \"double\" \nmethodArgs/1/value : 5','2020-04-06 18:28:29'),(1586197722104,1586166010170,82001,1586159628678,1,'double, -10, double, -0.1','methodArgs/0/type : \"double\" \nmethodArgs/0/value : -10 \nmethodArgs/1/type : \"double\" \nmethodArgs/1/value : -0.1','2020-04-06 18:28:42'),(1586197727968,1586166010170,82001,1586159628678,1,'double, 0.1, double, 5','methodArgs/0/type : \"double\" \nmethodArgs/0/value : 0.1 \nmethodArgs/1/type : \"double\" \nmethodArgs/1/value : 5','2020-04-06 18:28:47'),(1586197732669,1586166010170,82001,1586159628678,1,'double, 1, double, 5','methodArgs/0/type : \"double\" \nmethodArgs/0/value : 1 \nmethodArgs/1/type : \"double\" \nmethodArgs/1/value : 5','2020-04-06 18:28:52'),(1586197735421,1586166010170,82001,1586159628678,1,'long, -10, long, 5','methodArgs/0/type : \"long\" \nmethodArgs/0/value : -10 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 5','2020-04-06 18:28:55'),(1586197766913,1586166079775,82001,1586159628678,1,'double, 0.1, double, 3.14','methodArgs/0/type : \"double\" \nmethodArgs/0/value : 0.1 \nmethodArgs/1/type : \"double\" \nmethodArgs/1/value : 3.14','2020-04-06 18:29:26'),(1586197887634,1586166079775,82001,1586159628678,1,'double, 0.1, double, 3.14','methodArgs/0/type : \"double\" \nmethodArgs/0/value : 0.1 \nmethodArgs/1/type : \"double\" \nmethodArgs/1/value : 3.14','2020-04-06 18:31:27'),(1586197889196,1586166079775,82001,1586159628678,1,'Number, -10, Number, 5','methodArgs/0/type : \"Number\" \nmethodArgs/0/value : -10 \nmethodArgs/1/type : \"Number\" \nmethodArgs/1/value : 5','2020-04-06 18:31:29'),(1586198223771,1586160312990,82001,1586159628678,1,'long, 1, long, 2','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 1 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 2','2020-04-06 18:37:03'),(1586198225797,1586160312990,82001,1586159628678,1,'double, 0.1, double, 3.14','methodArgs/0/type : \"double\" \nmethodArgs/0/value : 0.1 \nmethodArgs/1/type : \"double\" \nmethodArgs/1/value : 3.14','2020-04-06 18:37:05'),(1586198227842,1586160312990,82001,1586159628678,1,'Number, -10, Number, 5','methodArgs/0/type : \"Number\" \nmethodArgs/0/value : -10 \nmethodArgs/1/type : \"Number\" \nmethodArgs/1/value : 5','2020-04-06 18:37:07'),(1586198263885,1586160312990,82001,1586159628678,1,'long, 1, long, 2','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 1 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 2','2020-04-06 18:37:43'),(1586198265314,1586160312990,82001,1586159628678,1,'double, 0.1, double, 3.14','methodArgs/0/type : \"double\" \nmethodArgs/0/value : 0.1 \nmethodArgs/1/type : \"double\" \nmethodArgs/1/value : 3.14','2020-04-06 18:37:45'),(1586198266452,1586160312990,82001,1586159628678,1,'Number, -10, Number, 5','methodArgs/0/type : \"Number\" \nmethodArgs/0/value : -10 \nmethodArgs/1/type : \"Number\" \nmethodArgs/1/value : 5','2020-04-06 18:37:46'),(1586198337594,0,82001,1586159628678,1,'long, -2, long, 25085664','methodArgs/0/type : \"long\" \nmethodArgs/0/value : -2 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 25085664','2020-04-06 18:38:57'),(1586198390591,0,82001,1586159628678,1,'long, -1, long, 0','methodArgs/0/type : \"long\" \nmethodArgs/0/value : -1 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 0','2020-04-06 18:39:50'),(1586198584539,0,82001,1586198428686,100,'long, ORDER_IN, long, RANDOM_INT','methodArgs/0/type : \'long\'\nmethodArgs/0/value : ORDER_IN(0, 1, -1, 2, -2, 5, -5, 10, 99, 100, 101, -128, 1024) //顺序取值\n\nmethodArgs/1/type : \'long\'\nmethodArgs/1/value : RANDOM_INT(-100, 10000) //随机整数','2020-04-06 18:43:04'),(1586198634396,1586198584539,82001,1586198428686,1,'long, 0, long, 6729','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 0 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 6729','2020-04-06 18:43:54'),(1586198636482,1586198584539,82001,1586198428686,1,'long, -1, long, 2815','methodArgs/0/type : \"long\" \nmethodArgs/0/value : -1 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 2815','2020-04-06 18:43:56'),(1586198640235,1586198584539,82001,1586198428686,1,'long, 99, long, 3635','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 99 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 3635','2020-04-06 18:44:00'),(1586198641498,1586198584539,82001,1586198428686,1,'long, 100, long, 2982','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 100 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 2982','2020-04-06 18:44:01'),(1586198643983,1586198584539,82001,1586198428686,1,'long, -5, long, 9222','methodArgs/0/type : \"long\" \nmethodArgs/0/value : -5 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 9222','2020-04-06 18:44:03'),(1586198646222,1586198584539,82001,1586198428686,1,'long, -128, long, 3336','methodArgs/0/type : \"long\" \nmethodArgs/0/value : -128 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 3336','2020-04-06 18:44:06'),(1586198648647,1586198584539,82001,1586198428686,1,'long, -2, long, 1516','methodArgs/0/type : \"long\" \nmethodArgs/0/value : -2 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 1516','2020-04-06 18:44:08'),(1586198650756,1586198584539,82001,1586198428686,1,'long, -5, long, 8393','methodArgs/0/type : \"long\" \nmethodArgs/0/value : -5 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 8393','2020-04-06 18:44:10'),(1586198653805,1586198584539,82001,1586198428686,1,'long, -2, long, 4','methodArgs/0/type : \"long\" \nmethodArgs/0/value : -2 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 4','2020-04-06 18:44:13'),(1586198654776,1586198584539,82001,1586198428686,1,'long, 5, long, 9369','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 5 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 9369','2020-04-06 18:44:14'),(1586198656594,1586198584539,82001,1586198428686,1,'long, -1, long, 4300','methodArgs/0/type : \"long\" \nmethodArgs/0/value : -1 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 4300','2020-04-06 18:44:16'),(1586198659115,1586198584539,82001,1586198428686,1,'long, 1024, long, -74','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 1024 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : -74','2020-04-06 18:44:19'),(1586198661373,1586198584539,82001,1586198428686,1,'long, -128, long, 6444','methodArgs/0/type : \"long\" \nmethodArgs/0/value : -128 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 6444','2020-04-06 18:44:21'),(1586198663346,1586198584539,82001,1586198428686,1,'long, 101, long, 4277','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 101 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 4277','2020-04-06 18:44:23'),(1586198665002,1586198584539,82001,1586198428686,1,'long, 100, long, 3765','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 100 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 3765','2020-04-06 18:44:25'),(1586198695619,1586198584539,82001,1586198428686,1,'long, 5, long, 7363','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 5 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 7363','2020-04-06 18:44:55'),(1586198697496,1586198584539,82001,1586198428686,1,'long, -5, long, 6551','methodArgs/0/type : \"long\" \nmethodArgs/0/value : -5 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 6551','2020-04-06 18:44:57'),(1586198765199,0,82001,1586198428686,50,'long, RANDOM_IN, long, ORDER_INT','methodArgs/0/type : \'long\'\nmethodArgs/0/value : RANDOM_IN(0, 1, -1, 2, -2, 5, -5, 10, 99, 100, 101, -128, 1024) //顺序取值\n\nmethodArgs/1/type : \'long\'\nmethodArgs/1/value : ORDER_INT(-10, 100) //随机整数','2020-04-06 18:46:05'),(1586198789510,1586198765199,82001,1586198428686,1,'long, 0, long, -8','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 0 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : -8','2020-04-06 18:46:29'),(1586198791354,1586198765199,82001,1586198428686,1,'long, 0, long, -10','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 0 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : -10','2020-04-06 18:46:31'),(1586198792453,1586198765199,82001,1586198428686,1,'long, 100, long, -9','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 100 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : -9','2020-04-06 18:46:32'),(1586198794144,1586198765199,82001,1586198428686,1,'long, 100, long, -7','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 100 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : -7','2020-04-06 18:46:34'),(1586198799169,1586198765199,82001,1586198428686,1,'long, 100, long, -2','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 100 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : -2','2020-04-06 18:46:39'),(1586198800057,1586198765199,82001,1586198428686,1,'long, 2, long, -1','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 2 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : -1','2020-04-06 18:46:40'),(1586198801391,1586198765199,82001,1586198428686,1,'long, 101, long, 0','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 101 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 0','2020-04-06 18:46:41'),(1586198803774,1586198765199,82001,1586198428686,1,'long, -1, long, 1','methodArgs/0/type : \"long\" \nmethodArgs/0/value : -1 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 1','2020-04-06 18:46:43'),(1586198805251,1586198765199,82001,1586198428686,1,'long, 10, long, 2','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 10 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 2','2020-04-06 18:46:45'),(1586198806707,1586198765199,82001,1586198428686,1,'long, 10, long, 3','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 10 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 3','2020-04-06 18:46:46'),(1586198807768,1586198765199,82001,1586198428686,1,'long, 1024, long, 4','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 1024 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 4','2020-04-06 18:46:47'),(1586198809615,1586198765199,82001,1586198428686,1,'long, 2, long, 5','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 2 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 5','2020-04-06 18:46:49'),(1586198811742,1586198765199,82001,1586198428686,1,'long, 1024, long, 9','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 1024 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 9','2020-04-06 18:46:51'),(1586198813215,1586198765199,82001,1586198428686,1,'long, 99, long, 10','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 99 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 10','2020-04-06 18:46:53'),(1586198815061,1586198765199,82001,1586198428686,1,'long, 1, long, 11','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 1 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 11','2020-04-06 18:46:55'),(1586198816949,1586198765199,82001,1586198428686,1,'long, 101, long, 12','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 101 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 12','2020-04-06 18:46:56'),(1586198820584,1586198765199,82001,1586198428686,1,'long, 10, long, 19','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 10 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 19','2020-04-06 18:47:00'),(1586198822202,1586198765199,82001,1586198428686,1,'long, 5, long, 22','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 5 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 22','2020-04-06 18:47:02'),(1586198831493,1586198765199,82001,1586198428686,1,'long, 100, long, 27','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 100 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 27','2020-04-06 18:47:11'),(1586198833478,1586198765199,82001,1586198428686,1,'long, 10, long, 26','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 10 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 26','2020-04-06 18:47:13'),(1586198834808,1586198765199,82001,1586198428686,1,'long, 2, long, 25','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 2 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 25','2020-04-06 18:47:14'),(1586198836671,1586198765199,82001,1586198428686,1,'long, -128, long, 24','methodArgs/0/type : \"long\" \nmethodArgs/0/value : -128 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 24','2020-04-06 18:47:16'),(1586198840322,1586198765199,82001,1586198428686,1,'long, -1, long, 21','methodArgs/0/type : \"long\" \nmethodArgs/0/value : -1 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 21','2020-04-06 18:47:20'),(1586198842201,1586198765199,82001,1586198428686,1,'long, -5, long, 30','methodArgs/0/type : \"long\" \nmethodArgs/0/value : -5 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 30','2020-04-06 18:47:22'),(1586198845127,1586198765199,82001,1586198428686,1,'long, -128, long, 36','methodArgs/0/type : \"long\" \nmethodArgs/0/value : -128 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 36','2020-04-06 18:47:25'),(1586198846342,1586198765199,82001,1586198428686,1,'long, 5, long, 35','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 5 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 35','2020-04-06 18:47:26'),(1586198847341,1586198765199,82001,1586198428686,1,'long, -5, long, 34','methodArgs/0/type : \"long\" \nmethodArgs/0/value : -5 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 34','2020-04-06 18:47:27'),(1586198848709,1586198765199,82001,1586198428686,1,'long, 10, long, 38','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 10 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 38','2020-04-06 18:47:28'),(1586198849784,1586198765199,82001,1586198428686,1,'long, 2, long, 37','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 2 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 37','2020-04-06 18:47:29'),(1586198850993,1586198765199,82001,1586198428686,1,'long, 0, long, 39','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 0 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 39','2020-04-06 18:47:31'),(1586198852777,1586198765199,82001,1586198428686,1,'long, -128, long, 33','methodArgs/0/type : \"long\" \nmethodArgs/0/value : -128 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 33','2020-04-06 18:47:32'),(1586198853986,1586198765199,82001,1586198428686,1,'long, 0, long, 31','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 0 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 31','2020-04-06 18:47:33'),(1586198856277,1586198765199,82001,1586198428686,1,'long, 100, long, -6','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 100 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : -6','2020-04-06 18:47:36'),(1586198858003,1586198765199,82001,1586198428686,1,'long, -5, long, -3','methodArgs/0/type : \"long\" \nmethodArgs/0/value : -5 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : -3','2020-04-06 18:47:38'),(1586198859535,1586198765199,82001,1586198428686,1,'long, -5, long, -5','methodArgs/0/type : \"long\" \nmethodArgs/0/value : -5 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : -5','2020-04-06 18:47:39'),(1586198860675,1586198765199,82001,1586198428686,1,'long, 1, long, -4','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 1 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : -4','2020-04-06 18:47:40'),(1586198864522,1586198765199,82001,1586198428686,1,'long, 100, long, 17','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 100 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 17','2020-04-06 18:47:44'),(1586199426860,1586167627326,82001,1586159628678,1,'long, 2, long, 73393533','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 2 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 73393533','2020-04-06 18:57:06'),(1586199430135,1586167627326,82001,1586159628678,1,'long, -1, long, 21720759','methodArgs/0/type : \"long\" \nmethodArgs/0/value : -1 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 21720759','2020-04-06 18:57:10'),(1586199433521,1586167627326,82001,1586159628678,1,'long, 1, long, 9423427','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 1 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 9423427','2020-04-06 18:57:13'),(1586199436521,1586167627326,82001,1586159628678,1,'long, -128, long, 67173039','methodArgs/0/type : \"long\" \nmethodArgs/0/value : -128 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 67173039','2020-04-06 18:57:16'),(1586199438044,1586167627326,82001,1586159628678,1,'long, 101, long, 88860103','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 101 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 88860103','2020-04-06 18:57:18'),(1586231119895,0,82001,1586159628678,20,'顺序 type,顺序 value : 正常或报错','methodArgs/0/type : ORDER_IN(\'long\', \'double\', \'Number\', \'int\', \'Float\') //顺序取值\nmethodArgs/0/value : ORDER_IN(1, 0.1, -10, 9.99, null) //顺序取值\n\nmethodArgs/1/type : ORDER_IN(\'long\', \'double\', \'Number\', \'int\', \'Float\') //顺序取值\nmethodArgs/1/value : ORDER_IN(2, 3.14, 5, -0.1, null) //顺序取值','2020-04-07 03:45:19'),(1586231169236,1586231119895,82001,1586159628678,1,'long, 1, long, 2','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 1 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 2','2020-04-07 03:46:09'),(1586231176318,1586231119895,82001,1586159628678,1,'double, 0.1, double, 3.14','methodArgs/0/type : \"double\" \nmethodArgs/0/value : 0.1 \nmethodArgs/1/type : \"double\" \nmethodArgs/1/value : 3.14','2020-04-07 03:46:16'),(1586231207098,1586231119895,82001,1586159628678,1,'Number, -10, Number, 5','methodArgs/0/type : \"Number\" \nmethodArgs/0/value : -10 \nmethodArgs/1/type : \"Number\" \nmethodArgs/1/value : 5','2020-04-07 03:46:47'),(1586231241636,1586231119895,82001,1586159628678,1,'long, 1, long, 2','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 1 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 2','2020-04-07 03:47:21'),(1586231259230,1586231119895,82001,1586159628678,1,'Number, -10, Number, 5','methodArgs/0/type : \"Number\" \nmethodArgs/0/value : -10 \nmethodArgs/1/type : \"Number\" \nmethodArgs/1/value : 5','2020-04-07 03:47:39'),(1586231404519,0,82001,1586159628678,50,'ORDER_IN, ORDER_IN, ORDER_IN, ORDER_INT','methodArgs/0/type : ORDER_IN(\'long\', \'double\', \'Number\', \'int\', \'Float\') //顺序取值\nmethodArgs/0/value : ORDER_IN(1, 0.1, -10, 9.99, null) //顺序取值\n\nmethodArgs/1/type : ORDER_IN(\'long\', \'double\', \'Number\', \'int\', \'Float\') //顺序取值\nmethodArgs/1/value : ORDER_INT(-10, 100) //顺序取值','2020-04-07 03:50:04'),(1586231453083,1586231404519,82001,1586159628678,1,'long, 1, long, -10','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 1 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : -10','2020-04-07 03:50:53'),(1586231455467,1586231404519,82001,1586159628678,1,'double, 0.1, double, -9','methodArgs/0/type : \"double\" \nmethodArgs/0/value : 0.1 \nmethodArgs/1/type : \"double\" \nmethodArgs/1/value : -9','2020-04-07 03:50:55'),(1586231458713,1586231404519,82001,1586159628678,1,'Number, -10, Number, -8','methodArgs/0/type : \"Number\" \nmethodArgs/0/value : -10 \nmethodArgs/1/type : \"Number\" \nmethodArgs/1/value : -8','2020-04-07 03:50:58'),(1586231469178,1586231404519,82001,1586159628678,1,'long, 1, long, -5','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 1 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : -5','2020-04-07 03:51:09'),(1586231496820,1586231404519,82001,1586159628678,1,'long, 1, long, 0','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 1 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 0','2020-04-07 03:51:36'),(1586231499489,1586231404519,82001,1586159628678,1,'double, 0.1, double, 1','methodArgs/0/type : \"double\" \nmethodArgs/0/value : 0.1 \nmethodArgs/1/type : \"double\" \nmethodArgs/1/value : 1','2020-04-07 03:51:39'),(1586231503362,1586231404519,82001,1586159628678,1,'Number, -10, Number, 7','methodArgs/0/type : \"Number\" \nmethodArgs/0/value : -10 \nmethodArgs/1/type : \"Number\" \nmethodArgs/1/value : 7','2020-04-07 03:51:43'),(1586232142033,1586165928721,82001,1586159628678,1,'double, 9.99, double, 2','methodArgs/0/type : \"double\" \nmethodArgs/0/value : 9.99 \nmethodArgs/1/type : \"double\" \nmethodArgs/1/value : 2','2020-04-07 04:02:22'),(1586232142038,1586165928721,82001,1586159628678,1,'double, 9.99, double, 2','methodArgs/0/type : \"double\" \nmethodArgs/0/value : 9.99 \nmethodArgs/1/type : \"double\" \nmethodArgs/1/value : 2','2020-04-07 04:02:22'),(1586232160115,1586165928721,82001,1586159628678,1,'Number, 0.1, Number, -0.1','methodArgs/0/type : \"Number\" \nmethodArgs/0/value : 0.1 \nmethodArgs/1/type : \"Number\" \nmethodArgs/1/value : -0.1','2020-04-07 04:02:40'),(1586232308014,1586166010170,82001,1586159628678,1,'double, 1, long, 2','methodArgs/0/type : \"double\" \nmethodArgs/0/value : 1 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 2','2020-04-07 04:05:08'),(1586232310489,1586166010170,82001,1586159628678,1,'double, 9.99, double, -0.1','methodArgs/0/type : \"double\" \nmethodArgs/0/value : 9.99 \nmethodArgs/1/type : \"double\" \nmethodArgs/1/value : -0.1','2020-04-07 04:05:10'),(1586232483507,1586231404519,82001,1586159628678,1,'long, 1, long, -10','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 1 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : -10','2020-04-07 04:08:03'),(1586232490705,1586231404519,82001,1586159628678,1,'double, 0.1, double, -9','methodArgs/0/type : \"double\" \nmethodArgs/0/value : 0.1 \nmethodArgs/1/type : \"double\" \nmethodArgs/1/value : -9','2020-04-07 04:08:10'),(1586232493184,1586231404519,82001,1586159628678,1,'Number, -10, Number, -8','methodArgs/0/type : \"Number\" \nmethodArgs/0/value : -10 \nmethodArgs/1/type : \"Number\" \nmethodArgs/1/value : -8','2020-04-07 04:08:13'),(1586232520640,0,82001,1586159628678,1,'随机配置 2020-04-07 12:08','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 1 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 2','2020-04-07 04:08:40'),(1586232577840,1586231404519,82001,1586159628678,1,'long, 1, long, -5','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 1 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : -5','2020-04-07 04:09:37'),(1586232582693,1586231404519,82001,1586159628678,1,'double, 0.1, double, -4','methodArgs/0/type : \"double\" \nmethodArgs/0/value : 0.1 \nmethodArgs/1/type : \"double\" \nmethodArgs/1/value : -4','2020-04-07 04:09:42'),(1586232587350,1586231404519,82001,1586159628678,1,'Number, -10, Number, -3','methodArgs/0/type : \"Number\" \nmethodArgs/0/value : -10 \nmethodArgs/1/type : \"Number\" \nmethodArgs/1/value : -3','2020-04-07 04:09:47'),(1586232591779,1586231404519,82001,1586159628678,1,'long, 1, long, 0','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 1 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 0','2020-04-07 04:09:51'),(1586232595135,1586231404519,82001,1586159628678,1,'Number, -10, Number, 7','methodArgs/0/type : \"Number\" \nmethodArgs/0/value : -10 \nmethodArgs/1/type : \"Number\" \nmethodArgs/1/value : 7','2020-04-07 04:09:55'),(1586232597349,1586231404519,82001,1586159628678,1,'long, 1, long, 5','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 1 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 5','2020-04-07 04:09:57'),(1586232599745,1586231404519,82001,1586159628678,1,'long, 1, long, 10','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 1 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 10','2020-04-07 04:09:59'),(1586232603243,1586231404519,82001,1586159628678,1,'long, 1, long, 15','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 1 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 15','2020-04-07 04:10:03'),(1586232606944,1586231404519,82001,1586159628678,1,'double, 0.1, double, 16','methodArgs/0/type : \"double\" \nmethodArgs/0/value : 0.1 \nmethodArgs/1/type : \"double\" \nmethodArgs/1/value : 16','2020-04-07 04:10:06'),(1586232609806,1586231404519,82001,1586159628678,1,'Number, -10, Number, 17','methodArgs/0/type : \"Number\" \nmethodArgs/0/value : -10 \nmethodArgs/1/type : \"Number\" \nmethodArgs/1/value : 17','2020-04-07 04:10:09'),(1586233289465,0,82001,1586160409878,110,'随机配置 2020-04-07 12:21','methodArgs/0/value : ORDER_INT(-10, 100)','2020-04-07 04:21:29'),(1586242902337,1586198765199,82001,1586198428686,1,'long, 1, long, -2','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 1 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : -2','2020-04-07 07:01:42'),(1586242972089,1586198765199,82001,1586198428686,1,'long, 101, long, -7','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 101 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : -7','2020-04-07 07:02:52'),(1586243003485,1586198584539,82001,1586198428686,1,'long, 0, long, 2811','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 0 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 2811','2020-04-07 07:03:23'),(1586243007202,1586198584539,82001,1586198428686,1,'long, -2, long, 4628','methodArgs/0/type : \"long\" \nmethodArgs/0/value : -2 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 4628','2020-04-07 07:03:27'),(1586243011737,1586198584539,82001,1586198428686,1,'long, -128, long, 7950','methodArgs/0/type : \"long\" \nmethodArgs/0/value : -128 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 7950','2020-04-07 07:03:31'),(1586243014211,1586198584539,82001,1586198428686,1,'long, -1, long, 143','methodArgs/0/type : \"long\" \nmethodArgs/0/value : -1 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 143','2020-04-07 07:03:34'),(1586243015820,1586198584539,82001,1586198428686,1,'long, -2, long, 8612','methodArgs/0/type : \"long\" \nmethodArgs/0/value : -2 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 8612','2020-04-07 07:03:35'),(1586243017339,1586198584539,82001,1586198428686,1,'long, 1, long, 3173','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 1 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 3173','2020-04-07 07:03:37'),(1586243019546,1586198584539,82001,1586198428686,1,'long, 0, long, 4203','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 0 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 4203','2020-04-07 07:03:39'),(1586243020896,1586198584539,82001,1586198428686,1,'long, 1, long, 4589','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 1 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 4589','2020-04-07 07:03:40'),(1586243022578,1586198584539,82001,1586198428686,1,'long, -1, long, 3150','methodArgs/0/type : \"long\" \nmethodArgs/0/value : -1 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 3150','2020-04-07 07:03:42'),(1586243025082,1586198584539,82001,1586198428686,1,'long, -5, long, 2275','methodArgs/0/type : \"long\" \nmethodArgs/0/value : -5 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 2275','2020-04-07 07:03:45'),(1586243027062,1586198584539,82001,1586198428686,1,'long, -128, long, 510','methodArgs/0/type : \"long\" \nmethodArgs/0/value : -128 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 510','2020-04-07 07:03:47'),(1586243028081,1586198584539,82001,1586198428686,1,'long, 101, long, 9271','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 101 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 9271','2020-04-07 07:03:48'),(1586243036551,1586198584539,82001,1586198428686,1,'long, 2, long, 6483','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 2 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 6483','2020-04-07 07:03:56'),(1586243039978,1586198584539,82001,1586198428686,1,'long, 0, long, 6438','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 0 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 6438','2020-04-07 07:03:59'),(1586243042016,1586198584539,82001,1586198428686,1,'long, 1, long, 961','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 1 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 961','2020-04-07 07:04:02'),(1586243043748,1586198584539,82001,1586198428686,1,'long, -1, long, 5156','methodArgs/0/type : \"long\" \nmethodArgs/0/value : -1 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 5156','2020-04-07 07:04:03'),(1586243045491,1586198584539,82001,1586198428686,1,'long, 2, long, 1307','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 2 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 1307','2020-04-07 07:04:05'),(1586243048433,1586198584539,82001,1586198428686,1,'long, 99, long, 4952','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 99 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 4952','2020-04-07 07:04:08'),(1586243049746,1586198584539,82001,1586198428686,1,'long, 10, long, 106','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 10 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 106','2020-04-07 07:04:09'),(1586243051679,1586198584539,82001,1586198428686,1,'long, -5, long, 1173','methodArgs/0/type : \"long\" \nmethodArgs/0/value : -5 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 1173','2020-04-07 07:04:11'),(1586243053574,1586198584539,82001,1586198428686,1,'long, -2, long, 9752','methodArgs/0/type : \"long\" \nmethodArgs/0/value : -2 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 9752','2020-04-07 07:04:13'),(1586243055316,1586198584539,82001,1586198428686,1,'long, -1, long, 1501','methodArgs/0/type : \"long\" \nmethodArgs/0/value : -1 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 1501','2020-04-07 07:04:15'),(1586243058066,1586198584539,82001,1586198428686,1,'long, 1, long, 3979','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 1 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 3979','2020-04-07 07:04:18'),(1586243059013,1586198584539,82001,1586198428686,1,'long, 0, long, 926','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 0 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 926','2020-04-07 07:04:19'),(1586243222467,1586231404519,82001,1586159628678,1,'Number, -10, Number, 12','methodArgs/0/type : \"Number\" \nmethodArgs/0/value : -10 \nmethodArgs/1/type : \"Number\" \nmethodArgs/1/value : 12','2020-04-07 07:07:02'),(1586243226505,1586231404519,82001,1586159628678,1,'Number, -10, Number, 17','methodArgs/0/type : \"Number\" \nmethodArgs/0/value : -10 \nmethodArgs/1/type : \"Number\" \nmethodArgs/1/value : 17','2020-04-07 07:07:06'),(1586243233545,1586231404519,82001,1586159628678,1,'long, 1, long, 15','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 1 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 15','2020-04-07 07:07:13'),(1586243235828,1586231404519,82001,1586159628678,1,'double, 0.1, double, 16','methodArgs/0/type : \"double\" \nmethodArgs/0/value : 0.1 \nmethodArgs/1/type : \"double\" \nmethodArgs/1/value : 16','2020-04-07 07:07:15'),(1586243240122,1586231404519,82001,1586159628678,1,'double, 0.1, double, 11','methodArgs/0/type : \"double\" \nmethodArgs/0/value : 0.1 \nmethodArgs/1/type : \"double\" \nmethodArgs/1/value : 11','2020-04-07 07:07:20'),(1586243245530,1586231404519,82001,1586159628678,1,'long, 1, long, 10','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 1 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 10','2020-04-07 07:07:25'),(1586243248976,1586231404519,82001,1586159628678,1,'double, 0.1, double, 6','methodArgs/0/type : \"double\" \nmethodArgs/0/value : 0.1 \nmethodArgs/1/type : \"double\" \nmethodArgs/1/value : 6','2020-04-07 07:07:28'),(1586243250413,1586231404519,82001,1586159628678,1,'Number, -10, Number, 7','methodArgs/0/type : \"Number\" \nmethodArgs/0/value : -10 \nmethodArgs/1/type : \"Number\" \nmethodArgs/1/value : 7','2020-04-07 07:07:30'),(1586243253942,1586231404519,82001,1586159628678,1,'long, 1, long, 0','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 1 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : 0','2020-04-07 07:07:33'),(1586243278329,1586231119895,82001,1586159628678,1,'Number, -10, Number, 5','methodArgs/0/type : \"Number\" \nmethodArgs/0/value : -10 \nmethodArgs/1/type : \"Number\" \nmethodArgs/1/value : 5','2020-04-07 07:07:58'),(1586248112435,0,82001,1586159628678,5,'随机配置 2020-04-07 16:28','methodArgs/0/type : ORDER_IN(\'long\', \'double\', \'Number\', \'int\', \'Float\') //顺序取值\nmethodArgs/0/value : ORDER_IN(1, 0.1, -10, 9.99, null) //顺序取值\n\nmethodArgs/1/type : ORDER_IN(\'long\', \'double\', \'Number\', \'int\', \'Float\') //顺序取值\nmethodArgs/1/value : ORDER_INT(-10, 100) //顺序取值','2020-04-07 08:28:32'),(1586248442638,1586248112435,82001,1586159628678,1,'long, 1, long, -10','methodArgs/0/type : \"long\" \nmethodArgs/0/value : 1 \nmethodArgs/1/type : \"long\" \nmethodArgs/1/value : -10','2020-04-07 08:34:02'),(1586248642428,1586231404519,82001,1586159628678,1,'Float, null, Float, -6','methodArgs/0/type : \"Float\" \nmethodArgs/0/value : null \nmethodArgs/1/type : \"Float\" \nmethodArgs/1/value : -6','2020-04-07 08:37:22'),(1586266899677,1586248112435,82001,1586159628678,1,'double, 0.1, double, -9','methodArgs/0/type : \"double\" \nmethodArgs/0/value : 0.1 \nmethodArgs/1/type : \"double\" \nmethodArgs/1/value : -9','2020-04-07 13:41:39'),(1586266901593,1586248112435,82001,1586159628678,1,'Number, -10, Number, -8','methodArgs/0/type : \"Number\" \nmethodArgs/0/value : -10 \nmethodArgs/1/type : \"Number\" \nmethodArgs/1/value : -8','2020-04-07 13:41:41'),(1586279537151,0,82001,1586159628678,1,'RANDOM_INT(-10, 100), ORDER_INT(-10, 100)','methodArgs/0/value : RANDOM_INT(-10, 100)\nmethodArgs/1/value : ORDER_INT(-10, 100)','2020-04-07 17:12:17'),(1586279667155,0,82001,1586159628678,20,'ORDER_INT(-100, 10), ORDER_INT(-10, 100)','methodArgs/0/value : ORDER_INT(-100, 10)\nmethodArgs/1/value : ORDER_INT(-10, 100)','2020-04-07 17:14:27'),(1586279787628,1586279667155,82001,1586159628678,1,'-100, -10','methodArgs/0/value : -100 \nmethodArgs/1/value : -10','2020-04-07 17:16:27'),(1586279791014,1586279667155,82001,1586159628678,1,'-99, -9','methodArgs/0/value : -99 \nmethodArgs/1/value : -9','2020-04-07 17:16:31'),(1586279803016,1586279667155,82001,1586159628678,1,'-9, 81','methodArgs/0/value : -9 \nmethodArgs/1/value : 81','2020-04-07 17:16:43'),(1586279805059,1586279667155,82001,1586159628678,1,'-3, 87','methodArgs/0/value : -3 \nmethodArgs/1/value : 87','2020-04-07 17:16:45'),(1586279812486,1586279667155,82001,1586159628678,1,'-2, 88','methodArgs/0/value : -2 \nmethodArgs/1/value : 88','2020-04-07 17:16:52'),(1586279813854,1586279667155,82001,1586159628678,1,'-1, 89','methodArgs/0/value : -1 \nmethodArgs/1/value : 89','2020-04-07 17:16:53'),(1586279816501,1586279667155,82001,1586159628678,1,'-10, 80','methodArgs/0/value : -10 \nmethodArgs/1/value : 80','2020-04-07 17:16:56'),(1586279823264,1586279667155,82001,1586159628678,1,'-91, -1','methodArgs/0/value : -91 \nmethodArgs/1/value : -1','2020-04-07 17:17:03'),(1586279829764,1586279667155,82001,1586159628678,1,'-90, 0','methodArgs/0/value : -90 \nmethodArgs/1/value : 0','2020-04-07 17:17:09'),(1586279832171,1586279667155,82001,1586159628678,1,'-89, 1','methodArgs/0/value : -89 \nmethodArgs/1/value : 1','2020-04-07 17:17:12'),(1586279833191,1586279667155,82001,1586159628678,1,'-88, 2','methodArgs/0/value : -88 \nmethodArgs/1/value : 2','2020-04-07 17:17:13'),(1586279836091,1586279667155,82001,1586159628678,1,'-92, -2','methodArgs/0/value : -92 \nmethodArgs/1/value : -2','2020-04-07 17:17:16'),(1586279840142,1586279667155,82001,1586159628678,1,'-56, 34','methodArgs/0/value : -56 \nmethodArgs/1/value : 34','2020-04-07 17:17:20'),(1586279942254,1586279667155,82001,1586159628678,1,'-18, 72','methodArgs/0/value : -18 \nmethodArgs/1/value : 72','2020-04-07 17:19:02'),(1586280076513,0,82001,1586159628678,50,'ORDER_IN, RANDOM_IN 配置','methodArgs/0/value : ORDER_IN(0, 1, 2, -1, -2, -3, 4, 0.12, -3.14, 10, 99, 100)\nmethodArgs/1/value : RANDOM_IN(1, 2, -1, -2, -3, 4, 0.12, -3.14, 10, 99, 100)','2020-04-07 17:21:16'),(1586280160205,1586280076513,82001,1586159628678,1,'0, 2','methodArgs/0/value : 0 \nmethodArgs/1/value : 2','2020-04-07 17:22:40'),(1586280164207,1586280076513,82001,1586159628678,1,'1, 4','methodArgs/0/value : 1 \nmethodArgs/1/value : 4','2020-04-07 17:22:44'),(1586280165976,1586280076513,82001,1586159628678,1,'2, 4','methodArgs/0/value : 2 \nmethodArgs/1/value : 4','2020-04-07 17:22:45'),(1586280167348,1586280076513,82001,1586159628678,1,'-1, -1','methodArgs/0/value : -1 \nmethodArgs/1/value : -1','2020-04-07 17:22:47'),(1586280168574,1586280076513,82001,1586159628678,1,'-2, 4','methodArgs/0/value : -2 \nmethodArgs/1/value : 4','2020-04-07 17:22:48'),(1586280170337,1586280076513,82001,1586159628678,1,'-3, -3','methodArgs/0/value : -3 \nmethodArgs/1/value : -3','2020-04-07 17:22:50'),(1586280172423,1586280076513,82001,1586159628678,1,'4, 100','methodArgs/0/value : 4 \nmethodArgs/1/value : 100','2020-04-07 17:22:52'),(1586280173542,1586280076513,82001,1586159628678,1,'0.12, -3.14','methodArgs/0/value : 0.12 \nmethodArgs/1/value : -3.14','2020-04-07 17:22:53'),(1586280174923,1586280076513,82001,1586159628678,1,'-3.14, -3.14','methodArgs/0/value : -3.14 \nmethodArgs/1/value : -3.14','2020-04-07 17:22:54'),(1586280176731,1586280076513,82001,1586159628678,1,'10, -3.14','methodArgs/0/value : 10 \nmethodArgs/1/value : -3.14','2020-04-07 17:22:56'),(1586280177814,1586280076513,82001,1586159628678,1,'99, 2','methodArgs/0/value : 99 \nmethodArgs/1/value : 2','2020-04-07 17:22:57'),(1586280178916,1586280076513,82001,1586159628678,1,'100, -3','methodArgs/0/value : 100 \nmethodArgs/1/value : -3','2020-04-07 17:22:58'),(1586280180599,1586280076513,82001,1586159628678,1,'0, -3','methodArgs/0/value : 0 \nmethodArgs/1/value : -3','2020-04-07 17:23:00'),(1586280181576,1586280076513,82001,1586159628678,1,'1, 0.12','methodArgs/0/value : 1 \nmethodArgs/1/value : 0.12','2020-04-07 17:23:01'),(1586280182596,1586280076513,82001,1586159628678,1,'2, 100','methodArgs/0/value : 2 \nmethodArgs/1/value : 100','2020-04-07 17:23:02'),(1586280184221,1586280076513,82001,1586159628678,1,'-1, 4','methodArgs/0/value : -1 \nmethodArgs/1/value : 4','2020-04-07 17:23:04'),(1586280187297,1586280076513,82001,1586159628678,1,'-2, 1','methodArgs/0/value : -2 \nmethodArgs/1/value : 1','2020-04-07 17:23:07'),(1586280188256,1586280076513,82001,1586159628678,1,'-3, 99','methodArgs/0/value : -3 \nmethodArgs/1/value : 99','2020-04-07 17:23:08'),(1586280189992,1586280076513,82001,1586159628678,1,'4, -3','methodArgs/0/value : 4 \nmethodArgs/1/value : -3','2020-04-07 17:23:09'),(1586280191363,1586280076513,82001,1586159628678,1,'0.12, 4','methodArgs/0/value : 0.12 \nmethodArgs/1/value : 4','2020-04-07 17:23:11'),(1586280193161,1586280076513,82001,1586159628678,1,'-3.14, 4','methodArgs/0/value : -3.14 \nmethodArgs/1/value : 4','2020-04-07 17:23:13'),(1586280194704,1586280076513,82001,1586159628678,1,'100, 1','methodArgs/0/value : 100 \nmethodArgs/1/value : 1','2020-04-07 17:23:14'),(1586280197120,1586280076513,82001,1586159628678,1,'99, 100','methodArgs/0/value : 99 \nmethodArgs/1/value : 100','2020-04-07 17:23:17'),(1586280198327,1586280076513,82001,1586159628678,1,'10, 4','methodArgs/0/value : 10 \nmethodArgs/1/value : 4','2020-04-07 17:23:18'),(1586280201467,1586280076513,82001,1586159628678,1,'0, -3','methodArgs/0/value : 0 \nmethodArgs/1/value : -3','2020-04-07 17:23:21'),(1586280202421,1586280076513,82001,1586159628678,1,'100, 99','methodArgs/0/value : 100 \nmethodArgs/1/value : 99','2020-04-07 17:23:22'),(1586280203292,1586280076513,82001,1586159628678,1,'99, -3','methodArgs/0/value : 99 \nmethodArgs/1/value : -3','2020-04-07 17:23:23'),(1586280204580,1586280076513,82001,1586159628678,1,'10, 2','methodArgs/0/value : 10 \nmethodArgs/1/value : 2','2020-04-07 17:23:24'),(1586280206276,1586280076513,82001,1586159628678,1,'-3.14, -3','methodArgs/0/value : -3.14 \nmethodArgs/1/value : -3','2020-04-07 17:23:26'),(1586280207785,1586280076513,82001,1586159628678,1,'0.12, -3.14','methodArgs/0/value : 0.12 \nmethodArgs/1/value : -3.14','2020-04-07 17:23:27'),(1586280210613,1586280076513,82001,1586159628678,1,'4, 4','methodArgs/0/value : 4 \nmethodArgs/1/value : 4','2020-04-07 17:23:30'),(1586280305344,1586280076513,82001,1586159628678,1,'1, 2','methodArgs/0/value : 1 \nmethodArgs/1/value : 2','2020-04-07 17:25:05'),(1586280312365,1586280076513,82001,1586159628678,1,'10, 100','methodArgs/0/value : 10 \nmethodArgs/1/value : 100','2020-04-07 17:25:12'),(1586280317738,1586280076513,82001,1586159628678,1,'99, 4','methodArgs/0/value : 99 \nmethodArgs/1/value : 4','2020-04-07 17:25:17'),(1586280320523,1586280076513,82001,1586159628678,1,'1, -2','methodArgs/0/value : 1 \nmethodArgs/1/value : -2','2020-04-07 17:25:20');
/*!40000 ALTER TABLE `Random` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Request`
--
DROP TABLE IF EXISTS `Request`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Request` (
`id` bigint(15) NOT NULL COMMENT '唯一标识',
`version` tinyint(4) NOT NULL DEFAULT '1' COMMENT 'GET,HEAD可用任意结构访问任意开放内容,不需要这个字段。\n其它的操作因为写入了结构和内容,所以都需要,按照不同的version选择对应的structure。\n\n自动化版本管理:\nRequest JSON最外层可以传 “version”:Integer 。\n1.未传或 <= 0,用最新版。 “@order”:”version-“\n2.已传且 > 0,用version以上的可用版本的最低版本。 “@order”:”version+”, “version{}”:”>={version}”',
`method` varchar(10) DEFAULT 'GETS' COMMENT '只限于GET,HEAD外的操作方法。',
`tag` varchar(20) NOT NULL COMMENT '标签',
`structure` json NOT NULL COMMENT '结构。\nTODO 里面的 PUT 改为 UPDATE,避免和请求 PUT 搞混。',
`detail` varchar(10000) DEFAULT NULL COMMENT '详细说明',
`date` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建日期',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='最好编辑完后删除主键,这样就是只读状态,不能随意更改。需要更改就重新加上主键。\n\n每次启动服务器时加载整个表到内存。\n这个表不可省略,model内注解的权限只是客户端能用的,其它可以保证即便服务端代码错误时也不会误删数据。';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Request`
--
LOCK TABLES `Request` WRITE;
/*!40000 ALTER TABLE `Request` DISABLE KEYS */;
INSERT INTO `Request` VALUES (1,1,'POST','register','{\"User\": {\"UPDATE\": {\"id@\": \"Privacy/id\"}, \"DISALLOW\": \"id\", \"NECESSARY\": \"name\"}, \"Privacy\": {\"UNIQUE\": \"phone\", \"VERIFY\": {\"phone~\": \"PHONE\"}, \"DISALLOW\": \"id\", \"NECESSARY\": \"_password,phone\"}}','UNIQUE校验phone是否已存在。VERIFY校验phone是否符合手机号的格式','2017-02-01 11:19:51'),(2,1,'POST','Moment','{\"INSERT\": {\"@role\": \"OWNER\", \"pictureList\": [], \"praiseUserIdList\": []}, \"UPDATE\": {\"verifyIdList-()\": \"verifyIdList(praiseUserIdList)\", \"verifyURLList-()\": \"verifyURLList(pictureList)\"}, \"DISALLOW\": \"id\"}','INSERT当没传pictureList和praiseUserIdList时用空数组[]补全,保证不会为null','2017-02-01 11:19:51'),(3,1,'POST','Comment','{\"UPDATE\": {\"@role\": \"OWNER\"}, \"DISALLOW\": \"id\", \"NECESSARY\": \"momentId,content\"}','必须传userId,momentId,content,不允许传id','2017-02-01 11:19:51'),(4,1,'PUT','User','{\"INSERT\": {\"@role\": \"OWNER\"}, \"DISALLOW\": \"phone\", \"NECESSARY\": \"id\"}','必须传id,不允许传phone。INSERT当没传@role时用OWNER补全','2017-02-01 11:19:51'),(5,1,'DELETE','Moment','{\"Moment\": {\"INSERT\": {\"@role\": \"OWNER\"}, \"UPDATE\": {\"commentCount()\": \"deleteCommentOfMoment(id)\"}, \"NECESSARY\": \"id\"}}',NULL,'2017-02-01 11:19:51'),(6,1,'DELETE','Comment','{\"INSERT\": {\"@role\": \"OWNER\"}, \"UPDATE\": {\"childCount()\": \"deleteChildComment(id)\"}, \"NECESSARY\": \"id\"}','disallow没必要用于DELETE','2017-02-01 11:19:51'),(8,1,'PUT','User-phone','{\"User\": {\"INSERT\": {\"@role\": \"OWNER\"}, \"UPDATE\": {\"@combine\": \"_password\"}, \"DISALLOW\": \"!\", \"NECESSARY\": \"id,phone,_password\"}}','! 表示其它所有,这里指necessary所有未包含的字段','2017-02-01 11:19:51'),(14,1,'POST','Verify','{\"DISALLOW\": \"!\", \"NECESSARY\": \"phone,verify\"}','必须传phone,verify,其它都不允许传','2017-02-18 14:20:43'),(15,1,'GETS','Verify','{\"NECESSARY\": \"phone\"}','必须传phone','2017-02-18 14:20:43'),(16,1,'HEADS','Verify','{}','允许任意内容','2017-02-18 14:20:43'),(17,1,'PUT','Moment','{\"DISALLOW\": \"userId,date\", \"NECESSARY\": \"id\"}',NULL,'2017-02-01 11:19:51'),(21,1,'HEADS','Login','{\"DISALLOW\": \"!\", \"NECESSARY\": \"userId,type\"}',NULL,'2017-02-18 14:20:43'),(22,1,'GETS','User','{}','允许传任何内容,除了表对象','2017-02-18 14:20:43'),(23,1,'PUT','Privacy','{\"INSERT\": {\"@role\": \"OWNER\"}, \"NECESSARY\": \"id\"}','INSERT当没传@role时用OWNER补全','2017-02-01 11:19:51'),(25,1,'PUT','Praise','{\"NECESSARY\": \"id\"}','必须传id','2017-02-01 11:19:51'),(26,1,'DELETE','Comment[]','{\"Comment\": {\"INSERT\": {\"@role\": \"OWNER\"}, \"NECESSARY\": \"id{}\"}}','DISALLOW没必要用于DELETE','2017-02-01 11:19:51'),(27,1,'PUT','Comment[]','{\"Comment\": {\"INSERT\": {\"@role\": \"OWNER\"}, \"NECESSARY\": \"id{}\"}}','DISALLOW没必要用于DELETE','2017-02-01 11:19:51'),(28,1,'PUT','Comment','{\"INSERT\": {\"@role\": \"OWNER\"}, \"NECESSARY\": \"id\"}','这里省略了Comment,因为tag就是Comment,Parser.getCorrectRequest会自动补全','2017-02-01 11:19:51'),(29,1,'GETS','login','{\"Privacy\": {\"DISALLOW\": \"id\", \"NECESSARY\": \"phone,_password\"}}',NULL,'2017-10-15 10:04:52'),(30,1,'PUT','balance+','{\"Privacy\": {\"VERIFY\": {\"balance+&{}\": \">=1,<=100000\"}, \"DISALLOW\": \"!\", \"NECESSARY\": \"id,balance+\"}}','验证balance+对应的值是否满足>=1且<=100000','2017-10-21 08:48:34'),(31,1,'PUT','balance-','{\"Privacy\": {\"UPDATE\": {\"@combine\": \"_password\"}, \"VERIFY\": {\"balance-&{}\": \">=1,<=10000\"}, \"DISALLOW\": \"!\", \"NECESSARY\": \"id,balance-,_password\"}}','UPDATE强制把_password作为WHERE条件','2017-10-21 08:48:34'),(32,2,'GETS','Privacy','{\"INSERT\": {\"@role\": \"OWNER\"}, \"DISALLOW\": \"_password,_payPassword\", \"NECESSARY\": \"id\"}',NULL,'2017-06-12 16:05:51'),(33,2,'GETS','Privacy-CIRCLE','{\"Privacy\": {\"UPDATE\": {\"@role\": \"CIRCLE\", \"@column\": \"phone\"}, \"DISALLOW\": \"!\", \"NECESSARY\": \"id\"}}',NULL,'2017-06-12 16:05:51'),(35,2,'POST','Document','{\"Document\": {\"INSERT\": {\"@role\": \"OWNER\"}, \"DISALLOW\": \"id\", \"NECESSARY\": \"userId,name,url,request\"}, \"TestRecord\": {\"INSERT\": {\"@role\": \"OWNER\"}, \"UPDATE\": {\"documentId@\": \"Document/id\"}, \"DISALLOW\": \"id,documentId\", \"NECESSARY\": \"userId,response\"}}',NULL,'2017-11-26 08:34:41'),(36,2,'PUT','Document','{\"DISALLOW\": \"userId\", \"NECESSARY\": \"id\"}',NULL,'2017-11-26 08:35:15'),(37,2,'DELETE','Document','{\"INSERT\": {\"@role\": \"OWNER\"}, \"UPDATE\": {\"TestRecord\": {\"@role\": \"OWNER\", \"documentId@\": \"Document/id\"}}, \"DISALLOW\": \"!\", \"NECESSARY\": \"id\"}',NULL,'2017-11-26 00:36:20'),(38,2,'POST','TestRecord','{\"INSERT\": {\"@role\": \"OWNER\"}, \"DISALLOW\": \"id\", \"NECESSARY\": \"userId,documentId,response\"}',NULL,'2018-06-16 23:44:36'),(39,2,'POST','Method','{\"Method\": {\"INSERT\": {\"@role\": \"OWNER\"}, \"DISALLOW\": \"id\", \"NECESSARY\": \"userId,method,class,package\"}, \"TestRecord\": {\"INSERT\": {\"@role\": \"OWNER\"}, \"UPDATE\": {\"documentId@\": \"Method/id\"}, \"DISALLOW\": \"id,documentId\", \"NECESSARY\": \"userId,response\"}}',NULL,'2017-11-26 00:34:41'),(40,2,'PUT','Method','{\"INSERT\": {\"@role\": \"OWNER\"}, \"DISALLOW\": \"userId\", \"NECESSARY\": \"id\"}',NULL,'2017-11-26 00:35:15'),(41,2,'DELETE','Method','{\"INSERT\": {\"@role\": \"OWNER\"}, \"UPDATE\": {\"TestRecord\": {\"@role\": \"OWNER\", \"documentId@\": \"Method/id\"}}, \"DISALLOW\": \"!\", \"NECESSARY\": \"id\"}',NULL,'2017-11-25 16:36:20'),(42,2,'POST','Random','{\"INSERT\": {\"@role\": \"OWNER\"}, \"Random\": {\"NECESSARY\": \"documentId,name,config\"}, \"TestRecord\": {\"UPDATE\": {\"randomId@\": \"/Random/id\", \"documentId@\": \"/Random/documentId\"}}}',NULL,'2017-11-26 00:34:41'),(43,2,'PUT','Random','{\"INSERT\": {\"@role\": \"OWNER\"}, \"DISALLOW\": \"userId\", \"NECESSARY\": \"id\"}',NULL,'2017-11-26 00:35:15'),(44,2,'DELETE','Random','{\"INSERT\": {\"@role\": \"OWNER\"}, \"UPDATE\": {\"TestRecord\": {\"@role\": \"OWNER\", \"randomId@\": \"/id\"}}, \"NECESSARY\": \"id\"}',NULL,'2017-11-25 16:36:20'),(45,2,'POST','Comment:[]','{\"TYPE\": {\"Comment[]\": \"OBJECT[]\"}, \"INSERT\": {\"@role\": \"OWNER\"}, \"Comment[]\": []}',NULL,'2020-03-01 05:40:04'),(46,2,'POST','Moment:[]','{\"INSERT\": {\"@role\": \"OWNER\"}, \"Moment[]\": []}',NULL,'2020-03-01 05:41:42'),(47,2,'PUT','Comment:[]','{\"INSERT\": {\"@role\": \"OWNER\"}, \"Comment[]\": []}',NULL,'2020-03-01 05:40:04'),(48,2,'DELETE','TestRecord','{\"INSERT\": {\"@role\": \"OWNER\"}, \"NECESSARY\": \"id\"}',NULL,'2017-11-25 16:36:20');
/*!40000 ALTER TABLE `Request` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Response`
--
DROP TABLE IF EXISTS `Response`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Response` (
`id` bigint(15) NOT NULL COMMENT '唯一标识',
`method` varchar(10) DEFAULT 'GET' COMMENT '方法',
`model` varchar(20) NOT NULL COMMENT '表名,table是SQL关键词不能用',
`structure` json NOT NULL COMMENT '结构',
`detail` varchar(10000) DEFAULT NULL COMMENT '详细说明',
`date` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建日期',
PRIMARY KEY (`id`),
UNIQUE KEY `id_UNIQUE` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='每次启动服务器时加载整个表到内存。';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Response`
--
LOCK TABLES `Response` WRITE;
/*!40000 ALTER TABLE `Response` DISABLE KEYS */;
INSERT INTO `Response` VALUES (1,'GET','User','{\"put\": {\"extra\": \"Response works! Test:He(She) is lazy and wrote nothing here\"}, \"remove\": \"phone\"}',NULL,'2017-05-22 12:36:47'),(2,'DELETE','Comment','{\"remove\": \"Comment:child\"}',NULL,'2017-05-03 17:51:26'),(3,'DELETE','Moment','{\"remove\": \"Comment\"}',NULL,'2017-05-03 17:51:26');
/*!40000 ALTER TABLE `Response` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Test`
--
DROP TABLE IF EXISTS `Test`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Test` (
`id` tinyint(2) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='测试及验证用的表,可以用 SELECT condition替代 SELECT * FROM Test WHERE condition,这样就不需要这张表了';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Test`
--
LOCK TABLES `Test` WRITE;
/*!40000 ALTER TABLE `Test` DISABLE KEYS */;
INSERT INTO `Test` VALUES (1);
/*!40000 ALTER TABLE `Test` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `TestRecord`
--
DROP TABLE IF EXISTS `TestRecord`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `TestRecord` (
`id` bigint(15) NOT NULL COMMENT '唯一标识',
`userId` bigint(15) NOT NULL COMMENT '用户id',
`testAccountId` bigint(15) NOT NULL DEFAULT '0',
`documentId` bigint(15) NOT NULL COMMENT '测试用例文档id',
`randomId` bigint(15) NOT NULL DEFAULT '0' COMMENT '随机配置 id',
`response` text NOT NULL COMMENT '接口返回结果JSON',
`date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建日期',
`compare` text COMMENT '对比结果',
`standard` text COMMENT 'response 的校验标准,是一个 JSON 格式的 AST ,描述了正确 Response 的结构、里面的字段名称、类型、长度、取值范围 等属性。',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='测试记录\n主要用于保存自动化接口回归测试';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `TestRecord`
--
LOCK TABLES `TestRecord` WRITE;
/*!40000 ALTER TABLE `TestRecord` DISABLE KEYS */;
INSERT INTO `TestRecord` VALUES (1520087199083,82001,0,1519526273822,0,'{\"[]\":[{\"User\":{\"id\":82002,\"sex\":1,\"name\":\"Happy~\",\"tag\":\"iOS\",\"head\":\"http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000\",\"contactIdList\":[82005,82001,38710,93793],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82003,\"sex\":1,\"name\":\"Wechat\",\"head\":\"http://common.cnblogs.com/images/wechat.png\",\"contactIdList\":[82001,93793],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82005,\"sex\":1,\"name\":\"Jan\",\"tag\":\"AG\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[82001,38710],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82006,\"sex\":1,\"name\":\"Meria\",\"head\":\"http://static.oschina.net/uploads/user/998/1997902_50.jpg?t=1407806577000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82021,\"sex\":1,\"name\":\"Tommy\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82025,\"sex\":1,\"name\":\"Tommy\",\"head\":\"http://static.oschina.net/uploads/user/629/1258821_50.jpg?t=1378063141000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82028,\"sex\":1,\"name\":\"gaeg\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82030,\"sex\":1,\"name\":\"Fun\",\"head\":\"http://static.oschina.net/uploads/user/998/1997902_50.jpg?t=1407806577000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82033,\"sex\":1,\"name\":\"GAS\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82034,\"sex\":1,\"name\":\"Jump\",\"head\":\"http://static.oschina.net/uploads/user/1332/2664107_50.jpg?t=1457405500000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82035,\"sex\":1,\"name\":\"Tab\",\"head\":\"http://static.oschina.net/uploads/user/629/1258821_50.jpg?t=1378063141000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82039,\"sex\":1,\"name\":\"Everyday\",\"head\":\"http://common.cnblogs.com/images/icon_weibo_24.png\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-19 21:57:56.0\"}},{\"User\":{\"id\":82040,\"sex\":1,\"name\":\"Dream\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[70793],\"pictureList\":[],\"date\":\"2017-03-03 00:44:26.0\"}},{\"User\":{\"id\":82042,\"sex\":1,\"name\":\"Why\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-04 18:04:33.0\"}},{\"User\":{\"id\":82044,\"sex\":1,\"name\":\"Love\",\"head\":\"http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000\",\"contactIdList\":[82006],\"pictureList\":[],\"date\":\"2017-03-04 18:20:27.0\"}},{\"User\":{\"id\":82055,\"sex\":1,\"name\":\"Solid\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\",\"contactIdList\":[38710,82002],\"pictureList\":[],\"date\":\"2017-03-11 23:04:00.0\"}},{\"User\":{\"id\":82056,\"sex\":1,\"name\":\"IronMan\",\"head\":\"http://static.oschina.net/uploads/user/48/96289_50.jpg?t=1452751699000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-11 23:32:25.0\"}},{\"User\":{\"id\":82059,\"sex\":1,\"name\":\"He&She\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-19 22:49:15.0\"}},{\"User\":{\"id\":82060,\"sex\":1,\"name\":\"Anyway~\",\"head\":\"http://static.oschina.net/uploads/user/1/3064_50.jpg?t=1449566001000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-21 22:10:18.0\"}},{\"User\":{\"id\":1490109742863,\"sex\":1,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-21 23:22:22.0\"}},{\"User\":{\"id\":1490420651686,\"sex\":1,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[70793],\"pictureList\":[],\"date\":\"2017-03-25 13:44:11.0\"}},{\"User\":{\"id\":1490973670928,\"sex\":1,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[70793,93793],\"pictureList\":[],\"date\":\"2017-03-31 23:21:10.0\"}},{\"User\":{\"id\":1508072105320,\"sex\":1,\"name\":\"周吴郑王\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-10-15 20:55:05.0\"}}],\"code\":200,\"msg\":\"success\"}','2018-03-03 14:26:39',NULL,NULL),(1520087202299,82001,0,1519368532249,0,'{\"Privacy\":{\"id\":82001,\"certified\":1,\"phone\":13000082001,\"balance\":21927.05},\"code\":200,\"msg\":\"success\"}','2018-03-03 14:26:42',NULL,NULL),(1520087205329,82001,0,1511969630372,0,'{\"Comment\":{\"code\":200,\"msg\":\"success\",\"id\":1520087181598,\"count\":1},\"code\":200,\"msg\":\"success\"}','2018-03-03 14:26:45',NULL,NULL),(1520088798322,82001,0,1519526273822,0,'{\"Document[]\":[{\"id\":1519526273822,\"userId\":82001,\"version\":2,\"compare\":2,\"name\":\"gets请求\",\"url\":\"/gets\",\"request\":\"{\n \"Privacy\": {\n \"id\": 82001\n },\n \"tag\": \"Privacy\"\n}\",\"date\":\"2018-02-25 10:37:53.0\"},{\"id\":1519368532249,\"userId\":82001,\"version\":2,\"compare\":1,\"name\":\"login请求\",\"url\":\"/login\",\"request\":\"{\n \"type\": 0,\n \"phone\": \"13000082001\",\n \"password\": \"123456\",\n \"version\": 1\n}\",\"date\":\"2018-02-23 14:48:52.0\"},{\"id\":1516325614520,\"userId\":82001,\"version\":2,\"compare\":0,\"name\":\"get请求\",\"url\":\"/get\",\"request\":\" {\n \"[]\":{\n \"User\":{\n \"sex\":1\n }\n }\n }\n \",\"date\":\"2018-01-19 09:33:34.0\"},{\"id\":1511963330795,\"userId\":0,\"version\":2,\"compare\":0,\"name\":\"获取文档列表(即在线解析网页上的共享)-API调用方式\",\"url\":\"/get\",\"request\":\"{\n \"Document[]\": {\n \"Document\": {\n \"@role\": \"login\",\n \"@order\": \"version-,date-\"\n }\n }\n}\",\"date\":\"2017-11-29 21:48:50.0\"},{\"id\":1512216131855,\"userId\":0,\"version\":1,\"compare\":0,\"name\":\"获取文档列表(即在线解析网页上的文档)-表和字段、请求格式限制\",\"url\":\"/get\",\"request\":\"{\n \"[]\": {\n \"Table\": {\n \"TABLE_SCHEMA\": \"sys\",\n \"TABLE_TYPE\": \"BASE TABLE\",\n \"TABLE_NAME!$\": [\n \"\\\\_%\",\n \"sys\\\\_%\",\n \"system\\\\_%\"\n ],\n \"@order\": \"TABLE_NAME+\",\n \"@column\": \"TABLE_NAME,TABLE_COMMENT\"\n },\n \"Column[]\": {\n \"Column\": {\n \"TABLE_NAME@\": \"[]/Table/TABLE_NAME\",\n \"@column\": \"COLUMN_NAME,COLUMN_TYPE,IS_NULLABLE,COLUMN_COMMENT\"\n }\n }\n },\n \"Request[]\": {\n \"Request\": {\n \"@order\": \"version-,method-\"\n }\n }\n}\",\"date\":\"2017-12-02 20:02:11.0\"},{\"id\":1511970224333,\"userId\":0,\"version\":1,\"compare\":3,\"name\":\"修改用户信息\",\"url\":\"/put\",\"request\":\"{\n \"User\": {\n \"id\": 82001,\n \"name\": \"测试改名\"\n },\n \"tag\": \"User\"\n}\",\"date\":\"2017-11-29 23:43:44.0\"},{\"id\":1511970009072,\"userId\":0,\"version\":1,\"compare\":0,\"name\":\"新增动态\",\"url\":\"/post\",\"request\":\"{\n \"Moment\": {\n \"userId\": 82001,\n \"content\": \"测试新增动态\",\n \"pictureList\": [\"http://static.oschina.net/uploads/user/48/96331_50.jpg\"\n ]\n },\n \"tag\": \"Moment\"\n}\",\"date\":\"2017-11-29 23:40:09.0\"},{\"id\":1511969630372,\"userId\":0,\"version\":1,\"compare\":4,\"name\":\"新增评论\",\"url\":\"/post\",\"request\":\"{\n \"Comment\": {\n \"userId\": 82001,\n \"momentId\": 15,\n \"content\": \"测试新增评论\"\n },\n \"tag\": \"Comment\"\n}\",\"date\":\"2017-11-29 23:33:50.0\"},{\"id\":1511969417633,\"userId\":0,\"version\":1,\"compare\":0,\"name\":\"点赞/取消点赞\",\"url\":\"/put\",\"request\":\"{\n \"Moment\": {\n \"id\": 15,\n \"praiseUserIdList-\": [\n 82001\n ]\n },\n \"tag\": \"Moment\"\n}\",\"date\":\"2017-11-29 23:30:17.0\"},{\"id\":1511969181104,\"userId\":0,\"version\":1,\"compare\":0,\"name\":\"添加朋友\",\"url\":\"/put\",\"request\":\"{\n \"User\": {\n \"id\": 82001,\n \"contactIdList+\": [93793]\n },\n \"tag\": \"User\"\n}\",\"date\":\"2017-11-29 23:26:21.0\"},{\"id\":1511967853340,\"userId\":0,\"version\":1,\"compare\":0,\"name\":\"获取动态列表Moment+User+User:parise[]+Comment[]\",\"url\":\"/get\",\"request\":\"{\n \"[]\": {\n \"count\": 5,\n \"page\": 0,\n \"Moment\": {\n \"@order\": \"date-\"\n },\n \"User\": {\n \"id@\": \"/Moment/userId\",\n \"@column\": \"id,name,head\"\n },\n \"User[]\": {\n \"count\": 10,\n \"User\": {\n \"id{}@\": \"[]/Moment/praiseUserIdList\",\n \"@column\": \"id,name\"\n }\n },\n \"[]\": {\n \"count\": 6,\n \"Comment\": {\n \"@order\": \"date+\",\n \"momentId@\": \"[]/Moment/id\"\n },\n \"User\": {\n \"id@\": \"/Comment/userId\",\n \"@column\": \"id,name\"\n }\n }\n }\n}\",\"date\":\"2017-11-29 23:04:13.0\"},{\"id\":1511964176689,\"userId\":0,\"version\":1,\"compare\":0,\"name\":\"获取评论列表-动态详情页Comment+User\",\"url\":\"/get\",\"request\":\"{\n \"[]\": {\n \"count\": 20,\n \"page\": 0,\n \"Comment\": {\n \"@order\": \"date+\",\n \"momentId\": 15\n },\n \"User\": {\n \"id@\": \"/Comment/userId\",\n \"@column\": \"id,name,head\"\n }\n }\n}\",\"date\":\"2017-11-29 22:02:56.0\"},{\"id\":1511963990072,\"userId\":0,\"version\":1,\"compare\":0,\"name\":\"获取动态Moment+User+praiseUserList\",\"url\":\"/get\",\"request\":\"{\n \"Moment\": {\n \"id\": 15\n },\n \"User\": {\n \"id@\": \"Moment/userId\",\n \"@column\": \"id,name,head\"\n },\n \"User[]\": {\n \"count\": 10,\n \"User\": {\n \"id{}@\": \"Moment/praiseUserIdList\",\n \"@column\": \"id,name\"\n }\n }\n}\",\"date\":\"2017-11-29 21:59:50.0\"},{\"id\":1511963722970,\"userId\":0,\"version\":1,\"compare\":0,\"name\":\"获取用户列表(\"id{}\":contactIdList)-朋友页\",\"url\":\"/get\",\"request\":\"{\n \"User[]\": {\n \"count\": 10,\n \"page\": 0,\n \"User\": {\n \"@column\": \"id,sex,name,tag,head\",\n \"@order\": \"name+\",\n \"id{}\": [\n 82002,\n 82004,\n 70793\n ]\n }\n }\n}\",\"date\":\"2017-11-29 21:55:22.0\"},{\"id\":1511963677325,\"userId\":0,\"version\":1,\"compare\":1,\"name\":\"获取用户\",\"url\":\"/get\",\"request\":\"{\"User\": {\"id\": 82001}}\",\"date\":\"2017-11-29 21:54:37.0\"},{\"id\":1511796882184,\"userId\":0,\"version\":1,\"compare\":0,\"name\":\"充值(需要支付密码)/提现\",\"url\":\"/put/balance\",\"request\":\"{\"tag\": \"Privacy\", \"Privacy\": {\"id\": 82001, \"balance+\": 100.15, \"_payPassword\": \"123456\"}}\",\"date\":\"2017-11-27 23:34:42.0\"},{\"id\":1511796589079,\"userId\":0,\"version\":1,\"compare\":0,\"name\":\"修改登录密码(先获取验证码type:2)-手机号+验证码\",\"url\":\"/put/password\",\"request\":\"{\"verify\": \"10322\", \"Privacy\": {\"phone\": \"13000082001\", \"_password\": \"666666\"}}\",\"date\":\"2017-11-27 23:29:49.0\"},{\"id\":1511796208670,\"userId\":0,\"version\":1,\"compare\":0,\"name\":\"检查验证码是否存在\",\"url\":\"/heads/verify\",\"request\":\"{\"type\": 0, \"phone\": \"13000082001\"}\",\"date\":\"2017-11-27 23:23:28.0\"},{\"id\":1511796155277,\"userId\":0,\"version\":1,\"compare\":0,\"name\":\"获取验证码\",\"url\":\"/post/verify\",\"request\":\"{\"type\": 0, \"phone\": \"13000082001\"}\",\"date\":\"2017-11-27 23:22:35.0\"},{\"id\":3,\"userId\":0,\"version\":1,\"compare\":0,\"name\":\"退出登录\",\"url\":\"/logout\",\"request\":\"{}\",\"date\":\"2017-11-26 17:56:10.0\"},{\"id\":1511689914599,\"userId\":0,\"version\":1,\"compare\":0,\"name\":\"获取用户隐私信息\",\"url\":\"/gets\",\"request\":\"{\"tag\": \"Privacy\", \"Privacy\": {\"id\": 82001}}\",\"date\":\"2017-11-26 17:51:54.0\"},{\"id\":1,\"userId\":0,\"version\":1,\"compare\":0,\"name\":\"登录\",\"url\":\"/login\",\"request\":\"{\"type\": 0, \"phone\": \"13000082001\", \"version\": 1, \"password\": \"123456\"}\",\"date\":\"2017-11-26 15:35:19.0\"},{\"id\":2,\"userId\":0,\"version\":1,\"compare\":0,\"name\":\"注册(先获取验证码type:1)\",\"url\":\"/register\",\"request\":\"{\n \"Privacy\": {\n \"phone\": \"13000083333\",\n \"_password\": \"123456\"\n },\n \"User\": {\n \"name\": \"APIJSONUser\"\n },\n \"verify\": \"6840\"\n}\"}],\"code\":200,\"msg\":\"success\"}','2018-03-03 14:53:18',NULL,NULL),(1520088802486,82001,0,1511970224333,0,'{\"Comment\":{\"code\":200,\"msg\":\"success\",\"id\":1520088770429,\"count\":1},\"code\":200,\"msg\":\"success\"}','2018-03-03 14:53:22',NULL,NULL),(1520088813403,82001,0,1511969630372,0,'{\"Moment\":{\"id\":15,\"praiseUserIdList-\":[82001]},\"code\":417,\"msg\":\"PUT Moment, praiseUserIdList:82001 不存在!\"}','2018-03-03 14:53:33',NULL,NULL),(1520088985525,82001,0,1511963677325,0,'{\"code\":412,\"msg\":\"手机号或验证码错误!\"}','2018-03-03 14:56:25',NULL,NULL),(1520089316891,82001,0,1519368532249,0,'{\"User\":{\"code\":200,\"msg\":\"success\",\"id\":82001,\"count\":1},\"code\":200,\"msg\":\"success\"}','2018-03-03 15:01:56',NULL,NULL),(1520089324108,82001,0,1511970224333,0,'{\"Comment\":{\"code\":200,\"msg\":\"success\",\"id\":1520089307634,\"count\":1},\"code\":200,\"msg\":\"success\"}','2018-03-03 15:02:04',NULL,NULL),(1520089326569,82001,0,1511969630372,0,'{\"[]\":[{\"User\":{\"id\":82002,\"sex\":1,\"name\":\"Happy~\",\"tag\":\"iOS\",\"head\":\"http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000\",\"contactIdList\":[82005,82001,38710,93793],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82003,\"sex\":1,\"name\":\"Wechat\",\"head\":\"http://common.cnblogs.com/images/wechat.png\",\"contactIdList\":[82001,93793],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82005,\"sex\":1,\"name\":\"Jan\",\"tag\":\"AG\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[82001,38710],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82006,\"sex\":1,\"name\":\"Meria\",\"head\":\"http://static.oschina.net/uploads/user/998/1997902_50.jpg?t=1407806577000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82021,\"sex\":1,\"name\":\"Tommy\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82025,\"sex\":1,\"name\":\"Tommy\",\"head\":\"http://static.oschina.net/uploads/user/629/1258821_50.jpg?t=1378063141000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82028,\"sex\":1,\"name\":\"gaeg\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82030,\"sex\":1,\"name\":\"Fun\",\"head\":\"http://static.oschina.net/uploads/user/998/1997902_50.jpg?t=1407806577000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82033,\"sex\":1,\"name\":\"GAS\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82034,\"sex\":1,\"name\":\"Jump\",\"head\":\"http://static.oschina.net/uploads/user/1332/2664107_50.jpg?t=1457405500000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82035,\"sex\":1,\"name\":\"Tab\",\"head\":\"http://static.oschina.net/uploads/user/629/1258821_50.jpg?t=1378063141000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82039,\"sex\":1,\"name\":\"Everyday\",\"head\":\"http://common.cnblogs.com/images/icon_weibo_24.png\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-19 21:57:56.0\"}},{\"User\":{\"id\":82040,\"sex\":1,\"name\":\"Dream\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[70793],\"pictureList\":[],\"date\":\"2017-03-03 00:44:26.0\"}},{\"User\":{\"id\":82042,\"sex\":1,\"name\":\"Why\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-04 18:04:33.0\"}},{\"User\":{\"id\":82044,\"sex\":1,\"name\":\"Love\",\"head\":\"http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000\",\"contactIdList\":[82006],\"pictureList\":[],\"date\":\"2017-03-04 18:20:27.0\"}},{\"User\":{\"id\":82055,\"sex\":1,\"name\":\"Solid\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\",\"contactIdList\":[38710,82002],\"pictureList\":[],\"date\":\"2017-03-11 23:04:00.0\"}},{\"User\":{\"id\":82056,\"sex\":1,\"name\":\"IronMan\",\"head\":\"http://static.oschina.net/uploads/user/48/96289_50.jpg?t=1452751699000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-11 23:32:25.0\"}},{\"User\":{\"id\":82059,\"sex\":1,\"name\":\"He&She\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-19 22:49:15.0\"}},{\"User\":{\"id\":82060,\"sex\":1,\"name\":\"Anyway~\",\"head\":\"http://static.oschina.net/uploads/user/1/3064_50.jpg?t=1449566001000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-21 22:10:18.0\"}},{\"User\":{\"id\":1490109742863,\"sex\":1,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-21 23:22:22.0\"}},{\"User\":{\"id\":1490420651686,\"sex\":1,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[70793],\"pictureList\":[],\"date\":\"2017-03-25 13:44:11.0\"}},{\"User\":{\"id\":1490973670928,\"sex\":1,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[70793,93793],\"pictureList\":[],\"date\":\"2017-03-31 23:21:10.0\"}},{\"User\":{\"id\":1508072105320,\"sex\":1,\"name\":\"周吴郑王\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-10-15 20:55:05.0\"}}],\"code\":200,\"msg\":\"success\"}','2018-03-03 15:02:06',NULL,NULL),(1520089328891,82001,0,1511963677325,0,'{\"code\":412,\"msg\":\"手机号或验证码错误!\"}','2018-03-03 15:02:08',NULL,NULL),(1520089695229,82001,0,2,0,'{\"Document[]\":[{\"id\":1519526273822,\"userId\":82001,\"version\":2,\"name\":\"gets请求\",\"url\":\"/gets\",\"request\":\"{\n \"Privacy\": {\n \"id\": 82001\n },\n \"tag\": \"Privacy\"\n}\",\"response\":\"{\"Document[]\":[{\"id\":1519526273822,\"userId\":82001,\"version\":2,\"compare\":2,\"name\":\"gets请求\",\"url\":\"/gets\",\"request\":\"{\n \"Privacy\": {\n \"id\": 82001\n },\n \"tag\": \"Privacy\"\n}\",\"date\":\"2018-02-25 10:37:53.0\"},{\"id\":1519368532249,\"userId\":82001,\"version\":2,\"compare\":1,\"name\":\"login请求\",\"url\":\"/login\",\"request\":\"{\n \"type\": 0,\n \"phone\": \"13000082001\",\n \"password\": \"123456\",\n \"version\": 1\n}\",\"date\":\"2018-02-23 14:48:52.0\"},{\"id\":1516325614520,\"userId\":82001,\"version\":2,\"compare\":0,\"name\":\"get请求\",\"url\":\"/get\",\"request\":\" {\n \"[]\":{\n \"User\":{\n \"sex\":1\n }\n }\n }\n \",\"date\":\"2018-01-19 09:33:34.0\"},{\"id\":1511963330795,\"userId\":0,\"version\":2,\"compare\":0,\"name\":\"获取文档列表(即在线解析网页上的共享)-API调用方式\",\"url\":\"/get\",\"request\":\"{\n \"Document[]\": {\n \"Document\": {\n \"@role\": \"login\",\n \"@order\": \"version-,date-\"\n }\n }\n}\",\"date\":\"2017-11-29 21:48:50.0\"},{\"id\":1512216131855,\"userId\":0,\"version\":1,\"compare\":0,\"name\":\"获取文档列表(即在线解析网页上的文档)-表和字段、请求格式限制\",\"url\":\"/get\",\"request\":\"{\n \"[]\": {\n \"Table\": {\n \"TABLE_SCHEMA\": \"sys\",\n \"TABLE_TYPE\": \"BASE TABLE\",\n \"TABLE_NAME!$\": [\n \"\\\\_%\",\n \"sys\\\\_%\",\n \"system\\\\_%\"\n ],\n \"@order\": \"TABLE_NAME+\",\n \"@column\": \"TABLE_NAME,TABLE_COMMENT\"\n },\n \"Column[]\": {\n \"Column\": {\n \"TABLE_NAME@\": \"[]/Table/TABLE_NAME\",\n \"@column\": \"COLUMN_NAME,COLUMN_TYPE,IS_NULLABLE,COLUMN_COMMENT\"\n }\n }\n },\n \"Request[]\": {\n \"Request\": {\n \"@order\": \"version-,method-\"\n }\n }\n}\",\"date\":\"2017-12-02 20:02:11.0\"},{\"id\":1511970224333,\"userId\":0,\"version\":1,\"compare\":3,\"name\":\"修改用户信息\",\"url\":\"/put\",\"request\":\"{\n \"User\": {\n \"id\": 82001,\n \"name\": \"测试改名\"\n },\n \"tag\": \"User\"\n}\",\"date\":\"2017-11-29 23:43:44.0\"},{\"id\":1511970009072,\"userId\":0,\"version\":1,\"compare\":0,\"name\":\"新增动态\",\"url\":\"/post\",\"request\":\"{\n \"Moment\": {\n \"userId\": 82001,\n \"content\": \"测试新增动态\",\n \"pictureList\": [\"http://static.oschina.net/uploads/user/48/96331_50.jpg\"\n ]\n },\n \"tag\": \"Moment\"\n}\",\"date\":\"2017-11-29 23:40:09.0\"},{\"id\":1511969630372,\"userId\":0,\"version\":1,\"compare\":4,\"name\":\"新增评论\",\"url\":\"/post\",\"request\":\"{\n \"Comment\": {\n \"userId\": 82001,\n \"momentId\": 15,\n \"content\": \"测试新增评论\"\n },\n \"tag\": \"Comment\"\n}\",\"date\":\"2017-11-29 23:33:50.0\"},{\"id\":1511969417633,\"userId\":0,\"version\":1,\"compare\":0,\"name\":\"点赞/取消点赞\",\"url\":\"/put\",\"request\":\"{\n \"Moment\": {\n \"id\": 15,\n \"praiseUserIdList-\": [\n 82001\n ]\n },\n \"tag\": \"Moment\"\n}\",\"date\":\"2017-11-29 23:30:17.0\"},{\"id\":1511969181104,\"userId\":0,\"version\":1,\"compare\":0,\"name\":\"添加朋友\",\"url\":\"/put\",\"request\":\"{\n \"User\": {\n \"id\": 82001,\n \"contactIdList+\": [93793]\n },\n \"tag\": \"User\"\n}\",\"date\":\"2017-11-29 23:26:21.0\"},{\"id\":1511967853340,\"userId\":0,\"version\":1,\"compare\":0,\"name\":\"获取动态列表Moment+User+User:parise[]+Comment[]\",\"url\":\"/get\",\"request\":\"{\n \"[]\": {\n \"count\": 5,\n \"page\": 0,\n \"Moment\": {\n \"@order\": \"date-\"\n },\n \"User\": {\n \"id@\": \"/Moment/userId\",\n \"@column\": \"id,name,head\"\n },\n \"User[]\": {\n \"count\": 10,\n \"User\": {\n \"id{}@\": \"[]/Moment/praiseUserIdList\",\n \"@column\": \"id,name\"\n }\n },\n \"[]\": {\n \"count\": 6,\n \"Comment\": {\n \"@order\": \"date+\",\n \"momentId@\": \"[]/Moment/id\"\n },\n \"User\": {\n \"id@\": \"/Comment/userId\",\n \"@column\": \"id,name\"\n }\n }\n }\n}\",\"date\":\"2017-11-29 23:04:13.0\"},{\"id\":1511964176689,\"userId\":0,\"version\":1,\"compare\":0,\"name\":\"获取评论列表-动态详情页Comment+User\",\"url\":\"/get\",\"request\":\"{\n \"[]\": {\n \"count\": 20,\n \"page\": 0,\n \"Comment\": {\n \"@order\": \"date+\",\n \"momentId\": 15\n },\n \"User\": {\n \"id@\": \"/Comment/userId\",\n \"@column\": \"id,name,head\"\n }\n }\n}\",\"date\":\"2017-11-29 22:02:56.0\"},{\"id\":1511963990072,\"userId\":0,\"version\":1,\"compare\":0,\"name\":\"获取动态Moment+User+praiseUserList\",\"url\":\"/get\",\"request\":\"{\n \"Moment\": {\n \"id\": 15\n },\n \"User\": {\n \"id@\": \"Moment/userId\",\n \"@column\": \"id,name,head\"\n },\n \"User[]\": {\n \"count\": 10,\n \"User\": {\n \"id{}@\": \"Moment/praiseUserIdList\",\n \"@column\": \"id,name\"\n }\n }\n}\",\"date\":\"2017-11-29 21:59:50.0\"},{\"id\":1511963722970,\"userId\":0,\"version\":1,\"compare\":0,\"name\":\"获取用户列表(\"id{}\":contactIdList)-朋友页\",\"url\":\"/get\",\"request\":\"{\n \"User[]\": {\n \"count\": 10,\n \"page\": 0,\n \"User\": {\n \"@column\": \"id,sex,name,tag,head\",\n \"@order\": \"name+\",\n \"id{}\": [\n 82002,\n 82004,\n 70793\n ]\n }\n }\n}\",\"date\":\"2017-11-29 21:55:22.0\"},{\"id\":1511963677325,\"userId\":0,\"version\":1,\"compare\":1,\"name\":\"获取用户\",\"url\":\"/get\",\"request\":\"{\"User\": {\"id\": 82001}}\",\"date\":\"2017-11-29 21:54:37.0\"},{\"id\":1511796882184,\"userId\":0,\"version\":1,\"compare\":0,\"name\":\"充值(需要支付密码)/提现\",\"url\":\"/put/balance\",\"request\":\"{\"tag\": \"Privacy\", \"Privacy\": {\"id\": 82001, \"balance+\": 100.15, \"_payPassword\": \"123456\"}}\",\"date\":\"2017-11-27 23:34:42.0\"},{\"id\":1511796589079,\"userId\":0,\"version\":1,\"compare\":0,\"name\":\"修改登录密码(先获取验证码type:2)-手机号+验证码\",\"url\":\"/put/password\",\"request\":\"{\"verify\": \"10322\", \"Privacy\": {\"phone\": \"13000082001\", \"_password\": \"666666\"}}\",\"date\":\"2017-11-27 23:29:49.0\"},{\"id\":1511796208670,\"userId\":0,\"version\":1,\"compare\":0,\"name\":\"检查验证码是否存在\",\"url\":\"/heads/verify\",\"request\":\"{\"type\": 0, \"phone\": \"13000082001\"}\",\"date\":\"2017-11-27 23:23:28.0\"},{\"id\":1511796155277,\"userId\":0,\"version\":1,\"compare\":0,\"name\":\"获取验证码\",\"url\":\"/post/verify\",\"request\":\"{\"type\": 0, \"phone\": \"13000082001\"}\",\"date\":\"2017-11-27 23:22:35.0\"},{\"id\":3,\"userId\":0,\"version\":1,\"compare\":0,\"name\":\"退出登录\",\"url\":\"/logout\",\"request\":\"{}\",\"date\":\"2017-11-26 17:56:10.0\"},{\"id\":1511689914599,\"userId\":0,\"version\":1,\"compare\":0,\"name\":\"获取用户隐私信息\",\"url\":\"/gets\",\"request\":\"{\"tag\": \"Privacy\", \"Privacy\": {\"id\": 82001}}\",\"date\":\"2017-11-26 17:51:54.0\"},{\"id\":1,\"userId\":0,\"version\":1,\"compare\":0,\"name\":\"登录\",\"url\":\"/login\",\"request\":\"{\"type\": 0, \"phone\": \"13000082001\", \"version\": 1, \"password\": \"123456\"}\",\"date\":\"2017-11-26 15:35:19.0\"},{\"id\":2,\"userId\":0,\"version\":1,\"compare\":0,\"name\":\"注册(先获取验证码type:1)\",\"url\":\"/register\",\"request\":\"{\n \"Privacy\": {\n \"phone\": \"13000083333\",\n \"_password\": \"123456\"\n },\n \"User\": {\n \"name\": \"APIJSONUser\"\n },\n \"verify\": \"6840\"\n}\"}],\"code\":200,\"msg\":\"success\"}\",\"date\":\"2018-02-25 10:37:53.0\"},{\"id\":1519368532249,\"userId\":82001,\"version\":2,\"name\":\"login请求\",\"url\":\"/login\",\"request\":\"{\n \"type\": 0,\n \"phone\": \"13000082001\",\n \"password\": \"123456\",\n \"version\": 1\n}\",\"response\":\"{\"User\":{\"code\":200,\"msg\":\"success\",\"id\":82001,\"count\":1},\"code\":200,\"msg\":\"success\"}\",\"date\":\"2018-02-23 14:48:52.0\"},{\"id\":1516325614520,\"userId\":82001,\"version\":2,\"name\":\"get请求\",\"url\":\"/get\",\"request\":\" {\n \"[]\":{\n \"User\":{\n \"sex\":1\n }\n }\n }\n \",\"date\":\"2018-01-19 09:33:34.0\"},{\"id\":1511963330795,\"userId\":0,\"version\":2,\"name\":\"获取文档列表(即在线解析网页上的共享)-API调用方式\",\"url\":\"/get\",\"request\":\"{\n \"Document[]\": {\n \"Document\": {\n \"@role\": \"login\",\n \"@order\": \"version-,date-\"\n }\n }\n}\",\"date\":\"2017-11-29 21:48:50.0\"},{\"id\":1512216131855,\"userId\":0,\"version\":1,\"name\":\"获取文档列表(即在线解析网页上的文档)-表和字段、请求格式限制\",\"url\":\"/get\",\"request\":\"{\n \"[]\": {\n \"Table\": {\n \"TABLE_SCHEMA\": \"sys\",\n \"TABLE_TYPE\": \"BASE TABLE\",\n \"TABLE_NAME!$\": [\n \"\\\\_%\",\n \"sys\\\\_%\",\n \"system\\\\_%\"\n ],\n \"@order\": \"TABLE_NAME+\",\n \"@column\": \"TABLE_NAME,TABLE_COMMENT\"\n },\n \"Column[]\": {\n \"Column\": {\n \"TABLE_NAME@\": \"[]/Table/TABLE_NAME\",\n \"@column\": \"COLUMN_NAME,COLUMN_TYPE,IS_NULLABLE,COLUMN_COMMENT\"\n }\n }\n },\n \"Request[]\": {\n \"Request\": {\n \"@order\": \"version-,method-\"\n }\n }\n}\",\"date\":\"2017-12-02 20:02:11.0\"},{\"id\":1511970224333,\"userId\":0,\"version\":1,\"name\":\"修改用户信息\",\"url\":\"/put\",\"request\":\"{\n \"User\": {\n \"id\": 82001,\n \"name\": \"测试改名\"\n },\n \"tag\": \"User\"\n}\",\"date\":\"2017-11-29 23:43:44.0\"},{\"id\":1511970009072,\"userId\":0,\"version\":1,\"name\":\"新增动态\",\"url\":\"/post\",\"request\":\"{\n \"Moment\": {\n \"userId\": 82001,\n \"content\": \"测试新增动态\",\n \"pictureList\": [\"http://static.oschina.net/uploads/user/48/96331_50.jpg\"\n ]\n },\n \"tag\": \"Moment\"\n}\",\"date\":\"2017-11-29 23:40:09.0\"},{\"id\":1511969630372,\"userId\":0,\"version\":1,\"name\":\"新增评论\",\"url\":\"/post\",\"request\":\"{\n \"Comment\": {\n \"userId\": 82001,\n \"momentId\": 15,\n \"content\": \"测试新增评论\"\n },\n \"tag\": \"Comment\"\n}\",\"date\":\"2017-11-29 23:33:50.0\"},{\"id\":1511969417633,\"userId\":0,\"version\":1,\"name\":\"点赞/取消点赞\",\"url\":\"/put\",\"request\":\"{\n \"Moment\": {\n \"id\": 15,\n \"praiseUserIdList-\": [\n 82001\n ]\n },\n \"tag\": \"Moment\"\n}\",\"date\":\"2017-11-29 23:30:17.0\"},{\"id\":1511969181104,\"userId\":0,\"version\":1,\"name\":\"添加朋友\",\"url\":\"/put\",\"request\":\"{\n \"User\": {\n \"id\": 82001,\n \"contactIdList+\": [93793]\n },\n \"tag\": \"User\"\n}\",\"date\":\"2017-11-29 23:26:21.0\"},{\"id\":1511967853340,\"userId\":0,\"version\":1,\"name\":\"获取动态列表Moment+User+User:parise[]+Comment[]\",\"url\":\"/get\",\"request\":\"{\n \"[]\": {\n \"count\": 5,\n \"page\": 0,\n \"Moment\": {\n \"@order\": \"date-\"\n },\n \"User\": {\n \"id@\": \"/Moment/userId\",\n \"@column\": \"id,name,head\"\n },\n \"User[]\": {\n \"count\": 10,\n \"User\": {\n \"id{}@\": \"[]/Moment/praiseUserIdList\",\n \"@column\": \"id,name\"\n }\n },\n \"[]\": {\n \"count\": 6,\n \"Comment\": {\n \"@order\": \"date+\",\n \"momentId@\": \"[]/Moment/id\"\n },\n \"User\": {\n \"id@\": \"/Comment/userId\",\n \"@column\": \"id,name\"\n }\n }\n }\n}\",\"date\":\"2017-11-29 23:04:13.0\"},{\"id\":1511964176689,\"userId\":0,\"version\":1,\"name\":\"获取评论列表-动态详情页Comment+User\",\"url\":\"/get\",\"request\":\"{\n \"[]\": {\n \"count\": 20,\n \"page\": 0,\n \"Comment\": {\n \"@order\": \"date+\",\n \"momentId\": 15\n },\n \"User\": {\n \"id@\": \"/Comment/userId\",\n \"@column\": \"id,name,head\"\n }\n }\n}\",\"date\":\"2017-11-29 22:02:56.0\"},{\"id\":1511963990072,\"userId\":0,\"version\":1,\"name\":\"获取动态Moment+User+praiseUserList\",\"url\":\"/get\",\"request\":\"{\n \"Moment\": {\n \"id\": 15\n },\n \"User\": {\n \"id@\": \"Moment/userId\",\n \"@column\": \"id,name,head\"\n },\n \"User[]\": {\n \"count\": 10,\n \"User\": {\n \"id{}@\": \"Moment/praiseUserIdList\",\n \"@column\": \"id,name\"\n }\n }\n}\",\"date\":\"2017-11-29 21:59:50.0\"},{\"id\":1511963722970,\"userId\":0,\"version\":1,\"name\":\"获取用户列表(\"id{}\":contactIdList)-朋友页\",\"url\":\"/get\",\"request\":\"{\n \"User[]\": {\n \"count\": 10,\n \"page\": 0,\n \"User\": {\n \"@column\": \"id,sex,name,tag,head\",\n \"@order\": \"name+\",\n \"id{}\": [\n 82002,\n 82004,\n 70793\n ]\n }\n }\n}\",\"date\":\"2017-11-29 21:55:22.0\"},{\"id\":1511963677325,\"userId\":0,\"version\":1,\"name\":\"获取用户\",\"url\":\"/get\",\"request\":\"{\"User\": {\"id\": 82001}}\",\"date\":\"2017-11-29 21:54:37.0\"},{\"id\":1511796882184,\"userId\":0,\"version\":1,\"name\":\"充值(需要支付密码)/提现\",\"url\":\"/put/balance\",\"request\":\"{\"tag\": \"Privacy\", \"Privacy\": {\"id\": 82001, \"balance+\": 100.15, \"_payPassword\": \"123456\"}}\",\"date\":\"2017-11-27 23:34:42.0\"},{\"id\":1511796589079,\"userId\":0,\"version\":1,\"name\":\"修改登录密码(先获取验证码type:2)-手机号+验证码\",\"url\":\"/put/password\",\"request\":\"{\"verify\": \"10322\", \"Privacy\": {\"phone\": \"13000082001\", \"_password\": \"666666\"}}\",\"date\":\"2017-11-27 23:29:49.0\"},{\"id\":1511796208670,\"userId\":0,\"version\":1,\"name\":\"检查验证码是否存在\",\"url\":\"/heads/verify\",\"request\":\"{\"type\": 0, \"phone\": \"13000082001\"}\",\"date\":\"2017-11-27 23:23:28.0\"},{\"id\":1511796155277,\"userId\":0,\"version\":1,\"name\":\"获取验证码\",\"url\":\"/post/verify\",\"request\":\"{\"type\": 0, \"phone\": \"13000082001\"}\",\"date\":\"2017-11-27 23:22:35.0\"},{\"id\":3,\"userId\":0,\"version\":1,\"name\":\"退出登录\",\"url\":\"/logout\",\"request\":\"{}\",\"date\":\"2017-11-26 17:56:10.0\"},{\"id\":1511689914599,\"userId\":0,\"version\":1,\"name\":\"获取用户隐私信息\",\"url\":\"/gets\",\"request\":\"{\"tag\": \"Privacy\", \"Privacy\": {\"id\": 82001}}\",\"date\":\"2017-11-26 17:51:54.0\"},{\"id\":1,\"userId\":0,\"version\":1,\"name\":\"登录\",\"url\":\"/login\",\"request\":\"{\"type\": 0, \"phone\": \"13000082001\", \"version\": 1, \"password\": \"123456\"}\",\"date\":\"2017-11-26 15:35:19.0\"},{\"id\":2,\"userId\":0,\"version\":1,\"name\":\"注册(先获取验证码type:1)\",\"url\":\"/register\",\"request\":\"{\n \"Privacy\": {\n \"phone\": \"13000083333\",\n \"_password\": \"123456\"\n },\n \"User\": {\n \"name\": \"APIJSONUser\"\n },\n \"verify\": \"6840\"\n}\"}],\"code\":200,\"msg\":\"success\"}','2018-03-03 15:08:15',NULL,NULL),(1520090219049,82001,0,1519526273822,0,'{\"Privacy\":{\"id\":82001,\"certified\":1,\"phone\":13000082001,\"balance\":22628.1},\"code\":200,\"msg\":\"success\"}','2018-03-03 15:16:59',NULL,NULL),(1520090220914,82001,0,1516325614520,0,'{\"[]\":[{\"User\":{\"id\":82002,\"sex\":1,\"name\":\"Happy~\",\"tag\":\"iOS\",\"head\":\"http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000\",\"contactIdList\":[82005,82001,38710,93793],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82003,\"sex\":1,\"name\":\"Wechat\",\"head\":\"http://common.cnblogs.com/images/wechat.png\",\"contactIdList\":[82001,93793],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82005,\"sex\":1,\"name\":\"Jan\",\"tag\":\"AG\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[82001,38710],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82006,\"sex\":1,\"name\":\"Meria\",\"head\":\"http://static.oschina.net/uploads/user/998/1997902_50.jpg?t=1407806577000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82021,\"sex\":1,\"name\":\"Tommy\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82025,\"sex\":1,\"name\":\"Tommy\",\"head\":\"http://static.oschina.net/uploads/user/629/1258821_50.jpg?t=1378063141000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82028,\"sex\":1,\"name\":\"gaeg\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82030,\"sex\":1,\"name\":\"Fun\",\"head\":\"http://static.oschina.net/uploads/user/998/1997902_50.jpg?t=1407806577000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82033,\"sex\":1,\"name\":\"GAS\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82034,\"sex\":1,\"name\":\"Jump\",\"head\":\"http://static.oschina.net/uploads/user/1332/2664107_50.jpg?t=1457405500000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82035,\"sex\":1,\"name\":\"Tab\",\"head\":\"http://static.oschina.net/uploads/user/629/1258821_50.jpg?t=1378063141000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82039,\"sex\":1,\"name\":\"Everyday\",\"head\":\"http://common.cnblogs.com/images/icon_weibo_24.png\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-19 21:57:56.0\"}},{\"User\":{\"id\":82040,\"sex\":1,\"name\":\"Dream\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[70793],\"pictureList\":[],\"date\":\"2017-03-03 00:44:26.0\"}},{\"User\":{\"id\":82042,\"sex\":1,\"name\":\"Why\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-04 18:04:33.0\"}},{\"User\":{\"id\":82044,\"sex\":1,\"name\":\"Love\",\"head\":\"http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000\",\"contactIdList\":[82006],\"pictureList\":[],\"date\":\"2017-03-04 18:20:27.0\"}},{\"User\":{\"id\":82055,\"sex\":1,\"name\":\"Solid\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\",\"contactIdList\":[38710,82002],\"pictureList\":[],\"date\":\"2017-03-11 23:04:00.0\"}},{\"User\":{\"id\":82056,\"sex\":1,\"name\":\"IronMan\",\"head\":\"http://static.oschina.net/uploads/user/48/96289_50.jpg?t=1452751699000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-11 23:32:25.0\"}},{\"User\":{\"id\":82059,\"sex\":1,\"name\":\"He&She\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-19 22:49:15.0\"}},{\"User\":{\"id\":82060,\"sex\":1,\"name\":\"Anyway~\",\"head\":\"http://static.oschina.net/uploads/user/1/3064_50.jpg?t=1449566001000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-21 22:10:18.0\"}},{\"User\":{\"id\":1490109742863,\"sex\":1,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-21 23:22:22.0\"}},{\"User\":{\"id\":1490420651686,\"sex\":1,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[70793],\"pictureList\":[],\"date\":\"2017-03-25 13:44:11.0\"}},{\"User\":{\"id\":1490973670928,\"sex\":1,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[70793,93793],\"pictureList\":[],\"date\":\"2017-03-31 23:21:10.0\"}},{\"User\":{\"id\":1508072105320,\"sex\":1,\"name\":\"周吴郑王\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-10-15 20:55:05.0\"}}],\"code\":200,\"msg\":\"success\"}','2018-03-03 15:17:00',NULL,NULL),(1520090222151,82001,0,1519368532249,0,'{\"User\":{\"id\":82001,\"sex\":0,\"name\":\"测试改名\",\"tag\":\"APIJSON User\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\",\"contactIdList\":[82025,70793,82034,93793,82021,82033],\"pictureList\":[\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"},\"code\":200,\"msg\":\"success\"}','2018-03-03 15:17:02',NULL,NULL),(1520090430596,82001,0,1516325614520,0,'{\"User\":{\"id\":82001,\"sex\":0,\"name\":\"测试改名\",\"tag\":\"APIJSON User\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\",\"contactIdList\":[82025,70793,82034,93793,82021,82033],\"pictureList\":[\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"},\"code\":200,\"msg\":\"success\"}','2018-03-03 15:20:30',NULL,NULL),(1520090633508,82001,0,1516325614520,0,'{\"code\":412,\"msg\":\"手机号或验证码错误!\"}','2018-03-03 15:23:53',NULL,NULL),(1520091069489,82001,0,1516325614520,0,'{\"code\":412,\"msg\":\"手机号或验证码错误!\"}','2018-03-03 15:31:09',NULL,NULL),(1520091190755,82001,0,1519368532249,0,'{\"code\":412,\"msg\":\"手机号或验证码错误!\"}','2018-03-03 15:33:10',NULL,NULL),(1520091349017,82001,0,1519526273822,0,'{\"code\":412,\"msg\":\"手机号或验证码错误!\"}','2018-03-03 15:35:49',NULL,NULL),(1520091550804,82001,0,1519526273822,0,'{\"Privacy\":{\"id\":82001,\"certified\":1,\"phone\":13000082001,\"balance\":22628.1},\"code\":200,\"msg\":\"success\"}','2018-03-03 15:39:10',NULL,NULL),(1520091551472,82001,0,1519368532249,0,'{\"User\":{\"id\":82001,\"sex\":0,\"name\":\"测试改名\",\"tag\":\"APIJSON User\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\",\"contactIdList\":[82025,70793,82034,93793,82021,82033],\"pictureList\":[\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"},\"code\":200,\"msg\":\"success\"}','2018-03-03 15:39:11',NULL,NULL),(1520091552062,82001,0,1516325614520,0,'{\"[]\":[{\"User\":{\"id\":82002,\"sex\":1,\"name\":\"Happy~\",\"tag\":\"iOS\",\"head\":\"http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000\",\"contactIdList\":[82005,82001,38710,93793],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82003,\"sex\":1,\"name\":\"Wechat\",\"head\":\"http://common.cnblogs.com/images/wechat.png\",\"contactIdList\":[82001,93793],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82005,\"sex\":1,\"name\":\"Jan\",\"tag\":\"AG\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[82001,38710],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82006,\"sex\":1,\"name\":\"Meria\",\"head\":\"http://static.oschina.net/uploads/user/998/1997902_50.jpg?t=1407806577000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82021,\"sex\":1,\"name\":\"Tommy\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82025,\"sex\":1,\"name\":\"Tommy\",\"head\":\"http://static.oschina.net/uploads/user/629/1258821_50.jpg?t=1378063141000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82028,\"sex\":1,\"name\":\"gaeg\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82030,\"sex\":1,\"name\":\"Fun\",\"head\":\"http://static.oschina.net/uploads/user/998/1997902_50.jpg?t=1407806577000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82033,\"sex\":1,\"name\":\"GAS\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82034,\"sex\":1,\"name\":\"Jump\",\"head\":\"http://static.oschina.net/uploads/user/1332/2664107_50.jpg?t=1457405500000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82035,\"sex\":1,\"name\":\"Tab\",\"head\":\"http://static.oschina.net/uploads/user/629/1258821_50.jpg?t=1378063141000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82039,\"sex\":1,\"name\":\"Everyday\",\"head\":\"http://common.cnblogs.com/images/icon_weibo_24.png\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-19 21:57:56.0\"}},{\"User\":{\"id\":82040,\"sex\":1,\"name\":\"Dream\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[70793],\"pictureList\":[],\"date\":\"2017-03-03 00:44:26.0\"}},{\"User\":{\"id\":82042,\"sex\":1,\"name\":\"Why\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-04 18:04:33.0\"}},{\"User\":{\"id\":82044,\"sex\":1,\"name\":\"Love\",\"head\":\"http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000\",\"contactIdList\":[82006],\"pictureList\":[],\"date\":\"2017-03-04 18:20:27.0\"}},{\"User\":{\"id\":82055,\"sex\":1,\"name\":\"Solid\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\",\"contactIdList\":[38710,82002],\"pictureList\":[],\"date\":\"2017-03-11 23:04:00.0\"}},{\"User\":{\"id\":82056,\"sex\":1,\"name\":\"IronMan\",\"head\":\"http://static.oschina.net/uploads/user/48/96289_50.jpg?t=1452751699000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-11 23:32:25.0\"}},{\"User\":{\"id\":82059,\"sex\":1,\"name\":\"He&She\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-19 22:49:15.0\"}},{\"User\":{\"id\":82060,\"sex\":1,\"name\":\"Anyway~\",\"head\":\"http://static.oschina.net/uploads/user/1/3064_50.jpg?t=1449566001000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-21 22:10:18.0\"}},{\"User\":{\"id\":1490109742863,\"sex\":1,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-21 23:22:22.0\"}},{\"User\":{\"id\":1490420651686,\"sex\":1,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[70793],\"pictureList\":[],\"date\":\"2017-03-25 13:44:11.0\"}},{\"User\":{\"id\":1490973670928,\"sex\":1,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[70793,93793],\"pictureList\":[],\"date\":\"2017-03-31 23:21:10.0\"}},{\"User\":{\"id\":1508072105320,\"sex\":1,\"name\":\"周吴郑王\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-10-15 20:55:05.0\"}}],\"code\":200,\"msg\":\"success\"}','2018-03-03 15:39:12',NULL,NULL),(1520091900844,82001,0,1516325614520,0,'{\"[]\":[{\"User\":{\"id\":82002,\"sex\":1,\"name\":\"Happy~\",\"tag\":\"iOS\",\"head\":\"http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000\",\"contactIdList\":[82005,82001,38710,93793],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82003,\"sex\":1,\"name\":\"Wechat\",\"head\":\"http://common.cnblogs.com/images/wechat.png\",\"contactIdList\":[82001,93793],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82005,\"sex\":1,\"name\":\"Jan\",\"tag\":\"AG\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[82001,38710],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82006,\"sex\":1,\"name\":\"Meria\",\"head\":\"http://static.oschina.net/uploads/user/998/1997902_50.jpg?t=1407806577000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82021,\"sex\":1,\"name\":\"Tommy\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82025,\"sex\":1,\"name\":\"Tommy\",\"head\":\"http://static.oschina.net/uploads/user/629/1258821_50.jpg?t=1378063141000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82028,\"sex\":1,\"name\":\"gaeg\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82030,\"sex\":1,\"name\":\"Fun\",\"head\":\"http://static.oschina.net/uploads/user/998/1997902_50.jpg?t=1407806577000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82033,\"sex\":1,\"name\":\"GAS\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82034,\"sex\":1,\"name\":\"Jump\",\"head\":\"http://static.oschina.net/uploads/user/1332/2664107_50.jpg?t=1457405500000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82035,\"sex\":1,\"name\":\"Tab\",\"head\":\"http://static.oschina.net/uploads/user/629/1258821_50.jpg?t=1378063141000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82039,\"sex\":1,\"name\":\"Everyday\",\"head\":\"http://common.cnblogs.com/images/icon_weibo_24.png\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-19 21:57:56.0\"}},{\"User\":{\"id\":82040,\"sex\":1,\"name\":\"Dream\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[70793],\"pictureList\":[],\"date\":\"2017-03-03 00:44:26.0\"}},{\"User\":{\"id\":82042,\"sex\":1,\"name\":\"Why\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-04 18:04:33.0\"}},{\"User\":{\"id\":82044,\"sex\":1,\"name\":\"Love\",\"head\":\"http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000\",\"contactIdList\":[82006],\"pictureList\":[],\"date\":\"2017-03-04 18:20:27.0\"}},{\"User\":{\"id\":82055,\"sex\":1,\"name\":\"Solid\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\",\"contactIdList\":[38710,82002],\"pictureList\":[],\"date\":\"2017-03-11 23:04:00.0\"}},{\"User\":{\"id\":82056,\"sex\":1,\"name\":\"IronMan\",\"head\":\"http://static.oschina.net/uploads/user/48/96289_50.jpg?t=1452751699000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-11 23:32:25.0\"}},{\"User\":{\"id\":82059,\"sex\":1,\"name\":\"He&She\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-19 22:49:15.0\"}},{\"User\":{\"id\":82060,\"sex\":1,\"name\":\"Anyway~\",\"head\":\"http://static.oschina.net/uploads/user/1/3064_50.jpg?t=1449566001000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-21 22:10:18.0\"}},{\"User\":{\"id\":1490109742863,\"sex\":1,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-21 23:22:22.0\"}},{\"User\":{\"id\":1490420651686,\"sex\":1,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[70793],\"pictureList\":[],\"date\":\"2017-03-25 13:44:11.0\"}},{\"User\":{\"id\":1490973670928,\"sex\":1,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[70793,93793],\"pictureList\":[],\"date\":\"2017-03-31 23:21:10.0\"}},{\"User\":{\"id\":1508072105320,\"sex\":1,\"name\":\"周吴郑王\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-10-15 20:55:05.0\"}}],\"code\":200,\"msg\":\"success\"}','2018-03-03 15:45:00',NULL,NULL),(1520092115128,82001,0,1520091922118,0,'{\"User\":{\"id\":82001,\"sex\":0,\"name\":\"测试改名\",\"tag\":\"APIJSON User\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\",\"contactIdList\":[82025,70793,82034,93793,82021,82033],\"pictureList\":[\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"},\"code\":200,\"msg\":\"success\"}','2018-03-03 15:48:35',NULL,NULL),(1520092224195,82001,0,1519526273822,0,'{\"Privacy\":{\"id\":82001,\"certified\":1,\"phone\":13000082001,\"balance\":22628.1},\"code\":200,\"msg\":\"success\"}','2018-03-03 15:50:24',NULL,NULL),(1520092385815,82001,0,1520091922118,0,'{\"User\":{\"id\":82001,\"sex\":0,\"name\":\"测试改名\",\"tag\":\"APIJSON User\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\",\"contactIdList\":[82025,70793,82034,93793,82021,82033],\"pictureList\":[\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"},\"code\":200,\"msg\":\"success\"}','2018-03-03 15:53:05',NULL,NULL),(1520092411345,82001,0,1516325614520,0,'{\"[]\":[{\"User\":{\"id\":82002,\"sex\":1,\"name\":\"Happy~\",\"tag\":\"iOS\",\"head\":\"http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000\",\"contactIdList\":[82005,82001,38710,93793],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82003,\"sex\":1,\"name\":\"Wechat\",\"head\":\"http://common.cnblogs.com/images/wechat.png\",\"contactIdList\":[82001,93793],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82005,\"sex\":1,\"name\":\"Jan\",\"tag\":\"AG\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[82001,38710],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82006,\"sex\":1,\"name\":\"Meria\",\"head\":\"http://static.oschina.net/uploads/user/998/1997902_50.jpg?t=1407806577000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82021,\"sex\":1,\"name\":\"Tommy\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82025,\"sex\":1,\"name\":\"Tommy\",\"head\":\"http://static.oschina.net/uploads/user/629/1258821_50.jpg?t=1378063141000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82028,\"sex\":1,\"name\":\"gaeg\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82030,\"sex\":1,\"name\":\"Fun\",\"head\":\"http://static.oschina.net/uploads/user/998/1997902_50.jpg?t=1407806577000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82033,\"sex\":1,\"name\":\"GAS\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82034,\"sex\":1,\"name\":\"Jump\",\"head\":\"http://static.oschina.net/uploads/user/1332/2664107_50.jpg?t=1457405500000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82035,\"sex\":1,\"name\":\"Tab\",\"head\":\"http://static.oschina.net/uploads/user/629/1258821_50.jpg?t=1378063141000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82039,\"sex\":1,\"name\":\"Everyday\",\"head\":\"http://common.cnblogs.com/images/icon_weibo_24.png\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-19 21:57:56.0\"}},{\"User\":{\"id\":82040,\"sex\":1,\"name\":\"Dream\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[70793],\"pictureList\":[],\"date\":\"2017-03-03 00:44:26.0\"}},{\"User\":{\"id\":82042,\"sex\":1,\"name\":\"Why\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-04 18:04:33.0\"}},{\"User\":{\"id\":82044,\"sex\":1,\"name\":\"Love\",\"head\":\"http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000\",\"contactIdList\":[82006],\"pictureList\":[],\"date\":\"2017-03-04 18:20:27.0\"}},{\"User\":{\"id\":82055,\"sex\":1,\"name\":\"Solid\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\",\"contactIdList\":[38710,82002],\"pictureList\":[],\"date\":\"2017-03-11 23:04:00.0\"}},{\"User\":{\"id\":82056,\"sex\":1,\"name\":\"IronMan\",\"head\":\"http://static.oschina.net/uploads/user/48/96289_50.jpg?t=1452751699000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-11 23:32:25.0\"}},{\"User\":{\"id\":82059,\"sex\":1,\"name\":\"He&She\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-19 22:49:15.0\"}},{\"User\":{\"id\":82060,\"sex\":1,\"name\":\"Anyway~\",\"head\":\"http://static.oschina.net/uploads/user/1/3064_50.jpg?t=1449566001000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-21 22:10:18.0\"}},{\"User\":{\"id\":1490109742863,\"sex\":1,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-21 23:22:22.0\"}},{\"User\":{\"id\":1490420651686,\"sex\":1,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[70793],\"pictureList\":[],\"date\":\"2017-03-25 13:44:11.0\"}},{\"User\":{\"id\":1490973670928,\"sex\":1,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[70793,93793],\"pictureList\":[],\"date\":\"2017-03-31 23:21:10.0\"}},{\"User\":{\"id\":1508072105320,\"sex\":1,\"name\":\"周吴郑王\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-10-15 20:55:05.0\"}}],\"code\":200,\"msg\":\"success\"}','2018-03-03 15:53:31',NULL,NULL),(1520092528119,82001,0,1519526273822,0,'{\"Privacy\":{\"id\":82001,\"certified\":1,\"phone\":13000082001,\"balance\":22628.1},\"code\":200,\"msg\":\"success\"}','2018-03-03 15:55:28',NULL,NULL),(1520092670553,82001,0,1519526273822,0,'{\"Privacy\":{\"id\":82001,\"certified\":1,\"phone\":13000082001,\"balance\":22628.1},\"code\":200,\"msg\":\"success\"}','2018-03-03 15:57:50',NULL,NULL),(1520092819799,82001,0,1520091922118,0,'{\"User\":{\"id\":82001,\"sex\":0,\"name\":\"测试改名\",\"tag\":\"APIJSON User\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\",\"contactIdList\":[82025,70793,82034,93793,82021,82033],\"pictureList\":[\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"},\"code\":200,\"msg\":\"success\"}','2018-03-03 16:00:19',NULL,NULL),(1520173868568,82001,0,1519526273822,0,'{\"Privacy\":{\"id\":82001,\"certified\":1,\"phone\":13000082001,\"balance\":26734.25},\"code\":200,\"msg\":\"success\"}','2018-03-04 14:31:08',NULL,NULL),(1520173870784,82001,0,1512216131855,0,'{\"[]\":[{\"Table\":{\"TABLE_NAME\":\"apijson_privacy\",\"TABLE_COMMENT\":\"用户隐私信息表。\n对安全要求高,不想泄漏真实名称。对外名称为 Privacy\"},\"Column[]\":[{\"COLUMN_NAME\":\"id\",\"COLUMN_TYPE\":\"bigint(15)\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"唯一标识\"},{\"COLUMN_NAME\":\"certified\",\"COLUMN_TYPE\":\"tinyint(2)\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"已认证\"},{\"COLUMN_NAME\":\"phone\",\"COLUMN_TYPE\":\"bigint(11)\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"手机号,仅支持 11 位数的。不支持 +86 这种国家地区开头的。如果要支持就改为 VARCHAR(14)\"},{\"COLUMN_NAME\":\"balance\",\"COLUMN_TYPE\":\"decimal(10,2)\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"余额\"},{\"COLUMN_NAME\":\"_password\",\"COLUMN_TYPE\":\"varchar(20)\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"登录密码\"},{\"COLUMN_NAME\":\"_payPassword\",\"COLUMN_TYPE\":\"int(6)\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"支付密码\"}]},{\"Table\":{\"TABLE_NAME\":\"apijson_user\",\"TABLE_COMMENT\":\"用户公开信息表。\n对安全要求高,不想泄漏真实名称。对外名称为 User\"},\"Column[]\":[{\"COLUMN_NAME\":\"id\",\"COLUMN_TYPE\":\"bigint(15)\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"唯一标识\"},{\"COLUMN_NAME\":\"sex\",\"COLUMN_TYPE\":\"tinyint(2)\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"性别:\n0-男\n1-女\"},{\"COLUMN_NAME\":\"name\",\"COLUMN_TYPE\":\"varchar(20)\",\"IS_NULLABLE\":\"YES\",\"COLUMN_COMMENT\":\"名称\"},{\"COLUMN_NAME\":\"tag\",\"COLUMN_TYPE\":\"varchar(45)\",\"IS_NULLABLE\":\"YES\",\"COLUMN_COMMENT\":\"标签\"},{\"COLUMN_NAME\":\"head\",\"COLUMN_TYPE\":\"varchar(300)\",\"IS_NULLABLE\":\"YES\",\"COLUMN_COMMENT\":\"头像url\"},{\"COLUMN_NAME\":\"contactIdList\",\"COLUMN_TYPE\":\"json\",\"IS_NULLABLE\":\"YES\",\"COLUMN_COMMENT\":\"联系人id列表\"},{\"COLUMN_NAME\":\"pictureList\",\"COLUMN_TYPE\":\"json\",\"IS_NULLABLE\":\"YES\",\"COLUMN_COMMENT\":\"照片列表\"},{\"COLUMN_NAME\":\"date\",\"COLUMN_TYPE\":\"timestamp\",\"IS_NULLABLE\":\"YES\",\"COLUMN_COMMENT\":\"创建日期\"}]},{\"Table\":{\"TABLE_NAME\":\"Comment\",\"TABLE_COMMENT\":\"评论\"},\"Column[]\":[{\"COLUMN_NAME\":\"id\",\"COLUMN_TYPE\":\"bigint(15)\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"唯一标识\"},{\"COLUMN_NAME\":\"toId\",\"COLUMN_TYPE\":\"bigint(15)\",\"IS_NULLABLE\":\"YES\",\"COLUMN_COMMENT\":\"被回复的id\"},{\"COLUMN_NAME\":\"userId\",\"COLUMN_TYPE\":\"bigint(15)\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"评论人id\"},{\"COLUMN_NAME\":\"momentId\",\"COLUMN_TYPE\":\"bigint(15)\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"动态id\"},{\"COLUMN_NAME\":\"date\",\"COLUMN_TYPE\":\"timestamp\",\"IS_NULLABLE\":\"YES\",\"COLUMN_COMMENT\":\"创建日期\"},{\"COLUMN_NAME\":\"content\",\"COLUMN_TYPE\":\"varchar(1000)\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"内容\"}]},{\"Table\":{\"TABLE_NAME\":\"Document\",\"TABLE_COMMENT\":\"测试用例文档\n后端开发者在测试好后,把选好的测试用例上传,这样就能共享给前端/客户端开发者\"},\"Column[]\":[{\"COLUMN_NAME\":\"id\",\"COLUMN_TYPE\":\"bigint(15)\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"唯一标识\"},{\"COLUMN_NAME\":\"userId\",\"COLUMN_TYPE\":\"bigint(15)\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"用户id\n应该用adminId,只有当登录账户是管理员时才能操作文档。\n需要先建Admin表,新增登录等相关接口。\"},{\"COLUMN_NAME\":\"version\",\"COLUMN_TYPE\":\"tinyint(4)\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"接口版本号\n<=0 - 不限制版本,任意版本都可用这个接口\n>0 - 在这个版本添加的接口\"},{\"COLUMN_NAME\":\"name\",\"COLUMN_TYPE\":\"varchar(50)\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"接口名称\"},{\"COLUMN_NAME\":\"url\",\"COLUMN_TYPE\":\"varchar(250)\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"请求地址\"},{\"COLUMN_NAME\":\"request\",\"COLUMN_TYPE\":\"text\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"请求\n用json格式会导致强制排序,而请求中引用赋值只能引用上面的字段,必须有序。\"},{\"COLUMN_NAME\":\"response\",\"COLUMN_TYPE\":\"text\",\"IS_NULLABLE\":\"YES\",\"COLUMN_COMMENT\":\"标准返回结果JSON\n用json格式会导致强制排序,而请求中引用赋值只能引用上面的字段,必须有序。\"},{\"COLUMN_NAME\":\"date\",\"COLUMN_TYPE\":\"timestamp\",\"IS_NULLABLE\":\"YES\",\"COLUMN_COMMENT\":\"创建日期\"}]},{\"Table\":{\"TABLE_NAME\":\"Login\",\"TABLE_COMMENT\":\"@deprecated,登录信息存session\"},\"Column[]\":[{\"COLUMN_NAME\":\"id\",\"COLUMN_TYPE\":\"bigint(15)\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"唯一标识\"},{\"COLUMN_NAME\":\"userId\",\"COLUMN_TYPE\":\"bigint(15)\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"用户id\"},{\"COLUMN_NAME\":\"type\",\"COLUMN_TYPE\":\"tinyint(2)\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"类型\n0-密码登录\n1-验证码登录\"},{\"COLUMN_NAME\":\"date\",\"COLUMN_TYPE\":\"timestamp\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"创建日期\"}]},{\"Table\":{\"TABLE_NAME\":\"Moment\",\"TABLE_COMMENT\":\"动态\"},\"Column[]\":[{\"COLUMN_NAME\":\"id\",\"COLUMN_TYPE\":\"bigint(15)\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"唯一标识\"},{\"COLUMN_NAME\":\"userId\",\"COLUMN_TYPE\":\"bigint(15)\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"用户id\"},{\"COLUMN_NAME\":\"date\",\"COLUMN_TYPE\":\"timestamp\",\"IS_NULLABLE\":\"YES\",\"COLUMN_COMMENT\":\"创建日期\"},{\"COLUMN_NAME\":\"content\",\"COLUMN_TYPE\":\"varchar(300)\",\"IS_NULLABLE\":\"YES\",\"COLUMN_COMMENT\":\"内容\"},{\"COLUMN_NAME\":\"praiseUserIdList\",\"COLUMN_TYPE\":\"json\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"点赞的用户id列表\"},{\"COLUMN_NAME\":\"pictureList\",\"COLUMN_TYPE\":\"json\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"图片列表\"}]},{\"Table\":{\"TABLE_NAME\":\"Praise\",\"TABLE_COMMENT\":\"如果对Moment写安全要求高,可以将Moment内praiserUserIdList分离到Praise表中,作为userIdList。\n权限注解也改下:\n@MethodAccess(\n PUT = {OWNER, ADMIN}\n )\nclass Moment {\n …\n}\n\n@MethodAccess(\n PUT = {LOGIN, CONTACT, CIRCLE, OWNER, ADMIN}\n )\n class Praise {\n …\n }\n\"},\"Column[]\":[{\"COLUMN_NAME\":\"id\",\"COLUMN_TYPE\":\"bigint(15)\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"动态id\"},{\"COLUMN_NAME\":\"momentId\",\"COLUMN_TYPE\":\"bigint(15)\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"唯一标识\"},{\"COLUMN_NAME\":\"userId\",\"COLUMN_TYPE\":\"bigint(15)\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"用户id\"},{\"COLUMN_NAME\":\"date\",\"COLUMN_TYPE\":\"timestamp\",\"IS_NULLABLE\":\"YES\",\"COLUMN_COMMENT\":\"点赞时间\"}]},{\"Table\":{\"TABLE_NAME\":\"Request\",\"TABLE_COMMENT\":\"最好编辑完后删除主键,这样就是只读状态,不能随意更改。需要更改就重新加上主键。\n\n每次启动服务器时加载整个表到内存。\n这个表不可省略,model内注解的权限只是客户端能用的,其它可以保证即便服务端代码错误时也不会误删数据。\"},\"Column[]\":[{\"COLUMN_NAME\":\"id\",\"COLUMN_TYPE\":\"bigint(15)\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"唯一标识\"},{\"COLUMN_NAME\":\"version\",\"COLUMN_TYPE\":\"tinyint(4)\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"GET,HEAD可用任意结构访问任意开放内容,不需要这个字段。\n其它的操作因为写入了结构和内容,所以都需要,按照不同的version选择对应的structure。\n\n自动化版本管理:\nRequest JSON最外层可以传 “version”:Integer 。\n1.未传或 <= 0,用最新版。 “@order”:”version-“\n2.已传且 > 0,用version以上的可用版本的最低版本。 “@order”:”version+”, “version{}”:”>={version}”\"},{\"COLUMN_NAME\":\"method\",\"COLUMN_TYPE\":\"varchar(10)\",\"IS_NULLABLE\":\"YES\",\"COLUMN_COMMENT\":\"只限于GET,HEAD外的操作方法。\"},{\"COLUMN_NAME\":\"tag\",\"COLUMN_TYPE\":\"varchar(20)\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"标签\"},{\"COLUMN_NAME\":\"structure\",\"COLUMN_TYPE\":\"json\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"结构\"},{\"COLUMN_NAME\":\"detail\",\"COLUMN_TYPE\":\"varchar(10000)\",\"IS_NULLABLE\":\"YES\",\"COLUMN_COMMENT\":\"详细说明\"},{\"COLUMN_NAME\":\"date\",\"COLUMN_TYPE\":\"timestamp\",\"IS_NULLABLE\":\"YES\",\"COLUMN_COMMENT\":\"创建日期\"}]},{\"Table\":{\"TABLE_NAME\":\"Response\",\"TABLE_COMMENT\":\"每次启动服务器时加载整个表到内存。\"},\"Column[]\":[{\"COLUMN_NAME\":\"id\",\"COLUMN_TYPE\":\"bigint(15)\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"唯一标识\"},{\"COLUMN_NAME\":\"method\",\"COLUMN_TYPE\":\"varchar(10)\",\"IS_NULLABLE\":\"YES\",\"COLUMN_COMMENT\":\"方法\"},{\"COLUMN_NAME\":\"model\",\"COLUMN_TYPE\":\"varchar(20)\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"表名,table是SQL关键词不能用\"},{\"COLUMN_NAME\":\"structure\",\"COLUMN_TYPE\":\"json\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"结构\"},{\"COLUMN_NAME\":\"detail\",\"COLUMN_TYPE\":\"varchar(10000)\",\"IS_NULLABLE\":\"YES\",\"COLUMN_COMMENT\":\"详细说明\"},{\"COLUMN_NAME\":\"date\",\"COLUMN_TYPE\":\"timestamp\",\"IS_NULLABLE\":\"YES\",\"COLUMN_COMMENT\":\"创建日期\"}]},{\"Table\":{\"TABLE_NAME\":\"Test\",\"TABLE_COMMENT\":\"测试及验证用的表,可以用 SELECT condition替代 SELECT * FROM Test WHERE condition,这样就不需要这张表了\"},\"Column[]\":[{\"COLUMN_NAME\":\"id\",\"COLUMN_TYPE\":\"tinyint(2)\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"\"}]},{\"Table\":{\"TABLE_NAME\":\"TestRecord\",\"TABLE_COMMENT\":\"测试记录\n主要用于保存自动化接口回归测试\"},\"Column[]\":[{\"COLUMN_NAME\":\"id\",\"COLUMN_TYPE\":\"bigint(15)\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"唯一标识\"},{\"COLUMN_NAME\":\"userId\",\"COLUMN_TYPE\":\"bigint(15)\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"用户id\"},{\"COLUMN_NAME\":\"documentId\",\"COLUMN_TYPE\":\"bigint(15)\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"测试用例文档id\"},{\"COLUMN_NAME\":\"response\",\"COLUMN_TYPE\":\"text\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"接口返回结果JSON\"},{\"COLUMN_NAME\":\"date\",\"COLUMN_TYPE\":\"timestamp\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"创建日期\"}]},{\"Table\":{\"TABLE_NAME\":\"Verify\",\"TABLE_COMMENT\":\"\"},\"Column[]\":[{\"COLUMN_NAME\":\"id\",\"COLUMN_TYPE\":\"bigint(15)\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"唯一标识\"},{\"COLUMN_NAME\":\"type\",\"COLUMN_TYPE\":\"int(2)\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"类型:\n0-登录\n1-注册\n2-修改登录密码\n3-修改支付密码\"},{\"COLUMN_NAME\":\"phone\",\"COLUMN_TYPE\":\"bigint(11)\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"手机号\"},{\"COLUMN_NAME\":\"verify\",\"COLUMN_TYPE\":\"int(6)\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"验证码\"},{\"COLUMN_NAME\":\"date\",\"COLUMN_TYPE\":\"timestamp\",\"IS_NULLABLE\":\"NO\",\"COLUMN_COMMENT\":\"创建时间\"}]}],\"Request[]\":[{\"id\":36,\"version\":2,\"method\":\"PUT\",\"tag\":\"Document\",\"structure\":{\"ADD\":{\"@role\":\"owner\"},\"DISALLOW\":\"userId\",\"NECESSARY\":\"id\"},\"date\":\"2017-11-26 16:35:15.0\"},{\"id\":35,\"version\":2,\"method\":\"POST\",\"tag\":\"Document\",\"structure\":{\"DISALLOW\":\"id\",\"NECESSARY\":\"userId,name,url,request\"},\"date\":\"2017-11-26 16:34:41.0\"},{\"id\":32,\"version\":2,\"method\":\"GETS\",\"tag\":\"Privacy\",\"structure\":{\"ADD\":{\"@role\":\"owner\"},\"DISALLOW\":\"_password,_payPassword\",\"NECESSARY\":\"id\"},\"date\":\"2017-06-13 00:05:51.0\"},{\"id\":33,\"version\":2,\"method\":\"GETS\",\"tag\":\"Privacy-CIRCLE\",\"structure\":{\"Privacy\":{\"DISALLOW\":\"!\",\"NECESSARY\":\"id\",\"PUT\":{\"@column\":\"phone\",\"@role\":\"CIRCLE\"}}},\"date\":\"2017-06-13 00:05:51.0\"},{\"id\":37,\"version\":2,\"method\":\"DELETE\",\"tag\":\"Document\",\"structure\":{\"ADD\":{\"@role\":\"owner\"},\"DISALLOW\":\"!\",\"NECESSARY\":\"id\"},\"date\":\"2017-11-26 16:36:20.0\"},{\"id\":4,\"version\":1,\"method\":\"PUT\",\"tag\":\"User\",\"structure\":{\"ADD\":{\"@role\":\"owner\"},\"DISALLOW\":\"phone\",\"NECESSARY\":\"id\"},\"detail\":\"必须传id,不允许传phone。ADD当没传@role时用owner补全\",\"date\":\"2017-02-01 19:19:51.0\"},{\"id\":8,\"version\":1,\"method\":\"PUT\",\"tag\":\"User-phone\",\"structure\":{\"User\":{\"ADD\":{\"@role\":\"owner\"},\"DISALLOW\":\"!\",\"NECESSARY\":\"id,phone,_password\",\"PUT\":{\"@condition\":\"_password\"}}},\"detail\":\"! 表示其它所有,这里指necessary所有未包含的字段\",\"date\":\"2017-02-01 19:19:51.0\"},{\"id\":17,\"version\":1,\"method\":\"PUT\",\"tag\":\"Moment\",\"structure\":{\"DISALLOW\":\"userId,date\",\"NECESSARY\":\"id\"},\"date\":\"2017-02-01 19:19:51.0\"},{\"id\":23,\"version\":1,\"method\":\"PUT\",\"tag\":\"Privacy\",\"structure\":{\"ADD\":{\"@role\":\"owner\"},\"NECESSARY\":\"id\"},\"detail\":\"ADD当没传@role时用owner补全\",\"date\":\"2017-02-01 19:19:51.0\"},{\"id\":25,\"version\":1,\"method\":\"PUT\",\"tag\":\"Praise\",\"structure\":{\"NECESSARY\":\"id\"},\"detail\":\"必须传id\",\"date\":\"2017-02-01 19:19:51.0\"},{\"id\":27,\"version\":1,\"method\":\"PUT\",\"tag\":\"Comment[]\",\"structure\":{\"Comment\":{\"ADD\":{\"@role\":\"owner\"},\"NECESSARY\":\"id{}\"}},\"detail\":\"DISALLOW没必要用于DELETE\",\"date\":\"2017-02-01 19:19:51.0\"},{\"id\":28,\"version\":1,\"method\":\"PUT\",\"tag\":\"Comment\",\"structure\":{\"ADD\":{\"@role\":\"owner\"},\"NECESSARY\":\"id\"},\"detail\":\"这里省略了Comment,因为tag就是Comment,Parser.getCorrectRequest会自动补全\",\"date\":\"2017-02-01 19:19:51.0\"},{\"id\":30,\"version\":1,\"method\":\"PUT\",\"tag\":\"balance+\",\"structure\":{\"Privacy\":{\"VERIFY\":{\"balance+&{}\":\">=1,<=100000\"},\"DISALLOW\":\"!\",\"NECESSARY\":\"id,balance+\"}},\"detail\":\"验证balance+对应的值是否满足>=1且<=100000\",\"date\":\"2017-10-21 16:48:34.0\"},{\"id\":31,\"version\":1,\"method\":\"PUT\",\"tag\":\"balance-\",\"structure\":{\"Privacy\":{\"VERIFY\":{\"balance-&{}\":\">=1,<=10000\"},\"DISALLOW\":\"!\",\"NECESSARY\":\"id,balance-,_password\",\"PUT\":{\"@condition\":\"_password\"}}},\"detail\":\"PUT强制把_password作为WHERE条件\",\"date\":\"2017-10-21 16:48:34.0\"},{\"id\":1,\"version\":1,\"method\":\"POST\",\"tag\":\"register\",\"structure\":{\"Privacy\":{\"UNIQUE\":\"phone\",\"VERIFY\":{\"phone?\":\"phone\"},\"DISALLOW\":\"id\",\"NECESSARY\":\"_password,phone\"},\"User\":{\"DISALLOW\":\"id\",\"NECESSARY\":\"name\",\"PUT\":{\"id@\":\"Privacy/id\"}}},\"detail\":\"UNIQUE校验phone是否已存在。VERIFY校验phone是否符合手机号的格式\",\"date\":\"2017-02-01 19:19:51.0\"},{\"id\":2,\"version\":1,\"method\":\"POST\",\"tag\":\"Moment\",\"structure\":{\"ADD\":{\"praiseUserIdList\":[],\"pictureList\":[]},\"DISALLOW\":\"id\",\"NECESSARY\":\"userId,pictureList\"},\"detail\":\"ADD当没传pictureList和praiseUserIdList时用空数组[]补全,保证不会为null\",\"date\":\"2017-02-01 19:19:51.0\"},{\"id\":3,\"version\":1,\"method\":\"POST\",\"tag\":\"Comment\",\"structure\":{\"DISALLOW\":\"id\",\"NECESSARY\":\"userId,momentId,content\"},\"detail\":\"必须传userId,momentId,content,不允许传id\",\"date\":\"2017-02-01 19:19:51.0\"},{\"id\":14,\"version\":1,\"method\":\"POST\",\"tag\":\"Verify\",\"structure\":{\"DISALLOW\":\"!\",\"NECESSARY\":\"phone,verify\"},\"detail\":\"必须传phone,verify,其它都不允许传\",\"date\":\"2017-02-18 22:20:43.0\"},{\"id\":38,\"version\":1,\"method\":\"POST\",\"tag\":\"TestRecord\",\"structure\":{\"DISALLOW\":\"id\",\"NECESSARY\":\"userId,documentId,response\"},\"date\":\"2017-11-26 16:34:41.0\"},{\"id\":16,\"version\":1,\"method\":\"HEADS\",\"tag\":\"Verify\",\"structure\":{},\"detail\":\"允许任意内容\",\"date\":\"2017-02-18 22:20:43.0\"},{\"id\":21,\"version\":1,\"method\":\"HEADS\",\"tag\":\"Login\",\"structure\":{\"DISALLOW\":\"!\",\"NECESSARY\":\"userId,type\"},\"date\":\"2017-02-18 22:20:43.0\"},{\"id\":15,\"version\":1,\"method\":\"GETS\",\"tag\":\"Verify\",\"structure\":{\"NECESSARY\":\"phone\"},\"detail\":\"必须传phone\",\"date\":\"2017-02-18 22:20:43.0\"},{\"id\":22,\"version\":1,\"method\":\"GETS\",\"tag\":\"User\",\"structure\":{},\"detail\":\"允许传任何内容,除了表对象\",\"date\":\"2017-02-18 22:20:43.0\"},{\"id\":29,\"version\":1,\"method\":\"GETS\",\"tag\":\"login\",\"structure\":{\"Privacy\":{\"DISALLOW\":\"id\",\"NECESSARY\":\"phone,_password\"}},\"date\":\"2017-10-15 18:04:52.0\"},{\"id\":5,\"version\":1,\"method\":\"DELETE\",\"tag\":\"Moment\",\"structure\":{\"Moment\":{\"ADD\":{\"@role\":\"owner\"},\"NECESSARY\":\"id\"},\"PUT\":{\"Comment\":{\"@role\":\"admin\",\"momentId@\":\"Moment/id\"}}},\"date\":\"2017-02-01 19:19:51.0\"},{\"id\":6,\"version\":1,\"method\":\"DELETE\",\"tag\":\"Comment\",\"structure\":{\"Comment\":{\"ADD\":{\"@role\":\"owner\"},\"NECESSARY\":\"id\"},\"PUT\":{\"Comment:child\":{\"toId@\":\"Comment/id\",\"@role\":\"admin\"}}},\"detail\":\"disallow没必要用于DELETE\",\"date\":\"2017-02-01 19:19:51.0\"},{\"id\":26,\"version\":1,\"method\":\"DELETE\",\"tag\":\"Comment[]\",\"structure\":{\"Comment\":{\"ADD\":{\"@role\":\"owner\"},\"NECESSARY\":\"id{}\"}},\"detail\":\"DISALLOW没必要用于DELETE\",\"date\":\"2017-02-01 19:19:51.0\"}],\"code\":200,\"msg\":\"success\"}','2018-03-04 14:31:10',NULL,NULL),(1520173872976,82001,0,1511970224333,0,'{\"User\":{\"code\":200,\"msg\":\"success\",\"id\":82001,\"count\":1},\"code\":200,\"msg\":\"success\"}','2018-03-04 14:31:12',NULL,NULL),(1520173873719,82001,0,1511970009072,0,'{\"Moment\":{\"code\":200,\"msg\":\"success\",\"id\":1520173865791,\"count\":1},\"code\":200,\"msg\":\"success\"}','2018-03-04 14:31:13',NULL,NULL),(1520173875424,82001,0,1511969181104,0,'{\"User\":{\"id\":82001,\"contactIdList+\":[93793],\"@role\":\"owner\"},\"code\":409,\"msg\":\"PUT User, contactIdList:93793 已存在!\"}','2018-03-04 14:31:15',NULL,NULL),(1520173877914,82001,0,1511969630372,0,'{\"Comment\":{\"code\":200,\"msg\":\"success\",\"id\":1520173865916,\"count\":1},\"code\":200,\"msg\":\"success\"}','2018-03-04 14:31:17',NULL,NULL),(1520173878817,82001,0,1511967853340,0,'{\"[]\":[{\"Moment\":{\"id\":1520173760960,\"userId\":82001,\"date\":\"2018-03-04 22:29:20.0\",\"content\":\"测试新增动态\",\"praiseUserIdList\":[],\"pictureList\":[\"http://static.oschina.net/uploads/user/48/96331_50.jpg\"]},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Moment\":{\"id\":1520173720451,\"userId\":82001,\"date\":\"2018-03-04 22:28:40.0\",\"content\":\"测试新增动态\",\"praiseUserIdList\":[],\"pictureList\":[\"http://static.oschina.net/uploads/user/48/96331_50.jpg\"]},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Moment\":{\"id\":1520173672910,\"userId\":82001,\"date\":\"2018-03-04 22:27:52.0\",\"content\":\"测试新增动态\",\"praiseUserIdList\":[],\"pictureList\":[\"http://static.oschina.net/uploads/user/48/96331_50.jpg\"]},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Moment\":{\"id\":1520173667947,\"userId\":82001,\"date\":\"2018-03-04 22:27:47.0\",\"content\":\"测试新增动态\",\"praiseUserIdList\":[],\"pictureList\":[\"http://static.oschina.net/uploads/user/48/96331_50.jpg\"]},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Moment\":{\"id\":1520173666384,\"userId\":82001,\"date\":\"2018-03-04 22:27:46.0\",\"content\":\"测试新增动态\",\"praiseUserIdList\":[],\"pictureList\":[\"http://static.oschina.net/uploads/user/48/96331_50.jpg\"]},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\"}}],\"code\":200,\"msg\":\"success\"}','2018-03-04 14:31:18',NULL,NULL),(1520173879493,82001,0,1511964176689,0,'{\"[]\":[{\"Comment\":{\"id\":176,\"toId\":166,\"userId\":38710,\"momentId\":15,\"date\":\"2017-03-25 20:28:03.0\",\"content\":\"thank you\"},\"User\":{\"id\":38710,\"name\":\"TommyLemon\",\"head\":\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\"}},{\"Comment\":{\"id\":1490863469638,\"toId\":0,\"userId\":82002,\"momentId\":15,\"date\":\"2017-03-30 16:44:29.0\",\"content\":\"Just do it\"},\"User\":{\"id\":82002,\"name\":\"Happy~\",\"head\":\"http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000\"}},{\"Comment\":{\"id\":1490875660259,\"toId\":1490863469638,\"userId\":82055,\"momentId\":15,\"date\":\"2017-03-30 20:07:40.0\",\"content\":\"I prove wht you said(??????)\"},\"User\":{\"id\":82055,\"name\":\"Solid\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1508227456407,\"toId\":0,\"userId\":82001,\"momentId\":15,\"date\":\"2017-10-17 16:04:16.0\",\"content\":\"hsh\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1509346606036,\"toId\":0,\"userId\":82001,\"momentId\":15,\"date\":\"2017-10-30 14:56:46.0\",\"content\":\"测\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1520086403693,\"userId\":82001,\"momentId\":15,\"date\":\"2018-03-03 22:13:23.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1520086647789,\"userId\":82001,\"momentId\":15,\"date\":\"2018-03-03 22:17:27.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1520086858159,\"userId\":82001,\"momentId\":15,\"date\":\"2018-03-03 22:20:58.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1520087089611,\"userId\":82001,\"momentId\":15,\"date\":\"2018-03-03 22:24:49.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1520087181598,\"userId\":82001,\"momentId\":15,\"date\":\"2018-03-03 22:26:21.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1520088770429,\"userId\":82001,\"momentId\":15,\"date\":\"2018-03-03 22:52:50.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1520089307634,\"userId\":82001,\"momentId\":15,\"date\":\"2018-03-03 23:01:47.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1520089508692,\"userId\":82001,\"momentId\":15,\"date\":\"2018-03-03 23:05:08.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1520089597667,\"userId\":82001,\"momentId\":15,\"date\":\"2018-03-03 23:06:37.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1520089619339,\"userId\":82001,\"momentId\":15,\"date\":\"2018-03-03 23:06:59.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1520089621208,\"userId\":82001,\"momentId\":15,\"date\":\"2018-03-03 23:07:01.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1520171621453,\"userId\":82001,\"momentId\":15,\"date\":\"2018-03-04 21:53:41.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1520171658156,\"userId\":82001,\"momentId\":15,\"date\":\"2018-03-04 21:54:18.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1520171697409,\"userId\":82001,\"momentId\":15,\"date\":\"2018-03-04 21:54:57.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1520171714260,\"userId\":82001,\"momentId\":15,\"date\":\"2018-03-04 21:55:14.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\"}}],\"code\":200,\"msg\":\"success\"}','2018-03-04 14:31:19',NULL,NULL),(1520173881709,82001,0,1511796208670,0,'{\"code\":408,\"msg\":\"验证码已过期!\"}','2018-03-04 14:31:21',NULL,NULL),(1520173883243,82001,0,1511689914599,0,'{\"Privacy\":{\"id\":82001,\"certified\":1,\"phone\":13000082001,\"balance\":26834.4},\"code\":200,\"msg\":\"success\"}','2018-03-04 14:31:23',NULL,NULL),(1520173889466,82001,0,1,0,'{\"User\":{\"id\":82001,\"sex\":0,\"name\":\"测试改名\",\"tag\":\"APIJSON User\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\",\"contactIdList\":[82025,70793,82034,93793,82021,82033],\"pictureList\":[\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"},\"code\":200,\"msg\":\"success\"}','2018-03-04 14:31:29',NULL,NULL),(1520173915650,82001,0,1519526273822,0,'{\"Privacy\":{\"id\":82001,\"certified\":1,\"phone\":13000082001,\"balance\":27134.85},\"code\":200,\"msg\":\"success\"}','2018-03-04 14:31:55',NULL,NULL),(1520173922657,82001,0,1519526273822,0,'{\"Privacy\":{\"id\":82001,\"certified\":1,\"phone\":13000082001,\"balance\":27235},\"code\":200,\"msg\":\"success\"}','2018-03-04 14:32:02',NULL,NULL),(1520173935008,82001,0,1519526273822,0,'{\"Privacy\":{\"id\":82001,\"certified\":1,\"phone\":13000082001,\"balance\":27435.3},\"code\":200,\"msg\":\"success\"}','2018-03-04 14:32:15',NULL,NULL),(1520174017925,82001,0,1519526273822,0,'{\"Privacy\":{\"id\":82001,\"certified\":1,\"phone\":13000082001,\"balance\":29939.05},\"code\":200,\"msg\":\"success\"}','2018-03-04 14:33:37',NULL,NULL),(1520174362871,82001,0,1519526273822,0,'{\"Privacy\":{\"id\":82001,\"certified\":1,\"phone\":13000082001,\"balance\":30039.2},\"code\":200,\"msg\":\"success\"}','2018-03-04 14:39:22',NULL,NULL),(1520176947082,82001,0,1519526273822,0,'{\"Privacy\":{\"id\":82001,\"certified\":1,\"phone\":13000082001,\"balance\":28699.05},\"code\":200,\"msg\":\"success\"}','2018-03-04 15:22:27',NULL,NULL),(1520177104344,82001,0,1519526273822,0,'{\"Privacy\":{\"id\":82001,\"certified\":1,\"phone\":13000082001,\"balance\":28709.2},\"code\":200,\"msg\":\"success\"}','2018-03-04 15:25:04',NULL,NULL),(1520177328250,82001,0,1519526273822,0,'{\"Privacy\":{\"id\":82001,\"certified\":1,\"phone\":13000082001,\"balance\":28809.35},\"code\":200,\"msg\":\"success\"}','2018-03-04 15:28:48',NULL,NULL),(1520177426424,82001,0,1520177221844,0,'{\"[]\":[{\"User\":{\"id\":38710,\"sex\":0,\"name\":\"TommyLemon\",\"tag\":\"Android&Java\",\"head\":\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"contactIdList\":[82003,82005,90814,82004,82009,82002,82044,93793,70793],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":70793,\"sex\":0,\"name\":\"Strong\",\"tag\":\"djdj\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\",\"contactIdList\":[38710,82002],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/788c0a7e11a\",\"https://camo.githubusercontent.com/f513f67\"],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82001,\"sex\":0,\"name\":\"测试改名\",\"tag\":\"APIJSON User\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\",\"contactIdList\":[82025,70793,82034,93793,82021,82033,93794],\"pictureList\":[\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82004,\"sex\":0,\"name\":\"Tommy\",\"tag\":\"fasef\",\"head\":\"http://static.oschina.net/uploads/user/1200/2400261_50.png?t=1439638750000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82009,\"sex\":0,\"name\":\"God\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82012,\"sex\":0,\"name\":\"Steve\",\"tag\":\"FEWE\",\"head\":\"http://static.oschina.net/uploads/user/1/3064_50.jpg?t=1449566001000\",\"contactIdList\":[82004,82002,93793],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82020,\"sex\":0,\"name\":\"ORANGE\",\"head\":\"http://static.oschina.net/uploads/user/48/96289_50.jpg?t=1452751699000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82022,\"sex\":0,\"name\":\"Internet\",\"head\":\"http://static.oschina.net/uploads/user/1332/2664107_50.jpg?t=1457405500000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82023,\"sex\":0,\"name\":\"No1\",\"head\":\"http://static.oschina.net/uploads/user/1385/2770216_50.jpg?t=1464405516000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82024,\"sex\":0,\"name\":\"Lemon\",\"head\":\"http://static.oschina.net/uploads/user/427/855532_50.jpg?t=1435030876000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82026,\"sex\":0,\"name\":\"iOS\",\"head\":\"http://static.oschina.net/uploads/user/1200/2400261_50.png?t=1439638750000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82027,\"sex\":0,\"name\":\"Yong\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82029,\"sex\":0,\"name\":\"GASG\",\"head\":\"http://common.cnblogs.com/images/wechat.png\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82031,\"sex\":0,\"name\":\"Lemon\",\"head\":\"http://static.oschina.net/uploads/user/48/96331_50.jpg\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82032,\"sex\":0,\"name\":\"Stack\",\"tag\":\"fasdg\",\"head\":\"http://static.oschina.net/uploads/user/1385/2770216_50.jpg?t=1464405516000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82036,\"sex\":0,\"name\":\"SAG\",\"head\":\"http://static.oschina.net/uploads/user/1332/2664107_50.jpg?t=1457405500000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82037,\"sex\":0,\"name\":\"Test\",\"head\":\"http://static.oschina.net/uploads/user/1200/2400261_50.png?t=1439638750000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82038,\"sex\":0,\"name\":\"Battle\",\"head\":\"http://static.oschina.net/uploads/user/48/96289_50.jpg?t=1452751699000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82041,\"sex\":0,\"name\":\"Holo\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[38710,82001],\"pictureList\":[],\"date\":\"2017-03-04 17:59:34.0\"}},{\"User\":{\"id\":82043,\"sex\":0,\"name\":\"Holiday\",\"head\":\"http://static.oschina.net/uploads/user/998/1997902_50.jpg?t=1407806577000\",\"contactIdList\":[70793,82006],\"pictureList\":[],\"date\":\"2017-03-04 18:05:04.0\"}},{\"User\":{\"id\":82045,\"sex\":0,\"name\":\"Green\",\"head\":\"http://common.cnblogs.com/images/wechat.png\",\"contactIdList\":[82001,82002,82003,1485246481130],\"pictureList\":[],\"date\":\"2017-03-04 18:22:39.0\"}},{\"User\":{\"id\":82046,\"sex\":0,\"name\":\"Team\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[38710,82002,1485246481130],\"pictureList\":[],\"date\":\"2017-03-04 23:11:17.0\"}},{\"User\":{\"id\":82047,\"sex\":0,\"name\":\"Tesla\",\"head\":\"http://common.cnblogs.com/images/wechat.png\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-05 00:02:05.0\"}},{\"User\":{\"id\":82048,\"sex\":0,\"name\":\"Moto\",\"head\":\"http://static.oschina.net/uploads/user/48/96289_50.jpg?t=1452751699000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-05 00:04:02.0\"}},{\"User\":{\"id\":82049,\"sex\":0,\"name\":\"ITMan\",\"head\":\"http://static.oschina.net/uploads/user/629/1258821_50.jpg?t=1378063141000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-05 17:51:51.0\"}},{\"User\":{\"id\":82050,\"sex\":0,\"name\":\"Parl\",\"head\":\"http://static.oschina.net/uploads/user/998/1997902_50.jpg?t=1407806577000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-05 17:52:52.0\"}},{\"User\":{\"id\":82051,\"sex\":0,\"name\":\"Girl\",\"head\":\"http://static.oschina.net/uploads/user/1332/2664107_50.jpg?t=1457405500000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-05 17:53:37.0\"}},{\"User\":{\"id\":82052,\"sex\":0,\"name\":\"Unbrella\",\"head\":\"http://static.oschina.net/uploads/user/1385/2770216_50.jpg?t=1464405516000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-05 17:57:54.0\"}},{\"User\":{\"id\":82053,\"sex\":0,\"name\":\"Alice\",\"head\":\"http://common.cnblogs.com/images/wechat.png\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-05 23:25:42.0\"}},{\"User\":{\"id\":82054,\"sex\":0,\"name\":\"Harvey\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-06 20:29:03.0\"}},{\"User\":{\"id\":82057,\"sex\":0,\"name\":\"NullPointerExeption\",\"head\":\"http://static.oschina.net/uploads/user/1385/2770216_50.jpg?t=1464405516000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-12 14:01:23.0\"}},{\"User\":{\"id\":82058,\"sex\":0,\"name\":\"StupidBird\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[82001,82002],\"pictureList\":[],\"date\":\"2017-03-12 19:23:04.0\"}},{\"User\":{\"id\":90814,\"sex\":0,\"name\":\"007\",\"head\":\"http://static.oschina.net/uploads/user/51/102723_50.jpg?t=1449212504000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":93793,\"sex\":0,\"name\":\"Mike\",\"tag\":\"GES\",\"head\":\"http://static.oschina.net/uploads/user/48/96331_50.jpg\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":93794,\"sex\":0,\"name\":\"Lemon\",\"head\":\"http://static.oschina.net/uploads/user/48/97721_50.jpg?t=1451544779000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":1490109845208,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-21 23:24:05.0\"}},{\"User\":{\"id\":1490427139175,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[38710,70793],\"pictureList\":[],\"date\":\"2017-03-25 15:32:19.0\"}},{\"User\":{\"id\":1490427577823,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-25 15:39:37.0\"}},{\"User\":{\"id\":1490584952968,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-27 11:22:32.0\"}},{\"User\":{\"id\":1492936169722,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-04-23 16:29:29.0\"}},{\"User\":{\"id\":1493480142628,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-04-29 23:35:42.0\"}},{\"User\":{\"id\":1493747512860,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-05-03 01:51:52.0\"}},{\"User\":{\"id\":1493747777770,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-05-03 01:56:17.0\"}},{\"User\":{\"id\":1493748594003,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-05-03 02:09:54.0\"}},{\"User\":{\"id\":1493748615711,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-05-03 02:10:15.0\"}},{\"User\":{\"id\":1493749090643,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-05-03 02:18:10.0\"}},{\"User\":{\"id\":1493836043151,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-05-04 02:27:23.0\"}},{\"User\":{\"id\":1493883110132,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-05-04 15:31:50.0\"}},{\"User\":{\"id\":1493890214167,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-05-04 17:30:14.0\"}},{\"User\":{\"id\":1493890303473,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-05-04 17:31:43.0\"}},{\"User\":{\"id\":1493890303474,\"sex\":0,\"name\":\"Test Post\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-06-12 23:50:44.0\"}},{\"User\":{\"id\":1493890303475,\"sex\":0,\"name\":\"Test Post\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-06-12 23:51:23.0\"}},{\"User\":{\"id\":1497792972314,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-06-18 21:36:12.0\"}},{\"User\":{\"id\":1497792972315,\"sex\":0,\"name\":\"一二三\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-06-25 18:42:33.0\"}},{\"User\":{\"id\":1499057230629,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-07-03 12:47:10.0\"}},{\"User\":{\"id\":1500825221910,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-07-23 23:53:41.0\"}},{\"User\":{\"id\":1502638023483,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-08-13 23:27:03.0\"}},{\"User\":{\"id\":1502639062900,\"sex\":0,\"name\":\"TESLA\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-08-13 23:44:22.0\"}},{\"User\":{\"id\":1502639424119,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-08-13 23:50:24.0\"}},{\"User\":{\"id\":1507220582167,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-10-06 00:23:02.0\"}},{\"User\":{\"id\":1508072071492,\"sex\":0,\"name\":\"赵钱孙李\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-10-15 20:54:31.0\"}},{\"User\":{\"id\":1508072160401,\"sex\":0,\"name\":\"四五六\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-10-15 20:56:00.0\"}},{\"User\":{\"id\":1508072202871,\"sex\":0,\"name\":\"七八九十\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-10-15 20:56:42.0\"}},{\"User\":{\"id\":1510495628760,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-11-12 22:07:08.0\"}},{\"User\":{\"id\":1511407581570,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[82002,82003,82005,82006,82021,82023,82036,82033],\"pictureList\":[],\"date\":\"2017-11-23 11:26:21.0\"}},{\"User\":{\"id\":1511761906715,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-11-27 13:51:46.0\"}},{\"User\":{\"id\":1511965911349,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-11-29 22:31:51.0\"}},{\"User\":{\"id\":1512387063078,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-12-04 19:31:03.0\"}},{\"User\":{\"id\":1512531601485,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[82001],\"pictureList\":[],\"date\":\"2017-12-06 11:40:01.0\"}},{\"User\":{\"id\":1514623064133,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"date\":\"2017-12-30 16:37:44.0\"}},{\"User\":{\"id\":1514625918255,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[82002,93793],\"date\":\"2017-12-30 17:25:18.0\"}},{\"User\":{\"id\":1514626163032,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"date\":\"2017-12-30 17:29:23.0\"}},{\"User\":{\"id\":1514858422969,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[93793,82056],\"date\":\"2018-01-02 10:00:22.0\"}},{\"User\":{\"id\":1515565976140,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"傻\",\"contactIdList\":[82003,82021],\"date\":\"2018-01-10 14:32:56.0\"}},{\"User\":{\"id\":1518218350585,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"date\":\"2018-02-10 07:19:10.0\"}},{\"User\":{\"id\":1519778917280,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"date\":\"2018-02-28 08:48:37.0\"}}],\"code\":200,\"msg\":\"success\"}','2018-03-04 15:30:26',NULL,NULL),(1520680590422,82001,0,1519526273822,0,'{\"Privacy\":{\"id\":82001,\"certified\":1,\"phone\":13000082001,\"balance\":28709.2},\"code\":200,\"msg\":\"success\"}','2018-03-10 11:16:30',NULL,NULL),(1520681233526,82001,0,1519526273822,0,'{\"Privacy\":{\"id\":82001,\"certified\":1,\"phone\":13000082001,\"balance\":28809.35},\"code\":200,\"msg\":\"success\"}','2018-03-10 11:27:13',NULL,NULL),(1520681278572,82001,0,1519526273822,0,'{\"Privacy\":{\"id\":82001,\"certified\":1,\"phone\":13000082001,\"balance\":28809.35,\"test\":\"gda\"},\"code\":200,\"msg\":\"success\"}','2018-03-10 11:27:58',NULL,NULL),(1520681315261,82001,0,1519526273822,0,'{\"Privacy\":{\"id\":82001,\"certified\":1,\"phone\":13000082001,\"balance\":28809.35},\"code\":200,\"msg\":\"success\"}','2018-03-10 11:28:35',NULL,NULL),(1520681361520,82001,0,1519526273822,0,'{\"Privacy\":{\"id\":82001,\"certified\":1,\"phone\":13000082001,\"balance\":28809.35,\"test\":\"sfgr\"},\"code\":200,\"msg\":\"success\"}','2018-03-10 11:29:21',NULL,NULL),(1520681493656,82001,0,1519526273822,0,'{\"Privacy\":{\"id\":82001,\"certified\":1,\"phone\":13000082001,\"balance\":28809.35},\"code\":200,\"msg\":\"success\"}','2018-03-10 11:31:33',NULL,NULL),(1520681641244,82001,0,1519526273822,0,'{\"Privacy\":{\"id\":82001,\"certified\":1,\"phone\":13000082001,\"balance\":28809},\"code\":200,\"msg\":\"success\"}','2018-03-10 11:34:01',NULL,NULL),(1520681770042,82001,0,1519526273822,0,'{\"Privacy\":{\"id\":82001,\"certified\":1,\"phone\":13000082001,\"balance\":28808.5},\"code\":200,\"msg\":\"success\"}','2018-03-10 11:36:10',NULL,NULL),(1520682056396,82001,0,1520680656479,0,'{\"User[]\":[{\"id\":38710,\"sex\":0,\"name\":\"TommyLemon\",\"tag\":\"Android&Java\",\"head\":\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"contactIdList\":[82003,82005,90814,82004,82009,82002,82044,93793,70793],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":70793,\"sex\":0,\"name\":\"Strong\",\"tag\":\"djdj\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\",\"contactIdList\":[38710,82002],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/788c0a7e11a\",\"https://camo.githubusercontent.com/f513f67\"],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":82001,\"sex\":0,\"name\":\"测试改名2\",\"tag\":\"APIJSON User\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\",\"contactIdList\":[82025,70793,82034,93793,82021,82033,93794],\"pictureList\":[\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":82004,\"sex\":0,\"name\":\"Tommy\",\"tag\":\"fasef\",\"head\":\"http://static.oschina.net/uploads/user/1200/2400261_50.png?t=1439638750000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":82009,\"sex\":0,\"name\":\"God\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":82012,\"sex\":0,\"name\":\"Steve\",\"tag\":\"FEWE\",\"head\":\"http://static.oschina.net/uploads/user/1/3064_50.jpg?t=1449566001000\",\"contactIdList\":[82004,82002,93793],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":82020,\"sex\":0,\"name\":\"ORANGE\",\"head\":\"http://static.oschina.net/uploads/user/48/96289_50.jpg?t=1452751699000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":82022,\"sex\":0,\"name\":\"Internet\",\"head\":\"http://static.oschina.net/uploads/user/1332/2664107_50.jpg?t=1457405500000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":82023,\"sex\":0,\"name\":\"No1\",\"head\":\"http://static.oschina.net/uploads/user/1385/2770216_50.jpg?t=1464405516000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":82024,\"sex\":0,\"name\":\"Lemon\",\"head\":\"http://static.oschina.net/uploads/user/427/855532_50.jpg?t=1435030876000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":82026,\"sex\":0,\"name\":\"iOS\",\"head\":\"http://static.oschina.net/uploads/user/1200/2400261_50.png?t=1439638750000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":82027,\"sex\":0,\"name\":\"Yong\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":82029,\"sex\":0,\"name\":\"GASG\",\"head\":\"http://common.cnblogs.com/images/wechat.png\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":82031,\"sex\":0,\"name\":\"Lemon\",\"head\":\"http://static.oschina.net/uploads/user/48/96331_50.jpg\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":82032,\"sex\":0,\"name\":\"Stack\",\"tag\":\"fasdg\",\"head\":\"http://static.oschina.net/uploads/user/1385/2770216_50.jpg?t=1464405516000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":82036,\"sex\":0,\"name\":\"SAG\",\"head\":\"http://static.oschina.net/uploads/user/1332/2664107_50.jpg?t=1457405500000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":82037,\"sex\":0,\"name\":\"Test\",\"head\":\"http://static.oschina.net/uploads/user/1200/2400261_50.png?t=1439638750000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":82038,\"sex\":0,\"name\":\"Battle\",\"head\":\"http://static.oschina.net/uploads/user/48/96289_50.jpg?t=1452751699000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":82041,\"sex\":0,\"name\":\"Holo\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[38710,82001],\"pictureList\":[],\"date\":\"2017-03-04 17:59:34.0\"},{\"id\":82043,\"sex\":0,\"name\":\"Holiday\",\"head\":\"http://static.oschina.net/uploads/user/998/1997902_50.jpg?t=1407806577000\",\"contactIdList\":[70793,82006],\"pictureList\":[],\"date\":\"2017-03-04 18:05:04.0\"},{\"id\":82045,\"sex\":0,\"name\":\"Green\",\"head\":\"http://common.cnblogs.com/images/wechat.png\",\"contactIdList\":[82001,82002,82003,1485246481130],\"pictureList\":[],\"date\":\"2017-03-04 18:22:39.0\"},{\"id\":82046,\"sex\":0,\"name\":\"Team\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[38710,82002,1485246481130],\"pictureList\":[],\"date\":\"2017-03-04 23:11:17.0\"},{\"id\":82047,\"sex\":0,\"name\":\"Tesla\",\"head\":\"http://common.cnblogs.com/images/wechat.png\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-05 00:02:05.0\"},{\"id\":82048,\"sex\":0,\"name\":\"Moto\",\"head\":\"http://static.oschina.net/uploads/user/48/96289_50.jpg?t=1452751699000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-05 00:04:02.0\"},{\"id\":82049,\"sex\":0,\"name\":\"ITMan\",\"head\":\"http://static.oschina.net/uploads/user/629/1258821_50.jpg?t=1378063141000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-05 17:51:51.0\"},{\"id\":82050,\"sex\":0,\"name\":\"Parl\",\"head\":\"http://static.oschina.net/uploads/user/998/1997902_50.jpg?t=1407806577000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-05 17:52:52.0\"},{\"id\":82051,\"sex\":0,\"name\":\"Girl\",\"head\":\"http://static.oschina.net/uploads/user/1332/2664107_50.jpg?t=1457405500000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-05 17:53:37.0\"},{\"id\":82052,\"sex\":0,\"name\":\"Unbrella\",\"head\":\"http://static.oschina.net/uploads/user/1385/2770216_50.jpg?t=1464405516000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-05 17:57:54.0\"},{\"id\":82053,\"sex\":0,\"name\":\"Alice\",\"head\":\"http://common.cnblogs.com/images/wechat.png\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-05 23:25:42.0\"},{\"id\":82054,\"sex\":0,\"name\":\"Harvey\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-06 20:29:03.0\"},{\"id\":82057,\"sex\":0,\"name\":\"NullPointerExeption\",\"head\":\"http://static.oschina.net/uploads/user/1385/2770216_50.jpg?t=1464405516000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-12 14:01:23.0\"},{\"id\":82058,\"sex\":0,\"name\":\"StupidBird\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[82001,82002],\"pictureList\":[],\"date\":\"2017-03-12 19:23:04.0\"},{\"id\":90814,\"sex\":0,\"name\":\"007\",\"head\":\"http://static.oschina.net/uploads/user/51/102723_50.jpg?t=1449212504000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":93793,\"sex\":0,\"name\":\"Mike\",\"tag\":\"GES\",\"head\":\"http://static.oschina.net/uploads/user/48/96331_50.jpg\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":93794,\"sex\":0,\"name\":\"Lemon\",\"head\":\"http://static.oschina.net/uploads/user/48/97721_50.jpg?t=1451544779000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":1490109845208,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-21 23:24:05.0\"},{\"id\":1490427139175,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[38710,70793],\"pictureList\":[],\"date\":\"2017-03-25 15:32:19.0\"},{\"id\":1490427577823,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-25 15:39:37.0\"},{\"id\":1490584952968,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-03-27 11:22:32.0\"},{\"id\":1492936169722,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-04-23 16:29:29.0\"},{\"id\":1493480142628,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-04-29 23:35:42.0\"},{\"id\":1493747512860,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-05-03 01:51:52.0\"},{\"id\":1493747777770,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-05-03 01:56:17.0\"},{\"id\":1493748594003,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-05-03 02:09:54.0\"},{\"id\":1493748615711,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-05-03 02:10:15.0\"},{\"id\":1493749090643,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-05-03 02:18:10.0\"},{\"id\":1493836043151,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-05-04 02:27:23.0\"},{\"id\":1493883110132,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-05-04 15:31:50.0\"},{\"id\":1493890214167,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-05-04 17:30:14.0\"},{\"id\":1493890303473,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-05-04 17:31:43.0\"},{\"id\":1493890303474,\"sex\":0,\"name\":\"Test Post\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-06-12 23:50:44.0\"},{\"id\":1493890303475,\"sex\":0,\"name\":\"Test Post\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-06-12 23:51:23.0\"},{\"id\":1497792972314,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-06-18 21:36:12.0\"},{\"id\":1497792972315,\"sex\":0,\"name\":\"一二三\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-06-25 18:42:33.0\"},{\"id\":1499057230629,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-07-03 12:47:10.0\"},{\"id\":1500825221910,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-07-23 23:53:41.0\"},{\"id\":1502638023483,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-08-13 23:27:03.0\"},{\"id\":1502639062900,\"sex\":0,\"name\":\"TESLA\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-08-13 23:44:22.0\"},{\"id\":1502639424119,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-08-13 23:50:24.0\"},{\"id\":1507220582167,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-10-06 00:23:02.0\"},{\"id\":1508072071492,\"sex\":0,\"name\":\"赵钱孙李\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-10-15 20:54:31.0\"},{\"id\":1508072160401,\"sex\":0,\"name\":\"四五六\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-10-15 20:56:00.0\"},{\"id\":1508072202871,\"sex\":0,\"name\":\"七八九十\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-10-15 20:56:42.0\"},{\"id\":1510495628760,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-11-12 22:07:08.0\"},{\"id\":1511407581570,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[82002,82003,82005,82006,82021,82023,82036,82033],\"pictureList\":[],\"date\":\"2017-11-23 11:26:21.0\"},{\"id\":1511761906715,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-11-27 13:51:46.0\"},{\"id\":1511965911349,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-11-29 22:31:51.0\"},{\"id\":1512387063078,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[],\"pictureList\":[],\"date\":\"2017-12-04 19:31:03.0\"},{\"id\":1512531601485,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[82001],\"pictureList\":[],\"date\":\"2017-12-06 11:40:01.0\"},{\"id\":1514623064133,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"date\":\"2017-12-30 16:37:44.0\"},{\"id\":1514625918255,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[82002,93793],\"date\":\"2017-12-30 17:25:18.0\"},{\"id\":1514626163032,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"date\":\"2017-12-30 17:29:23.0\"},{\"id\":1514858422969,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[93793,82056],\"date\":\"2018-01-02 10:00:22.0\"},{\"id\":1515565976140,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"傻\",\"contactIdList\":[82003,82021],\"date\":\"2018-01-10 14:32:56.0\"},{\"id\":1518218350585,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"date\":\"2018-02-10 07:19:10.0\"},{\"id\":1519778917280,\"sex\":0,\"name\":\"APIJSONUser\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"date\":\"2018-02-28 08:48:37.0\"}],\"code\":200,\"msg\":\"success\"}','2018-03-10 11:40:56',NULL,NULL),(1520682589957,82001,0,1520682468690,0,'{\"Moment\":{\"id\":1520086403692,\"userId\":82001,\"date\":\"2018-03-03 22:13:23.0\",\"content\":\"测试新增动态\",\"praiseUserIdList\":[],\"pictureList\":[\"http://static.oschina.net/uploads/user/48/96331_50.jpg\"]},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\"},\"code\":200,\"msg\":\"success\"}','2018-03-10 11:49:49',NULL,NULL),(1520682742215,82001,0,1519526273822,0,'{\"Privacy\":{\"id\":82001,\"certified\":1,\"phone\":13000082001,\"balance\":28808},\"code\":200,\"msg\":\"success\"}','2018-03-10 11:52:22',NULL,NULL),(1532879615717,82001,0,1521907333048,0,'{\"User-id[]\":[82002,82003,82005,82041,82045,82058,1512531601485,1528254173621],\"Moment[]\":[{\"id\":32,\"userId\":82002,\"date\":\"2017-02-08 16:06:11.0\",\"praiseUserIdList\":[38710,82002,82001],\"pictureList\":[\"https://camo.githubusercontent.com/f513fa631bd780dc0ec3cf2663777e356dc3664f/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343733323232332d3337333933303233322e6a7067\",\"https://camo.githubusercontent.com/5f5c4e0c4dc539c34e8eae8ac0cbc6dccdfee5d3/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343533333831362d323032373434343231382e6a7067\",\"http://static.oschina.net/uploads/img/201604/22172508_mpwj.jpg\"]},{\"id\":371,\"userId\":82002,\"date\":\"2017-02-01 19:14:31.0\",\"content\":\"This is a Content...-371\",\"praiseUserIdList\":[90814,93793,82003,82005,82006,82040,82002,82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/c98b1c86af136745cc4626c6ece830f76de9ee83/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343930383036362d313837323233393236352e6a7067\",\"http://static.oschina.net/uploads/img/201604/22172507_aMmH.jpg\",\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\"]},{\"id\":1508053762227,\"userId\":82003,\"date\":\"2017-10-15 15:49:22.0\",\"content\":\"我也试试\",\"praiseUserIdList\":[1515565976140,82001],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"]},{\"id\":1508072491570,\"userId\":82002,\"date\":\"2017-10-15 21:01:31.0\",\"content\":\"有点冷~\",\"praiseUserIdList\":[82001,82002],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"]},{\"id\":1508073178489,\"userId\":82045,\"date\":\"2017-10-15 21:12:58.0\",\"content\":\"发动态\",\"praiseUserIdList\":[82001],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"]},{\"id\":1514017444961,\"userId\":82002,\"date\":\"2017-12-23 16:24:04.0\",\"content\":\"123479589679\",\"praiseUserIdList\":[82002,1520242280259,82001,70793,1524042900591,1528264711016],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"]},{\"id\":1531062713966,\"userId\":82002,\"date\":\"2018-07-08 23:11:53.0\",\"content\":\"云南好美啊( ◞˟૩˟)◞\",\"praiseUserIdList\":[82001,82005,38710,70793,93793,82003,1531969715979],\"pictureList\":[\"https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1531072366455&di=c0d4b15b2c4b70aad49e6ae747f60742&imgtype=0&src=http%3A%2F%2Fpic1.win4000.com%2Fwallpaper%2F3%2F57a2a41f57d09.jpg\",\"https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1531072499167&di=5b5621d117edbc5d344a03ba0a6b580b&imgtype=0&src=http%3A%2F%2Fi0.szhomeimg.com%2FUploadFiles%2FBBS%2F2006%2F08%2F05%2F24752199_79122.91.jpg\"]}],\"code\":200,\"msg\":\"success\"}','2018-07-29 15:53:35',NULL,NULL),(1532879625816,82001,0,1521907333047,0,'{\"[]\":[{\"Moment\":{\"id\":301,\"userId\":93793,\"date\":\"2017-02-01 19:14:31.0\",\"content\":\"This is a Content...-301\",\"praiseUserIdList\":[38710,93793,82003,82005,82040,82055,82002],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\"]},\"Comment\":{\"id\":45,\"momentId\":301,\"content\":\"This is a Content...-45\"},\"join\":\"&/User/id@,</Comment/momentId@\"},{\"Moment\":{\"id\":58,\"userId\":90814,\"date\":\"2017-02-01 19:14:31.0\",\"content\":\"This is a Content...-435\",\"praiseUserIdList\":[38710,82003,82005,93793,82006,82044,82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172507_aMmH.jpg\"]},\"Comment\":{\"id\":13,\"momentId\":58,\"content\":\"This is a Content...-13\"},\"join\":\"&/User/id@,</Comment/momentId@\"},{\"Moment\":{\"id\":371,\"userId\":82002,\"date\":\"2017-02-01 19:14:31.0\",\"content\":\"This is a Content...-371\",\"praiseUserIdList\":[90814,93793,82003,82005,82006,82040,82002,82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/c98b1c86af136745cc4626c6ece830f76de9ee83/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343930383036362d313837323233393236352e6a7067\",\"http://static.oschina.net/uploads/img/201604/22172507_aMmH.jpg\",\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\"]},\"User\":{\"id\":82002,\"name\":\"Happy~\",\"head\":\"http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000\"},\"Comment\":{\"id\":68,\"momentId\":371,\"content\":\"This is a Content...-68\"},\"join\":\"&/User/id@,</Comment/momentId@\"},{\"Moment\":{\"id\":170,\"userId\":70793,\"date\":\"2017-02-01 19:14:31.0\",\"content\":\"This is a Content...-73\",\"praiseUserIdList\":[82044,82002,82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172508_mpwj.jpg\"]},\"User\":{\"id\":70793,\"name\":\"Strong\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\"},\"Comment\":{\"id\":44,\"momentId\":170,\"content\":\"This is a Content...-44\"},\"join\":\"&/User/id@,</Comment/momentId@\"},{\"Moment\":{\"id\":470,\"userId\":38710,\"date\":\"2017-02-01 19:14:31.0\",\"content\":\"This is a Content...-470\",\"praiseUserIdList\":[82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172507_Pz9Y.png\"]},\"User\":{\"id\":38710,\"name\":\"TommyLemon\",\"head\":\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\"},\"Comment\":{\"id\":4,\"momentId\":470,\"content\":\"This is a Content...-4\"},\"join\":\"&/User/id@,</Comment/momentId@\"},{\"Moment\":{\"id\":12,\"userId\":70793,\"date\":\"2017-02-08 16:06:11.0\",\"content\":\"1111534034\",\"praiseUserIdList\":[70793,93793,82044,82040,82055,90814,38710,82002,82006,1508072105320,82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/788c0a7e11a4f5aadef3c886f028c79b4808613a/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343932353935372d313732303737333630382e6a7067\",\"http://static.oschina.net/uploads/img/201604/22172507_Pz9Y.png\",\"https://camo.githubusercontent.com/c98b1c86af136745cc4626c6ece830f76de9ee83/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343930383036362d313837323233393236352e6a7067\",\"https://camo.githubusercontent.com/f513fa631bd780dc0ec3cf2663777e356dc3664f/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343733323232332d3337333933303233322e6a7067\",\"https://camo.githubusercontent.com/c98b1c86af136745cc4626c6ece830f76de9ee83/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343930383036362d313837323233393236352e6a7067\",\"https://camo.githubusercontent.com/f513fa631bd780dc0ec3cf2663777e356dc3664f/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343733323232332d3337333933303233322e6a7067\"]},\"User\":{\"id\":70793,\"name\":\"Strong\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\"},\"Comment\":{\"id\":162,\"momentId\":12,\"content\":\"This is a Content...-162\"},\"join\":\"&/User/id@,</Comment/momentId@\"},{\"Moment\":{\"id\":15,\"userId\":70793,\"date\":\"2017-02-08 16:06:11.0\",\"content\":\"APIJSON is a JSON Transmission Structure Protocol…\",\"praiseUserIdList\":[82055,82002,38710],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"]},\"User\":{\"id\":70793,\"name\":\"Strong\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\"},\"Comment\":{\"id\":176,\"momentId\":15,\"content\":\"thank you\"},\"join\":\"&/User/id@,</Comment/momentId@\"},{\"Moment\":{\"id\":543,\"userId\":93793,\"date\":\"2017-02-08 16:06:11.0\",\"praiseUserIdList\":[82001],\"pictureList\":[\"https://camo.githubusercontent.com/5f5c4e0c4dc539c34e8eae8ac0cbc6dccdfee5d3/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343533333831362d323032373434343231382e6a7067\",\"https://camo.githubusercontent.com/c98b1c86af136745cc4626c6ece830f76de9ee83/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343930383036362d313837323233393236352e6a7067\",\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\"]},\"Comment\":{\"id\":1490777905437,\"momentId\":543,\"content\":\"rr\"},\"join\":\"&/User/id@,</Comment/momentId@\"},{\"Moment\":{\"id\":32,\"userId\":82002,\"date\":\"2017-02-08 16:06:11.0\",\"praiseUserIdList\":[38710,82002,82001],\"pictureList\":[\"https://camo.githubusercontent.com/f513fa631bd780dc0ec3cf2663777e356dc3664f/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343733323232332d3337333933303233322e6a7067\",\"https://camo.githubusercontent.com/5f5c4e0c4dc539c34e8eae8ac0cbc6dccdfee5d3/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343533333831362d323032373434343231382e6a7067\",\"http://static.oschina.net/uploads/img/201604/22172508_mpwj.jpg\"]},\"User\":{\"id\":82002,\"name\":\"Happy~\",\"head\":\"http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000\"},\"Comment\":{\"id\":1512035117021,\"momentId\":32,\"content\":\"图片看不了啊\"},\"join\":\"&/User/id@,</Comment/momentId@\"},{\"Moment\":{\"id\":551,\"userId\":70793,\"date\":\"2017-02-08 16:06:11.0\",\"content\":\"test\",\"praiseUserIdList\":[82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172507_Pz9Y.png\"]},\"User\":{\"id\":70793,\"name\":\"Strong\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\"},\"Comment\":{\"id\":1490864039264,\"momentId\":551,\"content\":\"Wonderful!\"},\"join\":\"&/User/id@,</Comment/momentId@\"}],\"code\":200,\"msg\":\"success\"}','2018-07-29 15:53:45',NULL,NULL),(1533140211536,82001,0,1521907303540,0,'{\"User[]\":[{\"id\":38710,\"sex\":0,\"name\":\"TommyLemon\",\"tag\":\"Android&Java\",\"head\":\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"contactIdList\":[82003,82005,90814,82004,82009,82002,82044,93793,70793],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":70793,\"sex\":0,\"name\":\"Strong\",\"tag\":\"djdj\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\",\"contactIdList\":[38710,82002],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/788c0a7e11a\",\"https://camo.githubusercontent.com/f513f67\"],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":82001,\"sex\":0,\"name\":\"测试改名\",\"tag\":\"APIJSON User\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\",\"contactIdList\":[1520242280259,82030,82025,82003,93793,82002,1531969715979,82006,82005],\"pictureList\":[\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"}],\"code\":200,\"msg\":\"success\"}','2018-08-01 16:16:51',NULL,NULL),(1533140331684,82001,0,1521905895591,0,'{\"Moment\":{\"code\":200,\"msg\":\"success\",\"count\":11},\"code\":200,\"msg\":\"success\"}','2018-08-01 16:18:51',NULL,NULL),(1533140553624,82001,0,1521903828410,0,'{\"User\":{\"code\":200,\"msg\":\"success\",\"count\":70},\"code\":200,\"msg\":\"success\"}','2018-08-01 16:22:33',NULL,NULL),(1533140565380,82001,0,1511796208670,0,'{\"Verify\":{\"code\":200,\"msg\":\"success\",\"count\":1},\"code\":200,\"msg\":\"success\"}','2018-08-01 16:22:45',NULL,NULL),(1533140569777,82001,0,1511796155277,0,'{\"Verify\":{\"id\":1533140566615,\"type\":0,\"phone\":13000082001,\"verify\":10867,\"date\":\"2018-08-02 00:22:46.0\"},\"tag\":\"Verify\",\"code\":200,\"msg\":\"success\"}','2018-08-01 16:22:49',NULL,NULL),(1533140576601,82001,0,1511796155277,0,'{\"Verify\":{\"id\":1533140571205,\"type\":0,\"phone\":13000082001,\"verify\":2383,\"date\":\"2018-08-02 00:22:51.0\"},\"tag\":\"Verify\",\"code\":200,\"msg\":\"success\"}','2018-08-01 16:22:56',NULL,NULL),(1533140600338,82001,0,1511967853340,0,'{\"[]\":[{\"Moment\":{\"id\":301,\"userId\":93793,\"date\":\"2017-02-01 19:14:31.0\",\"content\":\"This is a Content...-301\",\"praiseUserIdList\":[38710,93793,82003,82005,82040,82055,82002],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\"]},\"User\":{\"id\":93793,\"name\":\"Mike\",\"head\":\"http://static.oschina.net/uploads/user/48/96331_50.jpg\"},\"User[]\":[{\"id\":38710,\"name\":\"TommyLemon\"},{\"id\":82002,\"name\":\"Happy~\"},{\"id\":82003,\"name\":\"Wechat\"},{\"id\":82005,\"name\":\"Jan\"},{\"id\":82040,\"name\":\"Dream\"},{\"id\":82055,\"name\":\"Solid\"},{\"id\":93793,\"name\":\"Mike\"}],\"[]\":[{\"Comment\":{\"id\":45,\"toId\":0,\"userId\":93793,\"momentId\":301,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"This is a Content...-45\"},\"User\":{\"id\":93793,\"name\":\"Mike\"}},{\"Comment\":{\"id\":51,\"toId\":45,\"userId\":82003,\"momentId\":301,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"This is a Content...-51\"},\"User\":{\"id\":82003,\"name\":\"Wechat\"}},{\"Comment\":{\"id\":76,\"toId\":45,\"userId\":93793,\"momentId\":301,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"This is a Content...-76\"},\"User\":{\"id\":93793,\"name\":\"Mike\"}},{\"Comment\":{\"id\":120,\"toId\":0,\"userId\":93793,\"momentId\":301,\"date\":\"2017-03-02 13:56:06.0\",\"content\":\"This is a Content...-110\"},\"User\":{\"id\":93793,\"name\":\"Mike\"}},{\"Comment\":{\"id\":124,\"toId\":0,\"userId\":82001,\"momentId\":301,\"date\":\"2017-03-02 13:56:06.0\",\"content\":\"This is a Content...-114\"},\"User\":{\"id\":82001,\"name\":\"测试改名\"}},{\"Comment\":{\"id\":1490781009548,\"toId\":51,\"userId\":82001,\"momentId\":301,\"date\":\"2017-03-29 17:50:09.0\",\"content\":\"3\"},\"User\":{\"id\":82001,\"name\":\"测试改名\"}}]},{\"Moment\":{\"id\":58,\"userId\":90814,\"date\":\"2017-02-01 19:14:31.0\",\"content\":\"This is a Content...-435\",\"praiseUserIdList\":[38710,82003,82005,93793,82006,82044,82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172507_aMmH.jpg\"]},\"User\":{\"id\":90814,\"name\":\"007\",\"head\":\"http://static.oschina.net/uploads/user/51/102723_50.jpg?t=1449212504000\"},\"User[]\":[{\"id\":38710,\"name\":\"TommyLemon\"},{\"id\":82001,\"name\":\"测试改名\"},{\"id\":82003,\"name\":\"Wechat\"},{\"id\":82005,\"name\":\"Jan\"},{\"id\":82006,\"name\":\"Meria\"},{\"id\":82044,\"name\":\"Love\"},{\"id\":93793,\"name\":\"Mike\"}],\"[]\":[{\"Comment\":{\"id\":13,\"toId\":0,\"userId\":82005,\"momentId\":58,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"This is a Content...-13\"},\"User\":{\"id\":82005,\"name\":\"Jan\"}},{\"Comment\":{\"id\":77,\"toId\":13,\"userId\":93793,\"momentId\":58,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"This is a Content...-77\"},\"User\":{\"id\":93793,\"name\":\"Mike\"}},{\"Comment\":{\"id\":97,\"toId\":13,\"userId\":82006,\"momentId\":58,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"This is a Content...-97\"},\"User\":{\"id\":82006,\"name\":\"Meria\"}},{\"Comment\":{\"id\":167,\"userId\":82001,\"momentId\":58,\"date\":\"2017-03-25 19:48:41.0\",\"content\":\"Nice!\"},\"User\":{\"id\":82001,\"name\":\"测试改名\"}},{\"Comment\":{\"id\":173,\"userId\":38710,\"momentId\":58,\"date\":\"2017-03-25 20:25:13.0\",\"content\":\"Good\"},\"User\":{\"id\":38710,\"name\":\"TommyLemon\"}},{\"Comment\":{\"id\":188,\"toId\":97,\"userId\":82001,\"momentId\":58,\"date\":\"2017-03-26 15:21:32.0\",\"content\":\"1646\"},\"User\":{\"id\":82001,\"name\":\"测试改名\"}}]},{\"Moment\":{\"id\":371,\"userId\":82002,\"date\":\"2017-02-01 19:14:31.0\",\"content\":\"This is a Content...-371\",\"praiseUserIdList\":[90814,93793,82003,82005,82006,82040,82002,82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/c98b1c86af136745cc4626c6ece830f76de9ee83/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343930383036362d313837323233393236352e6a7067\",\"http://static.oschina.net/uploads/img/201604/22172507_aMmH.jpg\",\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\"]},\"User\":{\"id\":82002,\"name\":\"Happy~\",\"head\":\"http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000\"},\"User[]\":[{\"id\":82001,\"name\":\"测试改名\"},{\"id\":82002,\"name\":\"Happy~\"},{\"id\":82003,\"name\":\"Wechat\"},{\"id\":82005,\"name\":\"Jan\"},{\"id\":82006,\"name\":\"Meria\"},{\"id\":82040,\"name\":\"Dream\"},{\"id\":90814,\"name\":\"007\"},{\"id\":93793,\"name\":\"Mike\"}],\"[]\":[{\"Comment\":{\"id\":68,\"toId\":0,\"userId\":82005,\"momentId\":371,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"This is a Content...-68\"},\"User\":{\"id\":82005,\"name\":\"Jan\"}},{\"Comment\":{\"id\":157,\"userId\":93793,\"momentId\":371,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"This is a Content...-157\"},\"User\":{\"id\":93793,\"name\":\"Mike\"}},{\"Comment\":{\"id\":110,\"toId\":0,\"userId\":93793,\"momentId\":371,\"date\":\"2017-02-01 19:23:24.0\",\"content\":\"This is a Content...-110\"},\"User\":{\"id\":93793,\"name\":\"Mike\"}},{\"Comment\":{\"id\":114,\"toId\":0,\"userId\":82001,\"momentId\":371,\"date\":\"2017-03-02 13:56:06.0\",\"content\":\"This is a Content...-114\"},\"User\":{\"id\":82001,\"name\":\"测试改名\"}},{\"Comment\":{\"id\":115,\"toId\":0,\"userId\":38710,\"momentId\":371,\"date\":\"2017-03-02 13:56:06.0\",\"content\":\"This is a Content...-115\"},\"User\":{\"id\":38710,\"name\":\"TommyLemon\"}},{\"Comment\":{\"id\":116,\"toId\":0,\"userId\":70793,\"momentId\":371,\"date\":\"2017-03-02 13:56:06.0\",\"content\":\"This is a Content...-116\"},\"User\":{\"id\":70793,\"name\":\"Strong\"}}]},{\"Moment\":{\"id\":170,\"userId\":70793,\"date\":\"2017-02-01 19:14:31.0\",\"content\":\"This is a Content...-73\",\"praiseUserIdList\":[82044,82002,82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172508_mpwj.jpg\"]},\"User\":{\"id\":70793,\"name\":\"Strong\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\"},\"User[]\":[{\"id\":82001,\"name\":\"测试改名\"},{\"id\":82002,\"name\":\"Happy~\"},{\"id\":82044,\"name\":\"Love\"}],\"[]\":[{\"Comment\":{\"id\":44,\"toId\":0,\"userId\":82003,\"momentId\":170,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"This is a Content...-44\"},\"User\":{\"id\":82003,\"name\":\"Wechat\"}},{\"Comment\":{\"id\":54,\"toId\":0,\"userId\":82004,\"momentId\":170,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"This is a Content...-54\"},\"User\":{\"id\":82004,\"name\":\"Tommy\"}},{\"Comment\":{\"id\":99,\"toId\":44,\"userId\":70793,\"momentId\":170,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"This is a Content...-99\"},\"User\":{\"id\":70793,\"name\":\"Strong\"}},{\"Comment\":{\"id\":206,\"toId\":54,\"userId\":82001,\"momentId\":170,\"date\":\"2017-03-29 11:04:23.0\",\"content\":\"ejej\"},\"User\":{\"id\":82001,\"name\":\"测试改名\"}},{\"Comment\":{\"id\":1490780759866,\"toId\":99,\"userId\":82001,\"momentId\":170,\"date\":\"2017-03-29 17:45:59.0\",\"content\":\"99\"},\"User\":{\"id\":82001,\"name\":\"测试改名\"}},{\"Comment\":{\"id\":1490863661426,\"toId\":1490780759866,\"userId\":70793,\"momentId\":170,\"date\":\"2017-03-30 16:47:41.0\",\"content\":\"66\"},\"User\":{\"id\":70793,\"name\":\"Strong\"}}]},{\"Moment\":{\"id\":470,\"userId\":38710,\"date\":\"2017-02-01 19:14:31.0\",\"content\":\"This is a Content...-470\",\"praiseUserIdList\":[82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172507_Pz9Y.png\"]},\"User\":{\"id\":38710,\"name\":\"TommyLemon\",\"head\":\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\"},\"User[]\":[{\"id\":82001,\"name\":\"测试改名\"}],\"[]\":[{\"Comment\":{\"id\":4,\"toId\":0,\"userId\":38710,\"momentId\":470,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"This is a Content...-4\"},\"User\":{\"id\":38710,\"name\":\"TommyLemon\"}},{\"Comment\":{\"id\":22,\"toId\":221,\"userId\":82001,\"momentId\":470,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"测试修改评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\"}},{\"Comment\":{\"id\":47,\"toId\":4,\"userId\":70793,\"momentId\":470,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"This is a Content...-47\"},\"User\":{\"id\":70793,\"name\":\"Strong\"}},{\"Comment\":{\"id\":1490863507114,\"toId\":4,\"userId\":82003,\"momentId\":470,\"date\":\"2017-03-30 16:45:07.0\",\"content\":\"yes\"},\"User\":{\"id\":82003,\"name\":\"Wechat\"}},{\"Comment\":{\"id\":1490863903900,\"toId\":0,\"userId\":82006,\"momentId\":470,\"date\":\"2017-03-30 16:51:43.0\",\"content\":\"SOGA\"},\"User\":{\"id\":82006,\"name\":\"Meria\"}},{\"Comment\":{\"id\":1491740899179,\"toId\":0,\"userId\":82001,\"momentId\":470,\"date\":\"2017-04-09 20:28:19.0\",\"content\":\"www\"},\"User\":{\"id\":82001,\"name\":\"测试改名\"}}]}],\"code\":200,\"msg\":\"success\"}','2018-08-01 16:23:20',NULL,NULL),(1533140607459,82001,0,1511964176689,0,'{\"[]\":[{\"Comment\":{\"id\":176,\"toId\":166,\"userId\":38710,\"momentId\":15,\"date\":\"2017-03-25 20:28:03.0\",\"content\":\"thank you\"},\"User\":{\"id\":38710,\"name\":\"TommyLemon\",\"head\":\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\"}},{\"Comment\":{\"id\":1490863469638,\"toId\":0,\"userId\":82002,\"momentId\":15,\"date\":\"2017-03-30 16:44:29.0\",\"content\":\"Just do it\"},\"User\":{\"id\":82002,\"name\":\"Happy~\",\"head\":\"http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000\"}},{\"Comment\":{\"id\":1490875660259,\"toId\":1490863469638,\"userId\":82055,\"momentId\":15,\"date\":\"2017-03-30 20:07:40.0\",\"content\":\"I prove wht you said(??????)\"},\"User\":{\"id\":82055,\"name\":\"Solid\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1508227456407,\"toId\":0,\"userId\":82001,\"momentId\":15,\"date\":\"2017-10-17 16:04:16.0\",\"content\":\"hsh\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1509346606036,\"toId\":0,\"userId\":82001,\"momentId\":15,\"date\":\"2017-10-30 14:56:46.0\",\"content\":\"测\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1520332892486,\"userId\":82001,\"momentId\":15,\"date\":\"2018-03-06 18:41:32.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1525933236313,\"userId\":82001,\"momentId\":15,\"date\":\"2018-05-10 14:20:36.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1525933255901,\"userId\":82001,\"momentId\":15,\"date\":\"2018-05-10 14:20:55.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1527949266037,\"userId\":82001,\"momentId\":15,\"date\":\"2018-06-02 22:21:06.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1528339777338,\"userId\":82001,\"momentId\":15,\"date\":\"2018-06-07 10:49:37.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1528366915282,\"userId\":82001,\"momentId\":15,\"date\":\"2018-06-07 18:21:55.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1528366931410,\"userId\":82001,\"momentId\":15,\"date\":\"2018-06-07 18:22:11.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1528392773597,\"userId\":82001,\"momentId\":15,\"date\":\"2018-06-08 01:32:53.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1529034360708,\"userId\":82001,\"momentId\":15,\"date\":\"2018-06-15 11:46:00.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1529078537044,\"userId\":82001,\"momentId\":15,\"date\":\"2018-06-16 00:02:17.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1529401004622,\"userId\":82001,\"momentId\":15,\"date\":\"2018-06-19 17:36:44.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1529401505690,\"userId\":82001,\"momentId\":15,\"date\":\"2018-06-19 17:45:05.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1529468113356,\"userId\":82001,\"momentId\":15,\"date\":\"2018-06-20 12:15:13.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1529724026842,\"userId\":82001,\"momentId\":15,\"date\":\"2018-06-23 11:20:26.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1529909214303,\"userId\":82001,\"momentId\":15,\"date\":\"2018-06-25 14:46:54.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}}],\"code\":200,\"msg\":\"success\"}','2018-08-01 16:23:27',NULL,NULL),(1533140610051,82001,0,1511969630372,0,'{\"Comment\":{\"code\":200,\"msg\":\"success\",\"id\":1533140601544,\"count\":1},\"code\":200,\"msg\":\"success\"}','2018-08-01 16:23:30',NULL,NULL),(1533140615913,82001,0,1521905895591,0,'{\"Moment\":{\"code\":200,\"msg\":\"success\",\"count\":19},\"code\":200,\"msg\":\"success\"}','2018-08-01 16:23:35',NULL,NULL),(1533140617466,82001,0,1521905868719,0,'{\"Privacy\":{\"id\":82001,\"certified\":1,\"phone\":13000082001,\"balance\":9832.86},\"code\":200,\"msg\":\"success\"}','2018-08-01 16:23:37',NULL,NULL),(1533140619001,82001,0,1521905680680,0,'{\"Moment\":{\"code\":200,\"msg\":\"success\",\"id\":1533140610656,\"count\":1},\"code\":200,\"msg\":\"success\"}','2018-08-01 16:23:39',NULL,NULL),(1533140623032,82001,0,1521904756674,0,'{\"User[]\":[{\"id\":38710,\"sex\":0,\"name\":\"TommyLemon\",\"tag\":\"Android&Java\",\"head\":\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"contactIdList\":[82003,82005,90814,82004,82009,82002,82044,93793,70793],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":70793,\"sex\":0,\"name\":\"Strong\",\"tag\":\"djdj\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\",\"contactIdList\":[38710,82002],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/788c0a7e11a\",\"https://camo.githubusercontent.com/f513f67\"],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":82001,\"sex\":0,\"name\":\"测试改名\",\"tag\":\"APIJSON User\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\",\"contactIdList\":[1520242280259,82030,82025,82003,93793,82002,1531969715979,82006,82005],\"pictureList\":[\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"}],\"code\":200,\"msg\":\"success\"}','2018-08-01 16:23:43',NULL,NULL),(1533140626067,82001,0,1521904653622,0,'{\"User[]\":[{\"id\":70793,\"sex\":0,\"name\":\"Strong\",\"tag\":\"djdj\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\",\"contactIdList\":[38710,82002],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/788c0a7e11a\",\"https://camo.githubusercontent.com/f513f67\"],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":82002,\"sex\":1,\"name\":\"Happy~\",\"tag\":\"iOS\",\"head\":\"http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000\",\"contactIdList\":[82005,82001,38710],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":82005,\"sex\":1,\"name\":\"Jan\",\"tag\":\"AG\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[82001,38710],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}],\"code\":200,\"msg\":\"success\"}','2018-08-01 16:23:46',NULL,NULL),(1533140629710,82001,0,1521903761689,0,'{\"User\":{\"code\":200,\"msg\":\"success\",\"count\":117},\"code\":200,\"msg\":\"success\"}','2018-08-01 16:23:49',NULL,NULL),(1533140633031,82001,0,1521902110680,0,'{\"[]\":[{\"User\":{\"id\":38710,\"sex\":0,\"name\":\"TommyLemon\",\"tag\":\"Android&Java\",\"head\":\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"contactIdList\":[82003,82005,90814,82004,82009,82002,82044,93793,70793],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":70793,\"sex\":0,\"name\":\"Strong\",\"tag\":\"djdj\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\",\"contactIdList\":[38710,82002],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/788c0a7e11a\",\"https://camo.githubusercontent.com/f513f67\"],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82001,\"sex\":0,\"name\":\"测试改名\",\"tag\":\"APIJSON User\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\",\"contactIdList\":[1520242280259,82030,82025,82003,93793,82002,1531969715979,82006,82005],\"pictureList\":[\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82002,\"sex\":1,\"name\":\"Happy~\",\"tag\":\"iOS\",\"head\":\"http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000\",\"contactIdList\":[82005,82001,38710],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82003,\"sex\":1,\"name\":\"Wechat\",\"head\":\"http://common.cnblogs.com/images/wechat.png\",\"contactIdList\":[82001,93793],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}}],\"code\":200,\"msg\":\"success\"}','2018-08-01 16:23:53',NULL,NULL),(1533140636466,82001,0,1521902033332,0,'{\"[]\":[{\"User\":{\"id\":38710,\"sex\":0,\"name\":\"TommyLemon\",\"tag\":\"Android&Java\",\"head\":\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"contactIdList\":[82003,82005,90814,82004,82009,82002,82044,93793,70793],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":70793,\"sex\":0,\"name\":\"Strong\",\"tag\":\"djdj\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\",\"contactIdList\":[38710,82002],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/788c0a7e11a\",\"https://camo.githubusercontent.com/f513f67\"],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82001,\"sex\":0,\"name\":\"测试改名\",\"tag\":\"APIJSON User\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\",\"contactIdList\":[1520242280259,82030,82025,82003,93793,82002,1531969715979,82006,82005],\"pictureList\":[\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82002,\"sex\":1,\"name\":\"Happy~\",\"tag\":\"iOS\",\"head\":\"http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000\",\"contactIdList\":[82005,82001,38710],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82003,\"sex\":1,\"name\":\"Wechat\",\"head\":\"http://common.cnblogs.com/images/wechat.png\",\"contactIdList\":[82001,93793],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}}],\"total\":119,\"code\":200,\"msg\":\"success\"}','2018-08-01 16:23:56',NULL,NULL),(1533140640270,82001,0,1521901682846,0,'{\"[]\":[{\"Moment\":{\"userId\":38710,\"id\":235}},{\"Moment\":{\"userId\":38710,\"id\":470}},{\"Moment\":{\"userId\":38710,\"id\":511}},{\"Moment\":{\"userId\":38710,\"id\":595}},{\"Moment\":{\"userId\":38710,\"id\":704}},{\"Moment\":{\"userId\":38710,\"id\":1491200468898}},{\"Moment\":{\"userId\":38710,\"id\":1493835799335}},{\"Moment\":{\"userId\":38710,\"id\":1512314438990}},{\"Moment\":{\"userId\":38710,\"id\":1513094436910}},{\"Moment\":{\"userId\":38710,\"id\":1533140171134}}],\"code\":200,\"msg\":\"success\"}','2018-08-01 16:24:00',NULL,NULL),(1533140662591,82001,0,1511970009072,0,'{\"Moment\":{\"code\":200,\"msg\":\"success\",\"id\":1533140610716,\"count\":1},\"code\":200,\"msg\":\"success\"}','2018-08-01 16:24:22',NULL,NULL),(1533140664191,82001,0,1511969630372,0,'{\"Comment\":{\"code\":200,\"msg\":\"success\",\"id\":1533140610714,\"count\":1},\"code\":200,\"msg\":\"success\"}','2018-08-01 16:24:24',NULL,NULL),(1533140666518,82001,0,1511963677325,0,'{\"User\":{\"id\":82001,\"sex\":0,\"name\":\"测试改名\",\"tag\":\"APIJSON User\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\",\"contactIdList\":[1520242280259,82030,82025,82003,93793,82002,1531969715979,82006,82005],\"pictureList\":[\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"},\"code\":200,\"msg\":\"success\"}','2018-08-01 16:24:26',NULL,NULL),(1533140668867,82001,0,1511689914599,0,'{\"Privacy\":{\"id\":82001,\"certified\":1,\"phone\":13000082001,\"balance\":9833.01},\"code\":200,\"msg\":\"success\"}','2018-08-01 16:24:28',NULL,NULL),(1533140694117,82001,0,1511963990072,0,'{\"Moment\":{\"id\":15,\"userId\":70793,\"date\":\"2017-02-08 16:06:11.0\",\"content\":\"APIJSON is a JSON Transmission Structure Protocol…\",\"praiseUserIdList\":[82055,82002,38710,82001],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"]},\"User\":{\"id\":70793,\"name\":\"Strong\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\"},\"User[]\":[{\"id\":38710,\"name\":\"TommyLemon\"},{\"id\":82001,\"name\":\"测试改名\"},{\"id\":82002,\"name\":\"Happy~\"},{\"id\":82055,\"name\":\"Solid\"}],\"code\":200,\"msg\":\"success\"}','2018-08-01 16:24:54',NULL,NULL),(1533140697885,82001,0,1511963990072,0,'{\"Moment\":{\"id\":15,\"userId\":70793,\"date\":\"2017-02-08 16:06:11.0\",\"content\":\"APIJSON is a JSON Transmission Structure Protocol…\",\"praiseUserIdList\":[82055,82002,38710],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"]},\"User\":{\"id\":70793,\"name\":\"Strong\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\"},\"User[]\":[{\"id\":38710,\"name\":\"TommyLemon\"},{\"id\":82002,\"name\":\"Happy~\"},{\"id\":82055,\"name\":\"Solid\"}],\"code\":200,\"msg\":\"success\"}','2018-08-01 16:24:57',NULL,NULL),(1533396720929,82001,0,1511796155277,0,'{\"Verify\":{\"id\":1533396718012,\"type\":0,\"phone\":13000082001,\"verify\":4995,\"date\":\"2018-08-04 23:31:58.0\"},\"tag\":\"Verify\",\"code\":200,\"msg\":\"success\"}','2018-08-04 15:32:00',NULL,NULL),(1533396731930,82001,0,1521901682846,0,'{\"[]\":[{\"Moment\":{\"userId\":38710,\"id\":235}},{\"Moment\":{\"userId\":38710,\"id\":470}},{\"Moment\":{\"userId\":38710,\"id\":511}},{\"Moment\":{\"userId\":38710,\"id\":595}},{\"Moment\":{\"userId\":38710,\"id\":704}},{\"Moment\":{\"userId\":38710,\"id\":1491200468898}},{\"Moment\":{\"userId\":38710,\"id\":1493835799335}},{\"Moment\":{\"userId\":38710,\"id\":1512314438990}},{\"Moment\":{\"userId\":38710,\"id\":1513094436910}},{\"Moment\":{\"userId\":38710,\"id\":1533395051809}}],\"code\":200,\"msg\":\"success\"}','2018-08-04 15:32:11',NULL,NULL),(1533396739099,82001,0,1511689914599,0,'{\"Privacy\":{\"id\":82001,\"certified\":1,\"phone\":13000082001,\"balance\":9835.11},\"code\":200,\"msg\":\"success\"}','2018-08-04 15:32:19',NULL,NULL),(1533396867840,82001,0,1511964176689,0,'{\"[]\":[{\"Comment\":{\"id\":176,\"toId\":166,\"userId\":38710,\"momentId\":15,\"date\":\"2017-03-25 20:28:03.0\",\"content\":\"thank you\"},\"User\":{\"id\":38710,\"name\":\"TommyLemon\",\"head\":\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\"}},{\"Comment\":{\"id\":1490863469638,\"toId\":0,\"userId\":82002,\"momentId\":15,\"date\":\"2017-03-30 16:44:29.0\",\"content\":\"Just do it\"},\"User\":{\"id\":82002,\"name\":\"Happy~\",\"head\":\"http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000\"}},{\"Comment\":{\"id\":1490875660259,\"toId\":1490863469638,\"userId\":82055,\"momentId\":15,\"date\":\"2017-03-30 20:07:40.0\",\"content\":\"I prove wht you said(??????)\"},\"User\":{\"id\":82055,\"name\":\"Solid\",\"head\":\"http://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1508227456407,\"toId\":0,\"userId\":82001,\"momentId\":15,\"date\":\"2017-10-17 16:04:16.0\",\"content\":\"hsh\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1509346606036,\"toId\":0,\"userId\":82001,\"momentId\":15,\"date\":\"2017-10-30 14:56:46.0\",\"content\":\"测\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1525933255901,\"userId\":82001,\"momentId\":15,\"date\":\"2018-05-10 14:20:55.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1527949266037,\"userId\":82001,\"momentId\":15,\"date\":\"2018-06-02 22:21:06.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1528339777338,\"userId\":82001,\"momentId\":15,\"date\":\"2018-06-07 10:49:37.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1528366915282,\"userId\":82001,\"momentId\":15,\"date\":\"2018-06-07 18:21:55.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1528366931410,\"userId\":82001,\"momentId\":15,\"date\":\"2018-06-07 18:22:11.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1528392773597,\"userId\":82001,\"momentId\":15,\"date\":\"2018-06-08 01:32:53.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1529034360708,\"userId\":82001,\"momentId\":15,\"date\":\"2018-06-15 11:46:00.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1529078537044,\"userId\":82001,\"momentId\":15,\"date\":\"2018-06-16 00:02:17.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1529401004622,\"userId\":82001,\"momentId\":15,\"date\":\"2018-06-19 17:36:44.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1529401505690,\"userId\":82001,\"momentId\":15,\"date\":\"2018-06-19 17:45:05.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1529468113356,\"userId\":82001,\"momentId\":15,\"date\":\"2018-06-20 12:15:13.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1529724026842,\"userId\":82001,\"momentId\":15,\"date\":\"2018-06-23 11:20:26.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1529909214303,\"userId\":82001,\"momentId\":15,\"date\":\"2018-06-25 14:46:54.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1530276831779,\"userId\":82001,\"momentId\":15,\"date\":\"2018-06-29 20:53:51.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}},{\"Comment\":{\"id\":1531365764793,\"userId\":82001,\"momentId\":15,\"date\":\"2018-07-12 11:22:44.0\",\"content\":\"测试新增评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\"}}],\"code\":200,\"msg\":\"success\"}','2018-08-04 15:34:27',NULL,NULL),(1534152309932,82001,0,1521905895591,0,'{\"Moment\":{\"code\":200,\"msg\":\"success\",\"count\":9},\"code\":200,\"msg\":\"success\"}','2018-08-13 09:25:09',NULL,NULL),(1534152344226,82001,0,1521903828410,0,'{\"User\":{\"code\":200,\"msg\":\"success\",\"count\":71},\"code\":200,\"msg\":\"success\"}','2018-08-13 09:25:44',NULL,NULL),(1534152350031,82001,0,1521903761689,0,'{\"User\":{\"code\":200,\"msg\":\"success\",\"count\":118},\"code\":200,\"msg\":\"success\"}','2018-08-13 09:25:50',NULL,NULL),(1534152388437,82001,0,1521905895591,0,'{\"Moment\":{\"code\":200,\"msg\":\"success\",\"count\":10},\"code\":200,\"msg\":\"success\"}','2018-08-13 09:26:28',NULL,NULL),(1534152406351,82001,0,1521902033332,0,'{\"[]\":[{\"User\":{\"id\":38710,\"sex\":0,\"name\":\"TommyLemon\",\"tag\":\"Android&Java\",\"head\":\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"contactIdList\":[82003,82005,90814,82004,82009,82002,82044,93793,70793],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":70793,\"sex\":0,\"name\":\"Strong\",\"tag\":\"djdj\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\",\"contactIdList\":[38710,82002],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/788c0a7e11a\",\"https://camo.githubusercontent.com/f513f67\"],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82001,\"sex\":0,\"name\":\"测试改名\",\"tag\":\"APIJSON User\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\",\"contactIdList\":[82030,82025,82003,93793,82006,82002,1520242280259,82005,1531969715979,1532188114543,82024],\"pictureList\":[\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82002,\"sex\":1,\"name\":\"Happy~\",\"tag\":\"iOS\",\"head\":\"http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000\",\"contactIdList\":[82005,82001,38710],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82003,\"sex\":1,\"name\":\"Wechat\",\"head\":\"http://common.cnblogs.com/images/wechat.png\",\"contactIdList\":[82001,93793],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}}],\"total\":120,\"code\":200,\"msg\":\"success\"}','2018-08-13 09:26:46',NULL,NULL),(1534152424378,82001,0,1521901682846,0,'{\"[]\":[{\"Moment\":{\"userId\":38710,\"id\":235}},{\"Moment\":{\"userId\":38710,\"id\":470}},{\"Moment\":{\"userId\":38710,\"id\":511}},{\"Moment\":{\"userId\":38710,\"id\":595}},{\"Moment\":{\"userId\":38710,\"id\":704}},{\"Moment\":{\"userId\":38710,\"id\":1491200468898}},{\"Moment\":{\"userId\":38710,\"id\":1493835799335}},{\"Moment\":{\"userId\":38710,\"id\":1512314438990}},{\"Moment\":{\"userId\":38710,\"id\":1513094436910}},{\"Moment\":{\"userId\":38710,\"id\":1534152251941}}],\"code\":200,\"msg\":\"success\"}','2018-08-13 09:27:04',NULL,NULL),(1534241166066,82001,0,1521901682846,0,'{\"[]\":[{\"Moment\":{\"userId\":38710,\"id\":235}},{\"Moment\":{\"userId\":38710,\"id\":470}},{\"Moment\":{\"userId\":38710,\"id\":511}},{\"Moment\":{\"userId\":38710,\"id\":595}},{\"Moment\":{\"userId\":38710,\"id\":704}},{\"Moment\":{\"userId\":38710,\"id\":1491200468898}},{\"Moment\":{\"userId\":38710,\"id\":1493835799335}},{\"Moment\":{\"userId\":38710,\"id\":1512314438990}},{\"Moment\":{\"userId\":38710,\"id\":1513094436910}},{\"Moment\":{\"userId\":38710,\"id\":1534241152403}}],\"code\":200,\"msg\":\"success\"}','2018-08-14 10:06:06',NULL,NULL),(1534477342518,82001,0,1521907303540,0,'{\"User[]\":[{\"id\":38710,\"sex\":0,\"name\":\"TommyLemon\",\"tag\":\"Android&Java\",\"head\":\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"contactIdList\":[82003,82005,90814,82004,82009,82002,82044,93793,70793],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":70793,\"sex\":0,\"name\":\"Strong\",\"tag\":\"djdj\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\",\"contactIdList\":[38710,82002],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/788c0a7e11a\",\"https://camo.githubusercontent.com/f513f67\"],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":82001,\"sex\":0,\"name\":\"测试改名\",\"tag\":\"APIJSON User\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\",\"contactIdList\":[82030,82025,82003,93793,82006,82002,1520242280259,82005,1531969715979,82024],\"pictureList\":[\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"}],\"code\":200,\"msg\":\"success\"}','2018-08-17 03:42:22',NULL,NULL),(1534776475640,82001,0,1521901610784,0,'{\"[]\":[{\"Moment\":{\"userId\":38710,\"maxId\":1534776429151}},{\"Moment\":{\"userId\":70793,\"maxId\":551}},{\"Moment\":{\"userId\":82001,\"maxId\":1534776370291}},{\"Moment\":{\"userId\":82002,\"maxId\":1531062713966}},{\"Moment\":{\"userId\":82003,\"maxId\":1508053762227}},{\"Moment\":{\"userId\":82045,\"maxId\":1508073178489}},{\"Moment\":{\"userId\":82056,\"maxId\":1514858533480}},{\"Moment\":{\"userId\":93793,\"maxId\":1516086423441}},{\"Moment\":{\"userId\":1520242280259,\"maxId\":1520242333325}},{\"Moment\":{\"userId\":1523626157302,\"maxId\":1523936332614}}],\"code\":200,\"msg\":\"success\"}','2018-08-20 14:47:55',NULL,NULL),(1534780207036,82001,0,1521907333047,0,'{\"[]\":[{\"Moment\":{\"id\":470,\"userId\":38710,\"date\":\"2017-02-01 19:14:31.0\",\"content\":\"This is a Content...-470\",\"praiseUserIdList\":[82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172507_Pz9Y.png\"]},\"User\":{\"id\":38710,\"name\":\"TommyLemon\",\"head\":\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\"},\"Comment\":{\"id\":47,\"momentId\":470,\"content\":\"This is a Content...-47\"}},{\"Moment\":{\"id\":470,\"userId\":38710,\"date\":\"2017-02-01 19:14:31.0\",\"content\":\"This is a Content...-470\",\"praiseUserIdList\":[82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172507_Pz9Y.png\"]},\"User\":{\"id\":38710,\"name\":\"TommyLemon\",\"head\":\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\"},\"Comment\":{\"id\":47,\"momentId\":470,\"content\":\"This is a Content...-47\"}},{\"Moment\":{\"id\":170,\"userId\":70793,\"date\":\"2017-02-01 19:14:31.0\",\"content\":\"This is a Content...-73\",\"praiseUserIdList\":[82044,82002,82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172508_mpwj.jpg\"]},\"User\":{\"id\":70793,\"name\":\"Strong\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\"},\"Comment\":{\"id\":99,\"momentId\":170,\"content\":\"This is a Content...-99\"}},{\"Moment\":{\"id\":470,\"userId\":38710,\"date\":\"2017-02-01 19:14:31.0\",\"content\":\"This is a Content...-470\",\"praiseUserIdList\":[82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172507_Pz9Y.png\"]},\"User\":{\"id\":38710,\"name\":\"TommyLemon\",\"head\":\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\"},\"Comment\":{\"id\":47,\"momentId\":470,\"content\":\"This is a Content...-47\"}},{\"Moment\":{\"id\":170,\"userId\":70793,\"date\":\"2017-02-01 19:14:31.0\",\"content\":\"This is a Content...-73\",\"praiseUserIdList\":[82044,82002,82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172508_mpwj.jpg\"]},\"User\":{\"id\":70793,\"name\":\"Strong\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\"},\"Comment\":{\"id\":99,\"momentId\":170,\"content\":\"This is a Content...-99\"}},{\"Moment\":{\"id\":371,\"userId\":82002,\"date\":\"2017-02-01 19:14:31.0\",\"content\":\"This is a Content...-371\",\"praiseUserIdList\":[90814,93793,82003,82005,82006,82040,82002,82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/c98b1c86af136745cc4626c6ece830f76de9ee83/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343930383036362d313837323233393236352e6a7067\",\"http://static.oschina.net/uploads/img/201604/22172507_aMmH.jpg\",\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\"]},\"User\":{\"id\":82002,\"name\":\"Happy~\",\"head\":\"http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000\"},\"Comment\":{\"id\":115,\"momentId\":371,\"content\":\"This is a Content...-115\"}},{\"Moment\":{\"id\":170,\"userId\":70793,\"date\":\"2017-02-01 19:14:31.0\",\"content\":\"This is a Content...-73\",\"praiseUserIdList\":[82044,82002,82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172508_mpwj.jpg\"]},\"User\":{\"id\":70793,\"name\":\"Strong\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\"},\"Comment\":{\"id\":99,\"momentId\":170,\"content\":\"This is a Content...-99\"}},{\"Moment\":{\"id\":371,\"userId\":82002,\"date\":\"2017-02-01 19:14:31.0\",\"content\":\"This is a Content...-371\",\"praiseUserIdList\":[90814,93793,82003,82005,82006,82040,82002,82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/c98b1c86af136745cc4626c6ece830f76de9ee83/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343930383036362d313837323233393236352e6a7067\",\"http://static.oschina.net/uploads/img/201604/22172507_aMmH.jpg\",\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\"]},\"User\":{\"id\":82002,\"name\":\"Happy~\",\"head\":\"http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000\"},\"Comment\":{\"id\":115,\"momentId\":371,\"content\":\"This is a Content...-115\"}},{\"Moment\":{\"id\":371,\"userId\":82002,\"date\":\"2017-02-01 19:14:31.0\",\"content\":\"This is a Content...-371\",\"praiseUserIdList\":[90814,93793,82003,82005,82006,82040,82002,82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/c98b1c86af136745cc4626c6ece830f76de9ee83/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343930383036362d313837323233393236352e6a7067\",\"http://static.oschina.net/uploads/img/201604/22172507_aMmH.jpg\",\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\"]},\"User\":{\"id\":82002,\"name\":\"Happy~\",\"head\":\"http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000\"},\"Comment\":{\"id\":115,\"momentId\":371,\"content\":\"This is a Content...-115\"}},{\"Moment\":{\"id\":371,\"userId\":82002,\"date\":\"2017-02-01 19:14:31.0\",\"content\":\"This is a Content...-371\",\"praiseUserIdList\":[90814,93793,82003,82005,82006,82040,82002,82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/c98b1c86af136745cc4626c6ece830f76de9ee83/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343930383036362d313837323233393236352e6a7067\",\"http://static.oschina.net/uploads/img/201604/22172507_aMmH.jpg\",\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\"]},\"User\":{\"id\":82002,\"name\":\"Happy~\",\"head\":\"http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000\"},\"Comment\":{\"id\":115,\"momentId\":371,\"content\":\"This is a Content...-115\"}}],\"code\":200,\"msg\":\"success\"}','2018-08-20 15:50:07',NULL,NULL),(1536484351109,82001,0,1511963677325,0,'{\"User\":{\"id\":82001,\"sex\":0,\"name\":\"测试改名\",\"tag\":\"APIJSON User\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\",\"contactIdList\":[82025,82024,82003,93793,82012,82028,82034,82021,82006,82005,82030,82035],\"pictureList\":[\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"},\"code\":200,\"msg\":\"success\"}','2018-09-09 09:12:31',NULL,NULL),(1536484428955,82001,0,1511963677325,0,'{\"User\":{\"id\":82001,\"sex\":0,\"name\":\"测试改名\",\"tag\":\"APIJSON User\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\",\"contactIdList\":[82025,82024,82003,93793,82012,82028,82034,82021,82006,82005,82030,82035],\"pictureList\":[\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"},\"code\":200,\"msg\":\"success\"}','2018-09-09 09:13:48',NULL,NULL),(1537025782935,82001,0,1521901746809,0,'{\"[]\":[{\"User\":{\"name\":\"赵钱孙李\",\"id\":1508072071492}},{\"User\":{\"name\":\"测试改名\",\"id\":82001}},{\"User\":{\"name\":\"梦\",\"id\":1528264711016}},{\"User\":{\"name\":\"宁旭\",\"id\":1532188114543}},{\"User\":{\"name\":\"四五六\",\"id\":1508072160401}},{\"User\":{\"name\":\"哈哈哈\",\"id\":1524042900591}},{\"User\":{\"name\":\"周吴郑王\",\"id\":1508072105320}},{\"User\":{\"name\":\"七八九十\",\"id\":1508072202871}},{\"User\":{\"name\":\"一二三\",\"id\":1499057230629}},{\"User\":{\"name\":\"Yong\",\"id\":82027}}],\"code\":200,\"msg\":\"success\"}','2018-09-15 15:36:22',NULL,NULL),(1537025788659,82001,0,1521901682846,0,'{\"[]\":[{\"Moment\":{\"userId\":38710,\"id\":235}},{\"Moment\":{\"userId\":38710,\"id\":470}},{\"Moment\":{\"userId\":38710,\"id\":511}},{\"Moment\":{\"userId\":38710,\"id\":595}},{\"Moment\":{\"userId\":38710,\"id\":704}},{\"Moment\":{\"userId\":38710,\"id\":1491200468898}},{\"Moment\":{\"userId\":38710,\"id\":1493835799335}},{\"Moment\":{\"userId\":38710,\"id\":1512314438990}},{\"Moment\":{\"userId\":38710,\"id\":1513094436910}},{\"Moment\":{\"userId\":38710,\"id\":1537025625613}}],\"code\":200,\"msg\":\"success\"}','2018-09-15 15:36:28',NULL,NULL),(1537025791504,82001,0,1521901610784,0,'{\"[]\":[{\"Moment\":{\"userId\":38710,\"maxId\":1537025707417}},{\"Moment\":{\"userId\":70793,\"maxId\":551}},{\"Moment\":{\"userId\":82001,\"maxId\":1537025634931}},{\"Moment\":{\"userId\":82002,\"maxId\":1531062713966}},{\"Moment\":{\"userId\":82003,\"maxId\":1536805585275}},{\"Moment\":{\"userId\":82045,\"maxId\":1508073178489}},{\"Moment\":{\"userId\":82056,\"maxId\":1514858533480}},{\"Moment\":{\"userId\":93793,\"maxId\":1516086423441}},{\"Moment\":{\"userId\":1520242280259,\"maxId\":1520242333325}},{\"Moment\":{\"userId\":1523626157302,\"maxId\":1523936332614}}],\"code\":200,\"msg\":\"success\"}','2018-09-15 15:36:31',NULL,NULL),(1537025795194,82001,0,1521902033332,0,'{\"[]\":[{\"User\":{\"id\":38710,\"sex\":0,\"name\":\"TommyLemon\",\"tag\":\"Android&Java\",\"head\":\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"contactIdList\":[82003,82005,90814,82004,82009,82002,82044,93793,70793],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":70793,\"sex\":0,\"name\":\"Strong\",\"tag\":\"djdj\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\",\"contactIdList\":[38710,82002],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/788c0a7e11a\",\"https://camo.githubusercontent.com/f513f67\"],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82001,\"sex\":0,\"name\":\"测试改名\",\"tag\":\"APIJSON User\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\",\"contactIdList\":[82025,82024,82003,93793,82012,82028,82021,82006,82030,82035],\"pictureList\":[\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82002,\"sex\":1,\"name\":\"Happy~\",\"tag\":\"iOS\",\"head\":\"http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000\",\"contactIdList\":[82005,82001,38710],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82003,\"sex\":1,\"name\":\"Wechat\",\"head\":\"http://common.cnblogs.com/images/wechat.png\",\"contactIdList\":[82001,93793],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}}],\"total\":121,\"code\":200,\"msg\":\"success\"}','2018-09-15 15:36:35',NULL,NULL),(1537025798273,82001,0,1521903828410,0,'{\"User\":{\"code\":200,\"msg\":\"success\",\"count\":72},\"code\":200,\"msg\":\"success\"}','2018-09-15 15:36:38',NULL,NULL),(1537025799810,82001,0,1521903761689,0,'{\"User\":{\"code\":200,\"msg\":\"success\",\"count\":119},\"code\":200,\"msg\":\"success\"}','2018-09-15 15:36:39',NULL,NULL),(1537025801244,82001,0,1521902110680,0,'{\"[]\":[{\"User\":{\"id\":38710,\"sex\":0,\"name\":\"TommyLemon\",\"tag\":\"Android&Java\",\"head\":\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"contactIdList\":[82003,82005,90814,82004,82009,82002,82044,93793,70793],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":70793,\"sex\":0,\"name\":\"Strong\",\"tag\":\"djdj\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\",\"contactIdList\":[38710,82002],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/788c0a7e11a\",\"https://camo.githubusercontent.com/f513f67\"],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82001,\"sex\":0,\"name\":\"测试改名\",\"tag\":\"APIJSON User\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\",\"contactIdList\":[82025,82024,82003,93793,82012,82028,82021,82006,82030,82035],\"pictureList\":[\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82002,\"sex\":1,\"name\":\"Happy~\",\"tag\":\"iOS\",\"head\":\"http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000\",\"contactIdList\":[82005,82001,38710],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}},{\"User\":{\"id\":82003,\"sex\":1,\"name\":\"Wechat\",\"head\":\"http://common.cnblogs.com/images/wechat.png\",\"contactIdList\":[82001,93793],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}}],\"code\":200,\"msg\":\"success\"}','2018-09-15 15:36:41',NULL,NULL),(1537025812404,82001,0,1521904653622,0,'{\"User[]\":[{\"id\":70793,\"sex\":0,\"name\":\"Strong\",\"tag\":\"djdj\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\",\"contactIdList\":[38710,82002],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/788c0a7e11a\",\"https://camo.githubusercontent.com/f513f67\"],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":82002,\"sex\":1,\"name\":\"Happy~\",\"tag\":\"iOS\",\"head\":\"http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000\",\"contactIdList\":[82005,82001,38710],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":82005,\"sex\":1,\"name\":\"Jan\",\"tag\":\"AG\",\"head\":\"http://my.oschina.net/img/portrait.gif?t=1451961935000\",\"contactIdList\":[82001,38710,1532439021068],\"pictureList\":[],\"date\":\"2017-02-01 19:21:50.0\"}],\"code\":200,\"msg\":\"success\"}','2018-09-15 15:36:52',NULL,NULL),(1537025813024,82001,0,1521904617127,0,'{\"Moment\":{\"userId\":93793,\"praiseUserIdList\":[38710,93793,82003,82005,82040,82055,82002,82001],\"isPraised\":true},\"code\":200,\"msg\":\"success\"}','2018-09-15 15:36:53',NULL,NULL),(1537025814838,82001,0,1521904756674,0,'{\"User[]\":[{\"id\":38710,\"sex\":0,\"name\":\"TommyLemon\",\"tag\":\"Android&Java\",\"head\":\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"contactIdList\":[82003,82005,90814,82004,82009,82002,82044,93793,70793],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":70793,\"sex\":0,\"name\":\"Strong\",\"tag\":\"djdj\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\",\"contactIdList\":[38710,82002],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/788c0a7e11a\",\"https://camo.githubusercontent.com/f513f67\"],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":82001,\"sex\":0,\"name\":\"测试改名\",\"tag\":\"APIJSON User\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\",\"contactIdList\":[82025,82024,82003,93793,82012,82028,82021,82006,82030,82035],\"pictureList\":[\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"}],\"code\":200,\"msg\":\"success\"}','2018-09-15 15:36:54',NULL,NULL),(1537025828828,82001,0,1521907303540,0,'{\"User[]\":[{\"id\":38710,\"sex\":0,\"name\":\"TommyLemon\",\"tag\":\"Android&Java\",\"head\":\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"contactIdList\":[82003,82005,90814,82004,82009,82002,82044,93793,70793],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":70793,\"sex\":0,\"name\":\"Strong\",\"tag\":\"djdj\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\",\"contactIdList\":[38710,82002],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/788c0a7e11a\",\"https://camo.githubusercontent.com/f513f67\"],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":82001,\"sex\":0,\"name\":\"测试改名\",\"tag\":\"APIJSON User\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\",\"contactIdList\":[82025,82024,82003,93793,82012,82028,82021,82006,82030,82035],\"pictureList\":[\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"}],\"code\":200,\"msg\":\"success\"}','2018-09-15 15:37:08',NULL,NULL),(1537025834254,82001,0,1521907333048,0,'{\"User-id[]\":[82002,82003,82005,82041,82045,82058,1512531601485,1528254173621],\"Moment[]\":[{\"id\":32,\"userId\":82002,\"date\":\"2017-02-08 16:06:11.0\",\"praiseUserIdList\":[38710,82002,82001],\"pictureList\":[\"https://camo.githubusercontent.com/f513fa631bd780dc0ec3cf2663777e356dc3664f/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343733323232332d3337333933303233322e6a7067\",\"https://camo.githubusercontent.com/5f5c4e0c4dc539c34e8eae8ac0cbc6dccdfee5d3/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343533333831362d323032373434343231382e6a7067\",\"http://static.oschina.net/uploads/img/201604/22172508_mpwj.jpg\"]},{\"id\":371,\"userId\":82002,\"date\":\"2017-02-01 19:14:31.0\",\"content\":\"This is a Content...-371\",\"praiseUserIdList\":[90814,93793,82003,82005,82006,82040,82002,82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/c98b1c86af136745cc4626c6ece830f76de9ee83/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343930383036362d313837323233393236352e6a7067\",\"http://static.oschina.net/uploads/img/201604/22172507_aMmH.jpg\",\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\"]},{\"id\":1508053762227,\"userId\":82003,\"date\":\"2017-10-15 15:49:22.0\",\"content\":\"我也试试\",\"praiseUserIdList\":[1515565976140],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"]},{\"id\":1508072491570,\"userId\":82002,\"date\":\"2017-10-15 21:01:31.0\",\"content\":\"有点冷~\",\"praiseUserIdList\":[82001,82002],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"]},{\"id\":1508073178489,\"userId\":82045,\"date\":\"2017-10-15 21:12:58.0\",\"content\":\"发动态\",\"praiseUserIdList\":[82001],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"]},{\"id\":1514017444961,\"userId\":82002,\"date\":\"2017-12-23 16:24:04.0\",\"content\":\"123479589679\",\"praiseUserIdList\":[82002,1520242280259,82001,70793,1524042900591,1528264711016],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"]},{\"id\":1531062713966,\"userId\":82002,\"date\":\"2018-07-08 23:11:53.0\",\"content\":\"云南好美啊( ◞˟૩˟)◞\",\"praiseUserIdList\":[82001,82005,38710,70793,93793,82003,1531969715979],\"pictureList\":[\"https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1531072366455&di=c0d4b15b2c4b70aad49e6ae747f60742&imgtype=0&src=http%3A%2F%2Fpic1.win4000.com%2Fwallpaper%2F3%2F57a2a41f57d09.jpg\",\"https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1531072499167&di=5b5621d117edbc5d344a03ba0a6b580b&imgtype=0&src=http%3A%2F%2Fi0.szhomeimg.com%2FUploadFiles%2FBBS%2F2006%2F08%2F05%2F24752199_79122.91.jpg\"]},{\"id\":1536805585275,\"userId\":82003,\"date\":\"2018-09-13 10:26:25.0\",\"content\":\"iPhone Xs发布了,大家怎么看?\",\"praiseUserIdList\":[82002,82005,70793,82003,82001],\"pictureList\":[\"https://pic1.zhimg.com/80/v2-e129b40810070443add1c28e6185c894_hd.jpg\"]}],\"code\":200,\"msg\":\"success\"}','2018-09-15 15:37:14',NULL,NULL),(1537025841443,82001,0,1511967853340,0,'{\"[]\":[{\"Moment\":{\"id\":301,\"userId\":93793,\"date\":\"2017-02-01 19:14:31.0\",\"content\":\"This is a Content...-301\",\"praiseUserIdList\":[38710,93793,82003,82005,82040,82055,82002,82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\"]},\"User\":{\"id\":93793,\"name\":\"Mike\",\"head\":\"http://static.oschina.net/uploads/user/48/96331_50.jpg\"},\"User[]\":[{\"id\":38710,\"name\":\"TommyLemon\"},{\"id\":82001,\"name\":\"测试改名\"},{\"id\":82002,\"name\":\"Happy~\"},{\"id\":82003,\"name\":\"Wechat\"},{\"id\":82005,\"name\":\"Jan\"},{\"id\":82040,\"name\":\"Dream\"},{\"id\":82055,\"name\":\"Solid\"},{\"id\":93793,\"name\":\"Mike\"}],\"[]\":[{\"Comment\":{\"id\":45,\"toId\":0,\"userId\":93793,\"momentId\":301,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"This is a Content...-45\"},\"User\":{\"id\":93793,\"name\":\"Mike\"}},{\"Comment\":{\"id\":51,\"toId\":45,\"userId\":82003,\"momentId\":301,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"This is a Content...-51\"},\"User\":{\"id\":82003,\"name\":\"Wechat\"}},{\"Comment\":{\"id\":76,\"toId\":45,\"userId\":93793,\"momentId\":301,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"This is a Content...-76\"},\"User\":{\"id\":93793,\"name\":\"Mike\"}},{\"Comment\":{\"id\":120,\"toId\":0,\"userId\":93793,\"momentId\":301,\"date\":\"2017-03-02 13:56:06.0\",\"content\":\"This is a Content...-110\"},\"User\":{\"id\":93793,\"name\":\"Mike\"}},{\"Comment\":{\"id\":124,\"toId\":0,\"userId\":82001,\"momentId\":301,\"date\":\"2017-03-02 13:56:06.0\",\"content\":\"This is a Content...-114\"},\"User\":{\"id\":82001,\"name\":\"测试改名\"}},{\"Comment\":{\"id\":1490781009548,\"toId\":51,\"userId\":82001,\"momentId\":301,\"date\":\"2017-03-29 17:50:09.0\",\"content\":\"3\"},\"User\":{\"id\":82001,\"name\":\"测试改名\"}}]},{\"Moment\":{\"id\":58,\"userId\":90814,\"date\":\"2017-02-01 19:14:31.0\",\"content\":\"This is a Content...-435\",\"praiseUserIdList\":[38710,82003,82005,93793,82006,82044,82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172507_aMmH.jpg\"]},\"User\":{\"id\":90814,\"name\":\"007\",\"head\":\"http://static.oschina.net/uploads/user/51/102723_50.jpg?t=1449212504000\"},\"User[]\":[{\"id\":38710,\"name\":\"TommyLemon\"},{\"id\":82001,\"name\":\"测试改名\"},{\"id\":82003,\"name\":\"Wechat\"},{\"id\":82005,\"name\":\"Jan\"},{\"id\":82006,\"name\":\"Meria\"},{\"id\":82044,\"name\":\"Love\"},{\"id\":93793,\"name\":\"Mike\"}],\"[]\":[{\"Comment\":{\"id\":13,\"toId\":0,\"userId\":82005,\"momentId\":58,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"This is a Content...-13\"},\"User\":{\"id\":82005,\"name\":\"Jan\"}},{\"Comment\":{\"id\":77,\"toId\":13,\"userId\":93793,\"momentId\":58,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"This is a Content...-77\"},\"User\":{\"id\":93793,\"name\":\"Mike\"}},{\"Comment\":{\"id\":97,\"toId\":13,\"userId\":82006,\"momentId\":58,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"This is a Content...-97\"},\"User\":{\"id\":82006,\"name\":\"Meria\"}},{\"Comment\":{\"id\":167,\"userId\":82001,\"momentId\":58,\"date\":\"2017-03-25 19:48:41.0\",\"content\":\"Nice!\"},\"User\":{\"id\":82001,\"name\":\"测试改名\"}},{\"Comment\":{\"id\":173,\"userId\":38710,\"momentId\":58,\"date\":\"2017-03-25 20:25:13.0\",\"content\":\"Good\"},\"User\":{\"id\":38710,\"name\":\"TommyLemon\"}},{\"Comment\":{\"id\":188,\"toId\":97,\"userId\":82001,\"momentId\":58,\"date\":\"2017-03-26 15:21:32.0\",\"content\":\"1646\"},\"User\":{\"id\":82001,\"name\":\"测试改名\"}}]},{\"Moment\":{\"id\":371,\"userId\":82002,\"date\":\"2017-02-01 19:14:31.0\",\"content\":\"This is a Content...-371\",\"praiseUserIdList\":[90814,93793,82003,82005,82006,82040,82002,82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/c98b1c86af136745cc4626c6ece830f76de9ee83/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343930383036362d313837323233393236352e6a7067\",\"http://static.oschina.net/uploads/img/201604/22172507_aMmH.jpg\",\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\"]},\"User\":{\"id\":82002,\"name\":\"Happy~\",\"head\":\"http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000\"},\"User[]\":[{\"id\":82001,\"name\":\"测试改名\"},{\"id\":82002,\"name\":\"Happy~\"},{\"id\":82003,\"name\":\"Wechat\"},{\"id\":82005,\"name\":\"Jan\"},{\"id\":82006,\"name\":\"Meria\"},{\"id\":82040,\"name\":\"Dream\"},{\"id\":90814,\"name\":\"007\"},{\"id\":93793,\"name\":\"Mike\"}],\"[]\":[{\"Comment\":{\"id\":68,\"toId\":0,\"userId\":82005,\"momentId\":371,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"This is a Content...-68\"},\"User\":{\"id\":82005,\"name\":\"Jan\"}},{\"Comment\":{\"id\":157,\"userId\":93793,\"momentId\":371,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"This is a Content...-157\"},\"User\":{\"id\":93793,\"name\":\"Mike\"}},{\"Comment\":{\"id\":110,\"toId\":0,\"userId\":93793,\"momentId\":371,\"date\":\"2017-02-01 19:23:24.0\",\"content\":\"This is a Content...-110\"},\"User\":{\"id\":93793,\"name\":\"Mike\"}},{\"Comment\":{\"id\":114,\"toId\":0,\"userId\":82001,\"momentId\":371,\"date\":\"2017-03-02 13:56:06.0\",\"content\":\"This is a Content...-114\"},\"User\":{\"id\":82001,\"name\":\"测试改名\"}},{\"Comment\":{\"id\":115,\"toId\":0,\"userId\":38710,\"momentId\":371,\"date\":\"2017-03-02 13:56:06.0\",\"content\":\"This is a Content...-115\"},\"User\":{\"id\":38710,\"name\":\"TommyLemon\"}},{\"Comment\":{\"id\":116,\"toId\":0,\"userId\":70793,\"momentId\":371,\"date\":\"2017-03-02 13:56:06.0\",\"content\":\"This is a Content...-116\"},\"User\":{\"id\":70793,\"name\":\"Strong\"}}]},{\"Moment\":{\"id\":170,\"userId\":70793,\"date\":\"2017-02-01 19:14:31.0\",\"content\":\"This is a Content...-73\",\"praiseUserIdList\":[82044,82002,82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172508_mpwj.jpg\"]},\"User\":{\"id\":70793,\"name\":\"Strong\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\"},\"User[]\":[{\"id\":82001,\"name\":\"测试改名\"},{\"id\":82002,\"name\":\"Happy~\"},{\"id\":82044,\"name\":\"Love\"}],\"[]\":[{\"Comment\":{\"id\":44,\"toId\":0,\"userId\":82003,\"momentId\":170,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"This is a Content...-44\"},\"User\":{\"id\":82003,\"name\":\"Wechat\"}},{\"Comment\":{\"id\":54,\"toId\":0,\"userId\":82004,\"momentId\":170,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"This is a Content...-54\"},\"User\":{\"id\":82004,\"name\":\"Tommy\"}},{\"Comment\":{\"id\":99,\"toId\":44,\"userId\":70793,\"momentId\":170,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"This is a Content...-99\"},\"User\":{\"id\":70793,\"name\":\"Strong\"}},{\"Comment\":{\"id\":206,\"toId\":54,\"userId\":82001,\"momentId\":170,\"date\":\"2017-03-29 11:04:23.0\",\"content\":\"ejej\"},\"User\":{\"id\":82001,\"name\":\"测试改名\"}},{\"Comment\":{\"id\":1490780759866,\"toId\":99,\"userId\":82001,\"momentId\":170,\"date\":\"2017-03-29 17:45:59.0\",\"content\":\"99\"},\"User\":{\"id\":82001,\"name\":\"测试改名\"}},{\"Comment\":{\"id\":1490863661426,\"toId\":1490780759866,\"userId\":70793,\"momentId\":170,\"date\":\"2017-03-30 16:47:41.0\",\"content\":\"66\"},\"User\":{\"id\":70793,\"name\":\"Strong\"}}]},{\"Moment\":{\"id\":470,\"userId\":38710,\"date\":\"2017-02-01 19:14:31.0\",\"content\":\"This is a Content...-470\",\"praiseUserIdList\":[82001],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172507_Pz9Y.png\"]},\"User\":{\"id\":38710,\"name\":\"TommyLemon\",\"head\":\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\"},\"User[]\":[{\"id\":82001,\"name\":\"测试改名\"}],\"[]\":[{\"Comment\":{\"id\":4,\"toId\":0,\"userId\":38710,\"momentId\":470,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"This is a Content...-4\"},\"User\":{\"id\":38710,\"name\":\"TommyLemon\"}},{\"Comment\":{\"id\":22,\"toId\":221,\"userId\":82001,\"momentId\":470,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"测试修改评论\"},\"User\":{\"id\":82001,\"name\":\"测试改名\"}},{\"Comment\":{\"id\":47,\"toId\":4,\"userId\":70793,\"momentId\":470,\"date\":\"2017-02-01 19:20:50.0\",\"content\":\"This is a Content...-47\"},\"User\":{\"id\":70793,\"name\":\"Strong\"}},{\"Comment\":{\"id\":1490863507114,\"toId\":4,\"userId\":82003,\"momentId\":470,\"date\":\"2017-03-30 16:45:07.0\",\"content\":\"yes\"},\"User\":{\"id\":82003,\"name\":\"Wechat\"}},{\"Comment\":{\"id\":1490863903900,\"toId\":0,\"userId\":82006,\"momentId\":470,\"date\":\"2017-03-30 16:51:43.0\",\"content\":\"SOGA\"},\"User\":{\"id\":82006,\"name\":\"Meria\"}},{\"Comment\":{\"id\":1491740899179,\"toId\":0,\"userId\":82001,\"momentId\":470,\"date\":\"2017-04-09 20:28:19.0\",\"content\":\"www\"},\"User\":{\"id\":82001,\"name\":\"测试改名\"}}]}],\"code\":200,\"msg\":\"success\"}','2018-09-15 15:37:21',NULL,NULL),(1537025843337,82001,0,1511963677325,0,'{\"User\":{\"id\":82001,\"sex\":0,\"name\":\"测试改名\",\"tag\":\"APIJSON User\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\",\"contactIdList\":[82025,82024,82003,93793,82012,82028,82021,82006,82030,82035],\"pictureList\":[\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"},\"code\":200,\"msg\":\"success\"}','2018-09-15 15:37:23',NULL,NULL),(1538112293306,82001,0,1521907303540,0,'{\"User[]\":[{\"id\":38710,\"sex\":0,\"name\":\"TommyLemon\",\"tag\":\"Android&Java\",\"head\":\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"contactIdList\":[82003,82005,90814,82004,82009,82002,82044,93793,70793],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":70793,\"sex\":0,\"name\":\"Strong\",\"tag\":\"djdj\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\",\"contactIdList\":[38710,82002],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/788c0a7e11a\",\"https://camo.githubusercontent.com/f513f67\"],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":82001,\"sex\":0,\"name\":\"测试改名\",\"tag\":\"APIJSON User\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\",\"contactIdList\":[82025,82024,82003,93793],\"pictureList\":[\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"}],\"code\":200,\"msg\":\"success\"}','2018-09-28 05:24:53',NULL,NULL),(1538112310565,82001,0,1521905680680,0,'{\"Moment\":{\"code\":200,\"msg\":\"success\",\"id\":1538112282445,\"count\":1},\"code\":200,\"msg\":\"success\"}','2018-09-28 05:25:10',NULL,NULL),(1538112311450,82001,0,1521904756674,0,'{\"User[]\":[{\"id\":38710,\"sex\":0,\"name\":\"TommyLemon\",\"tag\":\"Android&Java\",\"head\":\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"contactIdList\":[82003,82005,90814,82004,82009,82002,82044,93793,70793],\"pictureList\":[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\",\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":70793,\"sex\":0,\"name\":\"Strong\",\"tag\":\"djdj\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\",\"contactIdList\":[38710,82002],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/788c0a7e11a\",\"https://camo.githubusercontent.com/f513f67\"],\"date\":\"2017-02-01 19:21:50.0\"},{\"id\":82001,\"sex\":0,\"name\":\"测试改名\",\"tag\":\"APIJSON User\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\",\"contactIdList\":[82025,82024,82003,93793],\"pictureList\":[\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"}],\"code\":200,\"msg\":\"success\"}','2018-09-28 05:25:11',NULL,NULL),(1538731040138,82001,0,1511963677325,0,'{\"User\":{\"id\":82001,\"sex\":0,\"name\":\"测试改名\",\"tag\":\"APIJSON User\",\"head\":\"https://static.oschina.net/uploads/user/19/39085_50.jpg\",\"contactIdList\":[82025,82024,82003,93793,70793],\"pictureList\":[\"http://common.cnblogs.com/images/icon_weibo_24.png\"],\"date\":\"2017-02-01 19:21:50.0\"},\"code\":200,\"msg\":\"success\"}','2018-10-05 09:17:20',NULL,NULL),(1538731046687,82001,0,1521907570452,0,'{\"Moment\":{\"id\":12,\"userId\":70793,\"date\":\"2017-02-08 16:06:11.0\",\"content\":\"1111534034\",\"praiseUserIdList\":[70793,93793,82044,82040,82055,90814,38710,82002,82006,1508072105320],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/788c0a7e11a4f5aadef3c886f028c79b4808613a/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343932353935372d313732303737333630382e6a7067\",\"http://static.oschina.net/uploads/img/201604/22172507_Pz9Y.png\",\"https://camo.githubusercontent.com/c98b1c86af136745cc4626c6ece830f76de9ee83/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343930383036362d313837323233393236352e6a7067\",\"https://camo.githubusercontent.com/f513fa631bd780dc0ec3cf2663777e356dc3664f/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343733323232332d3337333933303233322e6a7067\",\"https://camo.githubusercontent.com/c98b1c86af136745cc4626c6ece830f76de9ee83/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343930383036362d313837323233393236352e6a7067\",\"https://camo.githubusercontent.com/f513fa631bd780dc0ec3cf2663777e356dc3664f/687474703a2f2f696d61676573323031352e636e626c6f67732e636f6d2f626c6f672f3636303036372f3230313630342f3636303036372d32303136303431343232343733323232332d3337333933303233322e6a7067\"]},\"User\":{\"id\":70793,\"sex\":0,\"name\":\"Strong\",\"tag\":\"djdj\",\"head\":\"http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000\",\"contactIdList\":[38710,82002],\"pictureList\":[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\",\"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\",\"https://camo.githubusercontent.com/788c0a7e11a\",\"https://camo.githubusercontent.com/f513f67\"],\"date\":\"2017-02-01 19:21:50.0\"},\"code\":200,\"msg\":\"success\"}','2018-10-05 09:17:27',NULL,NULL),(1569382296305,82001,0,1569382296303,0,'{\n \"user\": {\n \"id\": 82001,\n \"sex\": 1,\n \"name\": \"测试账号\",\n \"tag\": \"Dev\",\n \"head\": \"https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png\",\n \"contactIdList\": [\n 82012,\n 82006,\n 38710,\n 82004,\n 93794,\n 82002,\n 82005\n ],\n \"pictureList\": [\n \"http://common.cnblogs.com/images/icon_weibo_24.png\"\n ],\n \"date\": \"2017-02-01 19:21:50.0\"\n },\n \"code\": 200,\n \"msg\": \"success\",\n \"remember\": false,\n \"defaults\": {\n \"@database\": \"MYSQL\",\n \"@schema\": \"sys\"\n }\n}','2019-09-25 03:31:36',NULL,NULL),(1569382305981,82001,0,1569382305979,0,'{\n \"User\": {\n \"id\": 82001,\n \"sex\": 1,\n \"name\": \"测试账号\",\n \"tag\": \"Dev\",\n \"head\": \"https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png\",\n \"contactIdList\": [\n 82012,\n 82006,\n 38710,\n 82004,\n 93794,\n 82002,\n 82005\n ],\n \"pictureList\": [\n \"http://common.cnblogs.com/images/icon_weibo_24.png\"\n ],\n \"date\": \"2017-02-01 19:21:50.0\"\n },\n \"[]\": [\n {\n \"Comment\": {\n \"id\": 22,\n \"toId\": 221,\n \"userId\": 82001,\n \"momentId\": 470,\n \"date\": \"2017-02-01 19:20:50.0\",\n \"content\": \"测试修改评论\"\n }\n },\n {\n \"Comment\": {\n \"id\": 114,\n \"toId\": 0,\n \"userId\": 82001,\n \"momentId\": 371,\n \"date\": \"2017-03-02 13:56:06.0\",\n \"content\": \"This is a Content...-114\"\n }\n },\n {\n \"Comment\": {\n \"id\": 124,\n \"toId\": 0,\n \"userId\": 82001,\n \"momentId\": 301,\n \"date\": \"2017-03-02 13:56:06.0\",\n \"content\": \"This is a Content...-114\"\n }\n },\n {\n \"Comment\": {\n \"id\": 160,\n \"toId\": 0,\n \"userId\": 82001,\n \"momentId\": 235,\n \"date\": \"2017-03-02 13:56:06.0\",\n \"content\": \"This is a Content...-160\"\n }\n },\n {\n \"Comment\": {\n \"id\": 163,\n \"toId\": 0,\n \"userId\": 82001,\n \"momentId\": 235,\n \"date\": \"2017-03-02 13:56:06.0\",\n \"content\": \"This is a Content...-163\"\n }\n },\n {\n \"Comment\": {\n \"id\": 167,\n \"toId\": 0,\n \"userId\": 82001,\n \"momentId\": 58,\n \"date\": \"2017-03-25 19:48:41.0\",\n \"content\": \"Nice!\"\n }\n },\n {\n \"Comment\": {\n \"id\": 168,\n \"toId\": 1490442545077,\n \"userId\": 82001,\n \"momentId\": 235,\n \"date\": \"2017-03-25 19:49:14.0\",\n \"content\": \"???\"\n }\n },\n {\n \"Comment\": {\n \"id\": 172,\n \"toId\": 162,\n \"userId\": 82001,\n \"momentId\": 12,\n \"date\": \"2017-03-25 20:22:58.0\",\n \"content\": \"OK\"\n }\n },\n {\n \"Comment\": {\n \"id\": 182,\n \"toId\": 110,\n \"userId\": 82001,\n \"momentId\": 371,\n \"date\": \"2017-03-26 14:12:52.0\",\n \"content\": \"hahaha\"\n }\n },\n {\n \"Comment\": {\n \"id\": 188,\n \"toId\": 97,\n \"userId\": 82001,\n \"momentId\": 58,\n \"date\": \"2017-03-26 15:21:32.0\",\n \"content\": \"1646\"\n }\n }\n ],\n \"code\": 200,\n \"msg\": \"success\",\n \"sql:generate/cache/execute/maxExecute\": \"11/9/2/200\",\n \"depth:count/max\": \"3/5\",\n \"time:start/duration/end\": \"1569382300884/5/1569382300889\"\n}','2019-09-25 03:31:45',NULL,NULL),(1579055646877,82001,0,5,0,'{\"msg\":\"success\",\"invoke\":true,\"code\":200}','2020-01-15 02:34:06','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1579055648957,82001,0,3,0,'{\"msg\":\"success\",\"invoke\":3,\"code\":200}','2020-01-15 02:34:08','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1579055650305,82001,0,9,0,'{\"msg\":\"success\",\"invoke\":1,\"code\":200}','2020-01-15 02:34:10','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1579055651831,82001,0,8,0,'{\"msg\":\"success\",\"invoke\":1,\"code\":200}','2020-01-15 02:34:11','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1579055653162,82001,0,7,0,'{\"msg\":\"success\",\"invoke\":true,\"code\":200}','2020-01-15 02:34:13','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1579055655294,82001,0,6,0,'{\"msg\":\"success\",\"invoke\":true,\"code\":200}','2020-01-15 02:34:15','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1579062850170,82001,0,6,0,'{\"msg\":\"success\",\"invoke\":true,\"code\":200}','2020-01-15 04:34:10','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"boolean\",\"valueLevel\":0,\"values\":[true]}}],\"code\":200}'),(1579062851643,82001,0,7,0,'{\"msg\":\"success\",\"invoke\":true,\"code\":200}','2020-01-15 04:34:11','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"boolean\",\"valueLevel\":0,\"values\":[true]}}],\"code\":200}'),(1579062853012,82001,0,8,0,'{\"msg\":\"success\",\"invoke\":1,\"code\":200}','2020-01-15 04:34:13','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[1],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1579062854049,82001,0,9,0,'{\"msg\":\"success\",\"invoke\":1,\"code\":200}','2020-01-15 04:34:14','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[1],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1579062855363,82001,0,3,0,'{\"msg\":\"success\",\"invoke\":3,\"code\":200}','2020-01-15 04:34:15','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[3],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1579062858292,82001,0,5,0,'{\"msg\":\"success\",\"invoke\":true,\"code\":200}','2020-01-15 04:34:18','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"boolean\",\"valueLevel\":0,\"values\":[true]}}],\"code\":200}'),(1579071577186,82001,0,4,0,'{\"msg\":\"success\",\"invoke\":2,\"code\":200}','2020-01-15 06:59:37','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[2],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586108443116,82001,0,1586108443057,0,'{\"code\":200,\"msg\":\"success\",\"invoke\":false,\"instance\":null}','2020-04-05 09:40:44',NULL,NULL),(1586108857420,82001,0,1586108857346,0,'{\"code\":200,\"msg\":\"success\",\"invoke\":false,\"instance\":null}','2020-04-05 09:47:39',NULL,NULL),(1586159628767,82001,0,1586159628678,0,'{\"code\":200,\"msg\":\"success\",\"invoke\":0.5,\"instance\":null}','2020-04-05 23:53:49',NULL,NULL),(1586160172508,82001,0,1586159628678,1586160172433,'{\"code\":200,\"msg\":\"success\",\"invoke\":0.5,\"instance\":null}','2020-04-06 00:02:53',NULL,NULL),(1586160313059,82001,0,1586159628678,1586160312990,'{\"code\":200,\"msg\":\"success\",\"invoke\":0.5,\"instance\":null}','2020-04-06 00:05:14',NULL,NULL),(1586160410024,82001,0,1586160409881,0,'','2020-04-06 00:06:51',NULL,NULL),(1586160410028,82001,0,1586160409871,0,'','2020-04-06 00:06:51',NULL,NULL),(1586160410033,82001,0,1586160409878,0,'','2020-04-06 00:06:51',NULL,NULL),(1586160410079,82001,0,1586160409875,0,'','2020-04-06 00:06:51',NULL,NULL),(1586160410157,82001,0,1586160409905,0,'','2020-04-06 00:06:51',NULL,NULL),(1586160410213,82001,0,1586160409914,0,'','2020-04-06 00:06:51',NULL,NULL),(1586160410567,82001,0,1586160410343,0,'','2020-04-06 00:06:52',NULL,NULL),(1586160410570,82001,0,1586160410358,0,'','2020-04-06 00:06:52',NULL,NULL),(1586160410594,82001,0,1586160410319,0,'','2020-04-06 00:06:52',NULL,NULL),(1586160411052,82001,0,1586160410808,0,'','2020-04-06 00:06:52',NULL,NULL),(1586160411058,82001,0,1586160410822,0,'','2020-04-06 00:06:52',NULL,NULL),(1586160411059,82001,0,1586160410853,0,'','2020-04-06 00:06:52',NULL,NULL),(1586160631188,82001,0,1586159628678,0,'{\"msg\":\"success\",\"invoke\":0.5,\"instance\":null,\"code\":200}','2020-04-06 00:10:33','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.5],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586160749258,82001,0,1586159628678,1586160749171,'{\"msg\":\"success\",\"invoke\":0.5,\"instance\":null,\"code\":200}','2020-04-06 00:12:31','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.5],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586160754535,82001,0,1586159628678,1586160754474,'{\"msg\":\"success\",\"invoke\":0.03184713375796178,\"instance\":null,\"code\":200}','2020-04-06 00:12:36','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.03184713375796178],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586160757634,82001,0,1586159628678,1586160757579,'{\"msg\":\"success\",\"invoke\":-2,\"instance\":null,\"code\":200}','2020-04-06 00:12:39','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[-2],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586160761430,82001,0,1586159628678,1586160761309,'{\"msg\":\"success\",\"invoke\":0.5,\"instance\":null,\"code\":200}','2020-04-06 00:12:43','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.5],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586160764554,82001,0,1586159628678,1586160764505,'{\"msg\":\"success\",\"invoke\":0.03184713375796178,\"instance\":null,\"code\":200}','2020-04-06 00:12:46','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.03184713375796178],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586160769027,82001,0,1586159628678,1586160768954,'{\"msg\":\"success\",\"invoke\":-2,\"instance\":null,\"code\":200}','2020-04-06 00:12:50','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[-2],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586160774434,82001,0,1586159628678,1586160774391,'{\"msg\":\"success\",\"invoke\":0.5,\"instance\":null,\"code\":200}','2020-04-06 00:12:56','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.5],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586160782158,82001,0,1586159628678,1586160782100,'{\"msg\":\"success\",\"invoke\":0.03184713375796178,\"instance\":null,\"code\":200}','2020-04-06 00:13:04','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.03184713375796178],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586160786923,82001,0,1586159628678,1586160786875,'{\"msg\":\"success\",\"invoke\":-2,\"instance\":null,\"code\":200}','2020-04-06 00:13:08','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[-2],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586160790783,82001,0,1586159628678,1586160790735,'{\"msg\":\"success\",\"invoke\":0.5,\"instance\":null,\"code\":200}','2020-04-06 00:13:12','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.5],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586160793833,82001,0,1586159628678,1586160793778,'{\"msg\":\"success\",\"invoke\":0.03184713375796178,\"instance\":null,\"code\":200}','2020-04-06 00:13:15','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.03184713375796178],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586160796685,82001,0,1586159628678,1586160796629,'{\"msg\":\"success\",\"invoke\":-2,\"instance\":null,\"code\":200}','2020-04-06 00:13:18','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[-2],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586160799375,82001,0,1586159628678,1586160799306,'{\"msg\":\"success\",\"invoke\":0.5,\"instance\":null,\"code\":200}','2020-04-06 00:13:21','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.5],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586160804335,82001,0,1586159628678,1586160804274,'{\"msg\":\"success\",\"invoke\":0.03184713375796178,\"instance\":null,\"code\":200}','2020-04-06 00:13:26','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.03184713375796178],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586160806653,82001,0,1586159628678,1586160806597,'{\"msg\":\"success\",\"invoke\":-2,\"instance\":null,\"code\":200}','2020-04-06 00:13:28','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[-2],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586160809848,82001,0,1586159628678,1586160809775,'{\"msg\":\"success\",\"invoke\":-2,\"instance\":null,\"code\":200}','2020-04-06 00:13:31','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[-2],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586160815087,82001,0,1586159628678,1586160815025,'{\"msg\":\"success\",\"invoke\":0.03184713375796178,\"instance\":null,\"code\":200}','2020-04-06 00:13:37','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.03184713375796178],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586160822185,82001,0,1586159628678,1586160822101,'{\"msg\":\"success\",\"invoke\":0.5,\"instance\":null,\"code\":200}','2020-04-06 00:13:44','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.5],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586160824965,82001,0,1586159628678,1586160824901,'{\"msg\":\"success\",\"invoke\":0.5,\"instance\":null,\"code\":200}','2020-04-06 00:13:46','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.5],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586160828085,82001,0,1586159628678,1586160827959,'{\"msg\":\"success\",\"invoke\":0.03184713375796178,\"instance\":null,\"code\":200}','2020-04-06 00:13:50','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.03184713375796178],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586160830936,82001,0,1586159628678,1586160830876,'{\"msg\":\"success\",\"invoke\":-2,\"instance\":null,\"code\":200}','2020-04-06 00:13:52','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[-2],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586160980083,82001,0,1586159628678,1586160980013,'{\"code\":200,\"msg\":\"success\",\"invoke\":-2,\"instance\":null}','2020-04-06 00:16:22',NULL,NULL),(1586161132893,82001,0,1586159628678,1586161132829,'{\"code\":200,\"msg\":\"success\",\"invoke\":0.2,\"instance\":null}','2020-04-06 00:18:55',NULL,NULL),(1586161211021,82001,0,6,1586161210976,'{\"msg\":\"success\",\"invoke\":false,\"instance\":null,\"code\":200}','2020-04-06 00:20:13','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"boolean\",\"valueLevel\":0,\"values\":[false]}}],\"code\":200}'),(1586161247171,82001,0,6,1586161247084,'{\"msg\":\"success\",\"invoke\":false,\"instance\":null,\"code\":200}','2020-04-06 00:20:49','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"boolean\",\"valueLevel\":0,\"values\":[false]}}],\"code\":200}'),(1586161247372,82001,0,6,1586161247306,'{\"msg\":\"success\",\"invoke\":false,\"instance\":null,\"code\":200}','2020-04-06 00:20:49','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"boolean\",\"valueLevel\":0,\"values\":[false]}}],\"code\":200}'),(1586165553084,82001,0,1586159628678,1586165553036,'{\"msg\":\"字符 divide 对应的方法不在 apijson/demo/server/MathUtil 内!\\n请检查函数名和参数数量是否与已定义的函数一致!\\napijson.demo.server.MathUtil.divide(java.lang.Float, int)\",\"throw\":\"java.lang.IllegalArgumentException\",\"cause\":null,\"code\":500}','2020-04-06 01:32:40',NULL,'{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":3,\"values\":[],\"lengthLevel\":1,\"lengths\":[131]},\"throw\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":3,\"values\":[],\"lengthLevel\":1,\"lengths\":[34]}}],\"code\":500}'),(1586165748872,82001,0,1586159628678,1586165748807,'{\"msg\":\"success\",\"invoke\":-2,\"instance\":null,\"code\":200}','2020-04-06 01:35:56',NULL,'{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[-2],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586165928766,82001,0,1586159628678,1586165928721,'{\"msg\":\"success\",\"invoke\":-2,\"instance\":null,\"code\":200}','2020-04-06 01:38:56',NULL,'{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[-2],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586166010221,82001,0,1586159628678,1586166010170,'{\"msg\":\"success\",\"invoke\":-3.184713375796178,\"instance\":null,\"code\":200}','2020-04-06 01:40:17',NULL,'{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-3.184713375796178],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586166079848,82001,0,1586159628678,1586166079775,'{\"msg\":\"success\",\"invoke\":0.5,\"instance\":null,\"code\":200}','2020-04-06 01:41:27',NULL,'{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.5],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586166187325,82001,0,1586159628678,1586166187283,'{\"msg\":\"success\",\"invoke\":4.5,\"instance\":null,\"code\":200}','2020-04-06 01:43:15','{\"code\":2,\"msg\":\"值超出范围\",\"path\":\"invoke\",\"value\":4.5}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[4.5,-3.184713375796178],\"lengthLevel\":1,\"lengths\":[2,1]}}],\"code\":200}'),(1586166190624,82001,0,1586159628678,1586166190567,'{\"msg\":null,\"throw\":\"java.lang.IllegalArgumentException\",\"cause\":null,\"invoke\":null,\"code\":500}','2020-04-06 01:43:18','{\"code\":4,\"msg\":\"状态码 code 改变!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":false,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":false,\"type\":\"number\",\"valueLevel\":1,\"values\":[-3.184713375796178],\"lengthLevel\":1,\"lengths\":[2]},\"throw\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":3,\"values\":[],\"lengthLevel\":1,\"lengths\":[34]}}],\"code\":500}'),(1586166533511,82001,0,1586159628678,1586166533469,'{\"msg\":\"success\",\"invoke\":0.5,\"instance\":null,\"code\":200}','2020-04-06 01:49:01','{\"code\":1,\"msg\":\"是新增的\",\"path\":\"instance\",\"value\":null}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.5],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586166536803,82001,0,1586159628678,1586166536759,'{\"msg\":\"success\",\"invoke\":0.03184713375796178,\"instance\":null,\"code\":200}','2020-04-06 01:49:05','{\"code\":1,\"msg\":\"是新增的\",\"path\":\"instance\",\"value\":null}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.5,0.03184713375796178],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586166538217,82001,0,1586159628678,1586166538168,'{\"msg\":\"success\",\"invoke\":-2,\"instance\":null,\"code\":200}','2020-04-06 01:49:06','{\"code\":2,\"msg\":\"长度超出范围\",\"path\":\"invoke\",\"value\":2}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.5,-2],\"lengthLevel\":1,\"lengths\":[2,1]}}],\"code\":200}'),(1586166540156,82001,0,1586159628678,1586166540096,'{\"msg\":\"字符 divide 对应的方法不在 apijson/demo/server/MathUtil 内!\\n请检查函数名和参数数量是否与已定义的函数一致!\\napijson.demo.server.MathUtil.divide(int, int)\",\"throw\":\"java.lang.IllegalArgumentException\",\"cause\":null,\"invoke\":null,\"code\":500}','2020-04-06 01:49:08','{\"code\":4,\"msg\":\"状态码 code 改变!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":3,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[119,7]},\"invoke\":{\"notnull\":false,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.5],\"lengthLevel\":1,\"lengths\":[1]},\"throw\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":3,\"values\":[],\"lengthLevel\":1,\"lengths\":[34]}}],\"code\":500}'),(1586166541375,82001,0,1586159628678,1586166541330,'{\"msg\":\"字符 divide 对应的方法不在 apijson/demo/server/MathUtil 内!\\n请检查函数名和参数数量是否与已定义的函数一致!\\napijson.demo.server.MathUtil.divide(java.lang.Float, java.lang.Float)\",\"throw\":\"java.lang.IllegalArgumentException\",\"cause\":null,\"invoke\":null,\"code\":500}','2020-04-06 01:49:09','{\"code\":4,\"msg\":\"状态码 code 改变!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":3,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[143,7]},\"invoke\":{\"notnull\":false,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.5],\"lengthLevel\":1,\"lengths\":[1]},\"throw\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":3,\"values\":[],\"lengthLevel\":1,\"lengths\":[34]}}],\"code\":500}'),(1586166542529,82001,0,1586159628678,1586166542490,'{\"msg\":\"success\",\"invoke\":0.5,\"instance\":null,\"code\":200}','2020-04-06 01:49:10','{\"code\":1,\"msg\":\"是新增的\",\"path\":\"instance\",\"value\":null}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.5],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586166543616,82001,0,1586159628678,1586166543575,'{\"msg\":\"success\",\"invoke\":0.03184713375796178,\"instance\":null,\"code\":200}','2020-04-06 01:49:11','{\"code\":1,\"msg\":\"是新增的\",\"path\":\"instance\",\"value\":null}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.5,0.03184713375796178],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586166545757,82001,0,1586159628678,1586166545717,'{\"msg\":\"success\",\"invoke\":-2,\"instance\":null,\"code\":200}','2020-04-06 01:49:14','{\"code\":2,\"msg\":\"长度超出范围\",\"path\":\"invoke\",\"value\":2}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.5,-2],\"lengthLevel\":1,\"lengths\":[2,1]}}],\"code\":200}'),(1586166546774,82001,0,1586159628678,1586166546712,'{\"msg\":\"字符 divide 对应的方法不在 apijson/demo/server/MathUtil 内!\\n请检查函数名和参数数量是否与已定义的函数一致!\\napijson.demo.server.MathUtil.divide(int, int)\",\"throw\":\"java.lang.IllegalArgumentException\",\"cause\":null,\"invoke\":null,\"code\":500}','2020-04-06 01:49:15','{\"code\":4,\"msg\":\"状态码 code 改变!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":3,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[119,7]},\"invoke\":{\"notnull\":false,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.5],\"lengthLevel\":1,\"lengths\":[1]},\"throw\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":3,\"values\":[],\"lengthLevel\":1,\"lengths\":[34]}}],\"code\":500}'),(1586166547905,82001,0,1586159628678,1586166547830,'{\"msg\":\"字符 divide 对应的方法不在 apijson/demo/server/MathUtil 内!\\n请检查函数名和参数数量是否与已定义的函数一致!\\napijson.demo.server.MathUtil.divide(java.lang.Float, java.lang.Float)\",\"throw\":\"java.lang.IllegalArgumentException\",\"cause\":null,\"invoke\":null,\"code\":500}','2020-04-06 01:49:16','{\"code\":4,\"msg\":\"状态码 code 改变!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":3,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[143,7]},\"invoke\":{\"notnull\":false,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.5],\"lengthLevel\":1,\"lengths\":[1]},\"throw\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":3,\"values\":[],\"lengthLevel\":1,\"lengths\":[34]}}],\"code\":500}'),(1586166548021,82001,0,1586159628678,1586166547956,'{\"msg\":\"字符 divide 对应的方法不在 apijson/demo/server/MathUtil 内!\\n请检查函数名和参数数量是否与已定义的函数一致!\\napijson.demo.server.MathUtil.divide(java.lang.Float, java.lang.Float)\",\"throw\":\"java.lang.IllegalArgumentException\",\"cause\":null,\"invoke\":null,\"code\":500}','2020-04-06 01:49:16','{\"code\":4,\"msg\":\"状态码 code 改变!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":3,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[143,7]},\"invoke\":{\"notnull\":false,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.5],\"lengthLevel\":1,\"lengths\":[1]},\"throw\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":3,\"values\":[],\"lengthLevel\":1,\"lengths\":[34]}}],\"code\":500}'),(1586166553293,82001,0,1586159628678,1586166553236,'{\"msg\":\"success\",\"invoke\":0.5,\"instance\":null,\"code\":200}','2020-04-06 01:49:21','{\"code\":1,\"msg\":\"是新增的\",\"path\":\"instance\",\"value\":null}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.5],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586166554604,82001,0,1586159628678,1586166554562,'{\"msg\":\"success\",\"invoke\":0.03184713375796178,\"instance\":null,\"code\":200}','2020-04-06 01:49:22','{\"code\":1,\"msg\":\"是新增的\",\"path\":\"instance\",\"value\":null}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.5,0.03184713375796178],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586166555818,82001,0,1586159628678,1586166555761,'{\"msg\":\"success\",\"invoke\":-2,\"instance\":null,\"code\":200}','2020-04-06 01:49:24','{\"code\":2,\"msg\":\"长度超出范围\",\"path\":\"invoke\",\"value\":2}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.5,-2],\"lengthLevel\":1,\"lengths\":[2,1]}}],\"code\":200}'),(1586166557808,82001,0,1586159628678,1586166557750,'{\"msg\":\"字符 divide 对应的方法不在 apijson/demo/server/MathUtil 内!\\n请检查函数名和参数数量是否与已定义的函数一致!\\napijson.demo.server.MathUtil.divide(int, int)\",\"throw\":\"java.lang.IllegalArgumentException\",\"cause\":null,\"invoke\":null,\"code\":500}','2020-04-06 01:49:26','{\"code\":4,\"msg\":\"状态码 code 改变!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":3,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[119,7]},\"invoke\":{\"notnull\":false,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.5],\"lengthLevel\":1,\"lengths\":[1]},\"throw\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":3,\"values\":[],\"lengthLevel\":1,\"lengths\":[34]}}],\"code\":500}'),(1586166559173,82001,0,1586159628678,1586166559031,'{\"msg\":\"字符 divide 对应的方法不在 apijson/demo/server/MathUtil 内!\\n请检查函数名和参数数量是否与已定义的函数一致!\\napijson.demo.server.MathUtil.divide(java.lang.Float, java.lang.Float)\",\"throw\":\"java.lang.IllegalArgumentException\",\"cause\":null,\"invoke\":null,\"code\":500}','2020-04-06 01:49:27','{\"code\":4,\"msg\":\"状态码 code 改变!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":3,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[143,7]},\"invoke\":{\"notnull\":false,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.5],\"lengthLevel\":1,\"lengths\":[1]},\"throw\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":3,\"values\":[],\"lengthLevel\":1,\"lengths\":[34]}}],\"code\":500}'),(1586166559288,82001,0,1586159628678,1586166559171,'{\"msg\":\"字符 divide 对应的方法不在 apijson/demo/server/MathUtil 内!\\n请检查函数名和参数数量是否与已定义的函数一致!\\napijson.demo.server.MathUtil.divide(java.lang.Float, java.lang.Float)\",\"throw\":\"java.lang.IllegalArgumentException\",\"cause\":null,\"invoke\":null,\"code\":500}','2020-04-06 01:49:27','{\"code\":4,\"msg\":\"状态码 code 改变!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":3,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[143,7]},\"invoke\":{\"notnull\":false,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.5],\"lengthLevel\":1,\"lengths\":[1]},\"throw\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":3,\"values\":[],\"lengthLevel\":1,\"lengths\":[34]}}],\"code\":500}'),(1586166561788,82001,0,1586159628678,1586166561747,'{\"msg\":\"success\",\"invoke\":0.5,\"instance\":null,\"code\":200}','2020-04-06 01:49:30','{\"code\":1,\"msg\":\"是新增的\",\"path\":\"instance\",\"value\":null}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.5],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586166564577,82001,0,1586159628678,1586166564530,'{\"msg\":\"success\",\"invoke\":-2,\"instance\":null,\"code\":200}','2020-04-06 01:49:32','{\"code\":2,\"msg\":\"长度超出范围\",\"path\":\"invoke\",\"value\":2}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.5,-2],\"lengthLevel\":1,\"lengths\":[2,1]}}],\"code\":200}'),(1586166564714,82001,0,1586159628678,1586166564661,'{\"msg\":\"success\",\"invoke\":-2,\"instance\":null,\"code\":200}','2020-04-06 01:49:33','{\"code\":2,\"msg\":\"长度超出范围\",\"path\":\"invoke\",\"value\":2}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.5,-2],\"lengthLevel\":1,\"lengths\":[2,1]}}],\"code\":200}'),(1586166569666,82001,0,1586159628678,1586166569600,'{\"msg\":\"字符 divide 对应的方法不在 apijson/demo/server/MathUtil 内!\\n请检查函数名和参数数量是否与已定义的函数一致!\\napijson.demo.server.MathUtil.divide(int, int)\",\"throw\":\"java.lang.IllegalArgumentException\",\"cause\":null,\"invoke\":null,\"code\":500}','2020-04-06 01:49:38','{\"code\":4,\"msg\":\"状态码 code 改变!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":3,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[119,7]},\"invoke\":{\"notnull\":false,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.5],\"lengthLevel\":1,\"lengths\":[1]},\"throw\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":3,\"values\":[],\"lengthLevel\":1,\"lengths\":[34]}}],\"code\":500}'),(1586166571477,82001,0,1586159628678,1586166571425,'{\"msg\":\"字符 divide 对应的方法不在 apijson/demo/server/MathUtil 内!\\n请检查函数名和参数数量是否与已定义的函数一致!\\napijson.demo.server.MathUtil.divide(java.lang.Float, java.lang.Float)\",\"throw\":\"java.lang.IllegalArgumentException\",\"cause\":null,\"invoke\":null,\"code\":500}','2020-04-06 01:49:39','{\"code\":4,\"msg\":\"状态码 code 改变!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":3,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[143,7]},\"invoke\":{\"notnull\":false,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.5],\"lengthLevel\":1,\"lengths\":[1]},\"throw\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":3,\"values\":[],\"lengthLevel\":1,\"lengths\":[34]}}],\"code\":500}'),(1586167536328,82001,0,1586159628678,1586167536284,'{\"msg\":\"success\",\"invoke\":-1.0377941055308126e-8,\"instance\":null,\"code\":200}','2020-04-06 02:05:45',NULL,'{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-1.0377941055308126e-8],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586167627369,82001,0,1586159628678,1586167627326,'{\"msg\":\"success\",\"invoke\":2.404179704883816e-8,\"instance\":null,\"code\":200}','2020-04-06 02:07:16',NULL,'{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[2.404179704883816e-8],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586167725189,82001,0,1586159628678,1586167725143,'{\"msg\":\"success\",\"invoke\":0.000004228865704461576,\"instance\":null,\"code\":200}','2020-04-06 02:08:54','{\"code\":2,\"msg\":\"值超出范围\",\"path\":\"invoke\",\"value\":0.000004228865704461576}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.000004228865704461576,2.404179704883816e-8],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586169942037,82001,0,6,1586169941994,'{\"msg\":\"success\",\"invoke\":false,\"instance\":null,\"code\":200}','2020-04-06 02:45:54','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586171728039,82001,0,6,1586171727997,'{\"msg\":\"success\",\"invoke\":false,\"instance\":null,\"code\":200}','2020-04-06 03:15:41','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586171860350,82001,0,6,1586171860292,'{\"msg\":\"success\",\"invoke\":false,\"instance\":null,\"code\":200}','2020-04-06 03:17:54','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586171873778,82001,0,6,1586171873734,'{\"msg\":\"success\",\"invoke\":false,\"instance\":null,\"code\":200}','2020-04-06 03:18:07','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586171875808,82001,0,6,1586171875763,'{\"msg\":\"success\",\"invoke\":false,\"instance\":null,\"code\":200}','2020-04-06 03:18:09','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586171926300,82001,0,6,1586171926247,'{\"msg\":\"字符 isContainKey 对应的方法不在 apijson/demo/server/DemoFunction 内!\\n请检查函数名和参数数量是否与已定义的函数一致!\\napijson.demo.server.DemoFunction.isContainKey(com.alibaba.fastjson.JSONObject, java.lang.String, java.lang.Object)\",\"throw\":\"java.lang.IllegalArgumentException\",\"cause\":null,\"code\":500}','2020-04-06 03:19:00','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586171933273,82001,0,6,1586171933213,'{\"msg\":\"success\",\"invoke\":true,\"instance\":null,\"code\":200}','2020-04-06 03:19:07','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586171934859,82001,0,6,1586171934803,'{\"msg\":\"success\",\"invoke\":true,\"instance\":null,\"code\":200}','2020-04-06 03:19:08','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586172371299,82001,0,6,1586172371236,'{\"msg\":\"字符 isContainKey 对应的方法不在 apijson/demo/server/DemoFunction 内!\\n请检查函数名和参数数量是否与已定义的函数一致!\\napijson.demo.server.DemoFunction.isContainKey(com.alibaba.fastjson.JSONObject, java.lang.String, java.math.BigDecimal)\",\"throw\":\"java.lang.IllegalArgumentException\",\"cause\":null,\"code\":500}','2020-04-06 03:26:25','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586172381767,82001,0,6,1586172381706,'{\"msg\":\"字符 isContainKey 对应的方法不在 apijson/demo/server/DemoFunction 内!\\n请检查函数名和参数数量是否与已定义的函数一致!\\napijson.demo.server.DemoFunction.isContainKey(com.alibaba.fastjson.JSONObject, java.lang.String, java.lang.Integer)\",\"throw\":\"java.lang.IllegalArgumentException\",\"cause\":null,\"code\":500}','2020-04-06 03:26:36','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586172584636,82001,0,1586159628678,1586172584595,'{\"msg\":\"success\",\"invoke\":-2,\"instance\":null,\"code\":200}','2020-04-06 03:29:59','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586172584791,82001,0,1586159628678,1586172584595,'{}','2020-04-06 03:29:59','{\"code\":0,\"msg\":\"结果正确\"}',NULL),(1586172594658,82001,0,1586159628678,1586172594616,'{\"msg\":\"success\",\"invoke\":4.995,\"instance\":null,\"code\":200}','2020-04-06 03:30:09','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586172983176,82001,0,6,1586172983136,'{\"msg\":\"success\",\"invoke\":false,\"instance\":null,\"code\":200}','2020-04-06 03:36:38','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586173005226,82001,0,6,1586173005184,'{\"msg\":\"success\",\"invoke\":true,\"instance\":null,\"code\":200}','2020-04-06 03:37:00','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586173045852,82001,0,6,1586173045809,'{\"msg\":\"success\",\"invoke\":true,\"instance\":null,\"code\":200}','2020-04-06 03:37:40','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586173072482,82001,0,6,1586173072436,'{\"msg\":\"success\",\"invoke\":false,\"instance\":null,\"code\":200}','2020-04-06 03:38:07','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586175845296,82001,0,6,1586175845253,'{\"msg\":\"success\",\"invoke\":true,\"instance\":null,\"code\":200}','2020-04-06 04:24:03','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586186277902,82001,0,1586159628678,1586167735912,'{\"msg\":\"success\",\"invoke\":1.11207027172047e-8,\"instance\":null,\"code\":200}','2020-04-06 07:18:07','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586186937441,82001,0,1586160410942,0,'{\"msg\":\"字符 minus 对应的方法传参类型错误!\\n请检查 key:value 中value的类型是否满足已定义的函数的要求!\\nnull\",\"cause\":null,\"code\":500,\"throw\":\"java.lang.IllegalArgumentException\"}','2020-04-06 07:29:07','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586186939067,82001,0,1586160410941,0,'{\"msg\":null,\"cause\":null,\"code\":500,\"throw\":\"java.lang.IllegalArgumentException\"}','2020-04-06 07:29:09','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586187055633,82001,0,1586159628678,1586183703538,'{\"msg\":\"success\",\"invoke\":\"-Infinity\",\"instance\":null,\"code\":200}','2020-04-06 07:31:06','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586187057010,82001,0,1586159628678,1586183789811,'{\"msg\":\"success\",\"invoke\":100,\"instance\":null,\"code\":200}','2020-04-06 07:31:07','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586187057564,82001,0,1586159628678,1586183688702,'{\"msg\":\"success\",\"invoke\":0.5,\"instance\":null,\"code\":200}','2020-04-06 07:31:08','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586187058179,82001,0,1586159628678,1586172584595,'{\"msg\":\"success\",\"invoke\":-2,\"instance\":null,\"code\":200}','2020-04-06 07:31:08','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586187060001,82001,0,1586159628678,1586187059959,'{\"msg\":\"字符 divide 对应的方法不在 apijson/demo/server/MathUtil 内!\\n请检查函数名和参数数量是否与已定义的函数一致!\\napijson.demo.server.MathUtil.divide(int, int)\",\"cause\":null,\"code\":500,\"throw\":\"java.lang.IllegalArgumentException\"}','2020-04-06 07:31:10','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586187060575,82001,0,1586159628678,1586187060535,'{\"msg\":\"字符 divide 对应的方法传参类型错误!\\n请检查 key:value 中value的类型是否满足已定义的函数的要求!\\nnull\",\"cause\":null,\"code\":500,\"throw\":\"java.lang.IllegalArgumentException\"}','2020-04-06 07:31:11','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586187084657,82001,0,1586159628678,1586183789811,'{\"msg\":\"success\",\"invoke\":100,\"instance\":null,\"code\":200}','2020-04-06 07:31:35','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586187087103,82001,0,1586159628678,1586183703538,'{\"msg\":\"success\",\"invoke\":\"-Infinity\",\"instance\":null,\"code\":200}','2020-04-06 07:31:37','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586187089607,82001,0,1586159628678,1586183688702,'{\"msg\":\"success\",\"invoke\":0.5,\"instance\":null,\"code\":200}','2020-04-06 07:31:40','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586187119306,82001,0,1586159628678,1586183585450,'{\"msg\":\"success\",\"invoke\":0.03184713375796178,\"instance\":null,\"code\":200}','2020-04-06 07:32:09','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586188117592,82001,0,1586159628678,1586183703538,'{\"msg\":\"字符 divide 对应的方法传参类型错误!\\n请检查 key:value 中value的类型是否满足已定义的函数的要求!\\n/ by zero\",\"cause\":null,\"code\":500,\"throw\":\"java.lang.IllegalArgumentException\"}','2020-04-06 07:48:49','{\"code\":4,\"msg\":\"状态码 code 改变!\",\"path\":\"\"}',NULL),(1586189268330,82001,0,1586159628678,1586189268266,'{\"msg\":\"success\",\"invoke\":0.03184713375796178,\"instance\":null,\"code\":200}','2020-04-06 08:08:01','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586189382288,82001,0,1586159628678,1586189382215,'{\"msg\":\"success\",\"invoke\":0.02,\"instance\":null,\"code\":200}','2020-04-06 08:09:55','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586189384334,82001,0,1586159628678,1586189384259,'{\"msg\":\"success\",\"invoke\":-5,\"instance\":null,\"code\":200}','2020-04-06 08:09:57','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586189387334,82001,0,1586159628678,1586189387259,'{\"msg\":\"success\",\"invoke\":0,\"instance\":null,\"code\":200}','2020-04-06 08:10:00','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586189392827,82001,0,1586159628678,1586189392770,'{\"msg\":\"success\",\"invoke\":4.995,\"instance\":null,\"code\":200}','2020-04-06 08:10:05','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586189427271,82001,0,1586159628678,1586167740094,'{\"msg\":\"success\",\"invoke\":-2.5482375637279177e-8,\"instance\":null,\"code\":200}','2020-04-06 08:10:40','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586189428537,82001,0,1586159628678,1586167731202,'{\"msg\":\"success\",\"invoke\":0,\"instance\":null,\"code\":200}','2020-04-06 08:10:41','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586189431261,82001,0,1586159628678,1586167727522,'{\"msg\":\"success\",\"invoke\":0.000004747223062517262,\"instance\":null,\"code\":200}','2020-04-06 08:10:44','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586189433213,82001,0,1586159628678,1586167729635,'{\"msg\":\"success\",\"invoke\":-0.0000022779243944436085,\"instance\":null,\"code\":200}','2020-04-06 08:10:46','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586189437090,82001,0,1586159628678,1586166563381,'{\"msg\":\"success\",\"invoke\":0.03184713375796178,\"instance\":null,\"code\":200}','2020-04-06 08:10:50','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586189530891,82001,0,1586159628678,1586189530847,'{\"msg\":\"success\",\"invoke\":1.8,\"instance\":null,\"code\":200}','2020-04-06 08:12:24','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586193950007,82001,0,1586159628678,1586193949946,'{\"msg\":\"success\",\"invoke\":0,\"instance\":null,\"code\":200}','2020-04-06 09:26:08','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586193987641,82001,0,1586159628678,1586193987577,'{\"msg\":\"success\",\"invoke\":-99.89999999999999,\"instance\":null,\"code\":200}','2020-04-06 09:26:45','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586194045113,82001,0,1586159628678,1586194045072,'{\"msg\":\"success\",\"invoke\":4.995,\"instance\":null,\"code\":200}','2020-04-06 09:27:43','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586194047874,82001,0,1586159628678,1586194047823,'{\"msg\":\"success\",\"invoke\":-10,\"instance\":null,\"code\":200}','2020-04-06 09:27:46','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586194050128,82001,0,1586159628678,1586194050068,'{\"msg\":\"success\",\"invoke\":-2,\"instance\":null,\"code\":200}','2020-04-06 09:27:48','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586194052399,82001,0,1586159628678,1586194052335,'{\"msg\":\"success\",\"invoke\":4.995,\"instance\":null,\"code\":200}','2020-04-06 09:27:50','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586194056103,82001,0,1586159628678,1586194056043,'{\"msg\":\"success\",\"invoke\":100,\"instance\":null,\"code\":200}','2020-04-06 09:27:54','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586194292287,82001,0,1586159628678,1586194292235,'{\"msg\":\"success\",\"invoke\":0.03184713375796178,\"instance\":null,\"code\":200}','2020-04-06 09:31:50','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586194297270,82001,0,1586159628678,1586194297208,'{\"msg\":\"success\",\"invoke\":0.5,\"instance\":null,\"code\":200}','2020-04-06 09:31:55','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586194323288,82001,0,1586159628678,1586194323228,'{\"msg\":\"success\",\"invoke\":4.5,\"instance\":null,\"code\":200}','2020-04-06 09:32:21','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586194355038,82001,0,1586159628678,1586194354978,'{\"msg\":\"success\",\"invoke\":0.3184713375796178,\"instance\":null,\"code\":200}','2020-04-06 09:32:53','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586194370794,82001,0,1586159628678,1586194370747,'{\"msg\":\"success\",\"invoke\":-2,\"instance\":null,\"code\":200}','2020-04-06 09:33:09','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586194471045,82001,0,1586159628678,1586194470991,'{\"msg\":\"success\",\"invoke\":3,\"instance\":null,\"code\":200}','2020-04-06 09:34:49','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586194474770,82001,0,1586159628678,1586194474729,'{\"msg\":\"success\",\"invoke\":100,\"instance\":null,\"code\":200}','2020-04-06 09:34:53','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586194476699,82001,0,1586159628678,1586194476655,'{\"msg\":\"success\",\"invoke\":-1,\"instance\":null,\"code\":200}','2020-04-06 09:34:55','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586194496007,82001,0,1586159628678,1586194495950,'{\"msg\":\"success\",\"invoke\":0.02,\"instance\":null,\"code\":200}','2020-04-06 09:35:14','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586194584044,82001,0,1586159628678,1586194583999,'{\"msg\":\"success\",\"invoke\":0.03184713375796178,\"instance\":null,\"code\":200}','2020-04-06 09:36:42','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586194591197,82001,0,1586159628678,1586194591151,'{\"msg\":\"success\",\"invoke\":-99.89999999999999,\"instance\":null,\"code\":200}','2020-04-06 09:36:50','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586194594974,82001,0,1586159628678,1586194594906,'{\"msg\":\"success\",\"invoke\":0.2,\"instance\":null,\"code\":200}','2020-04-06 09:36:53','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586194624592,82001,0,1586159628678,1586194624546,'{\"msg\":\"success\",\"invoke\":0.02,\"instance\":null,\"code\":200}','2020-04-06 09:37:23','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586195304919,82001,0,1586159628678,1586195304834,'{\"msg\":\"success\",\"invoke\":0.000014363171782954194,\"instance\":null,\"code\":200}','2020-04-06 09:48:44','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586195307638,82001,0,1586159628678,1586195307580,'{\"msg\":\"success\",\"invoke\":7.310727637452829e-7,\"instance\":null,\"code\":200}','2020-04-06 09:48:47','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586195310452,82001,0,1586159628678,1586195310393,'{\"msg\":\"success\",\"invoke\":-1.612370571386401e-7,\"instance\":null,\"code\":200}','2020-04-06 09:48:50','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586195312086,82001,0,1586159628678,1586195312026,'{\"msg\":\"success\",\"invoke\":1.4836476069876835e-7,\"instance\":null,\"code\":200}','2020-04-06 09:48:51','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586195313682,82001,0,1586159628678,1586195313624,'{\"msg\":\"success\",\"invoke\":-1.1139143384278949e-7,\"instance\":null,\"code\":200}','2020-04-06 09:48:53','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586195315533,82001,0,1586159628678,1586195315466,'{\"msg\":\"success\",\"invoke\":-2.8309339893853e-8,\"instance\":null,\"code\":200}','2020-04-06 09:48:55','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586195316650,82001,0,1586159628678,1586195316596,'{\"msg\":\"success\",\"invoke\":1.0603818990858723e-8,\"instance\":null,\"code\":200}','2020-04-06 09:48:56','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586195317931,82001,0,1586159628678,1586195317876,'{\"msg\":\"success\",\"invoke\":2.8500714227898552e-8,\"instance\":null,\"code\":200}','2020-04-06 09:48:57','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586195320506,82001,0,1586159628678,1586195320449,'{\"msg\":\"success\",\"invoke\":0,\"instance\":null,\"code\":200}','2020-04-06 09:49:00','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586195322731,82001,0,1586159628678,1586195322653,'{\"msg\":\"success\",\"invoke\":0.000001586719017292441,\"instance\":null,\"code\":200}','2020-04-06 09:49:02','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586195324211,82001,0,1586159628678,1586195324152,'{\"msg\":\"success\",\"invoke\":0.00000290664028367414,\"instance\":null,\"code\":200}','2020-04-06 09:49:03','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586195325706,82001,0,1586159628678,1586195325652,'{\"msg\":\"success\",\"invoke\":-0.000004236981105944091,\"instance\":null,\"code\":200}','2020-04-06 09:49:05','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586195327185,82001,0,1586159628678,1586195327133,'{\"msg\":\"success\",\"invoke\":0,\"instance\":null,\"code\":200}','2020-04-06 09:49:06','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586195330656,82001,0,1586159628678,1586195330601,'{\"msg\":\"success\",\"invoke\":3.14237784045425e-8,\"instance\":null,\"code\":200}','2020-04-06 09:49:10','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586195606282,82001,0,1586159628678,1586195606215,'{\"msg\":\"success\",\"invoke\":0.03184713375796178,\"instance\":null,\"code\":200}','2020-04-06 09:53:46','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586197235335,82001,0,1586159628678,1586195606215,'{\"msg\":\"success\",\"invoke\":0.03184713375796178,\"instance\":null,\"code\":200}','2020-04-06 18:20:35','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.03184713375796178],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586197237241,82001,0,1586159628678,1586189268266,'{\"msg\":\"success\",\"invoke\":0.03184713375796178,\"instance\":null,\"code\":200}','2020-04-06 18:20:37','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.03184713375796178],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586197279452,82001,0,1586159628678,1586194624546,'{\"msg\":\"success\",\"invoke\":0.02,\"instance\":null,\"code\":200}','2020-04-06 18:21:19','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.02],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586197280962,82001,0,1586159628678,1586194594906,'{\"msg\":\"success\",\"invoke\":0.2,\"instance\":null,\"code\":200}','2020-04-06 18:21:20','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.2],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586197282282,82001,0,1586159628678,1586194591151,'{\"msg\":\"success\",\"invoke\":-99.89999999999999,\"instance\":null,\"code\":200}','2020-04-06 18:21:22','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-99.89999999999999],\"lengthLevel\":1,\"lengths\":[3]}}],\"code\":200}'),(1586197283479,82001,0,1586159628678,1586194583999,'{\"msg\":\"success\",\"invoke\":0.03184713375796178,\"instance\":null,\"code\":200}','2020-04-06 18:21:23','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.03184713375796178],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586197284668,82001,0,1586159628678,1586194476655,'{\"msg\":\"success\",\"invoke\":-1,\"instance\":null,\"code\":200}','2020-04-06 18:21:24','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[-1],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586197285757,82001,0,1586159628678,1586194474729,'{\"msg\":\"success\",\"invoke\":100,\"instance\":null,\"code\":200}','2020-04-06 18:21:25','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[100],\"lengthLevel\":1,\"lengths\":[3]}}],\"code\":200}'),(1586197287220,82001,0,1586159628678,1586194470991,'{\"msg\":\"success\",\"invoke\":3,\"instance\":null,\"code\":200}','2020-04-06 18:21:27','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[3],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586197292294,82001,0,1586159628678,1586194370747,'{\"msg\":\"success\",\"invoke\":-2,\"instance\":null,\"code\":200}','2020-04-06 18:21:32','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[-2],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586197294427,82001,0,1586159628678,1586194354978,'{\"msg\":\"success\",\"invoke\":0.3184713375796178,\"instance\":null,\"code\":200}','2020-04-06 18:21:34','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.3184713375796178],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586197295684,82001,0,1586159628678,1586194323228,'{\"msg\":\"success\",\"invoke\":4.5,\"instance\":null,\"code\":200}','2020-04-06 18:21:35','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[4.5],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586197297152,82001,0,1586159628678,1586194056043,'{\"msg\":\"success\",\"invoke\":100,\"instance\":null,\"code\":200}','2020-04-06 18:21:37','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[100],\"lengthLevel\":1,\"lengths\":[3]}}],\"code\":200}'),(1586197299100,82001,0,1586159628678,1586194052335,'{\"msg\":\"success\",\"invoke\":4.995,\"instance\":null,\"code\":200}','2020-04-06 18:21:39','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[4.995],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586197300277,82001,0,1586159628678,1586194050068,'{\"msg\":\"success\",\"invoke\":-2,\"instance\":null,\"code\":200}','2020-04-06 18:21:40','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[-2],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586197301548,82001,0,1586159628678,1586194047823,'{\"msg\":\"success\",\"invoke\":-10,\"instance\":null,\"code\":200}','2020-04-06 18:21:41','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[-10],\"lengthLevel\":1,\"lengths\":[3]}}],\"code\":200}'),(1586197303523,82001,0,1586159628678,1586193987577,'{\"msg\":\"success\",\"invoke\":-99.89999999999999,\"instance\":null,\"code\":200}','2020-04-06 18:21:43','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-99.89999999999999],\"lengthLevel\":1,\"lengths\":[3]}}],\"code\":200}'),(1586197304577,82001,0,1586159628678,1586194045072,'{\"msg\":\"success\",\"invoke\":4.995,\"instance\":null,\"code\":200}','2020-04-06 18:21:44','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[4.995],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586197331559,82001,0,1586159628678,1586193949946,'{\"msg\":\"success\",\"invoke\":0,\"instance\":null,\"code\":200}','2020-04-06 18:22:11','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[0],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586197339786,82001,0,1586159628678,1586197339783,'{\"msg\":\"success\",\"invoke\":0.05,\"instance\":null,\"code\":200}','2020-04-06 18:22:19','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.05],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586197347353,82001,0,1586159628678,1586197347349,'{\"msg\":\"success\",\"invoke\":-99.89999999999999,\"instance\":null,\"code\":200}','2020-04-06 18:22:27','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-99.89999999999999],\"lengthLevel\":1,\"lengths\":[3]}}],\"code\":200}'),(1586197350677,82001,0,1586159628678,1586197350665,'{\"msg\":\"字符 divide 对应的方法传参类型错误!\\n请检查 key:value 中value的类型是否满足已定义的函数的要求!\\nnull\",\"cause\":null,\"code\":500,\"throw\":\"java.lang.IllegalArgumentException\"}','2020-04-06 18:22:30','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":3,\"values\":[],\"lengthLevel\":1,\"lengths\":[65]}}],\"code\":500,\"throw\":\"java.lang.IllegalArgumentException\"}'),(1586197366262,82001,0,1586159628678,1586197366258,'{\"msg\":\"success\",\"invoke\":0.02,\"instance\":null,\"code\":200}','2020-04-06 18:22:46','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.02],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586197692141,82001,0,1586159628678,1586197692128,'{\"msg\":\"success\",\"invoke\":-2,\"instance\":null,\"code\":200}','2020-04-06 18:28:12','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[-2],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586197699532,82001,0,1586159628678,1586197699530,'{\"msg\":\"success\",\"invoke\":-2,\"instance\":null,\"code\":200}','2020-04-06 18:28:19','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[-2],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586197707931,82001,0,1586159628678,1586197707927,'{\"msg\":\"success\",\"invoke\":-2,\"instance\":null,\"code\":200}','2020-04-06 18:28:27','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[-2],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586197709968,82001,0,1586159628678,1586197709965,'{\"msg\":\"success\",\"invoke\":0.2,\"instance\":null,\"code\":200}','2020-04-06 18:28:29','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.2],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586197722106,82001,0,1586159628678,1586197722104,'{\"msg\":\"success\",\"invoke\":100,\"instance\":null,\"code\":200}','2020-04-06 18:28:42','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[100],\"lengthLevel\":1,\"lengths\":[3]}}],\"code\":200}'),(1586197727970,82001,0,1586159628678,1586197727968,'{\"msg\":\"success\",\"invoke\":0.02,\"instance\":null,\"code\":200}','2020-04-06 18:28:47','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.02],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586197732672,82001,0,1586159628678,1586197732669,'{\"msg\":\"success\",\"invoke\":0.2,\"instance\":null,\"code\":200}','2020-04-06 18:28:52','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.2],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586197735431,82001,0,1586159628678,1586197735421,'{\"msg\":\"success\",\"invoke\":-2,\"instance\":null,\"code\":200}','2020-04-06 18:28:55','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[-2],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586197766917,82001,0,1586159628678,1586197766913,'{\"msg\":\"success\",\"invoke\":0.03184713375796178,\"instance\":null,\"code\":200}','2020-04-06 18:29:26','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.03184713375796178],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586197821702,82001,0,1586159628678,1586194297208,'{\"msg\":\"success\",\"invoke\":0.5,\"instance\":null,\"code\":200}','2020-04-06 18:30:21','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.5],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586197829091,82001,0,1586159628678,1586194292235,'{\"msg\":\"success\",\"invoke\":0.03184713375796178,\"instance\":null,\"code\":200}','2020-04-06 18:30:29','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.03184713375796178],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586197887638,82001,0,1586159628678,1586197887634,'{\"msg\":\"success\",\"invoke\":0.03184713375796178,\"instance\":null,\"code\":200}','2020-04-06 18:31:27','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.03184713375796178],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586197889199,82001,0,1586159628678,1586197889196,'{\"msg\":\"success\",\"invoke\":-2,\"instance\":null,\"code\":200}','2020-04-06 18:31:29','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[-2],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586198100549,82001,0,1586159628678,1586195330601,'{\"msg\":\"success\",\"invoke\":3.14237784045425e-8,\"instance\":null,\"code\":200}','2020-04-06 18:35:00','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[3.14237784045425e-8],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586198103218,82001,0,1586159628678,1586195327133,'{\"msg\":\"success\",\"invoke\":0,\"instance\":null,\"code\":200}','2020-04-06 18:35:03','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[0],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586198105128,82001,0,1586159628678,1586195325652,'{\"msg\":\"success\",\"invoke\":-0.000004236981105944091,\"instance\":null,\"code\":200}','2020-04-06 18:35:05','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-0.000004236981105944091],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586198107014,82001,0,1586159628678,1586195324152,'{\"msg\":\"success\",\"invoke\":0.00000290664028367414,\"instance\":null,\"code\":200}','2020-04-06 18:35:07','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.00000290664028367414],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586198108557,82001,0,1586159628678,1586195322653,'{\"msg\":\"success\",\"invoke\":0.000001586719017292441,\"instance\":null,\"code\":200}','2020-04-06 18:35:08','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.000001586719017292441],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586198110241,82001,0,1586159628678,1586195320449,'{\"msg\":\"success\",\"invoke\":0,\"instance\":null,\"code\":200}','2020-04-06 18:35:10','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[0],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586198112379,82001,0,1586159628678,1586195317876,'{\"msg\":\"success\",\"invoke\":2.8500714227898552e-8,\"instance\":null,\"code\":200}','2020-04-06 18:35:12','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[2.8500714227898552e-8],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586198114019,82001,0,1586159628678,1586195316596,'{\"msg\":\"success\",\"invoke\":1.0603818990858723e-8,\"instance\":null,\"code\":200}','2020-04-06 18:35:14','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[1.0603818990858723e-8],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586198115935,82001,0,1586159628678,1586195315466,'{\"msg\":\"success\",\"invoke\":-2.8309339893853e-8,\"instance\":null,\"code\":200}','2020-04-06 18:35:15','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-2.8309339893853e-8],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586198117217,82001,0,1586159628678,1586195313624,'{\"msg\":\"success\",\"invoke\":-1.1139143384278949e-7,\"instance\":null,\"code\":200}','2020-04-06 18:35:17','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-1.1139143384278949e-7],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586198119207,82001,0,1586159628678,1586195312026,'{\"msg\":\"success\",\"invoke\":1.4836476069876835e-7,\"instance\":null,\"code\":200}','2020-04-06 18:35:19','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[1.4836476069876835e-7],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586198121638,82001,0,1586159628678,1586195310393,'{\"msg\":\"success\",\"invoke\":-1.612370571386401e-7,\"instance\":null,\"code\":200}','2020-04-06 18:35:21','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-1.612370571386401e-7],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586198124209,82001,0,1586159628678,1586195307580,'{\"msg\":\"success\",\"invoke\":7.310727637452829e-7,\"instance\":null,\"code\":200}','2020-04-06 18:35:24','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[7.310727637452829e-7],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586198126520,82001,0,1586159628678,1586195304834,'{\"msg\":\"success\",\"invoke\":0.000014363171782954194,\"instance\":null,\"code\":200}','2020-04-06 18:35:26','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.000014363171782954194],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586198181422,82001,0,1586159628678,1586166563381,'{\"msg\":\"success\",\"invoke\":0.03184713375796178,\"instance\":null,\"code\":200}','2020-04-06 18:36:21','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.03184713375796178],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586198185041,82001,0,1586159628678,1586167735912,'{\"msg\":\"success\",\"invoke\":1.11207027172047e-8,\"instance\":null,\"code\":200}','2020-04-06 18:36:25','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[1.11207027172047e-8],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586198186336,82001,0,1586159628678,1586167740094,'{\"msg\":\"success\",\"invoke\":-2.5482375637279177e-8,\"instance\":null,\"code\":200}','2020-04-06 18:36:26','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-2.5482375637279177e-8],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586198188001,82001,0,1586159628678,1586167731202,'{\"msg\":\"success\",\"invoke\":0,\"instance\":null,\"code\":200}','2020-04-06 18:36:28','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[0],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586198189283,82001,0,1586159628678,1586167729635,'{\"msg\":\"success\",\"invoke\":-0.0000022779243944436085,\"instance\":null,\"code\":200}','2020-04-06 18:36:29','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-0.0000022779243944436085],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586198190489,82001,0,1586159628678,1586167727522,'{\"msg\":\"success\",\"invoke\":0.000004747223062517262,\"instance\":null,\"code\":200}','2020-04-06 18:36:30','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.000004747223062517262],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586198223773,82001,0,1586159628678,1586198223771,'{\"msg\":\"success\",\"invoke\":0.5,\"instance\":null,\"code\":200}','2020-04-06 18:37:03','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.5],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586198225800,82001,0,1586159628678,1586198225797,'{\"msg\":\"success\",\"invoke\":0.03184713375796178,\"instance\":null,\"code\":200}','2020-04-06 18:37:05','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.03184713375796178],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586198227845,82001,0,1586159628678,1586198227842,'{\"msg\":\"success\",\"invoke\":-2,\"instance\":null,\"code\":200}','2020-04-06 18:37:07','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[-2],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586198263894,82001,0,1586159628678,1586198263885,'{\"msg\":\"success\",\"invoke\":0.5,\"instance\":null,\"code\":200}','2020-04-06 18:37:43','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.5],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586198265317,82001,0,1586159628678,1586198265314,'{\"msg\":\"success\",\"invoke\":0.03184713375796178,\"instance\":null,\"code\":200}','2020-04-06 18:37:45','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.03184713375796178],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586198266461,82001,0,1586159628678,1586198266452,'{\"msg\":\"success\",\"invoke\":-2,\"instance\":null,\"code\":200}','2020-04-06 18:37:46','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[-2],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586198337597,82001,0,1586159628678,1586198337594,'{\"msg\":\"success\",\"invoke\":-7.972681129748051e-8,\"instance\":null,\"code\":200}','2020-04-06 18:38:57',NULL,'{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-7.972681129748051e-8],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586198390607,82001,0,1586159628678,1586198390591,'{\"msg\":\"success\",\"invoke\":\"-Infinity\",\"instance\":null,\"code\":200}','2020-04-06 18:39:50',NULL,'{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":3,\"values\":[],\"lengthLevel\":1,\"lengths\":[9]}}],\"code\":200}'),(1586198428688,82001,0,1586198428686,0,'{\"msg\":\"success\",\"invoke\":\"-Infinity\",\"instance\":null,\"code\":200}','2020-04-06 18:40:28',NULL,'{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":3,\"values\":[],\"lengthLevel\":1,\"lengths\":[9]}}],\"code\":200}'),(1586198584541,82001,0,1586198428686,1586198584539,'{\"msg\":\"success\",\"invoke\":0,\"instance\":null,\"code\":200}','2020-04-06 18:43:04',NULL,'{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[0],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586198634407,82001,0,1586198428686,1586198634396,'{\"msg\":\"success\",\"invoke\":0,\"instance\":null,\"code\":200}','2020-04-06 18:43:54','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[0],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586198636484,82001,0,1586198428686,1586198636482,'{\"msg\":\"success\",\"invoke\":-0.00035523978685612787,\"instance\":null,\"code\":200}','2020-04-06 18:43:56','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-0.00035523978685612787],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586198640249,82001,0,1586198428686,1586198640235,'{\"msg\":\"success\",\"invoke\":0.027235213204951855,\"instance\":null,\"code\":200}','2020-04-06 18:44:00','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.027235213204951855],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586198641502,82001,0,1586198428686,1586198641498,'{\"msg\":\"success\",\"invoke\":0.0335345405767941,\"instance\":null,\"code\":200}','2020-04-06 18:44:01','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.0335345405767941],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586198643986,82001,0,1586198428686,1586198643983,'{\"msg\":\"success\",\"invoke\":-0.0005421817393190197,\"instance\":null,\"code\":200}','2020-04-06 18:44:03','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-0.0005421817393190197],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586198646225,82001,0,1586198428686,1586198646222,'{\"msg\":\"success\",\"invoke\":-0.03836930455635491,\"instance\":null,\"code\":200}','2020-04-06 18:44:06','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-0.03836930455635491],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586198648650,82001,0,1586198428686,1586198648647,'{\"msg\":\"success\",\"invoke\":-0.0013192612137203166,\"instance\":null,\"code\":200}','2020-04-06 18:44:08','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-0.0013192612137203166],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586198650758,82001,0,1586198428686,1586198650756,'{\"msg\":\"success\",\"invoke\":-0.0005957345406886692,\"instance\":null,\"code\":200}','2020-04-06 18:44:10','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-0.0005957345406886692],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586198653808,82001,0,1586198428686,1586198653805,'{\"msg\":\"success\",\"invoke\":-0.5,\"instance\":null,\"code\":200}','2020-04-06 18:44:13','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-0.5],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586198654779,82001,0,1586198428686,1586198654776,'{\"msg\":\"success\",\"invoke\":0.0005336748852598997,\"instance\":null,\"code\":200}','2020-04-06 18:44:14','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.0005336748852598997],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586198656596,82001,0,1586198428686,1586198656594,'{\"msg\":\"success\",\"invoke\":-0.00023255813953488373,\"instance\":null,\"code\":200}','2020-04-06 18:44:16','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-0.00023255813953488373],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586198659118,82001,0,1586198428686,1586198659115,'{\"msg\":\"success\",\"invoke\":-13.837837837837839,\"instance\":null,\"code\":200}','2020-04-06 18:44:19','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-13.837837837837839],\"lengthLevel\":1,\"lengths\":[3]}}],\"code\":200}'),(1586198661380,82001,0,1586198428686,1586198661373,'{\"msg\":\"success\",\"invoke\":-0.019863438857852266,\"instance\":null,\"code\":200}','2020-04-06 18:44:21','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-0.019863438857852266],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586198663349,82001,0,1586198428686,1586198663346,'{\"msg\":\"success\",\"invoke\":0.023614683189151275,\"instance\":null,\"code\":200}','2020-04-06 18:44:23','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.023614683189151275],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586198665005,82001,0,1586198428686,1586198665002,'{\"msg\":\"success\",\"invoke\":0.02656042496679947,\"instance\":null,\"code\":200}','2020-04-06 18:44:25','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.02656042496679947],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586198695621,82001,0,1586198428686,1586198695619,'{\"msg\":\"success\",\"invoke\":0.0006790710308298248,\"instance\":null,\"code\":200}','2020-04-06 18:44:55','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.0006790710308298248],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586198697508,82001,0,1586198428686,1586198697496,'{\"msg\":\"success\",\"invoke\":-0.0007632422530911311,\"instance\":null,\"code\":200}','2020-04-06 18:44:57','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-0.0007632422530911311],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586198765201,82001,0,1586198428686,1586198765199,'{\"msg\":\"success\",\"invoke\":-10.1,\"instance\":null,\"code\":200}','2020-04-06 18:46:05',NULL,'{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-10.1],\"lengthLevel\":1,\"lengths\":[3]}}],\"code\":200}'),(1586198789513,82001,0,1586198428686,1586198789510,'{\"msg\":\"success\",\"invoke\":0,\"instance\":null,\"code\":200}','2020-04-06 18:46:29','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[0],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586198791360,82001,0,1586198428686,1586198791354,'{\"msg\":\"success\",\"invoke\":0,\"instance\":null,\"code\":200}','2020-04-06 18:46:31','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[0],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586198792455,82001,0,1586198428686,1586198792453,'{\"msg\":\"success\",\"invoke\":-11.11111111111111,\"instance\":null,\"code\":200}','2020-04-06 18:46:32','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-11.11111111111111],\"lengthLevel\":1,\"lengths\":[3]}}],\"code\":200}'),(1586198794147,82001,0,1586198428686,1586198794144,'{\"msg\":\"success\",\"invoke\":-14.285714285714286,\"instance\":null,\"code\":200}','2020-04-06 18:46:34','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-14.285714285714286],\"lengthLevel\":1,\"lengths\":[3]}}],\"code\":200}'),(1586198799174,82001,0,1586198428686,1586198799169,'{\"msg\":\"success\",\"invoke\":-50,\"instance\":null,\"code\":200}','2020-04-06 18:46:39','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[-50],\"lengthLevel\":1,\"lengths\":[3]}}],\"code\":200}'),(1586198800059,82001,0,1586198428686,1586198800057,'{\"msg\":\"success\",\"invoke\":-2,\"instance\":null,\"code\":200}','2020-04-06 18:46:40','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[-2],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586198801394,82001,0,1586198428686,1586198801391,'{\"msg\":\"success\",\"invoke\":\"Infinity\",\"instance\":null,\"code\":200}','2020-04-06 18:46:41','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"Infinity\"],\"lengthLevel\":1,\"lengths\":[8]}}],\"code\":200}'),(1586198805253,82001,0,1586198428686,1586198805251,'{\"msg\":\"success\",\"invoke\":5,\"instance\":null,\"code\":200}','2020-04-06 18:46:45','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[5],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586198806710,82001,0,1586198428686,1586198806707,'{\"msg\":\"success\",\"invoke\":3.3333333333333335,\"instance\":null,\"code\":200}','2020-04-06 18:46:46','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[3.3333333333333335],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586198807770,82001,0,1586198428686,1586198807768,'{\"msg\":\"success\",\"invoke\":256,\"instance\":null,\"code\":200}','2020-04-06 18:46:47','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[256],\"lengthLevel\":1,\"lengths\":[3]}}],\"code\":200}'),(1586198809617,82001,0,1586198428686,1586198809615,'{\"msg\":\"success\",\"invoke\":0.4,\"instance\":null,\"code\":200}','2020-04-06 18:46:49','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.4],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586198811745,82001,0,1586198428686,1586198811742,'{\"msg\":\"success\",\"invoke\":113.77777777777777,\"instance\":null,\"code\":200}','2020-04-06 18:46:51','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[113.77777777777777],\"lengthLevel\":1,\"lengths\":[3]}}],\"code\":200}'),(1586198813218,82001,0,1586198428686,1586198813215,'{\"msg\":\"success\",\"invoke\":9.9,\"instance\":null,\"code\":200}','2020-04-06 18:46:53','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[9.9],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586198815080,82001,0,1586198428686,1586198815061,'{\"msg\":\"success\",\"invoke\":0.09090909090909091,\"instance\":null,\"code\":200}','2020-04-06 18:46:55','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.09090909090909091],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586198816951,82001,0,1586198428686,1586198816949,'{\"msg\":\"success\",\"invoke\":8.416666666666666,\"instance\":null,\"code\":200}','2020-04-06 18:46:56','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[8.416666666666666],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586198820586,82001,0,1586198428686,1586198820584,'{\"msg\":\"success\",\"invoke\":0.5263157894736842,\"instance\":null,\"code\":200}','2020-04-06 18:47:00','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.5263157894736842],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586198822204,82001,0,1586198428686,1586198822202,'{\"msg\":\"success\",\"invoke\":0.22727272727272727,\"instance\":null,\"code\":200}','2020-04-06 18:47:02','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.22727272727272727],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586198822464,82001,0,1586198428686,1586198822202,'{\"msg\":null,\"invoke\":null}','2020-04-06 18:47:02','{\"code\":1,\"msg\":\"是新增的\",\"path\":\"instance\",\"value\":null}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":false,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":false,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.22727272727272727],\"lengthLevel\":1,\"lengths\":[1]}}]}'),(1586198831496,82001,0,1586198428686,1586198831493,'{\"msg\":\"success\",\"invoke\":3.7037037037037037,\"instance\":null,\"code\":200}','2020-04-06 18:47:11','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[3.7037037037037037],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586198833480,82001,0,1586198428686,1586198833478,'{\"msg\":\"success\",\"invoke\":0.38461538461538464,\"instance\":null,\"code\":200}','2020-04-06 18:47:13','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.38461538461538464],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586198834811,82001,0,1586198428686,1586198834808,'{\"msg\":\"success\",\"invoke\":0.08,\"instance\":null,\"code\":200}','2020-04-06 18:47:14','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.08],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586198836673,82001,0,1586198428686,1586198836671,'{\"msg\":\"success\",\"invoke\":-5.333333333333333,\"instance\":null,\"code\":200}','2020-04-06 18:47:16','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-5.333333333333333],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586198840325,82001,0,1586198428686,1586198840322,'{\"msg\":\"success\",\"invoke\":-0.047619047619047616,\"instance\":null,\"code\":200}','2020-04-06 18:47:20','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-0.047619047619047616],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586198842203,82001,0,1586198428686,1586198842201,'{\"msg\":\"success\",\"invoke\":-0.16666666666666666,\"instance\":null,\"code\":200}','2020-04-06 18:47:22','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-0.16666666666666666],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586198845132,82001,0,1586198428686,1586198845127,'{\"msg\":\"success\",\"invoke\":-3.5555555555555554,\"instance\":null,\"code\":200}','2020-04-06 18:47:25','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-3.5555555555555554],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586198846344,82001,0,1586198428686,1586198846342,'{\"msg\":\"success\",\"invoke\":0.14285714285714285,\"instance\":null,\"code\":200}','2020-04-06 18:47:26','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.14285714285714285],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586198847344,82001,0,1586198428686,1586198847341,'{\"msg\":\"success\",\"invoke\":-0.14705882352941177,\"instance\":null,\"code\":200}','2020-04-06 18:47:27','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-0.14705882352941177],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586198848711,82001,0,1586198428686,1586198848709,'{\"msg\":\"success\",\"invoke\":0.2631578947368421,\"instance\":null,\"code\":200}','2020-04-06 18:47:28','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.2631578947368421],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586198849786,82001,0,1586198428686,1586198849784,'{\"msg\":\"success\",\"invoke\":0.05405405405405406,\"instance\":null,\"code\":200}','2020-04-06 18:47:29','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.05405405405405406],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586198851005,82001,0,1586198428686,1586198850993,'{\"msg\":\"success\",\"invoke\":0,\"instance\":null,\"code\":200}','2020-04-06 18:47:31','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[0],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586198852780,82001,0,1586198428686,1586198852777,'{\"msg\":\"success\",\"invoke\":-3.878787878787879,\"instance\":null,\"code\":200}','2020-04-06 18:47:32','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-3.878787878787879],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586198853988,82001,0,1586198428686,1586198853986,'{\"msg\":\"success\",\"invoke\":0,\"instance\":null,\"code\":200}','2020-04-06 18:47:33','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[0],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586198856286,82001,0,1586198428686,1586198856277,'{\"msg\":\"success\",\"invoke\":-16.666666666666668,\"instance\":null,\"code\":200}','2020-04-06 18:47:36','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-16.666666666666668],\"lengthLevel\":1,\"lengths\":[3]}}],\"code\":200}'),(1586198858005,82001,0,1586198428686,1586198858003,'{\"msg\":\"success\",\"invoke\":1.6666666666666667,\"instance\":null,\"code\":200}','2020-04-06 18:47:38','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[1.6666666666666667],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586198859538,82001,0,1586198428686,1586198859535,'{\"msg\":\"success\",\"invoke\":1,\"instance\":null,\"code\":200}','2020-04-06 18:47:39','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[1],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586198860677,82001,0,1586198428686,1586198860675,'{\"msg\":\"success\",\"invoke\":-0.25,\"instance\":null,\"code\":200}','2020-04-06 18:47:40','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-0.25],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586198864524,82001,0,1586198428686,1586198864522,'{\"msg\":\"success\",\"invoke\":5.882352941176471,\"instance\":null,\"code\":200}','2020-04-06 18:47:44','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[5.882352941176471],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586199397996,82001,0,1586159628678,1586195325652,'{\"msg\":\"success\",\"invoke\":-0.000004236981105944091,\"instance\":null,\"code\":200}','2020-04-06 18:56:37','{\"code\":1,\"msg\":\"是新增的\",\"path\":\"instance\",\"value\":null}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-0.000004236981105944091],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586199426865,82001,0,1586159628678,1586199426860,'{\"msg\":\"success\",\"invoke\":2.725035733052938e-8,\"instance\":null,\"code\":200}','2020-04-06 18:57:06','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[2.725035733052938e-8],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586199430137,82001,0,1586159628678,1586199430135,'{\"msg\":\"success\",\"invoke\":-4.6038906835622086e-8,\"instance\":null,\"code\":200}','2020-04-06 18:57:10','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-4.6038906835622086e-8],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586199433524,82001,0,1586159628678,1586199433521,'{\"msg\":\"success\",\"invoke\":1.0611850656878861e-7,\"instance\":null,\"code\":200}','2020-04-06 18:57:13','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[1.0611850656878861e-7],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586199436528,82001,0,1586159628678,1586199436521,'{\"msg\":\"success\",\"invoke\":-0.0000019055264121666432,\"instance\":null,\"code\":200}','2020-04-06 18:57:16','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-0.0000019055264121666432],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586199438046,82001,0,1586159628678,1586199438044,'{\"msg\":\"success\",\"invoke\":0.0000011366180838210372,\"instance\":null,\"code\":200}','2020-04-06 18:57:18','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.0000011366180838210372],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586231119898,82001,0,1586159628678,1586231119895,'{\"msg\":\"success\",\"invoke\":0.5,\"instance\":null,\"code\":200}','2020-04-07 03:45:19',NULL,'{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.5],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586231169238,82001,0,1586159628678,1586231169236,'{\"msg\":\"success\",\"invoke\":0.5,\"instance\":null,\"code\":200}','2020-04-07 03:46:09','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.5],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586231176321,82001,0,1586159628678,1586231176318,'{\"msg\":\"success\",\"invoke\":0.03184713375796178,\"instance\":null,\"code\":200}','2020-04-07 03:46:16','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.03184713375796178],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586231207100,82001,0,1586159628678,1586231207098,'{\"msg\":\"success\",\"invoke\":-2,\"instance\":null,\"code\":200}','2020-04-07 03:46:47','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[-2],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586231241638,82001,0,1586159628678,1586231241636,'{\"msg\":\"success\",\"invoke\":0.5,\"instance\":null,\"code\":200}','2020-04-07 03:47:21','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.5],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586231259232,82001,0,1586159628678,1586231259230,'{\"msg\":\"success\",\"invoke\":-2,\"instance\":null,\"code\":200}','2020-04-07 03:47:39','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[-2],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586231404521,82001,0,1586159628678,1586231404519,'{\"msg\":\"success\",\"invoke\":-0.1,\"instance\":null,\"code\":200}','2020-04-07 03:50:04',NULL,'{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-0.1],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586231453086,82001,0,1586159628678,1586231453083,'{\"msg\":\"success\",\"invoke\":-0.1,\"instance\":null,\"code\":200}','2020-04-07 03:50:53','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-0.1],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586231455470,82001,0,1586159628678,1586231455467,'{\"msg\":\"success\",\"invoke\":-0.011111111111111112,\"instance\":null,\"code\":200}','2020-04-07 03:50:55','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-0.011111111111111112],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586231458715,82001,0,1586159628678,1586231458713,'{\"msg\":\"success\",\"invoke\":1.25,\"instance\":null,\"code\":200}','2020-04-07 03:50:58','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[1.25],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586231469186,82001,0,1586159628678,1586231469178,'{\"msg\":\"success\",\"invoke\":-0.2,\"instance\":null,\"code\":200}','2020-04-07 03:51:09','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-0.2],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586231499491,82001,0,1586159628678,1586231499489,'{\"msg\":\"success\",\"invoke\":0.1,\"instance\":null,\"code\":200}','2020-04-07 03:51:39','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.1],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586231503364,82001,0,1586159628678,1586231503362,'{\"msg\":\"success\",\"invoke\":-1.4285714285714286,\"instance\":null,\"code\":200}','2020-04-07 03:51:43','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-1.4285714285714286],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586232142040,82001,0,1586159628678,1586232142038,'{\"msg\":\"success\",\"invoke\":4.995,\"instance\":null,\"code\":200}','2020-04-07 04:02:22','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[4.995],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586232142041,82001,0,1586159628678,1586232142033,'{\"msg\":\"success\",\"invoke\":4.995,\"instance\":null,\"code\":200}','2020-04-07 04:02:22','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[4.995],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586232160117,82001,0,1586159628678,1586232160115,'{\"msg\":\"success\",\"invoke\":-1,\"instance\":null,\"code\":200}','2020-04-07 04:02:40','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[-1],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586232177127,82001,0,1586159628678,1586197366258,'{\"msg\":\"success\",\"invoke\":0.02,\"instance\":null,\"code\":200}','2020-04-07 04:02:57','{\"code\":1,\"msg\":\"是新增的\",\"path\":\"instance\",\"value\":null}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.02],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586232241692,82001,0,1586159628678,1586231469178,'{\"msg\":\"success\",\"invoke\":0,\"instance\":null,\"code\":200}','2020-04-07 04:04:01','{\"code\":2,\"msg\":\"值超出范围\",\"path\":\"invoke\",\"value\":0}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0,-0.2],\"lengthLevel\":1,\"lengths\":[2,1]}}],\"code\":200}'),(1586232244856,82001,0,1586159628678,1586231453083,'{\"msg\":\"success\",\"invoke\":0,\"instance\":null,\"code\":200}','2020-04-07 04:04:04','{\"code\":2,\"msg\":\"值超出范围\",\"path\":\"invoke\",\"value\":0}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0,-0.1],\"lengthLevel\":1,\"lengths\":[2,1]}}],\"code\":200}'),(1586232256537,82001,0,1586159628678,1586198390591,'{\"msg\":\"字符 divide 对应的方法传参类型错误!\\n请检查 key:value 中value的类型是否满足已定义的函数的要求!\\n/ by zero\",\"cause\":null,\"invoke\":null,\"code\":500,\"throw\":\"java.lang.IllegalArgumentException\"}','2020-04-07 04:04:16','{\"code\":4,\"msg\":\"状态码 code 改变!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":3,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[70,7]},\"invoke\":{\"notnull\":false,\"type\":\"string\",\"valueLevel\":3,\"values\":[],\"lengthLevel\":1,\"lengths\":[9]}}],\"code\":500,\"throw\":\"java.lang.IllegalArgumentException\"}'),(1586232258303,82001,0,1586159628678,1586167740094,'{\"msg\":\"success\",\"invoke\":0,\"instance\":null,\"code\":200}','2020-04-07 04:04:18','{\"code\":2,\"msg\":\"值超出范围\",\"path\":\"invoke\",\"value\":0}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0,-2.5482375637279177e-8],\"lengthLevel\":1,\"lengths\":[2,1]}}],\"code\":200}'),(1586232303576,82001,0,1586159628678,1586197692128,'{\"msg\":\"success\",\"invoke\":-2,\"instance\":null,\"code\":200}','2020-04-07 04:05:03','{\"code\":1,\"msg\":\"是新增的\",\"path\":\"instance\",\"value\":null}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[-2],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586232308017,82001,0,1586159628678,1586232308014,'{\"msg\":\"字符 divide 对应的方法不在 apijson/demo/server/MathUtil 内!\\n请检查函数名和参数数量是否与已定义的函数一致!\\napijson.demo.server.MathUtil.divide(double, long)\",\"cause\":null,\"code\":500,\"throw\":\"java.lang.IllegalArgumentException\"}','2020-04-07 04:05:08','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":3,\"values\":[],\"lengthLevel\":1,\"lengths\":[123]}}],\"code\":500,\"throw\":\"java.lang.IllegalArgumentException\"}'),(1586232310492,82001,0,1586159628678,1586232310489,'{\"msg\":\"success\",\"invoke\":-99.89999999999999,\"instance\":null,\"code\":200}','2020-04-07 04:05:10','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-99.89999999999999],\"lengthLevel\":1,\"lengths\":[3]}}],\"code\":200}'),(1586232404747,82001,0,1586159628678,1586231496820,'{\"msg\":\"success\",\"invoke\":\"Infinity\",\"instance\":null,\"code\":200}','2020-04-07 04:06:44','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"Infinity\"],\"lengthLevel\":1,\"lengths\":[8]}}],\"code\":200}'),(1586232483509,82001,0,1586159628678,1586232483507,'{\"msg\":\"success\",\"invoke\":-0.1,\"instance\":null,\"code\":200}','2020-04-07 04:08:03','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-0.1],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586232490708,82001,0,1586159628678,1586232490705,'{\"msg\":\"success\",\"invoke\":-0.011111111111111112,\"instance\":null,\"code\":200}','2020-04-07 04:08:10','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-0.011111111111111112],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586232493186,82001,0,1586159628678,1586232493184,'{\"msg\":\"success\",\"invoke\":1.25,\"instance\":null,\"code\":200}','2020-04-07 04:08:13','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[1.25],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586232520642,82001,0,1586159628678,1586232520640,'{\"msg\":\"success\",\"invoke\":0,\"instance\":null,\"code\":200}','2020-04-07 04:08:40',NULL,'{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[0],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586232582695,82001,0,1586159628678,1586232582693,'{\"msg\":\"success\",\"invoke\":-0.025,\"instance\":null,\"code\":200}','2020-04-07 04:09:42','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-0.025],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586232587352,82001,0,1586159628678,1586232587350,'{\"msg\":\"success\",\"invoke\":3.3333333333333335,\"instance\":null,\"code\":200}','2020-04-07 04:09:47','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[3.3333333333333335],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586232591782,82001,0,1586159628678,1586232591779,'{\"msg\":\"字符 divide 对应的方法传参类型错误!\\n请检查 key:value 中value的类型是否满足已定义的函数的要求!\\n/ by zero\",\"cause\":null,\"code\":500,\"throw\":\"java.lang.IllegalArgumentException\"}','2020-04-07 04:09:51','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":3,\"values\":[],\"lengthLevel\":1,\"lengths\":[70]}}],\"code\":500,\"throw\":\"java.lang.IllegalArgumentException\"}'),(1586232595142,82001,0,1586159628678,1586232595135,'{\"msg\":\"success\",\"invoke\":-1.4285714285714286,\"instance\":null,\"code\":200}','2020-04-07 04:09:55','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-1.4285714285714286],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586232597351,82001,0,1586159628678,1586232597349,'{\"msg\":\"success\",\"invoke\":0,\"instance\":null,\"code\":200}','2020-04-07 04:09:57','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[0],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586232599747,82001,0,1586159628678,1586232599745,'{\"msg\":\"success\",\"invoke\":0,\"instance\":null,\"code\":200}','2020-04-07 04:09:59','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[0],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586232603245,82001,0,1586159628678,1586232603243,'{\"msg\":\"success\",\"invoke\":0,\"instance\":null,\"code\":200}','2020-04-07 04:10:03','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[0],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586232606947,82001,0,1586159628678,1586232606944,'{\"msg\":\"success\",\"invoke\":0.00625,\"instance\":null,\"code\":200}','2020-04-07 04:10:06','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.00625],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586232609809,82001,0,1586159628678,1586232609806,'{\"msg\":\"success\",\"invoke\":-0.5882352941176471,\"instance\":null,\"code\":200}','2020-04-07 04:10:09','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-0.5882352941176471],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586232712764,82001,0,1586159628678,1586232577840,'{\"msg\":\"success\",\"invoke\":-0.2,\"instance\":null,\"code\":200}','2020-04-07 04:11:52','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-0.2],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586232799710,82001,0,1586159628678,1586198337594,'{\"msg\":\"success\",\"invoke\":-7.972681129748051e-8,\"instance\":null,\"code\":200}','2020-04-07 04:13:19','{\"code\":1,\"msg\":\"是新增的\",\"path\":\"instance\",\"value\":null}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-7.972681129748051e-8],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586233289489,82001,0,1586160409878,1586233289465,'{\"msg\":\"success\",\"invoke\":\"NaN\",\"instance\":null,\"code\":200}','2020-04-07 04:21:29',NULL,'{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"NaN\"],\"lengthLevel\":1,\"lengths\":[3]}}],\"code\":200}'),(1586242902339,82001,0,1586198428686,1586242902337,'{\"msg\":\"success\",\"invoke\":-0.5,\"instance\":null,\"code\":200}','2020-04-07 07:01:42','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586242943555,82001,0,1586198428686,1586198803774,'{\"msg\":\"success\",\"invoke\":-1,\"instance\":null,\"code\":200}','2020-04-07 07:02:23','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586242972092,82001,0,1586198428686,1586242972089,'{\"msg\":\"success\",\"invoke\":-14.428571428571429,\"instance\":null,\"code\":200}','2020-04-07 07:02:52','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586243003487,82001,0,1586198428686,1586243003485,'{\"msg\":\"success\",\"invoke\":0,\"instance\":null,\"code\":200}','2020-04-07 07:03:23','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586243007204,82001,0,1586198428686,1586243007202,'{\"msg\":\"success\",\"invoke\":-0.000432152117545376,\"instance\":null,\"code\":200}','2020-04-07 07:03:27','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586243011756,82001,0,1586198428686,1586243011737,'{\"msg\":\"success\",\"invoke\":-0.01610062893081761,\"instance\":null,\"code\":200}','2020-04-07 07:03:31','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586243014213,82001,0,1586198428686,1586243014211,'{\"msg\":\"success\",\"invoke\":-0.006993006993006993,\"instance\":null,\"code\":200}','2020-04-07 07:03:34','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586243015822,82001,0,1586198428686,1586243015820,'{\"msg\":\"success\",\"invoke\":-0.00023223409196470042,\"instance\":null,\"code\":200}','2020-04-07 07:03:35','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586243017341,82001,0,1586198428686,1586243017339,'{\"msg\":\"success\",\"invoke\":0.0003151591553734636,\"instance\":null,\"code\":200}','2020-04-07 07:03:37','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586243019553,82001,0,1586198428686,1586243019546,'{\"msg\":\"success\",\"invoke\":0,\"instance\":null,\"code\":200}','2020-04-07 07:03:39','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586243020898,82001,0,1586198428686,1586243020896,'{\"msg\":\"success\",\"invoke\":0.00021791239921551536,\"instance\":null,\"code\":200}','2020-04-07 07:03:40','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586243022580,82001,0,1586198428686,1586243022578,'{\"msg\":\"success\",\"invoke\":-0.00031746031746031746,\"instance\":null,\"code\":200}','2020-04-07 07:03:42','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586243025084,82001,0,1586198428686,1586243025082,'{\"msg\":\"success\",\"invoke\":-0.002197802197802198,\"instance\":null,\"code\":200}','2020-04-07 07:03:45','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586243027064,82001,0,1586198428686,1586243027062,'{\"msg\":\"success\",\"invoke\":-0.25098039215686274,\"instance\":null,\"code\":200}','2020-04-07 07:03:47','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586243028083,82001,0,1586198428686,1586243028081,'{\"msg\":\"success\",\"invoke\":0.010894186171933988,\"instance\":null,\"code\":200}','2020-04-07 07:03:48','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586243036553,82001,0,1586198428686,1586243036551,'{\"msg\":\"success\",\"invoke\":0.00030849915162733303,\"instance\":null,\"code\":200}','2020-04-07 07:03:56','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586243039980,82001,0,1586198428686,1586243039978,'{\"msg\":\"success\",\"invoke\":0,\"instance\":null,\"code\":200}','2020-04-07 07:03:59','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586243042019,82001,0,1586198428686,1586243042016,'{\"msg\":\"success\",\"invoke\":0.001040582726326743,\"instance\":null,\"code\":200}','2020-04-07 07:04:02','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586243043750,82001,0,1586198428686,1586243043748,'{\"msg\":\"success\",\"invoke\":-0.0001939487975174554,\"instance\":null,\"code\":200}','2020-04-07 07:04:03','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586243045495,82001,0,1586198428686,1586243045491,'{\"msg\":\"success\",\"invoke\":0.001530221882172915,\"instance\":null,\"code\":200}','2020-04-07 07:04:05','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586243048435,82001,0,1586198428686,1586243048433,'{\"msg\":\"success\",\"invoke\":0.019991922455573505,\"instance\":null,\"code\":200}','2020-04-07 07:04:08','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586243049748,82001,0,1586198428686,1586243049746,'{\"msg\":\"success\",\"invoke\":0.09433962264150944,\"instance\":null,\"code\":200}','2020-04-07 07:04:09','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586243051682,82001,0,1586198428686,1586243051679,'{\"msg\":\"success\",\"invoke\":-0.004262574595055414,\"instance\":null,\"code\":200}','2020-04-07 07:04:11','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586243053576,82001,0,1586198428686,1586243053574,'{\"msg\":\"success\",\"invoke\":-0.00020508613617719443,\"instance\":null,\"code\":200}','2020-04-07 07:04:13','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586243055318,82001,0,1586198428686,1586243055316,'{\"msg\":\"success\",\"invoke\":-0.0006662225183211193,\"instance\":null,\"code\":200}','2020-04-07 07:04:15','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586243058068,82001,0,1586198428686,1586243058066,'{\"msg\":\"success\",\"invoke\":0.00025131942699170643,\"instance\":null,\"code\":200}','2020-04-07 07:04:18','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586243059015,82001,0,1586198428686,1586243059013,'{\"msg\":\"success\",\"invoke\":0,\"instance\":null,\"code\":200}','2020-04-07 07:04:19','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586243222469,82001,0,1586159628678,1586243222467,'{\"msg\":\"success\",\"invoke\":-0.8333333333333334,\"instance\":null,\"code\":200}','2020-04-07 07:07:02','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586243226511,82001,0,1586159628678,1586243226505,'{\"msg\":\"success\",\"invoke\":-0.5882352941176471,\"instance\":null,\"code\":200}','2020-04-07 07:07:06','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586243233547,82001,0,1586159628678,1586243233545,'{\"msg\":\"success\",\"invoke\":0.06666666666666667,\"instance\":null,\"code\":200}','2020-04-07 07:07:13','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586243235841,82001,0,1586159628678,1586243235828,'{\"msg\":\"success\",\"invoke\":0.00625,\"instance\":null,\"code\":200}','2020-04-07 07:07:15','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586243240124,82001,0,1586159628678,1586243240122,'{\"msg\":\"success\",\"invoke\":0.009090909090909092,\"instance\":null,\"code\":200}','2020-04-07 07:07:20','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586243245532,82001,0,1586159628678,1586243245530,'{\"msg\":\"success\",\"invoke\":0.1,\"instance\":null,\"code\":200}','2020-04-07 07:07:25','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586243248978,82001,0,1586159628678,1586243248976,'{\"msg\":\"success\",\"invoke\":0.016666666666666666,\"instance\":null,\"code\":200}','2020-04-07 07:07:28','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586243250415,82001,0,1586159628678,1586243250413,'{\"msg\":\"success\",\"invoke\":-1.4285714285714286,\"instance\":null,\"code\":200}','2020-04-07 07:07:30','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586243253944,82001,0,1586159628678,1586243253942,'{\"msg\":\"success\",\"invoke\":\"Infinity\",\"instance\":null,\"code\":200}','2020-04-07 07:07:33','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586243278331,82001,0,1586159628678,1586243278329,'{\"msg\":\"success\",\"invoke\":-2,\"instance\":null,\"code\":200}','2020-04-07 07:07:58','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586248112437,82001,0,1586159628678,1586248112435,'{\"msg\":\"success\",\"invoke\":0.2,\"instance\":null,\"code\":200}','2020-04-07 08:28:32',NULL,NULL),(1586248442643,82001,0,1586159628678,1586248442638,'{\"msg\":\"success\",\"invoke\":-0.1,\"instance\":null,\"code\":200}','2020-04-07 08:34:02','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586248642430,82001,0,1586159628678,1586248642428,'{\"msg\":\"字符 divide 对应的方法不在 apijson/demo/server/MathUtil 内!\\n请检查函数名和参数数量是否与已定义的函数一致!\\napijson.demo.server.MathUtil.divide(java.lang.Float, java.lang.Float)\",\"cause\":null,\"code\":500,\"throw\":\"java.lang.IllegalArgumentException\"}','2020-04-07 08:37:22','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586252511977,82001,0,1586252511975,0,'{\"msg\":\"success\",\"invoke\":44,\"instance\":{},\"code\":200}','2020-04-07 09:41:51',NULL,NULL),(1586266899680,82001,0,1586159628678,1586266899677,'{\"msg\":\"success\",\"invoke\":-0.011111111111111112,\"instance\":null,\"code\":200}','2020-04-07 13:41:39','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586266901595,82001,0,1586159628678,1586266901593,'{\"msg\":\"success\",\"invoke\":1.25,\"instance\":null,\"code\":200}','2020-04-07 13:41:41','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}',NULL),(1586273017332,82001,0,1586160410926,0,'{\"msg\":null,\"cause\":null,\"code\":500,\"throw\":\"java.lang.IllegalArgumentException\"}','2020-04-07 15:23:37','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{}],\"code\":500,\"throw\":\"java.lang.IllegalArgumentException\"}'),(1586273017858,82001,0,1586160410941,0,'{\"msg\":null,\"cause\":null,\"code\":500,\"throw\":\"java.lang.IllegalArgumentException\"}','2020-04-07 15:23:37','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{}],\"code\":500,\"throw\":\"java.lang.IllegalArgumentException\"}'),(1586273018639,82001,0,1586160410255,0,'{\"msg\":\"字符 divide 对应的方法传参类型错误!\\n请检查 key:value 中value的类型是否满足已定义的函数的要求!\\nnull\",\"cause\":null,\"code\":500,\"throw\":\"java.lang.IllegalArgumentException\"}','2020-04-07 15:23:38','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":3,\"values\":[],\"lengthLevel\":1,\"lengths\":[65]}}],\"code\":500,\"throw\":\"java.lang.IllegalArgumentException\"}'),(1586273019057,82001,0,1586160410808,0,'{\"msg\":null,\"cause\":null,\"code\":500,\"throw\":\"java.lang.IllegalArgumentException\"}','2020-04-07 15:23:39','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{}],\"code\":500,\"throw\":\"java.lang.IllegalArgumentException\"}'),(1586273019623,82001,0,1586160410822,0,'{\"msg\":null,\"cause\":null,\"code\":500,\"throw\":\"java.lang.IllegalArgumentException\"}','2020-04-07 15:23:39','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{}],\"code\":500,\"throw\":\"java.lang.IllegalArgumentException\"}'),(1586273020038,82001,0,1586160410319,0,'{\"msg\":\"字符 multiply 对应的方法传参类型错误!\\n请检查 key:value 中value的类型是否满足已定义的函数的要求!\\nnull\",\"cause\":null,\"code\":500,\"throw\":\"java.lang.IllegalArgumentException\"}','2020-04-07 15:23:40','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":3,\"values\":[],\"lengthLevel\":1,\"lengths\":[67]}}],\"code\":500,\"throw\":\"java.lang.IllegalArgumentException\"}'),(1586273020538,82001,0,1586160410853,0,'{\"msg\":\"字符 plus 对应的方法传参类型错误!\\n请检查 key:value 中value的类型是否满足已定义的函数的要求!\\nnull\",\"cause\":null,\"code\":500,\"throw\":\"java.lang.IllegalArgumentException\"}','2020-04-07 15:23:40','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":3,\"values\":[],\"lengthLevel\":1,\"lengths\":[63]}}],\"code\":500,\"throw\":\"java.lang.IllegalArgumentException\"}'),(1586273021369,82001,0,1586160410343,0,'{\"msg\":null,\"cause\":null,\"code\":500,\"throw\":\"java.lang.IllegalArgumentException\"}','2020-04-07 15:23:41','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{}],\"code\":500,\"throw\":\"java.lang.IllegalArgumentException\"}'),(1586273021725,82001,0,1586160410358,0,'{\"msg\":null,\"cause\":null,\"code\":500,\"throw\":\"java.lang.IllegalArgumentException\"}','2020-04-07 15:23:41','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{}],\"code\":500,\"throw\":\"java.lang.IllegalArgumentException\"}'),(1586273022333,82001,0,1586160409871,0,'{\"msg\":\"字符 sqrt 对应的方法传参类型错误!\\n请检查 key:value 中value的类型是否满足已定义的函数的要求!\\nnull\",\"cause\":null,\"code\":500,\"throw\":\"java.lang.IllegalArgumentException\"}','2020-04-07 15:23:42','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":3,\"values\":[],\"lengthLevel\":1,\"lengths\":[63]}}],\"code\":500,\"throw\":\"java.lang.IllegalArgumentException\"}'),(1586273024305,82001,0,1586160409878,0,'{\"msg\":null,\"cause\":null,\"code\":500,\"throw\":\"java.lang.IllegalArgumentException\"}','2020-04-07 15:23:44','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{}],\"code\":500,\"throw\":\"java.lang.IllegalArgumentException\"}'),(1586273025074,82001,0,1586160409875,0,'{\"msg\":null,\"cause\":null,\"code\":500,\"throw\":\"java.lang.IllegalArgumentException\"}','2020-04-07 15:23:45','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{}],\"code\":500,\"throw\":\"java.lang.IllegalArgumentException\"}'),(1586273026028,82001,0,1586160409881,0,'{\"msg\":null,\"cause\":null,\"code\":500,\"throw\":\"java.lang.IllegalArgumentException\"}','2020-04-07 15:23:46','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{}],\"code\":500,\"throw\":\"java.lang.IllegalArgumentException\"}'),(1586273026860,82001,0,1586160409905,0,'{\"msg\":null,\"cause\":null,\"code\":500,\"throw\":\"java.lang.IllegalArgumentException\"}','2020-04-07 15:23:46','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{}],\"code\":500,\"throw\":\"java.lang.IllegalArgumentException\"}'),(1586273027782,82001,0,1586160409914,0,'{\"msg\":\"字符 pow 对应的方法传参类型错误!\\n请检查 key:value 中value的类型是否满足已定义的函数的要求!\\nnull\",\"cause\":null,\"code\":500,\"throw\":\"java.lang.IllegalArgumentException\"}','2020-04-07 15:23:47','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":3,\"values\":[],\"lengthLevel\":1,\"lengths\":[62]}}],\"code\":500,\"throw\":\"java.lang.IllegalArgumentException\"}'),(1586279537154,82001,0,1586159628678,1586279537151,'{\"msg\":\"success\",\"invoke\":0.6,\"instance\":null,\"code\":200}','2020-04-07 17:12:17',NULL,'{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.6],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586279583487,82001,0,1586159628678,1586248642428,'{\"msg\":\"字符 divide 对应的方法不在 apijson/demo/server/MathUtil 内!\\n请检查函数名和参数数量是否与已定义的函数一致!\\napijson.demo.server.MathUtil.divide(java.lang.Float, java.lang.Float)\",\"cause\":null,\"code\":500,\"throw\":\"java.lang.IllegalArgumentException\"}','2020-04-07 17:13:03','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":3,\"values\":[],\"lengthLevel\":1,\"lengths\":[143]}}],\"code\":500,\"throw\":\"java.lang.IllegalArgumentException\"}'),(1586279667157,82001,0,1586159628678,1586279667155,'{\"msg\":\"success\",\"invoke\":12.25,\"instance\":null,\"code\":200}','2020-04-07 17:14:27',NULL,'{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[12.25],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586279787630,82001,0,1586159628678,1586279787628,'{\"msg\":\"success\",\"invoke\":10,\"instance\":null,\"code\":200}','2020-04-07 17:16:27','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[10],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586279791016,82001,0,1586159628678,1586279791014,'{\"msg\":\"success\",\"invoke\":11,\"instance\":null,\"code\":200}','2020-04-07 17:16:31','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[11],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586279803017,82001,0,1586159628678,1586279803016,'{\"msg\":\"success\",\"invoke\":-0.1111111111111111,\"instance\":null,\"code\":200}','2020-04-07 17:16:43','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-0.1111111111111111],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586279805061,82001,0,1586159628678,1586279805059,'{\"msg\":\"success\",\"invoke\":-0.034482758620689655,\"instance\":null,\"code\":200}','2020-04-07 17:16:45','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-0.034482758620689655],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586279812487,82001,0,1586159628678,1586279812486,'{\"msg\":\"success\",\"invoke\":-0.022727272727272728,\"instance\":null,\"code\":200}','2020-04-07 17:16:52','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-0.022727272727272728],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586279813857,82001,0,1586159628678,1586279813854,'{\"msg\":\"success\",\"invoke\":-0.011235955056179775,\"instance\":null,\"code\":200}','2020-04-07 17:16:53','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-0.011235955056179775],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586279816502,82001,0,1586159628678,1586279816501,'{\"msg\":\"success\",\"invoke\":-0.125,\"instance\":null,\"code\":200}','2020-04-07 17:16:56','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-0.125],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586279823265,82001,0,1586159628678,1586279823264,'{\"msg\":\"success\",\"invoke\":91,\"instance\":null,\"code\":200}','2020-04-07 17:17:03','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[91],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586279829766,82001,0,1586159628678,1586279829764,'{\"msg\":\"success\",\"invoke\":\"-Infinity\",\"instance\":null,\"code\":200}','2020-04-07 17:17:09','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":3,\"values\":[],\"lengthLevel\":1,\"lengths\":[9]}}],\"code\":200}'),(1586279832173,82001,0,1586159628678,1586279832171,'{\"msg\":\"success\",\"invoke\":-89,\"instance\":null,\"code\":200}','2020-04-07 17:17:12','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[-89],\"lengthLevel\":1,\"lengths\":[3]}}],\"code\":200}'),(1586279833193,82001,0,1586159628678,1586279833191,'{\"msg\":\"success\",\"invoke\":-44,\"instance\":null,\"code\":200}','2020-04-07 17:17:13','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[-44],\"lengthLevel\":1,\"lengths\":[3]}}],\"code\":200}'),(1586279836093,82001,0,1586159628678,1586279836091,'{\"msg\":\"success\",\"invoke\":46,\"instance\":null,\"code\":200}','2020-04-07 17:17:16','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[46],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586279840143,82001,0,1586159628678,1586279840142,'{\"msg\":\"success\",\"invoke\":-1.6470588235294117,\"instance\":null,\"code\":200}','2020-04-07 17:17:20','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-1.6470588235294117],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586279942257,82001,0,1586159628678,1586279942254,'{\"msg\":\"success\",\"invoke\":-0.25,\"instance\":null,\"code\":200}','2020-04-07 17:19:02','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-0.25],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586280076515,82001,0,1586159628678,1586280076513,'{\"msg\":\"success\",\"invoke\":-1,\"instance\":null,\"code\":200}','2020-04-07 17:21:16',NULL,'{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[-1],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586280160207,82001,0,1586159628678,1586280160205,'{\"msg\":\"success\",\"invoke\":0,\"instance\":null,\"code\":200}','2020-04-07 17:22:40','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[0],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586280164214,82001,0,1586159628678,1586280164207,'{\"msg\":\"success\",\"invoke\":0.25,\"instance\":null,\"code\":200}','2020-04-07 17:22:44','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.25],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586280165978,82001,0,1586159628678,1586280165976,'{\"msg\":\"success\",\"invoke\":0.5,\"instance\":null,\"code\":200}','2020-04-07 17:22:45','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.5],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586280167350,82001,0,1586159628678,1586280167348,'{\"msg\":\"success\",\"invoke\":1,\"instance\":null,\"code\":200}','2020-04-07 17:22:47','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[1],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586280168576,82001,0,1586159628678,1586280168574,'{\"msg\":\"success\",\"invoke\":-0.5,\"instance\":null,\"code\":200}','2020-04-07 17:22:48','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-0.5],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586280170339,82001,0,1586159628678,1586280170337,'{\"msg\":\"success\",\"invoke\":1,\"instance\":null,\"code\":200}','2020-04-07 17:22:50','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[1],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586280172424,82001,0,1586159628678,1586280172423,'{\"msg\":\"success\",\"invoke\":0.04,\"instance\":null,\"code\":200}','2020-04-07 17:22:52','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.04],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586280173543,82001,0,1586159628678,1586280173542,'{\"msg\":\"success\",\"invoke\":0,\"instance\":null,\"code\":200}','2020-04-07 17:22:53','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[0],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586280174925,82001,0,1586159628678,1586280174923,'{\"msg\":\"success\",\"invoke\":1,\"instance\":null,\"code\":200}','2020-04-07 17:22:54','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[1],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586280176733,82001,0,1586159628678,1586280176731,'{\"msg\":\"success\",\"invoke\":-3.3333333333333335,\"instance\":null,\"code\":200}','2020-04-07 17:22:56','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-3.3333333333333335],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586280177816,82001,0,1586159628678,1586280177814,'{\"msg\":\"success\",\"invoke\":49.5,\"instance\":null,\"code\":200}','2020-04-07 17:22:57','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[49.5],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586280178917,82001,0,1586159628678,1586280178916,'{\"msg\":\"success\",\"invoke\":-33.333333333333336,\"instance\":null,\"code\":200}','2020-04-07 17:22:58','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-33.333333333333336],\"lengthLevel\":1,\"lengths\":[3]}}],\"code\":200}'),(1586280180601,82001,0,1586159628678,1586280180599,'{\"msg\":\"success\",\"invoke\":0,\"instance\":null,\"code\":200}','2020-04-07 17:23:00','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[0],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586280181578,82001,0,1586159628678,1586280181576,'{\"msg\":\"success\",\"invoke\":\"Infinity\",\"instance\":null,\"code\":200}','2020-04-07 17:23:01','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"Infinity\"],\"lengthLevel\":1,\"lengths\":[8]}}],\"code\":200}'),(1586280182598,82001,0,1586159628678,1586280182596,'{\"msg\":\"success\",\"invoke\":0.02,\"instance\":null,\"code\":200}','2020-04-07 17:23:02','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.02],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586280184223,82001,0,1586159628678,1586280184221,'{\"msg\":\"success\",\"invoke\":-0.25,\"instance\":null,\"code\":200}','2020-04-07 17:23:04','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-0.25],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586280187299,82001,0,1586159628678,1586280187297,'{\"msg\":\"success\",\"invoke\":-2,\"instance\":null,\"code\":200}','2020-04-07 17:23:07','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[-2],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586280188258,82001,0,1586159628678,1586280188256,'{\"msg\":\"success\",\"invoke\":-0.030303030303030304,\"instance\":null,\"code\":200}','2020-04-07 17:23:08','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-0.030303030303030304],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586280189994,82001,0,1586159628678,1586280189992,'{\"msg\":\"success\",\"invoke\":-1.3333333333333333,\"instance\":null,\"code\":200}','2020-04-07 17:23:09','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-1.3333333333333333],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586280191365,82001,0,1586159628678,1586280191363,'{\"msg\":\"success\",\"invoke\":0,\"instance\":null,\"code\":200}','2020-04-07 17:23:11','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[0],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586280193163,82001,0,1586159628678,1586280193161,'{\"msg\":\"success\",\"invoke\":-0.75,\"instance\":null,\"code\":200}','2020-04-07 17:23:13','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-0.75],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586280194706,82001,0,1586159628678,1586280194704,'{\"msg\":\"success\",\"invoke\":100,\"instance\":null,\"code\":200}','2020-04-07 17:23:14','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[100],\"lengthLevel\":1,\"lengths\":[3]}}],\"code\":200}'),(1586280197122,82001,0,1586159628678,1586280197120,'{\"msg\":\"success\",\"invoke\":0.99,\"instance\":null,\"code\":200}','2020-04-07 17:23:17','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.99],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586280198329,82001,0,1586159628678,1586280198327,'{\"msg\":\"success\",\"invoke\":2.5,\"instance\":null,\"code\":200}','2020-04-07 17:23:18','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[2.5],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586280201469,82001,0,1586159628678,1586280201467,'{\"msg\":\"success\",\"invoke\":0,\"instance\":null,\"code\":200}','2020-04-07 17:23:21','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[0],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586280202423,82001,0,1586159628678,1586280202421,'{\"msg\":\"success\",\"invoke\":1.0101010101010102,\"instance\":null,\"code\":200}','2020-04-07 17:23:22','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[1.0101010101010102],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586280203294,82001,0,1586159628678,1586280203292,'{\"msg\":\"success\",\"invoke\":-33,\"instance\":null,\"code\":200}','2020-04-07 17:23:23','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[-33],\"lengthLevel\":1,\"lengths\":[3]}}],\"code\":200}'),(1586280204582,82001,0,1586159628678,1586280204580,'{\"msg\":\"success\",\"invoke\":5,\"instance\":null,\"code\":200}','2020-04-07 17:23:24','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[5],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586280206277,82001,0,1586159628678,1586280206276,'{\"msg\":\"success\",\"invoke\":1,\"instance\":null,\"code\":200}','2020-04-07 17:23:26','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[1],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586280210615,82001,0,1586159628678,1586280210613,'{\"msg\":\"success\",\"invoke\":1,\"instance\":null,\"code\":200}','2020-04-07 17:23:30','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[1],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586280305346,82001,0,1586159628678,1586280305344,'{\"msg\":\"success\",\"invoke\":0.5,\"instance\":null,\"code\":200}','2020-04-07 17:25:05','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.5],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586280312367,82001,0,1586159628678,1586280312365,'{\"msg\":\"success\",\"invoke\":0.1,\"instance\":null,\"code\":200}','2020-04-07 17:25:12','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[0.1],\"lengthLevel\":1,\"lengths\":[1]}}],\"code\":200}'),(1586280317739,82001,0,1586159628678,1586280317738,'{\"msg\":\"success\",\"invoke\":24.75,\"instance\":null,\"code\":200}','2020-04-07 17:25:17','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[24.75],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586280320525,82001,0,1586159628678,1586280320523,'{\"msg\":\"success\",\"invoke\":-0.5,\"instance\":null,\"code\":200}','2020-04-07 17:25:20','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":1,\"values\":[-0.5],\"lengthLevel\":1,\"lengths\":[2]}}],\"code\":200}'),(1586329864350,82001,0,1586329864346,0,'','2020-04-08 07:11:04',NULL,NULL),(1586329864358,82001,0,1586329864355,0,'','2020-04-08 07:11:04',NULL,NULL),(1586368661316,82001,0,5,0,'{\"msg\":\"success\",\"invoke\":true,\"instance\":{\"method\":\"GET\",\"tag\":null,\"version\":0},\"code\":200}','2020-04-08 17:57:41','{\"code\":1,\"msg\":\"是新增的\",\"path\":\"instance\",\"value\":{\"method\":\"GET\",\"tag\":null,\"version\":0}}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"boolean\",\"valueLevel\":0,\"values\":[true]},\"instance\":{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"method\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"GET\"],\"lengthLevel\":1,\"lengths\":[3]},\"version\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[0],\"lengthLevel\":1,\"lengths\":[1]}}]}}],\"code\":200}'),(1586368665623,82001,0,3,0,'{\"msg\":\"success\",\"invoke\":3,\"instance\":{\"method\":\"GET\",\"tag\":null,\"version\":0},\"code\":200}','2020-04-08 17:57:45','{\"code\":1,\"msg\":\"是新增的\",\"path\":\"instance\",\"value\":{\"method\":\"GET\",\"tag\":null,\"version\":0}}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[3],\"lengthLevel\":1,\"lengths\":[1]},\"instance\":{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"method\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"GET\"],\"lengthLevel\":1,\"lengths\":[3]},\"version\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[0],\"lengthLevel\":1,\"lengths\":[1]}}]}}],\"code\":200}'),(1586368668406,82001,0,6,0,'{\"msg\":\"success\",\"invoke\":true,\"instance\":{\"method\":\"GET\",\"tag\":null,\"version\":0},\"code\":200}','2020-04-08 17:57:48','{\"code\":1,\"msg\":\"是新增的\",\"path\":\"instance\",\"value\":{\"method\":\"GET\",\"tag\":null,\"version\":0}}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"boolean\",\"valueLevel\":0,\"values\":[true]},\"instance\":{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"method\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"GET\"],\"lengthLevel\":1,\"lengths\":[3]},\"version\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[0],\"lengthLevel\":1,\"lengths\":[1]}}]}}],\"code\":200}'),(1586368669490,82001,0,7,0,'{\"msg\":\"success\",\"invoke\":true,\"instance\":{\"method\":\"GET\",\"tag\":null,\"version\":0},\"code\":200}','2020-04-08 17:57:49','{\"code\":1,\"msg\":\"是新增的\",\"path\":\"instance\",\"value\":{\"method\":\"GET\",\"tag\":null,\"version\":0}}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"boolean\",\"valueLevel\":0,\"values\":[true]},\"instance\":{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"method\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"GET\"],\"lengthLevel\":1,\"lengths\":[3]},\"version\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[0],\"lengthLevel\":1,\"lengths\":[1]}}]}}],\"code\":200}'),(1586368670632,82001,0,8,0,'{\"msg\":\"success\",\"invoke\":1,\"instance\":{\"method\":\"GET\",\"tag\":null,\"version\":0},\"code\":200}','2020-04-08 17:57:50','{\"code\":1,\"msg\":\"是新增的\",\"path\":\"instance\",\"value\":{\"method\":\"GET\",\"tag\":null,\"version\":0}}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[1],\"lengthLevel\":1,\"lengths\":[1]},\"instance\":{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"method\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"GET\"],\"lengthLevel\":1,\"lengths\":[3]},\"version\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[0],\"lengthLevel\":1,\"lengths\":[1]}}]}}],\"code\":200}'),(1586369614251,82001,0,6,1586161247306,'{\"msg\":\"success\",\"invoke\":false,\"instance\":{\"method\":\"GET\",\"tag\":null,\"version\":0},\"code\":200}','2020-04-08 18:13:34','{\"code\":1,\"msg\":\"是新增的\",\"path\":\"instance\",\"value\":{\"method\":\"GET\",\"tag\":null,\"version\":0}}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"boolean\",\"valueLevel\":0,\"values\":[false]},\"instance\":{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"method\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"GET\"],\"lengthLevel\":1,\"lengths\":[3]},\"version\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[0],\"lengthLevel\":1,\"lengths\":[1]}}]}}],\"code\":200}'),(1586369617393,82001,0,6,1586161210976,'{\"msg\":\"success\",\"invoke\":false,\"instance\":{\"method\":\"GET\",\"tag\":null,\"version\":0},\"code\":200}','2020-04-08 18:13:37','{\"code\":1,\"msg\":\"是新增的\",\"path\":\"instance\",\"value\":{\"method\":\"GET\",\"tag\":null,\"version\":0}}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"boolean\",\"valueLevel\":0,\"values\":[false]},\"instance\":{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"method\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"GET\"],\"lengthLevel\":1,\"lengths\":[3]},\"version\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[0],\"lengthLevel\":1,\"lengths\":[1]}}]}}],\"code\":200}'),(1586369637272,82001,0,6,1586173072436,'{\"msg\":\"success\",\"invoke\":false,\"instance\":{\"method\":\"GET\",\"tag\":null,\"version\":0},\"code\":200}','2020-04-08 18:13:57','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"boolean\",\"valueLevel\":0,\"values\":[false]},\"instance\":{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"method\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"GET\"],\"lengthLevel\":1,\"lengths\":[3]},\"version\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[0],\"lengthLevel\":1,\"lengths\":[1]}}]}}],\"code\":200}'),(1586369638515,82001,0,6,1586172983136,'{\"msg\":\"success\",\"invoke\":false,\"instance\":{\"method\":\"GET\",\"tag\":null,\"version\":0},\"code\":200}','2020-04-08 18:13:58','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"boolean\",\"valueLevel\":0,\"values\":[false]},\"instance\":{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"method\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"GET\"],\"lengthLevel\":1,\"lengths\":[3]},\"version\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[0],\"lengthLevel\":1,\"lengths\":[1]}}]}}],\"code\":200}'),(1586369639518,82001,0,6,1586171875763,'{\"msg\":\"success\",\"invoke\":false,\"instance\":{\"method\":\"GET\",\"tag\":null,\"version\":0},\"code\":200}','2020-04-08 18:13:59','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"boolean\",\"valueLevel\":0,\"values\":[false]},\"instance\":{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"method\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"GET\"],\"lengthLevel\":1,\"lengths\":[3]},\"version\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[0],\"lengthLevel\":1,\"lengths\":[1]}}]}}],\"code\":200}'),(1586369640567,82001,0,6,1586171873734,'{\"msg\":\"success\",\"invoke\":false,\"instance\":{\"method\":\"GET\",\"tag\":null,\"version\":0},\"code\":200}','2020-04-08 18:14:00','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"boolean\",\"valueLevel\":0,\"values\":[false]},\"instance\":{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"method\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"GET\"],\"lengthLevel\":1,\"lengths\":[3]},\"version\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[0],\"lengthLevel\":1,\"lengths\":[1]}}]}}],\"code\":200}'),(1586369641442,82001,0,6,1586171860292,'{\"msg\":\"success\",\"invoke\":false,\"instance\":{\"method\":\"GET\",\"tag\":null,\"version\":0},\"code\":200}','2020-04-08 18:14:01','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"boolean\",\"valueLevel\":0,\"values\":[false]},\"instance\":{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"method\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"GET\"],\"lengthLevel\":1,\"lengths\":[3]},\"version\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[0],\"lengthLevel\":1,\"lengths\":[1]}}]}}],\"code\":200}'),(1586369642871,82001,0,6,1586171727997,'{\"msg\":\"success\",\"invoke\":false,\"instance\":{\"method\":\"GET\",\"tag\":null,\"version\":0},\"code\":200}','2020-04-08 18:14:02','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"boolean\",\"valueLevel\":0,\"values\":[false]},\"instance\":{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"method\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"GET\"],\"lengthLevel\":1,\"lengths\":[3]},\"version\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[0],\"lengthLevel\":1,\"lengths\":[1]}}]}}],\"code\":200}'),(1586369661124,82001,0,6,1586175845253,'{\"msg\":\"success\",\"invoke\":true,\"instance\":{\"method\":\"GET\",\"tag\":null,\"version\":0},\"code\":200}','2020-04-08 18:14:21','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"boolean\",\"valueLevel\":0,\"values\":[true]},\"instance\":{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"method\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"GET\"],\"lengthLevel\":1,\"lengths\":[3]},\"version\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[0],\"lengthLevel\":1,\"lengths\":[1]}}]}}],\"code\":200}'),(1586369663356,82001,0,6,1586173045809,'{\"msg\":\"success\",\"invoke\":true,\"instance\":{\"method\":\"GET\",\"tag\":null,\"version\":0},\"code\":200}','2020-04-08 18:14:23','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"boolean\",\"valueLevel\":0,\"values\":[true]},\"instance\":{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"method\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"GET\"],\"lengthLevel\":1,\"lengths\":[3]},\"version\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[0],\"lengthLevel\":1,\"lengths\":[1]}}]}}],\"code\":200}'),(1586369664454,82001,0,6,1586173005184,'{\"msg\":\"success\",\"invoke\":true,\"instance\":{\"method\":\"GET\",\"tag\":null,\"version\":0},\"code\":200}','2020-04-08 18:14:24','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"boolean\",\"valueLevel\":0,\"values\":[true]},\"instance\":{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"method\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"GET\"],\"lengthLevel\":1,\"lengths\":[3]},\"version\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[0],\"lengthLevel\":1,\"lengths\":[1]}}]}}],\"code\":200}'),(1586369665770,82001,0,6,1586171934803,'{\"msg\":\"success\",\"invoke\":true,\"instance\":{\"method\":\"GET\",\"tag\":null,\"version\":0},\"code\":200}','2020-04-08 18:14:25','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"boolean\",\"valueLevel\":0,\"values\":[true]},\"instance\":{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"method\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"GET\"],\"lengthLevel\":1,\"lengths\":[3]},\"version\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[0],\"lengthLevel\":1,\"lengths\":[1]}}]}}],\"code\":200}'),(1586369667127,82001,0,6,1586171933213,'{\"msg\":\"success\",\"invoke\":true,\"instance\":{\"method\":\"GET\",\"tag\":null,\"version\":0},\"code\":200}','2020-04-08 18:14:27','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"boolean\",\"valueLevel\":0,\"values\":[true]},\"instance\":{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"method\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"GET\"],\"lengthLevel\":1,\"lengths\":[3]},\"version\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[0],\"lengthLevel\":1,\"lengths\":[1]}}]}}],\"code\":200}'),(1586369932862,82001,0,6,1586169941994,'{\"msg\":\"success\",\"invoke\":false,\"instance\":{\"method\":\"GET\",\"tag\":null,\"version\":0},\"code\":200}','2020-04-08 18:18:52','{\"code\":-1,\"msg\":\"没有校验标准!\",\"path\":\"\"}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"boolean\",\"valueLevel\":0,\"values\":[false]},\"instance\":{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"method\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"GET\"],\"lengthLevel\":1,\"lengths\":[3]},\"version\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[0],\"lengthLevel\":1,\"lengths\":[1]}}]}}],\"code\":200}'),(1587388700250,82001,0,1587388700246,0,'{\"msg\":\"success\",\"invoke\":null,\"types\":[\"com.alibaba.fastjson.JSONObject\",\"java.lang.String\"],\"args\":[{\"key\":\"a\"},\"obj\"],\"instance\":{\"method\":\"GET\",\"tag\":null,\"version\":0},\"code\":200}','2020-04-20 13:18:20',NULL,'{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"types\":{\"notnull\":true,\"type\":\"array\",\"valueLevel\":0,\"lengthLevel\":1,\"lengths\":[2],\"values\":[{\"notnull\":true,\"type\":\"string\",\"valueLevel\":3,\"values\":[],\"lengthLevel\":1,\"lengths\":[31,16]}]},\"args\":{\"notnull\":true,\"type\":\"array\",\"valueLevel\":0,\"lengthLevel\":1,\"lengths\":[2],\"values\":[{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"obj\",{\"key\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"a\"],\"lengthLevel\":1,\"lengths\":[1]}}],\"lengthLevel\":1,\"lengths\":[3]}]},\"instance\":{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"method\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"GET\"],\"lengthLevel\":1,\"lengths\":[3]},\"version\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[0],\"lengthLevel\":1,\"lengths\":[1]}}]}}],\"code\":200}'),(1587388763934,82001,0,6,0,'{\"msg\":\"success\",\"invoke\":true,\"types\":[\"com.alibaba.fastjson.JSONObject\",\"java.lang.String\",\"java.lang.String\"],\"args\":[{\"obj\":{\"a\":1,\"b\":\"2\"},\"key\":\"a\"},\"obj\",\"key\"],\"instance\":{\"method\":\"GET\",\"tag\":null,\"version\":0},\"code\":200}','2020-04-20 13:19:23','{\"code\":1,\"msg\":\"是新增的\",\"path\":\"types\",\"value\":[\"com.alibaba.fastjson.JSONObject\",\"java.lang.String\",\"java.lang.String\"]}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"boolean\",\"valueLevel\":0,\"values\":[true]},\"instance\":{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"method\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"GET\"],\"lengthLevel\":1,\"lengths\":[3]},\"version\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[0],\"lengthLevel\":1,\"lengths\":[1]}}]},\"types\":{\"notnull\":true,\"type\":\"array\",\"valueLevel\":0,\"lengthLevel\":1,\"lengths\":[3],\"values\":[{\"notnull\":true,\"type\":\"string\",\"valueLevel\":3,\"values\":[],\"lengthLevel\":1,\"lengths\":[31,16]}]},\"args\":{\"notnull\":true,\"type\":\"array\",\"valueLevel\":0,\"lengthLevel\":1,\"lengths\":[3],\"values\":[{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"obj\",\"key\",{\"obj\":{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"a\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[1],\"lengthLevel\":1,\"lengths\":[1]},\"b\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"2\"],\"lengthLevel\":1,\"lengths\":[1]}}]},\"key\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"a\"],\"lengthLevel\":1,\"lengths\":[1]}}],\"lengthLevel\":1,\"lengths\":[3]}]}}],\"code\":200}'),(1587388769262,82001,0,7,0,'{\"msg\":\"success\",\"invoke\":true,\"types\":[\"com.alibaba.fastjson.JSONObject\",\"java.lang.String\",\"java.lang.String\"],\"args\":[{\"val\":\"2\",\"obj\":{\"a\":1,\"b\":\"2\"}},\"obj\",\"val\"],\"instance\":{\"method\":\"GET\",\"tag\":null,\"version\":0},\"code\":200}','2020-04-20 13:19:29','{\"code\":1,\"msg\":\"是新增的\",\"path\":\"types\",\"value\":[\"com.alibaba.fastjson.JSONObject\",\"java.lang.String\",\"java.lang.String\"]}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"boolean\",\"valueLevel\":0,\"values\":[true]},\"instance\":{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"method\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"GET\"],\"lengthLevel\":1,\"lengths\":[3]},\"version\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[0],\"lengthLevel\":1,\"lengths\":[1]}}]},\"types\":{\"notnull\":true,\"type\":\"array\",\"valueLevel\":0,\"lengthLevel\":1,\"lengths\":[3],\"values\":[{\"notnull\":true,\"type\":\"string\",\"valueLevel\":3,\"values\":[],\"lengthLevel\":1,\"lengths\":[31,16]}]},\"args\":{\"notnull\":true,\"type\":\"array\",\"valueLevel\":0,\"lengthLevel\":1,\"lengths\":[3],\"values\":[{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"val\",\"obj\",{\"val\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"2\"],\"lengthLevel\":1,\"lengths\":[1]},\"obj\":{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"a\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[1],\"lengthLevel\":1,\"lengths\":[1]},\"b\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"2\"],\"lengthLevel\":1,\"lengths\":[1]}}]}}],\"lengthLevel\":1,\"lengths\":[3]}]}}],\"code\":200}'),(1587388771401,82001,0,8,0,'{\"msg\":\"success\",\"invoke\":1,\"types\":[\"com.alibaba.fastjson.JSONObject\",\"java.lang.String\",\"java.lang.String\"],\"args\":[{\"arr\":[1,2],\"index\":0},\"arr\",\"index\"],\"instance\":{\"method\":\"GET\",\"tag\":null,\"version\":0},\"code\":200}','2020-04-20 13:19:31','{\"code\":1,\"msg\":\"是新增的\",\"path\":\"types\",\"value\":[\"com.alibaba.fastjson.JSONObject\",\"java.lang.String\",\"java.lang.String\"]}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[1],\"lengthLevel\":1,\"lengths\":[1]},\"instance\":{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"method\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"GET\"],\"lengthLevel\":1,\"lengths\":[3]},\"version\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[0],\"lengthLevel\":1,\"lengths\":[1]}}]},\"types\":{\"notnull\":true,\"type\":\"array\",\"valueLevel\":0,\"lengthLevel\":1,\"lengths\":[3],\"values\":[{\"notnull\":true,\"type\":\"string\",\"valueLevel\":3,\"values\":[],\"lengthLevel\":1,\"lengths\":[31,16]}]},\"args\":{\"notnull\":true,\"type\":\"array\",\"valueLevel\":0,\"lengthLevel\":1,\"lengths\":[3],\"values\":[{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"index\",\"arr\",{\"arr\":{\"notnull\":true,\"type\":\"array\",\"valueLevel\":0,\"lengthLevel\":1,\"lengths\":[2],\"values\":[{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[2,1],\"lengthLevel\":1,\"lengths\":[1]}]},\"index\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[0],\"lengthLevel\":1,\"lengths\":[1]}}],\"lengthLevel\":1,\"lengths\":[5,3]}]}}],\"code\":200}'),(1587391881567,82001,0,1586198428686,0,'{\"msg\":\"success\",\"invoke\":\"-Infinity\",\"types\":[\"long\",\"long\"],\"args\":[-1,0],\"instance\":null,\"code\":200}','2020-04-20 14:11:21','{\"code\":1,\"msg\":\"是新增的\",\"path\":\"types\",\"value\":[\"long\",\"long\"]}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":3,\"values\":[],\"lengthLevel\":1,\"lengths\":[9]},\"types\":{\"notnull\":true,\"type\":\"array\",\"valueLevel\":0,\"lengthLevel\":1,\"lengths\":[2],\"values\":[{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"long\"],\"lengthLevel\":1,\"lengths\":[4]}]},\"args\":{\"notnull\":true,\"type\":\"array\",\"valueLevel\":0,\"lengthLevel\":1,\"lengths\":[2],\"values\":[{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[0,-1],\"lengthLevel\":1,\"lengths\":[2,1]}]}}],\"code\":200}'),(1587669549107,82001,0,6,1586161247084,'{\"msg\":\"success\",\"invoke\":false,\"instance\":{\"method\":\"GET\",\"tag\":null,\"version\":0},\"code\":200}','2020-04-23 19:19:09','{\"code\":1,\"msg\":\"是新增的\",\"path\":\"instance\",\"value\":{\"method\":\"GET\",\"tag\":null,\"version\":0}}','{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"msg\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"success\"],\"lengthLevel\":1,\"lengths\":[7]},\"invoke\":{\"notnull\":true,\"type\":\"boolean\",\"valueLevel\":0,\"values\":[false]},\"instance\":{\"notnull\":true,\"type\":\"object\",\"valueLevel\":0,\"values\":[{\"method\":{\"notnull\":true,\"type\":\"string\",\"valueLevel\":0,\"values\":[\"GET\"],\"lengthLevel\":1,\"lengths\":[3]},\"version\":{\"notnull\":true,\"type\":\"number\",\"valueLevel\":0,\"values\":[0],\"lengthLevel\":1,\"lengths\":[1]}}]}}],\"code\":200}');
/*!40000 ALTER TABLE `TestRecord` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Verify`
--
DROP TABLE IF EXISTS `Verify`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Verify` (
`id` bigint(15) NOT NULL AUTO_INCREMENT COMMENT '唯一标识',
`type` int(2) NOT NULL DEFAULT '0' COMMENT '类型:\n0-登录\n1-注册\n2-修改登录密码\n3-修改支付密码',
`phone` bigint(11) NOT NULL COMMENT '手机号',
`verify` int(6) NOT NULL COMMENT '验证码',
`date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1590930499668 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Verify`
--
LOCK TABLES `Verify` WRITE;
/*!40000 ALTER TABLE `Verify` DISABLE KEYS */;
INSERT INTO `Verify` VALUES (1527950171719,1,130000844444,10375,'2018-06-02 14:36:11'),(1528250810515,1,15122820115,2586,'2018-06-06 02:06:50'),(1528254139866,1,15225556855,8912,'2018-06-06 03:02:19'),(1528255485691,1,15822798927,2101,'2018-06-06 03:24:45'),(1528264687329,1,15620878773,3991,'2018-06-06 05:58:07'),(1528269508031,1,18616024605,4901,'2018-06-06 07:18:28'),(1528289406640,1,13142033348,3005,'2018-06-06 12:50:06'),(1528330720259,2,15122820115,5267,'2018-06-07 00:18:40'),(1528339646013,1,15122541683,6112,'2018-06-07 02:47:26'),(1528344962707,1,15188899797,4540,'2018-06-07 04:16:02'),(1528345364195,2,15122541683,10500,'2018-06-07 04:22:44'),(1528356342784,2,15620878773,2076,'2018-06-07 07:25:42'),(1528356449927,1,15620878772,4733,'2018-06-07 07:27:29'),(1531793525394,1,15629184762,9737,'2018-07-17 02:12:05'),(1531983017848,2,13800138000,1552,'2018-07-19 06:50:17'),(1532188103364,1,13977757845,8753,'2018-07-21 15:48:23'),(1532439015405,1,18779607703,10136,'2018-07-24 13:30:15'),(1533450371245,1,18911061423,5795,'2018-08-05 06:26:11'),(1533618759900,1,13977757843,10204,'2018-08-07 05:12:39'),(1533627819054,1,13107695518,7515,'2018-08-07 07:43:39'),(1533693421836,1,15901373410,4884,'2018-08-08 01:57:01'),(1533698902309,1,18664900086,3654,'2018-08-08 03:28:22'),(1533723898511,1,8881816,5272,'2018-08-08 10:24:58'),(1533835163777,1,13977757846,9332,'2018-08-09 17:19:23'),(1534142797624,2,13977757845,4136,'2018-08-13 06:46:37'),(1534671951719,1,13000082023,5869,'2018-08-19 09:45:51'),(1534671960833,1,13000082013,6169,'2018-08-19 09:46:00'),(1534671980295,1,13000082032,10171,'2018-08-19 09:46:20'),(1534898613829,1,17755531490,3961,'2018-08-22 00:43:33'),(1534926287534,1,17602120205,5297,'2018-08-22 08:24:47'),(1535345181813,1,13000082022,8145,'2018-08-27 04:46:21'),(1536220749108,1,13241042199,9916,'2018-09-06 07:59:09'),(1536583466723,1,18013819609,2483,'2018-09-10 12:44:26'),(1537515280163,2,13000038713,5877,'2018-09-21 07:34:40'),(1537515287973,2,13000038714,10441,'2018-09-21 07:34:47'),(1537515337629,1,13000033333,7353,'2018-09-21 07:35:37'),(1537521279290,1,13000049499,2854,'2018-09-21 09:14:39'),(1538114970328,1,15855512382,10359,'2018-09-28 06:09:30'),(1538504485798,1,13000087655,4776,'2018-10-02 18:21:25'),(1538987940551,1,18662327672,1800,'2018-10-08 08:39:00'),(1539076064496,1,15094295280,3361,'2018-10-09 09:07:44'),(1539076102284,1,15094395280,1562,'2018-10-09 09:08:22'),(1540364623910,1,13000085001,4382,'2018-10-24 07:03:43'),(1540966375865,1,13122091271,3880,'2018-10-31 06:12:55'),(1541500666143,1,15280239960,9142,'2018-11-06 10:37:46'),(1541510152560,1,13000099999,1097,'2018-11-06 13:15:52'),(1541510270190,1,13000077777,8192,'2018-11-06 13:17:50'),(1541583746916,1,18689846285,8724,'2018-11-07 09:42:26'),(1541757538733,1,17717112856,2268,'2018-11-09 09:58:58'),(1542261432641,1,15800506515,2586,'2018-11-15 05:57:12'),(1542265654497,1,18010001000,5666,'2018-11-15 07:07:34'),(1542337959344,1,13000012345,4981,'2018-11-16 03:12:39'),(1542548523509,1,13317833374,8921,'2018-11-18 13:42:03'),(1542702268195,1,123123,8055,'2018-11-20 08:24:28'),(1542840424025,1,13818118257,7126,'2018-11-21 22:47:04'),(1543377157089,1,18622250185,6620,'2018-11-28 03:52:37'),(1543966631575,1,13466260815,5835,'2018-12-04 23:37:11'),(1544276193603,1,13000087656,4078,'2018-12-08 13:36:33'),(1544276277509,2,13000087656,9356,'2018-12-08 13:37:57'),(1544276475231,1,15988125475,8940,'2018-12-08 13:41:15'),(1544503797981,1,13000082968,6965,'2018-12-11 04:49:57'),(1545038887447,1,13000083333,4527,'2018-12-17 09:28:07'),(1545238881566,1,13166059778,4434,'2018-12-19 17:01:21'),(1545269417538,1,18124099720,4882,'2018-12-20 01:30:17'),(1545464407106,1,17755015200,3870,'2018-12-22 07:40:07'),(1545707514503,1,13533039558,3941,'2018-12-25 03:11:54'),(1545895656481,1,13533039550,4968,'2018-12-27 07:27:36'),(1546701633801,1,13534201057,8487,'2019-01-05 15:20:33'),(1547177422559,1,18980210241,7012,'2019-01-11 03:30:22'),(1548068010027,1,17181595855,10716,'2019-01-21 10:53:30'),(1548310439111,1,13059203278,9438,'2019-01-24 06:13:59'),(1548398132694,1,15050529772,9276,'2019-01-25 06:35:32'),(1548742004597,1,13738007826,6318,'2019-01-29 06:06:44'),(1548742124507,6,13000082001,4901,'2019-01-29 06:08:44'),(1548742151361,10,13000082001,8513,'2019-01-29 06:09:11'),(1550473143648,1,13381683351,6922,'2019-02-18 06:59:03'),(1550740162526,1,13521991626,8747,'2019-02-21 09:09:22'),(1551076882566,1,1111111,6119,'2019-02-25 06:41:22'),(1551076937013,1,11111,9166,'2019-02-25 06:42:17'),(1551706765917,1,18983383960,2896,'2019-03-04 13:39:25'),(1551766808556,1,18285650445,2527,'2019-03-05 06:20:08'),(1552014558621,1,13000087654,7672,'2019-03-08 03:09:18'),(1552535605843,1,18859368881,7047,'2019-03-14 03:53:25'),(1552898799194,1,13719254713,8205,'2019-03-18 08:46:39'),(1553090092099,1,18059049703,5740,'2019-03-20 13:54:52'),(1553095400510,1,13185236871,1397,'2019-03-20 15:23:20'),(1553527669068,1,13189758117,8610,'2019-03-25 15:27:49'),(1556263210364,1,18668133682,5235,'2019-04-26 07:20:10'),(1557305399671,1,18717150408,1101,'2019-05-08 08:49:59'),(1557398553414,1,13886881990,10900,'2019-05-09 10:42:33'),(1558870796477,1,18601549904,3826,'2019-05-26 11:39:56'),(1559129604658,1,13000000000,9753,'2019-05-29 11:33:24'),(1559130251743,1,13000000001,8717,'2019-05-29 11:44:11'),(1559207431934,1,1366666666,1122,'2019-05-30 09:10:31'),(1559207507258,1,13666666666,10370,'2019-05-30 09:11:47'),(1559273063260,1,13000082002,4369,'2019-05-31 03:24:23'),(1559545496930,1,13767332646,1093,'2019-06-03 07:04:56'),(1559790218764,1,15159512738,8811,'2019-06-06 03:03:38'),(1560409123788,1,18030546471,5677,'2019-06-13 06:58:43'),(1561539248383,1,15870873323,4526,'2019-06-26 08:54:08'),(1561702709638,1,18627923596,1989,'2019-06-28 06:18:29'),(1562328158620,1,13687367235,6808,'2019-07-05 12:02:38'),(1562683560796,1,16602341503,7946,'2019-07-09 14:46:00'),(1562914759983,1,15172299452,1876,'2019-07-12 06:59:19'),(1563605296604,1,13590330481,1393,'2019-07-20 06:48:16'),(1563849723501,1,18819375641,2381,'2019-07-23 02:42:03'),(1564024588101,1,18588812307,4869,'2019-07-25 03:16:28'),(1564366616956,1,15855539563,5714,'2019-07-29 02:16:56'),(1564756192754,1,13662626604,10846,'2019-08-02 14:29:52'),(1564805700460,1,13000012356,7884,'2019-08-03 04:15:00'),(1567395836494,1,13800138000,4452,'2019-09-02 03:43:56'),(1568181298813,1,15846537034,9286,'2019-09-11 05:54:58'),(1568768241952,1,13977377898,10365,'2019-09-18 00:57:21'),(1569572535995,1,15954082701,6230,'2019-09-27 08:22:15'),(1570529262714,1,15669090286,2802,'2019-10-08 10:07:42'),(1570601456336,1,18715468983,9341,'2019-10-09 06:10:56'),(1571629287990,1,17051059209,9248,'2019-10-21 03:41:27'),(1573139529444,1,18671349210,3305,'2019-11-07 15:12:09'),(1573634227126,1,18003486540,4101,'2019-11-13 08:37:07'),(1574048501681,1,18311481261,7204,'2019-11-18 03:41:41'),(1574334582308,1,67655615,7420,'2019-11-21 11:09:42'),(1575010570180,1,18102158632,9838,'2019-11-29 06:56:10'),(1575254926301,1,17709218294,1082,'2019-12-02 02:48:46'),(1575624474671,1,15023322360,8839,'2019-12-06 09:27:54'),(1576293801888,1,15182844020,8178,'2019-12-14 03:23:21'),(1578984721638,1,9012667,1927,'2020-01-14 06:52:01'),(1579406819458,2,13000038710,9601,'2020-01-19 04:06:59'),(1579485179096,1,13533487064,6383,'2020-01-20 01:52:59'),(1579582269601,1,15981549382,5927,'2020-01-21 04:51:09'),(1580391228639,1,123456,7373,'2020-01-30 13:33:48'),(1580921833366,1,15518860308,10117,'2020-02-05 16:57:13'),(1582465184558,2,13000082001,4066,'2020-02-23 13:39:44'),(1586707556460,2,13000088888,8923,'2020-04-12 16:05:56'),(1586707565181,1,13000038710,1883,'2020-04-12 16:06:05'),(1587054127321,1,18813200410,5959,'2020-04-16 16:22:07'),(1590029925751,1,13000082001,7010,'2020-05-21 02:58:45'),(1590930499667,0,13000082001,2369,'2020-05-31 13:08:19');
/*!40000 ALTER TABLE `Verify` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `_Visit`
--
DROP TABLE IF EXISTS `_Visit`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `_Visit` (
`model` varchar(15) NOT NULL,
`id` bigint(15) NOT NULL,
`operate` tinyint(4) NOT NULL COMMENT '1-增\n2-删\n3-改\n4-查',
`date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `_Visit`
--
LOCK TABLES `_Visit` WRITE;
/*!40000 ALTER TABLE `_Visit` DISABLE KEYS */;
/*!40000 ALTER TABLE `_Visit` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `apijson_privacy`
--
DROP TABLE IF EXISTS `apijson_privacy`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `apijson_privacy` (
`id` bigint(15) NOT NULL COMMENT '唯一标识',
`certified` tinyint(2) NOT NULL DEFAULT '0' COMMENT '已认证',
`phone` bigint(11) NOT NULL COMMENT '手机号,仅支持 11 位数的。不支持 +86 这种国家地区开头的。如果要支持就改为 VARCHAR(14)',
`balance` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '余额',
`_password` varchar(20) NOT NULL COMMENT '登录密码',
`_payPassword` int(6) NOT NULL DEFAULT '123456' COMMENT '支付密码',
PRIMARY KEY (`id`),
UNIQUE KEY `phone_UNIQUE` (`phone`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='用户隐私信息表。\n对安全要求高,不想泄漏真实名称。对外名称为 Privacy';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `apijson_privacy`
--
LOCK TABLES `apijson_privacy` WRITE;
/*!40000 ALTER TABLE `apijson_privacy` DISABLE KEYS */;
INSERT INTO `apijson_privacy` VALUES (38710,1,13000038710,33376.00,'666666',123456),(70793,0,13000070793,56000.00,'apijson',123456),(82001,1,13000082001,60467.40,'123456',123456),(82002,1,13000082002,6917.38,'123456',123456),(82003,1,13000082003,6900.20,'123456',123456),(82004,0,13000082004,2000.00,'123456',123456),(82005,0,13000082005,1923.00,'123456',123456),(82006,0,13000082006,2000.00,'123456',123456),(82009,0,13000082009,2000.00,'123456',123456),(82012,0,13000082012,0.00,'123456',123456),(82020,0,12345678900,0.00,'123456',123456),(82021,0,12345678901,0.00,'123456',123456),(82022,0,12345678902,0.00,'123456',123456),(82023,0,12345678903,0.00,'123456',123456),(82024,0,12345678904,0.00,'123456',123456),(82025,0,12345678905,0.00,'123456',123456),(82026,0,12345678906,0.00,'123456',123456),(82027,0,12345678907,0.00,'123456',123456),(82028,0,12345678908,0.00,'123456',123456),(82029,0,12345678909,0.00,'123456',123456),(82030,0,12345678910,0.00,'123456',123456),(82031,0,12345678911,0.00,'123456',123456),(82032,0,12345678912,0.00,'123456',123456),(82033,0,12345678913,0.00,'123456',123456),(82034,0,12345678914,0.00,'123456',123456),(82035,0,12345678915,0.00,'123456',123456),(82036,0,12345678916,0.00,'123456',123456),(82037,0,12345678917,0.00,'123456',123456),(82038,0,12345678918,0.00,'123456',123456),(82039,0,12345678919,0.00,'123456',123456),(82040,0,13000082019,0.00,'123456',123456),(82041,0,13000082015,0.00,'123456',123456),(82042,0,13000082016,0.00,'123456',123456),(82043,0,13000082017,0.00,'123456',123456),(82044,0,13000082018,0.00,'123456',123456),(82045,0,13000082020,0.00,'123456',123456),(82046,0,13000082010,0.00,'123456',123456),(82047,0,13000082021,0.00,'123456',123456),(82048,0,13000038711,0.00,'123456',123456),(82049,0,13000038712,0.00,'123456',123456),(82050,0,13000038713,0.00,'123456',123456),(82051,0,13000038714,0.00,'123456',123456),(82052,0,13000038715,0.00,'123456',123456),(82053,0,13000038720,0.00,'123456',123456),(82054,0,13000038721,0.00,'123456',123456),(82055,0,13000082030,0.00,'123456',123456),(82056,0,13000082040,0.00,'123456',123456),(82057,0,13000038730,0.00,'123456',123456),(82058,0,13000038750,0.00,'123456',123456),(82059,0,13000082033,0.00,'123456',123456),(82060,0,13000082050,0.00,'123456',123456),(90814,1,13000090814,0.00,'123456',123456),(93793,1,13000093793,3000.00,'apijson',123456),(93794,0,99999999999,0.00,'123456',123456),(1490109742863,0,13000082100,0.00,'123456',123456),(1490109845208,0,13000082101,0.00,'123456',123456),(1490420651686,0,13000038716,0.00,'123456',123456),(1490427139175,0,13000038717,0.00,'123456',123456),(1490427577823,0,13000082102,0.00,'123456',123456),(1490584952968,0,13000038790,0.00,'123456',123456),(1490973670928,0,13000082051,0.00,'123456',123456),(1492936169722,0,13000093794,0.00,'123456',123456),(1493480142628,0,13000038888,0.00,'123456',123456),(1493747512860,0,13000038777,0.00,'123456',123456),(1493747777770,0,13000038778,0.00,'123456',123456),(1493748594003,0,13000038779,0.00,'123456',123456),(1493748615711,0,13000038780,0.00,'123456',123456),(1493749090643,0,13000038781,0.00,'123456',123456),(1493836043151,0,13000038999,0.00,'123456',123456),(1493883110132,0,13000039999,0.00,'123456',123456),(1493890214167,0,13000031000,0.00,'123456',123456),(1493890303473,0,13000031001,0.00,'123456',123456),(1493890303474,0,13000088888,0.00,'123456',123456),(1497792972314,0,13000082111,0.00,'654321',123456),(1499057230629,0,13000082011,0.00,'123456',123456),(1500825221910,0,13000099999,0.00,'123456',123456),(1502639062900,0,13000082222,0.00,'123456',123456),(1502639424119,0,13000082333,0.00,'12345678',123456),(1507220582167,0,13000011111,0.00,'123456',123456),(1508072071492,0,13000071492,0.00,'123456',123456),(1508072105320,0,13000082008,0.00,'123456',123456),(1508072160401,0,13000082007,0.00,'123456',123456),(1508072202871,0,13000082031,0.00,'123456',123456),(1510495628760,0,13000082000,0.00,'123456',123456),(1511407581570,0,17610725819,0.00,'123123',123456),(1511761906715,0,13708222312,0.00,'123456',123456),(1511965911349,0,13000083333,0.00,'123456',123456),(1512387063078,0,15858585858,0.00,'123456',123456),(1512531601485,0,18210847727,0.00,'5816136',123456),(1514623064133,0,13000038725,0.00,'123456',123456),(1514625918255,0,13000038726,255.00,'123456',123456),(1514626163032,0,13000038727,4951.37,'123456',123456),(1514858422969,0,13000082041,164.00,'123456',123456),(1515565976140,0,15009257563,0.00,'qazwsx',123456),(1518218350585,0,18663689263,0.00,'cherish751220',123456),(1519778917280,0,15000536915,0.00,'123456',123456),(1520242280259,0,18917212395,0.00,'123456',123456),(1521274648008,0,18989491914,0.00,'123456',123456),(1521371722416,0,13000088889,0.00,'123456',123456),(1521374327542,0,13000056789,0.00,'123456',123456),(1523626157302,0,15603313259,0.00,'15603313259',123456),(1523935772553,0,15603313258,0.00,'15603313258',123456),(1524042900591,0,15222297100,0.00,'123456',123456),(1524298730523,0,17854217949,0.00,'123456',123456),(1524878698882,0,13917451840,0.00,'123456',123456),(1525677515673,0,13390935538,10000.00,'123456',123456),(1527495857924,0,13142033345,15.00,'qweasd',123456),(1527498229991,0,13142033342,0.00,'qweasd',123456),(1527821445610,0,13142033346,0.00,'qweasd',123456),(1528250827953,0,15122820115,0.00,'123456',123456),(1528254173621,0,15225556855,200.00,'lmt970208',123456),(1528255497767,0,15822798927,0.00,'111111',123456),(1528264711016,0,15620878773,0.00,'111111',123456),(1528339692804,0,15122541683,0.00,'568599',123456),(1528344980598,0,15188899797,0.00,'123456',123456),(1528356470041,0,15620878772,0.00,'111111',123456),(1531969715979,0,13800138000,10000.00,'123456',123456),(1532188114543,0,13977757845,20360.00,'123456',123456),(1532439021068,0,18779607703,0.00,'15879684798qq',123456),(1533835176109,0,13977757846,1700.00,'123456',123456),(1534926301956,0,17602120205,0.00,'123456',123456),(1538504264944,0,13000087654,0.00,'123456',123456),(1538504500574,0,13000087655,0.00,'123456',123456),(1538987952996,0,18662327672,0.00,'123456',123456),(1541583762603,0,18689846285,0.00,'jyt123456',123456),(1544276209348,0,13000087656,1050.00,'123456',123456),(1544503822963,0,13000082968,0.00,'123456',123456),(1545707526805,0,13533039558,0.00,'123456',123456),(1545895694424,0,13533039550,357.00,'123456',123456),(1547177436600,0,18980210241,0.00,'123456',123456),(1548068043688,0,17181595855,0.00,'0812563993gg',123456),(1553095415917,0,13185236871,0.00,'123456',123456),(1553527700480,0,13189758117,0.00,'3802489',123456),(1559129626356,0,13000000000,0.00,'123456',123456),(1560409157504,0,18030546471,0.00,'123456789',123456),(1561539257158,0,15870873323,0.00,'123qwe',123456),(1563605318975,0,13590330481,0.00,'123456',123456),(1570529238569,0,15669090286,0.00,'jiaojun2jj',123456),(1571629309520,0,17051059209,0.00,'123456',123456);
/*!40000 ALTER TABLE `apijson_privacy` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `apijson_user`
--
DROP TABLE IF EXISTS `apijson_user`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `apijson_user` (
`id` bigint(15) NOT NULL AUTO_INCREMENT COMMENT '唯一标识',
`sex` tinyint(2) NOT NULL DEFAULT '0' COMMENT '性别:\n0-男\n1-女',
`name` varchar(20) DEFAULT NULL COMMENT '名称',
`tag` varchar(45) DEFAULT NULL COMMENT '标签',
`head` varchar(300) DEFAULT 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png' COMMENT '头像url',
`contactIdList` json DEFAULT NULL COMMENT '联系人id列表',
`pictureList` json DEFAULT NULL COMMENT '照片列表',
`date` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建日期',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1571629309521 DEFAULT CHARSET=utf8 COMMENT='用户公开信息表。\n对安全要求高,不想泄漏真实名称。对外名称为 User';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `apijson_user`
--
LOCK TABLES `apijson_user` WRITE;
/*!40000 ALTER TABLE `apijson_user` DISABLE KEYS */;
INSERT INTO `apijson_user` VALUES (38710,0,'TommyLemon','Android&Java','http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000','[82003, 82005, 90814, 82004, 82009, 82002, 82044, 93793, 70793]','[\"http://static.oschina.net/uploads/user/1218/2437072_100.jpg?t=1461076033000\", \"http://common.cnblogs.com/images/icon_weibo_24.png\"]','2017-02-01 11:21:50'),(70793,0,'Strong','djdj','http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000','[38710, 82002]','[\"http://static.oschina.net/uploads/img/201604/22172508_eGDi.jpg\", \"http://static.oschina.net/uploads/img/201604/22172507_rrZ5.jpg\", \"https://camo.githubusercontent.com/788c0a7e11a\", \"https://camo.githubusercontent.com/f513f67\"]','2017-02-01 11:21:50'),(82001,0,'测试账号','Dev','https://static.oschina.net/uploads/user/19/39085_50.jpg','[93793]','[\"http://common.cnblogs.com/images/icon_weibo_24.png\"]','2017-02-01 11:21:50'),(82002,1,'Happy~','iOS','http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000','[82005, 82001, 38710]','[]','2017-02-01 11:21:50'),(82003,0,'Wechat',NULL,'http://common.cnblogs.com/images/wechat.png','[82001, 93793]','[]','2017-02-01 11:21:50'),(82004,0,'Tommy','fasef','http://static.oschina.net/uploads/user/1200/2400261_50.png?t=1439638750000','[]','[]','2017-02-01 11:21:50'),(82005,1,'Jan','AG','https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[82001, 38710, 1532439021068]','[]','2017-02-01 11:21:50'),(82006,1,'Meria',NULL,'http://static.oschina.net/uploads/user/998/1997902_50.jpg?t=1407806577000','[]','[]','2017-02-01 11:21:50'),(82009,0,'God',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[]','[]','2017-02-01 11:21:50'),(82012,0,'Steve','FEWE','http://static.oschina.net/uploads/user/1/3064_50.jpg?t=1449566001000','[82004, 82002, 93793]','[]','2017-02-01 11:21:50'),(82020,0,'ORANGE',NULL,'http://static.oschina.net/uploads/user/48/96289_50.jpg?t=1452751699000','[]','[]','2017-02-01 11:21:50'),(82021,1,'Tommy',NULL,'http://static.oschina.net/uploads/user/19/39085_50.jpg','[]','[]','2017-02-01 11:21:50'),(82022,0,'Internet',NULL,'http://static.oschina.net/uploads/user/1332/2664107_50.jpg?t=1457405500000','[]','[]','2017-02-01 11:21:50'),(82023,0,'No1',NULL,'http://static.oschina.net/uploads/user/1385/2770216_50.jpg?t=1464405516000','[]','[]','2017-02-01 11:21:50'),(82024,0,'Lemon',NULL,'http://static.oschina.net/uploads/user/427/855532_50.jpg?t=1435030876000','[]','[]','2017-02-01 11:21:50'),(82025,1,'Tommy',NULL,'http://static.oschina.net/uploads/user/629/1258821_50.jpg?t=1378063141000','[]','[]','2017-02-01 11:21:50'),(82026,0,'iOS',NULL,'http://static.oschina.net/uploads/user/1200/2400261_50.png?t=1439638750000','[]','[]','2017-02-01 11:21:50'),(82027,0,'Yong',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[]','[]','2017-02-01 11:21:50'),(82028,1,'gaeg',NULL,'http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000','[]','[]','2017-02-01 11:21:50'),(82029,0,'GASG',NULL,'http://common.cnblogs.com/images/wechat.png','[]','[]','2017-02-01 11:21:50'),(82030,1,'Fun',NULL,'http://static.oschina.net/uploads/user/998/1997902_50.jpg?t=1407806577000','[]','[]','2017-02-01 11:21:50'),(82031,0,'Lemon',NULL,'http://static.oschina.net/uploads/user/48/96331_50.jpg','[]','[]','2017-02-01 11:21:50'),(82032,0,'Stack','fasdg','http://static.oschina.net/uploads/user/1385/2770216_50.jpg?t=1464405516000','[]','[]','2017-02-01 11:21:50'),(82033,1,'GAS',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[]','[]','2017-02-01 11:21:50'),(82034,1,'Jump',NULL,'http://static.oschina.net/uploads/user/1332/2664107_50.jpg?t=1457405500000','[]','[]','2017-02-01 11:21:50'),(82035,1,'Tab',NULL,'http://static.oschina.net/uploads/user/629/1258821_50.jpg?t=1378063141000','[]','[]','2017-02-01 11:21:50'),(82036,0,'SAG',NULL,'http://static.oschina.net/uploads/user/1332/2664107_50.jpg?t=1457405500000','[]','[]','2017-02-01 11:21:50'),(82037,0,'Test',NULL,'http://static.oschina.net/uploads/user/1200/2400261_50.png?t=1439638750000','[]','[]','2017-02-01 11:21:50'),(82038,0,'Battle',NULL,'http://static.oschina.net/uploads/user/48/96289_50.jpg?t=1452751699000','[]','[]','2017-02-01 11:21:50'),(82039,1,'Everyday',NULL,'http://common.cnblogs.com/images/icon_weibo_24.png','[]','[]','2017-02-19 13:57:56'),(82040,1,'Dream',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[70793]','[]','2017-03-02 16:44:26'),(82041,0,'Holo',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[38710, 82001]','[]','2017-03-04 09:59:34'),(82042,1,'Why',NULL,'http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000','[]','[]','2017-03-04 10:04:33'),(82043,0,'Holiday',NULL,'http://static.oschina.net/uploads/user/998/1997902_50.jpg?t=1407806577000','[70793, 82006]','[]','2017-03-04 10:05:04'),(82044,1,'Love',NULL,'http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000','[82006]','[]','2017-03-04 10:20:27'),(82045,0,'Green',NULL,'http://common.cnblogs.com/images/wechat.png','[82001, 82002, 82003, 1485246481130]','[]','2017-03-04 10:22:39'),(82046,0,'Team',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[38710, 82002, 1485246481130]','[]','2017-03-04 15:11:17'),(82047,0,'Tesla',NULL,'http://common.cnblogs.com/images/wechat.png','[]','[]','2017-03-04 16:02:05'),(82048,0,'Moto',NULL,'http://static.oschina.net/uploads/user/48/96289_50.jpg?t=1452751699000','[]','[]','2017-03-04 16:04:02'),(82049,0,'ITMan',NULL,'http://static.oschina.net/uploads/user/629/1258821_50.jpg?t=1378063141000','[]','[]','2017-03-05 09:51:51'),(82050,0,'Parl',NULL,'http://static.oschina.net/uploads/user/998/1997902_50.jpg?t=1407806577000','[]','[]','2017-03-05 09:52:52'),(82051,0,'Girl',NULL,'http://static.oschina.net/uploads/user/1332/2664107_50.jpg?t=1457405500000','[]','[]','2017-03-05 09:53:37'),(82052,0,'Unbrella',NULL,'http://static.oschina.net/uploads/user/1385/2770216_50.jpg?t=1464405516000','[]','[]','2017-03-05 09:57:54'),(82053,0,'Alice',NULL,'http://common.cnblogs.com/images/wechat.png','[]','[]','2017-03-05 15:25:42'),(82054,0,'Harvey',NULL,'http://static.oschina.net/uploads/user/19/39085_50.jpg','[]','[]','2017-03-06 12:29:03'),(82055,1,'Solid',NULL,'http://static.oschina.net/uploads/user/19/39085_50.jpg','[38710, 82002]','[]','2017-03-11 15:04:00'),(82056,1,'IronMan',NULL,'http://static.oschina.net/uploads/user/48/96289_50.jpg?t=1452751699000','[]','[]','2017-03-11 15:32:25'),(82057,0,'NullPointerExeption',NULL,'http://static.oschina.net/uploads/user/1385/2770216_50.jpg?t=1464405516000','[]','[]','2017-03-12 06:01:23'),(82058,0,'StupidBird',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[82001, 82002]','[]','2017-03-12 11:23:04'),(82059,1,'He&She',NULL,'http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000','[]','[]','2017-03-19 14:49:15'),(82060,1,'Anyway~',NULL,'http://static.oschina.net/uploads/user/1/3064_50.jpg?t=1449566001000','[]','[]','2017-03-21 14:10:18'),(90814,0,'007',NULL,'http://static.oschina.net/uploads/user/51/102723_50.jpg?t=1449212504000','[]','[]','2017-02-01 11:21:50'),(93793,0,'Mike','GES','http://static.oschina.net/uploads/user/48/96331_50.jpg','[]','[]','2017-02-01 11:21:50'),(93794,0,'Lemon',NULL,'http://static.oschina.net/uploads/user/48/97721_50.jpg?t=1451544779000','[]','[]','2017-02-01 11:21:50'),(1490109742863,1,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[]','[]','2017-03-21 15:22:22'),(1490109845208,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[]','[]','2017-03-21 15:24:05'),(1490420651686,1,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[70793]','[]','2017-03-25 05:44:11'),(1490427139175,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[38710, 70793]','[]','2017-03-25 07:32:19'),(1490427577823,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[]','[]','2017-03-25 07:39:37'),(1490584952968,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[]','[]','2017-03-27 03:22:32'),(1490973670928,1,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[70793, 93793]','[]','2017-03-31 15:21:10'),(1492936169722,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[]','[]','2017-04-23 08:29:29'),(1493480142628,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[]','[]','2017-04-29 15:35:42'),(1493747512860,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[]','[]','2017-05-02 17:51:52'),(1493747777770,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[]','[]','2017-05-02 17:56:17'),(1493748594003,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[]','[]','2017-05-02 18:09:54'),(1493748615711,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[]','[]','2017-05-02 18:10:15'),(1493749090643,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[]','[]','2017-05-02 18:18:10'),(1493836043151,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[]','[]','2017-05-03 18:27:23'),(1493883110132,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[]','[]','2017-05-04 07:31:50'),(1493890214167,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[]','[]','2017-05-04 09:30:14'),(1493890303473,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[]','[]','2017-05-04 09:31:43'),(1493890303474,0,'Test Post',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[]','[]','2017-06-12 15:50:44'),(1497792972314,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[]','[]','2017-06-18 13:36:12'),(1499057230629,0,'一二三',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[]','[]','2017-07-03 04:47:10'),(1500825221910,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[]','[]','2017-07-23 15:53:41'),(1502639062900,0,'TESLA',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[]','[]','2017-08-13 15:44:22'),(1502639424119,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[]','[]','2017-08-13 15:50:24'),(1507220582167,0,'APIJSONUser','通过APIJSONAuto的图像化界面注册,按Enter而不是Register','https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[]','[]','2017-10-05 16:23:02'),(1508072071492,0,'赵钱孙李',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[]','[]','2017-10-15 12:54:31'),(1508072105320,1,'周吴郑王',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[]','[]','2017-10-15 12:55:05'),(1508072160401,0,'四五六',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[]','[]','2017-10-15 12:56:00'),(1508072202871,0,'七八九十',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[]','[]','2017-10-15 12:56:42'),(1510495628760,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[]','[]','2017-11-12 14:07:08'),(1511407581570,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[82002, 82003, 82005, 82006, 82021, 82023, 82036, 82033]','[]','2017-11-23 03:26:21'),(1511761906715,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[]','[]','2017-11-27 05:51:46'),(1511965911349,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[]','[]','2017-11-29 14:31:51'),(1512387063078,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[]','[]','2017-12-04 11:31:03'),(1512531601485,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[82001]','[]','2017-12-06 03:40:01'),(1514623064133,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png',NULL,NULL,'2017-12-30 08:37:44'),(1514625918255,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[82002, 93793]',NULL,'2017-12-30 09:25:18'),(1514626163032,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png',NULL,NULL,'2017-12-30 09:29:23'),(1514858422969,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[93793, 82056]',NULL,'2018-01-02 02:00:22'),(1515565976140,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[82003, 82021]',NULL,'2018-01-10 06:32:56'),(1518218350585,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png',NULL,NULL,'2018-02-09 23:19:10'),(1519778917280,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png',NULL,NULL,'2018-02-28 00:48:37'),(1520242280259,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[82002]',NULL,'2018-03-05 09:31:20'),(1521274648008,0,'Kiro',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png',NULL,NULL,'2018-03-17 08:17:28'),(1521371722416,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png',NULL,NULL,'2018-03-18 11:15:22'),(1521374327542,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png',NULL,NULL,'2018-03-18 11:58:47'),(1523626157302,1,'Charlie_brown','','https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[1523935772553, 93793]',NULL,'2018-04-13 13:29:17'),(1523935772553,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[1523626157302]',NULL,'2018-04-17 03:29:32'),(1524042900591,1,'哈哈哈',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[82002, 82003]',NULL,'2018-04-18 09:15:00'),(1524298730523,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[]',NULL,'2018-04-21 08:18:50'),(1524878698882,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png',NULL,NULL,'2018-04-28 01:24:58'),(1525677515673,0,'APIJSONUser',NULL,'http://static.oschina.net/uploads/user/48/96289_50.jpg?t=1452751699000','[82003, 82002, 38710]',NULL,'2018-05-07 07:18:35'),(1527495857924,0,'account',NULL,'https://ss3.bdstatic.com/70cFv8Sh_Q1YnxGkpoWK1HF6hhy/it/u=2510057322,2452415311&fm=27&gp=0.jpg','[1527821445610, 82012]',NULL,'2018-05-28 08:24:17'),(1527498229991,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[1499057230629]',NULL,'2018-05-28 09:03:50'),(1527821445610,0,'accountt',NULL,'http://static.oschina.net/uploads/user/1332/2664107_50.jpg?t=1457405500000','[1527495857924]',NULL,'2018-06-01 02:50:45'),(1528250827953,1,'limengt',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[1528264711016]',NULL,'2018-06-06 02:07:07'),(1528254173621,1,'A',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[82001, 38710]',NULL,'2018-06-06 03:02:53'),(1528255497767,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[82002]',NULL,'2018-06-06 03:24:57'),(1528264711016,0,'梦',NULL,'http://static.oschina.net/uploads/user/629/1258821_50.jpg?t=1378063141000','[82021, 1528250827953]',NULL,'2018-06-06 05:58:31'),(1528339692804,1,'568599',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[1528250827953, 1528264711016]',NULL,'2018-06-07 02:48:12'),(1528344980598,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png',NULL,NULL,'2018-06-07 04:16:20'),(1528356470041,0,'aaaa',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[1528339692804]',NULL,'2018-06-07 07:27:50'),(1531969715979,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[82002, 82003, 82005]',NULL,'2018-07-19 03:08:35'),(1532188114543,0,'宁旭',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png',NULL,NULL,'2018-07-21 15:48:34'),(1532439021068,0,'huxiaofan',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[38710, 82002, 82003, 82006, 82021]',NULL,'2018-07-24 13:30:21'),(1533835176109,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[1532188114543]',NULL,'2018-08-09 17:19:36'),(1534926301956,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[82003, 82002, 82025]',NULL,'2018-08-22 08:25:01'),(1538504264944,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png',NULL,NULL,'2018-10-02 18:17:44'),(1538504500574,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png',NULL,NULL,'2018-10-02 18:21:40'),(1538987952996,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png',NULL,NULL,'2018-10-08 08:39:13'),(1541583762603,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png',NULL,NULL,'2018-11-07 09:42:42'),(1544276209348,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[82002, 38710]',NULL,'2018-12-08 13:36:49'),(1544503822963,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[93793, 82003]',NULL,'2018-12-11 04:50:22'),(1545707526805,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png',NULL,NULL,'2018-12-25 03:12:06'),(1545895694424,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png',NULL,NULL,'2018-12-27 07:28:14'),(1547177436600,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png',NULL,NULL,'2019-01-11 03:30:36'),(1548068043688,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png',NULL,NULL,'2019-01-21 10:54:03'),(1553095415917,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[82001]',NULL,'2019-03-20 15:23:35'),(1553527700480,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png',NULL,NULL,'2019-03-25 15:28:20'),(1559129626356,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png','[1507220582167]',NULL,'2019-05-29 11:33:46'),(1560409157504,0,'上邪',NULL,'最好的时光',NULL,NULL,'2019-06-13 06:59:17'),(1561539257158,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png',NULL,NULL,'2019-06-26 08:54:17'),(1563605318975,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png',NULL,NULL,'2019-07-20 06:48:38'),(1570529238569,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png',NULL,NULL,'2019-10-08 10:07:18'),(1571629309520,0,'APIJSONUser',NULL,'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png',NULL,NULL,'2019-10-21 03:41:49');
/*!40000 ALTER TABLE `apijson_user` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2020-05-31 21:12:25