forked from Tencent/APIJSON
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpostgres_sys.sql
2936 lines (2794 loc) · 553 KB
/
postgres_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
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
create table "_Visit"
(
model varchar(15) not null,
id bigint not null,
operate smallint not null,
date timestamp(6) not null
);
comment on column "_Visit".operate is '1-增
2-删
3-改
4-查';
alter table "_Visit"
owner to postgres;
create table "Access"
(
id integer not null
constraint access_pk
primary key,
debug integer default 0 not null,
name varchar(50) default '实际表名,例如 apijson_user'::character varying not null,
alias text,
get text default '["UNKNOWN", "LOGIN", "CONTACT", "CIRCLE", "OWNER", "ADMIN"]'::text not null,
head text default '["UNKNOWN", "LOGIN", "CONTACT", "CIRCLE", "OWNER", "ADMIN"]'::text not null,
gets text default '["LOGIN", "CONTACT", "CIRCLE", "OWNER", "ADMIN"]'::text not null,
heads text default '["LOGIN", "CONTACT", "CIRCLE", "OWNER", "ADMIN"]'::text not null,
post text default '["OWNER", "ADMIN"]'::text not null,
put text default '["OWNER", "ADMIN"]'::text not null,
delete text default '["OWNER", "ADMIN"]'::text not null,
date text default CURRENT_TIMESTAMP not null
);
comment on column "Access".id is '唯一标识';
comment on column "Access".debug is '是否为调试表,只允许在开发环境使用,测试和线上环境禁用';
comment on column "Access".alias is '外部调用的表别名,例如 User';
comment on column "Access".get is '允许 get 的角色列表,例如 ["LOGIN", "CONTACT", "CIRCLE", "OWNER"]
用 JSON 类型不能设置默认值,反正权限对应的需求是明确的,也不需要自动转 JSONArray。
TODO: 直接 LOGIN,CONTACT,CIRCLE,OWNER 更简单,反正是开发内部用,不需要复杂查询。';
comment on column "Access".head is '允许 head 的角色列表,例如 ["LOGIN", "CONTACT", "CIRCLE", "OWNER"]';
comment on column "Access".gets is '允许 gets 的角色列表,例如 ["LOGIN", "CONTACT", "CIRCLE", "OWNER"]';
comment on column "Access".heads is '允许 heads 的角色列表,例如 ["LOGIN", "CONTACT", "CIRCLE", "OWNER"]';
comment on column "Access".post is '允许 post 的角色列表,例如 ["LOGIN", "CONTACT", "CIRCLE", "OWNER"]';
comment on column "Access".put is '允许 put 的角色列表,例如 ["LOGIN", "CONTACT", "CIRCLE", "OWNER"]';
comment on column "Access".delete is '允许 delete 的角色列表,例如 ["LOGIN", "CONTACT", "CIRCLE", "OWNER"]';
comment on column "Access".date is '创建时间';
alter table "Access"
owner to postgres;
create unique index access_alias_uindex
on "Access" (alias);
INSERT INTO sys."Access" (id, debug, name, alias, get, head, gets, heads, post, put, delete, date) VALUES (1, 1, 'Access', '', '["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');
INSERT INTO sys."Access" (id, debug, name, alias, get, head, gets, heads, post, put, delete, date) VALUES (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');
INSERT INTO sys."Access" (id, debug, name, alias, get, head, gets, heads, post, put, delete, date) VALUES (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');
INSERT INTO sys."Access" (id, debug, name, alias, get, head, gets, heads, post, put, delete, date) VALUES (4, 1, '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');
INSERT INTO sys."Access" (id, debug, name, alias, get, head, gets, heads, post, put, delete, date) VALUES (5, 1, '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');
INSERT INTO sys."Access" (id, debug, name, alias, get, head, gets, heads, post, put, delete, date) VALUES (6, 1, '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');
INSERT INTO sys."Access" (id, debug, name, alias, get, head, gets, heads, post, put, delete, date) VALUES (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');
INSERT INTO sys."Access" (id, debug, name, alias, get, head, gets, heads, post, put, delete, date) VALUES (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');
INSERT INTO sys."Access" (id, debug, name, alias, get, head, gets, heads, post, put, delete, date) VALUES (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');
INSERT INTO sys."Access" (id, debug, name, alias, get, head, gets, heads, post, put, delete, date) VALUES (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');
INSERT INTO sys."Access" (id, debug, name, alias, get, head, gets, heads, post, put, delete, date) VALUES (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');
INSERT INTO sys."Access" (id, debug, name, alias, get, head, gets, heads, post, put, delete, date) VALUES (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');
INSERT INTO sys."Access" (id, debug, name, alias, get, head, gets, heads, post, put, delete, date) VALUES (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');
INSERT INTO sys."Access" (id, debug, name, alias, get, head, gets, heads, post, put, delete, date) VALUES (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');
INSERT INTO sys."Access" (id, debug, name, alias, get, head, gets, heads, post, put, delete, date) VALUES (15, 0, 'apijson_privacy', 'Privacy', '[]', '[]', '["OWNER", "ADMIN"]', '["OWNER", "ADMIN"]', '["UNKNOWN","LOGIN","OWNER", "ADMIN"]', '["OWNER", "ADMIN"]', '["ADMIN"]', '2018-11-28 16:29:48');
INSERT INTO sys."Access" (id, debug, name, alias, get, head, gets, heads, post, put, delete, date) VALUES (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');
INSERT INTO sys."Access" (id, debug, name, alias, get, head, gets, heads, post, put, delete, date) VALUES (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');
create table apijson_privacy
(
id bigint not null
constraint apijson_privacy_pkey
primary key,
certified smallint not null,
phone varchar(64) not null,
balance numeric(10, 2) not null,
_password varchar(20) not null,
"_payPassword" varchar(32) not null
);
comment on table apijson_privacy is '用户隐私信息表。
对安全要求高,不想泄漏真实名称。对外名称为 Privacy';
comment on column apijson_privacy.id is '唯一标识';
comment on column apijson_privacy.certified is '已认证';
comment on column apijson_privacy.phone is '手机号,仅支持 11 位数的。不支持 +86 这种国家地区开头的。如果要支持就改为 VARCHAR(14)';
comment on column apijson_privacy.balance is '余额';
comment on column apijson_privacy._password is '登录密码';
comment on column apijson_privacy."_payPassword" is '支付密码';
alter table apijson_privacy
owner to postgres;
create index "phone_UNIQUE"
on apijson_privacy (phone);
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (38710, 1, '13000038710', 33376.00, 'apijson', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (70793, 0, '13000070793', 56000.00, 'apijson', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82001, 1, '13000082001', 98826.90, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82002, 1, '13000082002', 6817.23, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82003, 1, '13000082003', 2000.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82004, 0, '13000082004', 2000.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82005, 0, '13000082005', 1923.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82006, 0, '13000082006', 2000.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82009, 0, '13000082009', 2000.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82012, 0, '13000082012', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82020, 0, '12345678900', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82021, 0, '12345678901', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82022, 0, '12345678902', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82023, 0, '12345678903', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82024, 0, '12345678904', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82025, 0, '12345678905', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82026, 0, '12345678906', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82027, 0, '12345678907', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82028, 0, '12345678908', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82029, 0, '12345678909', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82030, 0, '12345678910', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82031, 0, '12345678911', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82032, 0, '12345678912', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82033, 0, '12345678913', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82034, 0, '12345678914', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82035, 0, '12345678915', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82036, 0, '12345678916', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82037, 0, '12345678917', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82038, 0, '12345678918', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82039, 0, '12345678919', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82040, 0, '13000082019', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82041, 0, '13000082015', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82042, 0, '13000082016', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82043, 0, '13000082017', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82044, 0, '13000082018', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82045, 0, '13000082020', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82046, 0, '13000082010', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82047, 0, '13000082021', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82048, 0, '13000038711', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82049, 0, '13000038712', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82050, 0, '13000038713', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82051, 0, '13000038714', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82052, 0, '13000038715', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82053, 0, '13000038720', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82054, 0, '13000038721', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82055, 0, '13000082030', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82056, 0, '13000082040', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82057, 0, '13000038730', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82058, 0, '13000038750', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82059, 0, '13000082033', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (82060, 0, '13000082050', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (90814, 1, '13000090814', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (93793, 1, '13000093793', 3000.00, 'apijson', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (93794, 0, '99999999999', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1490109742863, 0, '13000082100', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1490109845208, 0, '13000082101', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1490420651686, 0, '13000038716', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1490427139175, 0, '13000038717', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1490427577823, 0, '13000082102', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1490584952968, 0, '13000038790', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1490973670928, 0, '13000082051', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1492936169722, 0, '13000093794', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1493480142628, 0, '13000038888', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1493747512860, 0, '13000038777', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1493747777770, 0, '13000038778', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1493748594003, 0, '13000038779', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1493748615711, 0, '13000038780', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1493749090643, 0, '13000038781', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1493836043151, 0, '13000038999', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1493883110132, 0, '13000039999', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1493890214167, 0, '13000031000', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1493890303473, 0, '13000031001', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1493890303474, 0, '13000088888', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1497792972314, 0, '13000082111', 0.00, '654321', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1499057230629, 0, '13000082011', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1500825221910, 0, '13000099999', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1502639062900, 0, '13000082222', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1502639424119, 0, '13000082333', 0.00, '12345678', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1507220582167, 0, '13000011111', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1508072071492, 0, '13000071492', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1508072105320, 0, '13000082008', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1508072160401, 0, '13000082007', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1508072202871, 0, '13000082031', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1510495628760, 0, '13000082000', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1511407581570, 0, '17610725819', 0.00, '123123', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1511761906715, 0, '13708222312', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1511965911349, 0, '13000083333', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1512387063078, 0, '15858585858', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1512531601485, 0, '18210847727', 0.00, '5816136', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1514623064133, 0, '13000038725', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1514625918255, 0, '13000038726', 255.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1514626163032, 0, '13000038727', 4951.37, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1514858422969, 0, '13000082041', 164.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1515565976140, 0, '15009257563', 0.00, 'qazwsx', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1518218350585, 0, '18663689263', 0.00, 'cherish751220', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1519778917280, 0, '15000536915', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1520242280259, 0, '18917212395', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1521274648008, 0, '18989491914', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1521371722416, 0, '13000088889', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1521374327542, 0, '13000056789', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1523626157302, 0, '15603313259', 0.00, '15603313259', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1523935772553, 0, '15603313258', 0.00, '15603313258', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1524042900591, 0, '15222297100', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1524298730523, 0, '17854217949', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1524878698882, 0, '13917451840', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1525677515673, 0, '13390935538', 10000.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1527495857924, 0, '13142033345', 15.00, 'qweasd', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1527498229991, 0, '13142033342', 0.00, 'qweasd', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1527821445610, 0, '13142033346', 0.00, 'qweasd', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1528250827953, 0, '15122820115', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1528254173621, 0, '15225556855', 200.00, 'lmt970208', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1528255497767, 0, '15822798927', 0.00, '111111', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1528264711016, 0, '15620878773', 0.00, '111111', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1528339692804, 0, '15122541683', 0.00, '568599', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1528344980598, 0, '15188899797', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1528356470041, 0, '15620878772', 0.00, '111111', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1531969715979, 0, '13800138000', 10000.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1532188114543, 0, '13977757845', 20360.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1532439021068, 0, '18779607703', 0.00, '15879684798qq', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1533835176109, 0, '13977757846', 1700.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1534926301956, 0, '17602120205', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1538504264944, 0, '13000087654', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1538504500574, 0, '13000087655', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1538987952996, 0, '18662327672', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1541583762603, 0, '18689846285', 0.00, 'jyt123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1544276209348, 0, '13000087656', 1050.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1544503822963, 0, '13000082968', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1545707526805, 0, '13533039558', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1545895694424, 0, '13533039550', 357.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1547177436600, 0, '18980210241', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1548068043688, 0, '17181595855', 0.00, '0812563993gg', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1553095415917, 0, '13185236871', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1553527700480, 0, '13189758117', 0.00, '3802489', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1559129626356, 0, '13000000000', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1560409157504, 0, '18030546471', 0.00, '123456789', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1561539257158, 0, '15870873323', 0.00, '123qwe', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1563605318975, 0, '13590330481', 0.00, '123456', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1566064943195, 0, '13111182001', 0.00, '6733', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1566065271307, 0, '13111182002', 0.00, '6733', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1566065319823, 0, '13111182003', 0.00, '6733', '123456');
INSERT INTO sys.apijson_privacy (id, certified, phone, balance, _password, "_payPassword") VALUES (1566065621308, 0, '13111182008', 0.00, '6733', '123456');
create table apijson_user
(
id bigint not null
constraint apijson_user_pkey
primary key,
sex smallint not null,
name varchar(20),
tag varchar(45),
head varchar(300),
"contactIdList" jsonb,
"pictureList" jsonb,
date timestamp(6)
);
comment on table apijson_user is '用户公开信息表。
对安全要求高,不想泄漏真实名称。对外名称为 User';
comment on column apijson_user.id is '唯一标识';
comment on column apijson_user.sex is '性别:
0-男
1-女';
comment on column apijson_user.name is '名称';
comment on column apijson_user.tag is '标签';
comment on column apijson_user.head is '头像url';
comment on column apijson_user."contactIdList" is '联系人id列表';
comment on column apijson_user."pictureList" is '照片列表';
comment on column apijson_user.date is '创建日期';
alter table apijson_user
owner to postgres;
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) 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.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (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.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82001, 1, '测试账号', 'Dev', 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[82012, 82003, 93794, 82006, 38710, 82004]', '["http://common.cnblogs.com/images/icon_weibo_24.png"]', '2017-02-01 11:21:50.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (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.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82045, 0, 'Green', null, 'http://common.cnblogs.com/images/wechat.png', '[82001, 82002, 82003, 1485246481130]', '[]', '2017-03-04 10:22:39.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82005, 1, 'Jan', 'AG', 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[82001, 38710, 1532439021068]', '[]', '2017-02-01 11:21:50.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82046, 0, 'Team', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[38710, 82002, 1485246481130]', '[]', '2017-03-04 15:11:17.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1534926301956, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[82003, 82002, 82025]', null, '2018-08-22 08:25:01.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (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.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (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.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (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.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1531969715979, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[82002, 82003, 82005]', null, '2018-07-19 03:08:35.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82043, 0, 'Holiday', null, 'http://static.oschina.net/uploads/user/998/1997902_50.jpg?t=1407806577000', '[70793, 82006]', '[]', '2017-03-04 10:05:04.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1528264711016, 0, '梦', null, 'http://static.oschina.net/uploads/user/629/1258821_50.jpg?t=1378063141000', '[82021, 1528250827953]', null, '2018-06-06 05:58:31.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1544276209348, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[82002, 38710]', null, '2018-12-08 13:36:49.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82003, 1, 'Wechat', null, 'http://common.cnblogs.com/images/wechat.png', '[82001, 93793]', '[]', '2017-02-01 11:21:50.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82041, 0, 'Holo', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[38710, 82001]', '[]', '2017-03-04 09:59:34.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82058, 0, 'StupidBird', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[82001, 82002]', '[]', '2017-03-12 11:23:04.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82055, 1, 'Solid', null, 'http://static.oschina.net/uploads/user/19/39085_50.jpg', '[38710, 82002]', '[]', '2017-03-11 15:04:00.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (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.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1544503822963, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[93793, 82003]', null, '2018-12-11 04:50:22.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1514625918255, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[82002, 93793]', null, '2017-12-30 09:25:18.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (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.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1528339692804, 1, '568599', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[1528250827953, 1528264711016]', null, '2018-06-07 02:48:12.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1524042900591, 1, '哈哈哈', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[82002, 82003]', null, '2018-04-18 09:15:00.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1514858422969, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[93793, 82056]', null, '2018-01-02 02:00:22.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1490973670928, 1, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[70793, 93793]', '[]', '2017-03-31 15:21:10.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1490427139175, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[38710, 70793]', '[]', '2017-03-25 07:32:19.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1515565976140, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[82003, 82021]', null, '2018-01-10 06:32:56.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1523626157302, 1, 'Charlie_brown', '', 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[1523935772553, 93793]', null, '2018-04-13 13:29:17.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1528254173621, 1, 'A', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[82001, 38710]', null, '2018-06-06 03:02:53.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1523935772553, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[1523626157302]', null, '2018-04-17 03:29:32.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1512531601485, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[82001]', '[]', '2017-12-06 03:40:01.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1553095415917, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[82001]', null, '2019-03-20 15:23:35.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1528255497767, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[82002]', null, '2018-06-06 03:24:57.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1520242280259, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[82002]', null, '2018-03-05 09:31:20.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1528250827953, 1, 'limengt', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[1528264711016]', null, '2018-06-06 02:07:07.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1527821445610, 0, 'accountt', null, 'http://static.oschina.net/uploads/user/1332/2664107_50.jpg?t=1457405500000', '[1527495857924]', null, '2018-06-01 02:50:45.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82044, 1, 'Love', null, 'http://static.oschina.net/uploads/user/1174/2348263_50.png?t=1439773471000', '[82006]', '[]', '2017-03-04 10:20:27.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1527498229991, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[1499057230629]', null, '2018-05-28 09:03:50.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1528356470041, 0, 'aaaa', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[1528339692804]', null, '2018-06-07 07:27:50.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82040, 1, 'Dream', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[70793]', '[]', '2017-03-02 16:44:26.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1490420651686, 1, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[70793]', '[]', '2017-03-25 05:44:11.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1559129626356, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[1507220582167]', null, '2019-05-29 11:33:46.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1533835176109, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[1532188114543]', null, '2018-08-09 17:19:36.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1490109742863, 1, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[]', '[]', '2017-03-21 15:22:22.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1500825221910, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[]', '[]', '2017-07-23 15:53:41.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1493890214167, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[]', '[]', '2017-05-04 09:30:14.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1507220582167, 0, 'APIJSONUser', '通过APIJSONAuto的图像化界面注册,按Enter而不是Register', 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[]', '[]', '2017-10-05 16:23:02.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1497792972314, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[]', '[]', '2017-06-18 13:36:12.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1511761906715, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[]', '[]', '2017-11-27 05:51:46.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1524298730523, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[]', null, '2018-04-21 08:18:50.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1493747512860, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[]', '[]', '2017-05-02 17:51:52.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1493748615711, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[]', '[]', '2017-05-02 18:10:15.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1493480142628, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[]', '[]', '2017-04-29 15:35:42.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1499057230629, 0, '一二三', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[]', '[]', '2017-07-03 04:47:10.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1512387063078, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[]', '[]', '2017-12-04 11:31:03.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1511965911349, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[]', '[]', '2017-11-29 14:31:51.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1508072071492, 0, '赵钱孙李', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[]', '[]', '2017-10-15 12:54:31.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1493749090643, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[]', '[]', '2017-05-02 18:18:10.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1493748594003, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[]', '[]', '2017-05-02 18:09:54.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82004, 0, 'Tommy', 'fasef', 'http://static.oschina.net/uploads/user/1200/2400261_50.png?t=1439638750000', '[]', '[]', '2017-02-01 11:21:50.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82006, 1, 'Meria', null, 'http://static.oschina.net/uploads/user/998/1997902_50.jpg?t=1407806577000', '[]', '[]', '2017-02-01 11:21:50.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82009, 0, 'God', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[]', '[]', '2017-02-01 11:21:50.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (93793, 0, 'Mike', 'GES', 'http://static.oschina.net/uploads/user/48/96331_50.jpg', '[]', '[]', '2017-02-01 11:21:50.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (93794, 0, 'Lemon', null, 'http://static.oschina.net/uploads/user/48/97721_50.jpg?t=1451544779000', '[]', '[]', '2017-02-01 11:21:50.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82020, 0, 'ORANGE', null, 'http://static.oschina.net/uploads/user/48/96289_50.jpg?t=1452751699000', '[]', '[]', '2017-02-01 11:21:50.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82021, 1, 'Tommy', null, 'http://static.oschina.net/uploads/user/19/39085_50.jpg', '[]', '[]', '2017-02-01 11:21:50.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82022, 0, 'Internet', null, 'http://static.oschina.net/uploads/user/1332/2664107_50.jpg?t=1457405500000', '[]', '[]', '2017-02-01 11:21:50.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82023, 0, 'No1', null, 'http://static.oschina.net/uploads/user/1385/2770216_50.jpg?t=1464405516000', '[]', '[]', '2017-02-01 11:21:50.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1508072105320, 1, '周吴郑王', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[]', '[]', '2017-10-15 12:55:05.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82024, 0, 'Lemon', null, 'http://static.oschina.net/uploads/user/427/855532_50.jpg?t=1435030876000', '[]', '[]', '2017-02-01 11:21:50.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82025, 1, 'Tommy', null, 'http://static.oschina.net/uploads/user/629/1258821_50.jpg?t=1378063141000', '[]', '[]', '2017-02-01 11:21:50.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82026, 0, 'iOS', null, 'http://static.oschina.net/uploads/user/1200/2400261_50.png?t=1439638750000', '[]', '[]', '2017-02-01 11:21:50.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82027, 0, 'Yong', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[]', '[]', '2017-02-01 11:21:50.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82028, 1, 'gaeg', null, 'http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000', '[]', '[]', '2017-02-01 11:21:50.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82029, 0, 'GASG', null, 'http://common.cnblogs.com/images/wechat.png', '[]', '[]', '2017-02-01 11:21:50.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82030, 1, 'Fun', null, 'http://static.oschina.net/uploads/user/998/1997902_50.jpg?t=1407806577000', '[]', '[]', '2017-02-01 11:21:50.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82031, 0, 'Lemon', null, 'http://static.oschina.net/uploads/user/48/96331_50.jpg', '[]', '[]', '2017-02-01 11:21:50.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82032, 0, 'Stack', 'fasdg', 'http://static.oschina.net/uploads/user/1385/2770216_50.jpg?t=1464405516000', '[]', '[]', '2017-02-01 11:21:50.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82033, 1, 'GAS', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[]', '[]', '2017-02-01 11:21:50.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82034, 1, 'Jump', null, 'http://static.oschina.net/uploads/user/1332/2664107_50.jpg?t=1457405500000', '[]', '[]', '2017-02-01 11:21:50.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82035, 1, 'Tab', null, 'http://static.oschina.net/uploads/user/629/1258821_50.jpg?t=1378063141000', '[]', '[]', '2017-02-01 11:21:50.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82036, 0, 'SAG', null, 'http://static.oschina.net/uploads/user/1332/2664107_50.jpg?t=1457405500000', '[]', '[]', '2017-02-01 11:21:50.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1502639062900, 0, 'TESLA', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[]', '[]', '2017-08-13 15:44:22.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82037, 0, 'Test', null, 'http://static.oschina.net/uploads/user/1200/2400261_50.png?t=1439638750000', '[]', '[]', '2017-02-01 11:21:50.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82038, 0, 'Battle', null, 'http://static.oschina.net/uploads/user/48/96289_50.jpg?t=1452751699000', '[]', '[]', '2017-02-01 11:21:50.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1502639424119, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[]', '[]', '2017-08-13 15:50:24.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82039, 1, 'Everyday', null, 'http://common.cnblogs.com/images/icon_weibo_24.png', '[]', '[]', '2017-02-19 13:57:56.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1508072202871, 0, '七八九十', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[]', '[]', '2017-10-15 12:56:42.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82042, 1, 'Why', null, 'http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000', '[]', '[]', '2017-03-04 10:04:33.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82047, 0, 'Tesla', null, 'http://common.cnblogs.com/images/wechat.png', '[]', '[]', '2017-03-04 16:02:05.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82048, 0, 'Moto', null, 'http://static.oschina.net/uploads/user/48/96289_50.jpg?t=1452751699000', '[]', '[]', '2017-03-04 16:04:02.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82049, 0, 'ITMan', null, 'http://static.oschina.net/uploads/user/629/1258821_50.jpg?t=1378063141000', '[]', '[]', '2017-03-05 09:51:51.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82050, 0, 'Parl', null, 'http://static.oschina.net/uploads/user/998/1997902_50.jpg?t=1407806577000', '[]', '[]', '2017-03-05 09:52:52.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82051, 0, 'Girl', null, 'http://static.oschina.net/uploads/user/1332/2664107_50.jpg?t=1457405500000', '[]', '[]', '2017-03-05 09:53:37.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82052, 0, 'Unbrella', null, 'http://static.oschina.net/uploads/user/1385/2770216_50.jpg?t=1464405516000', '[]', '[]', '2017-03-05 09:57:54.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82053, 0, 'Alice', null, 'http://common.cnblogs.com/images/wechat.png', '[]', '[]', '2017-03-05 15:25:42.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82054, 0, 'Harvey', null, 'http://static.oschina.net/uploads/user/19/39085_50.jpg', '[]', '[]', '2017-03-06 12:29:03.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82056, 1, 'IronMan', null, 'http://static.oschina.net/uploads/user/48/96289_50.jpg?t=1452751699000', '[]', '[]', '2017-03-11 15:32:25.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1490584952968, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[]', '[]', '2017-03-27 03:22:32.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82057, 0, 'NullPointerExeption', null, 'http://static.oschina.net/uploads/user/1385/2770216_50.jpg?t=1464405516000', '[]', '[]', '2017-03-12 06:01:23.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82059, 1, 'He&She', null, 'http://static.oschina.net/uploads/user/585/1170143_50.jpg?t=1390226446000', '[]', '[]', '2017-03-19 14:49:15.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (82060, 1, 'Anyway~', null, 'http://static.oschina.net/uploads/user/1/3064_50.jpg?t=1449566001000', '[]', '[]', '2017-03-21 14:10:18.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1493836043151, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[]', '[]', '2017-05-03 18:27:23.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1508072160401, 0, '四五六', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[]', '[]', '2017-10-15 12:56:00.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (90814, 0, '007', null, 'http://static.oschina.net/uploads/user/51/102723_50.jpg?t=1449212504000', '[]', '[]', '2017-02-01 11:21:50.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1510495628760, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[]', '[]', '2017-11-12 14:07:08.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1490109845208, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[]', '[]', '2017-03-21 15:24:05.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1490427577823, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[]', '[]', '2017-03-25 07:39:37.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1493747777770, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[]', '[]', '2017-05-02 17:56:17.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1493890303473, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[]', '[]', '2017-05-04 09:31:43.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1493890303474, 0, 'Test Post', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[]', '[]', '2017-06-12 15:50:44.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1493883110132, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[]', '[]', '2017-05-04 07:31:50.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1492936169722, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', '[]', '[]', '2017-04-23 08:29:29.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1553527700480, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', null, null, '2019-03-25 15:28:20.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1566065271307, 0, 'new APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', null, null, '2019-08-17 18:08:04.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1566065621308, 0, 'new APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', null, null, '2019-08-17 18:13:55.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1563605318975, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', null, null, '2019-07-20 06:48:38.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1514623064133, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', null, null, '2017-12-30 08:37:44.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1561539257158, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', null, null, '2019-06-26 08:54:17.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1514626163032, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', null, null, '2017-12-30 09:29:23.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1545895694424, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', null, null, '2018-12-27 07:28:14.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1566064943195, 0, 'new APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', null, null, '2019-08-17 18:02:36.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1538504500574, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', null, null, '2018-10-02 18:21:40.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1538987952996, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', null, null, '2018-10-08 08:39:13.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1532188114543, 0, '宁旭', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', null, null, '2018-07-21 15:48:34.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1528344980598, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', null, null, '2018-06-07 04:16:20.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1560409157504, 0, '上邪', null, '最好的时光', null, null, '2019-06-13 06:59:17.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1524878698882, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', null, null, '2018-04-28 01:24:58.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1566065319823, 0, 'new APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', null, null, '2019-08-17 18:08:53.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1545707526805, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', null, null, '2018-12-25 03:12:06.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1519778917280, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', null, null, '2018-02-28 00:48:37.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1548068043688, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', null, null, '2019-01-21 10:54:03.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1541583762603, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', null, null, '2018-11-07 09:42:42.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1521371722416, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', null, null, '2018-03-18 11:15:22.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1547177436600, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', null, null, '2019-01-11 03:30:36.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1521274648008, 0, 'Kiro', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', null, null, '2018-03-17 08:17:28.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1538504264944, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', null, null, '2018-10-02 18:17:44.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1521374327542, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', null, null, '2018-03-18 11:58:47.000000');
INSERT INTO sys.apijson_user (id, sex, name, tag, head, "contactIdList", "pictureList", date) VALUES (1518218350585, 0, 'APIJSONUser', null, 'https://raw.githubusercontent.com/TommyLemon/StaticResources/master/APIJSON_Logo.png', null, null, '2018-02-09 23:19:10.000000');
create table "Comment"
(
id bigint not null
constraint "Comment_pkey"
primary key,
"toId" bigint default 0 not null,
"userId" bigint not null,
"momentId" bigint not null,
date timestamp(6),
content varchar(1000) not null
);
comment on table "Comment" is '评论';
comment on column "Comment".id is '唯一标识';
comment on column "Comment"."toId" is '被回复的id';
comment on column "Comment"."userId" is '评论人id';
comment on column "Comment"."momentId" is '动态id';
comment on column "Comment".date is '创建日期';
comment on column "Comment".content is '内容';
alter table "Comment"
owner to postgres;
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (4, 0, 38710, 470, '2017-02-01 11:20:50.000000', 'This is a Content...-4');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (13, 0, 82005, 58, '2017-02-01 11:20:50.000000', 'This is a Content...-13');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (22, 221, 82001, 470, '2017-02-01 11:20:50.000000', '测试修改评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (44, 0, 82003, 170, '2017-02-01 11:20:50.000000', 'This is a Content...-44');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (45, 0, 93793, 301, '2017-02-01 11:20:50.000000', 'This is a Content...-45');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (47, 4, 70793, 470, '2017-02-01 11:20:50.000000', 'This is a Content...-47');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (51, 45, 82003, 301, '2017-02-01 11:20:50.000000', 'This is a Content...-51');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (54, 0, 82004, 170, '2017-02-01 11:20:50.000000', 'This is a Content...-54');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (68, 0, 82005, 371, '2017-02-01 11:20:50.000000', 'This is a Content...-68');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (76, 45, 93793, 301, '2017-02-01 11:20:50.000000', 'This is a Content...-76');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (77, 13, 93793, 58, '2017-02-01 11:20:50.000000', 'This is a Content...-77');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (97, 13, 82006, 58, '2017-02-01 11:20:50.000000', 'This is a Content...-97');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (99, 44, 70793, 170, '2017-02-01 11:20:50.000000', 'This is a Content...-99');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (110, 0, 93793, 371, '2017-02-01 11:23:24.000000', 'This is a Content...-110');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (114, 0, 82001, 371, '2017-03-02 05:56:06.000000', 'This is a Content...-114');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (115, 0, 38710, 371, '2017-03-02 05:56:06.000000', 'This is a Content...-115');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (116, 0, 70793, 371, '2017-03-02 05:56:06.000000', 'This is a Content...-116');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (120, 0, 93793, 301, '2017-03-02 05:56:06.000000', 'This is a Content...-110');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (124, 0, 82001, 301, '2017-03-02 05:56:06.000000', 'This is a Content...-114');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (157, 0, 93793, 371, '2017-02-01 11:20:50.000000', 'This is a Content...-157');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (158, 0, 93793, 301, '2018-07-12 17:28:23.000000', 'This is a Content...-157');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (160, 0, 82001, 235, '2017-03-02 05:56:06.000000', 'This is a Content...-160');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (162, 0, 93793, 12, '2017-03-06 05:03:45.000000', 'This is a Content...-162');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (163, 0, 82001, 235, '2017-03-02 05:56:06.000000', 'This is a Content...-163');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (164, 0, 93793, 12, '2017-03-06 05:03:45.000000', 'This is a Content...-164');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (167, 0, 82001, 58, '2017-03-25 11:48:41.000000', 'Nice!');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (168, 1490442545077, 82001, 235, '2017-03-25 11:49:14.000000', '???');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (172, 162, 82001, 12, '2017-03-25 12:22:58.000000', 'OK');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (173, 0, 38710, 58, '2017-03-25 12:25:13.000000', 'Good');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (175, 0, 38710, 12, '2017-03-25 12:26:53.000000', 'Java is the best program language!');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (176, 166, 38710, 15, '2017-03-25 12:28:03.000000', 'thank you');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (178, 0, 38710, 511, '2017-03-25 12:30:55.000000', 'wbw');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (182, 110, 82001, 371, '2017-03-26 06:12:52.000000', 'hahaha');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (188, 97, 82001, 58, '2017-03-26 07:21:32.000000', '1646');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (190, 0, 82001, 58, '2017-03-26 07:22:13.000000', 'dbdj');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (206, 54, 82001, 170, '2017-03-29 03:04:23.000000', 'ejej');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (209, 13, 82001, 58, '2017-03-29 03:05:59.000000', 'hehj');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (300, 97, 82001, 58, '2017-03-29 03:06:07.000000', 'hj');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (301, 194, 82001, 235, '2017-03-29 03:06:24.000000', 'jj');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (4001, 0, 82001, 58, '2017-03-29 08:39:52.000000', 'I would like to say …');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490776944301, 0, 82001, 58, '2017-03-29 08:42:24.000000', 'hello');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490776966828, 173, 82001, 58, '2017-03-29 08:42:46.000000', 'me too');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490777905437, 0, 82001, 543, '2017-03-29 08:58:25.000000', 'rr');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490778122719, 175, 82001, 12, '2017-03-29 09:02:02.000000', 'Yeah! I think so!');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490778494751, 1490778122719, 82001, 12, '2017-03-29 09:08:14.000000', 'reply Android82001');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490778681337, 166, 82001, 12, '2017-03-29 09:11:21.000000', 'gg');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490780759866, 99, 82001, 170, '2017-03-29 09:45:59.000000', '99');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490781009548, 51, 82001, 301, '2017-03-29 09:50:09.000000', '3');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490781032005, 45, 82001, 301, '2017-03-29 09:50:32.000000', '93793');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490781817044, 209, 38710, 58, '2017-03-29 10:03:37.000000', '82001');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490781850893, 1490776966828, 38710, 58, '2017-03-29 10:04:10.000000', 'haha!');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490781857242, 190, 38710, 58, '2017-03-29 10:04:17.000000', 'nice');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490781865407, 1490781857242, 38710, 58, '2017-03-29 10:04:25.000000', 'wow');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490781899147, 197, 38710, 12, '2017-03-29 10:04:59.000000', 'kaka');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490794439561, 1490778681337, 82001, 12, '2017-03-29 13:33:59.000000', 'gg?');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490794610632, 172, 82001, 12, '2017-03-29 13:36:50.000000', 'All right');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490794937137, 1490794919957, 82001, 12, '2017-03-29 13:42:17.000000', 'All right ok ok');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490794953438, 1490794937137, 82001, 12, '2017-03-29 13:42:33.000000', 'All right ok ok ll');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490796241178, 0, 38710, 58, '2017-03-29 14:04:01.000000', 'Anything else?');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490796629591, 175, 38710, 12, '2017-03-29 14:10:29.000000', 'well');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490798710678, 110, 38710, 371, '2017-03-29 14:45:10.000000', '110');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490800971064, 175, 38710, 12, '2017-03-29 15:22:51.000000', 'I do');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490848396072, 175, 82001, 12, '2017-03-30 04:33:16.000000', 'Lemon');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490848581424, 166, 82001, 12, '2017-03-30 04:36:21.000000', '82001ejej');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490850764448, 162, 82001, 12, '2017-03-30 05:12:44.000000', '-162');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490850844016, 0, 82001, 12, '2017-03-30 05:14:04.000000', 'I like it');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490850876656, 1490800971064, 82001, 12, '2017-03-30 05:14:36.000000', 'I do so');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490854894566, 175, 82001, 12, '2017-03-30 06:21:34.000000', 'it does be a good lang');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490863443219, 1490850844016, 82002, 12, '2017-03-30 08:44:03.000000', 'me too!');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490863469638, 0, 82002, 15, '2017-03-30 08:44:29.000000', 'Just do it');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490863507114, 4, 82003, 470, '2017-03-30 08:45:07.000000', 'yes');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490863563124, 0, 82003, 704, '2017-03-30 08:46:03.000000', 'I want one');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490863651493, 0, 70793, 595, '2017-03-30 08:47:31.000000', 'wow');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490863661426, 1490780759866, 70793, 170, '2017-03-30 08:47:41.000000', '66');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490863676989, 0, 70793, 12, '2017-03-30 08:47:56.000000', 'Shy');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490863711703, 0, 70793, 511, '2017-03-30 08:48:31.000000', 'I hope I can join');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490863717947, 178, 70793, 511, '2017-03-30 08:48:37.000000', 'what?');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490863783276, 1490863711703, 93793, 511, '2017-03-30 08:49:43.000000', 'haha welcome');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490863903900, 0, 82006, 470, '2017-03-30 08:51:43.000000', 'SOGA');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490863915675, 0, 82006, 235, '2017-03-30 08:51:55.000000', 'Good boy');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490863938712, 0, 82006, 12, '2017-03-30 08:52:18.000000', 'Handsome!');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490863978239, 1490796241178, 82006, 58, '2017-03-30 08:52:58.000000', 'there still remains a question…');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490864016738, 0, 82006, 511, '2017-03-30 08:53:36.000000', 'I want to have a try!');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490864023700, 0, 82006, 543, '2017-03-30 08:53:43.000000', 'oops');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490864039264, 0, 82006, 551, '2017-03-30 08:53:59.000000', 'Wonderful!');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490864152008, 0, 82006, 58, '2017-03-30 08:55:52.000000', 'U R ugly( ´?` )');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490864254400, 1490863915675, 82044, 235, '2017-03-30 08:57:34.000000', 'And I have no idea');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490864276824, 0, 82044, 12, '2017-03-30 08:57:56.000000', 'Oh my God!');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490864292184, 1490864152008, 82044, 58, '2017-03-30 08:58:12.000000', 'haha!');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490864379424, 1490863938712, 82001, 12, '2017-03-30 08:59:39.000000', 'Thank you~');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490864400210, 1490864276824, 82001, 12, '2017-03-30 09:00:00.000000', 'Amazing, isnt it?');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490874908570, 1490864023700, 82055, 543, '2017-03-30 11:55:08.000000', 'yeah');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490874930994, 1490777905437, 82055, 543, '2017-03-30 11:55:30.000000', 'yy');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490874968779, 0, 82055, 12, '2017-03-30 11:56:08.000000', 'I love it');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490875033494, 0, 82055, 301, '2017-03-30 11:57:13.000000', 'More Comments');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490875040761, 158, 82055, 301, '2017-03-30 11:57:20.000000', '157');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490875046704, 120, 82055, 301, '2017-03-30 11:57:26.000000', '110');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490875660259, 1490863469638, 82055, 15, '2017-03-30 12:07:40.000000', 'I prove wht you said(??????)');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490879678127, 0, 82001, 543, '2017-03-30 13:14:38.000000', 'Baby you are a firework!');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490973736662, 1490973715568, 70793, 170, '2017-03-31 15:22:16.000000', 'Hello, I am a fresh man');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1490973890875, 1490864039264, 93793, 551, '2017-03-31 15:24:50.000000', 'While I donot think so…');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1491014830404, 1490864016738, 82001, 511, '2017-04-01 02:47:10.000000', 'Have a nice day!');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1491119615611, 1490864023700, 82001, 543, '2017-04-02 07:53:35.000000', '$$');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1491119670185, 68, 82001, 371, '2017-04-02 07:54:30.000000', 'Leave a word');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1491119695580, 0, 82001, 371, '2017-04-02 07:54:55.000000', 'leave a word');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1491130701902, 0, 38710, 511, '2017-04-02 10:58:21.000000', 'Thanks for your supports (-^?^-)');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1491209763162, 0, 82001, 1491200468898, '2017-04-03 08:56:03.000000', 'How do you do');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1491277552385, 0, 82001, 58, '2017-04-04 03:45:52.000000', 'Seven');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1491312438951, 1490863651493, 82001, 595, '2017-04-04 13:27:18.000000', 'WaKaKa!');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1491709064513, 0, 82001, 551, '2017-04-09 03:37:44.000000', 'soga');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1491740899179, 0, 82001, 470, '2017-04-09 12:28:19.000000', 'www');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1491798370749, 0, 82002, 551, '2017-04-10 04:26:10.000000', 'Nice!');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1491798499667, 115, 82002, 371, '2017-04-10 04:28:19.000000', 'I do not understand…');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1491830543193, 0, 82001, 170, '2017-04-10 13:22:23.000000', 'What is the hell?');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1492932228287, 1491209763162, 38710, 1491200468898, '2017-04-23 07:23:48.000000', 'fine,thanks');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1493094307810, 0, 82001, 551, '2017-04-25 04:25:04.000000', '删除或修改数据请先创建,不要动原来的,谢谢');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1493094307910, 0, 82001, 551, '2017-04-25 04:26:04.000000', '用POST新增数据');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1493186363132, 1490850764448, 82001, 12, '2017-04-26 05:59:23.000000', 'sndnd');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1502632433970, 0, 82002, 1493835799335, '2017-08-13 13:53:53.000000', 'just have fun!');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1508053783278, 0, 82001, 1508053762227, '2017-10-15 07:49:43.000000', '可以的');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1508072695833, 0, 82003, 1508072633830, '2017-10-15 13:04:55.000000', '心疼地抱住自己(๑´ㅂ`๑)');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1508227456407, 0, 82001, 15, '2017-10-17 08:04:16.000000', 'hsh');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1508227498578, 1491798370749, 82001, 551, '2017-10-17 08:04:58.000000', 'g');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1508462026394, 1490850844016, 82001, 12, '2017-10-20 01:13:46.000000', '欧');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1508492585904, 1508462026394, 82001, 12, '2017-10-20 09:43:05.000000', 'my god');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1509003045509, 0, 82001, 1508072633830, '2017-10-26 07:30:45.000000', 'hhh');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1509346549158, 0, 82001, 170, '2017-10-30 06:55:49.000000', '呵呵');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1509346556395, 0, 82001, 170, '2017-10-30 06:55:56.000000', '测试');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1509346606036, 0, 82001, 15, '2017-10-30 06:56:46.000000', '测');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1509518079106, 0, 82001, 1508073178489, '2017-11-01 06:34:39.000000', '哦哦哦');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1510795816462, 162, 82001, 12, '2017-11-16 01:30:16.000000', '赞');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1510795933629, 0, 82001, 1508073178489, '2017-11-16 01:32:13.000000', 'cc');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1510813284894, 0, 82001, 12, '2017-11-16 06:21:24.000000', 'asdasdasdas');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1510813295700, 162, 82001, 12, '2017-11-16 06:21:35.000000', 'adsdasdasdasd');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1511374269759, 99, 82001, 170, '2017-11-22 18:11:09.000000', '记录里');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1511374274194, 0, 82001, 170, '2017-11-22 18:11:14.000000', '哦哦哦');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1511407695342, 0, 1511407581570, 371, '2017-11-23 03:28:15.000000', '好的');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1511407702981, 157, 1511407581570, 371, '2017-11-23 03:28:22.000000', '你好');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1511878024415, 0, 1511761906715, 12, '2017-11-28 14:07:04.000000', '你今年');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1511878031610, 1511878024415, 1511761906715, 12, '2017-11-28 14:07:11.000000', '不鸟你');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1512035094555, 0, 82001, 12, '2017-11-30 09:44:54.000000', '呵呵呵');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1512035117021, 0, 82001, 32, '2017-11-30 09:45:17.000000', '图片看不了啊');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1512039030970, 1512035117021, 82001, 32, '2017-11-30 10:50:30.000000', '一般九宫格图片都是压缩图,分辨率在300*300左右,加载很快,点击放大后才是原图,1080P左右');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1512531859019, 0, 1512531601485, 1512314438990, '2017-12-06 03:44:19.000000', '666');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1512533520832, 1512531859019, 38710, 1512314438990, '2017-12-06 04:12:00.000000', '嘿嘿');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1513656045399, 0, 82001, 1508072633830, '2017-12-19 04:00:45.000000', '444444');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1514425796195, 0, 82001, 1513094436910, '2017-12-28 01:49:56.000000', '一起');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1514473034425, 1514425796195, 93793, 1513094436910, '2017-12-28 14:57:14.000000', '干啥?');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1514478784653, 0, 82001, 1513094436910, '2017-12-28 16:33:04.000000', 'bug很多');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1514506206319, 1514478784653, 38710, 1513094436910, '2017-12-29 00:10:06.000000', '碰到哪些了呢?欢迎指出,尽快解决^_^');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1514617131036, 0, 82005, 1513094436910, '2017-12-30 06:58:51.000000', '口子');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1514858592813, 0, 82001, 1514858533480, '2018-01-02 02:03:12.000000', '铁人');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1514858640958, 0, 38710, 1514858533480, '2018-01-02 02:04:00.000000', '斯塔克工业');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1514858707767, 0, 70793, 1514858533480, '2018-01-02 02:05:07.000000', '壕友乎?');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1514960713300, 0, 82001, 1513094436910, '2018-01-03 06:25:13.000000', '1');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1514960744185, 1512531859019, 82001, 1512314438990, '2018-01-03 06:25:44.000000', '哇');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1515057852156, 0, 82001, 58, '2018-01-04 09:24:12.000000', '你说');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1515057857464, 0, 82001, 58, '2018-01-04 09:24:17.000000', '你说');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1515057861094, 0, 82001, 58, '2018-01-04 09:24:21.000000', '蓉蓉');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1515057864174, 1515057857464, 82001, 58, '2018-01-04 09:24:24.000000', '哦轻松');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1515057869554, 0, 82001, 58, '2018-01-04 09:24:29.000000', ',王者荣耀');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1515313792063, 162, 82001, 12, '2018-01-07 08:29:52.000000', 'you');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1515313823155, 164, 82001, 12, '2018-01-07 08:30:23.000000', 'you');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1516190557098, 0, 82001, 1513094436910, '2018-01-17 12:02:37.000000', '哦婆婆');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1516629533520, 0, 82001, 1508072633830, '2018-01-22 13:58:53.000000', '小臭臭');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1516686985310, 0, 82001, 1516086423441, '2018-01-23 05:56:25.000000', 'hologram');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1516687072270, 1516629533520, 82001, 1508072633830, '2018-01-23 05:57:52.000000', '咯我就');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1516687437251, 1516686985310, 82001, 1516086423441, '2018-01-23 06:03:57.000000', '你家里好哦');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1516691119239, 1516686985310, 38710, 1516086423441, '2018-01-23 07:05:19.000000', '我喜欢Hololens嘿嘿');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1516780129884, 0, 82001, 1516086423441, '2018-01-24 07:48:49.000000', 'aaa');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1516783920998, 0, 82001, 1513094436910, '2018-01-24 08:52:00.000000', '这个是实时的吗');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1516785657724, 0, 82001, 1516086423441, '2018-01-24 09:20:57.000000', 'hj');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1516805226757, 1516785657724, 38710, 1516086423441, '2018-01-24 14:47:06.000000', '滑稽?');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1516805340593, 1516783920998, 38710, 1513094436910, '2018-01-24 14:49:00.000000', '看怎么定义 实时 。这个是仿微信朋友圈列表和QQ空间说说详情,在线同步的,但没做推送,所以不是QQ微信聊天那种即时通讯。');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1516843720270, 1516780129884, 82001, 1516086423441, '2018-01-25 01:28:40.000000', 'ghj');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1516862537978, 1515057869554, 70793, 58, '2018-01-25 06:42:17.000000', '绝地逃亡吃鸡');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1516931850067, 0, 82001, 1516086423441, '2018-01-26 01:57:30.000000', '1111111111111');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1516951734010, 1514506206319, 82001, 1513094436910, '2018-01-26 07:28:54.000000', '火锅');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1516951754620, 0, 82001, 1513094436910, '2018-01-26 07:29:14.000000', '凤飞飞刚刚好');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1516951826863, 0, 82001, 170, '2018-01-26 07:30:26.000000', '黑珍珠');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1517193267472, 1513656045399, 82001, 1508072633830, '2018-01-29 02:34:27.000000', '1');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1517193278459, 0, 82001, 1508072633830, '2018-01-29 02:34:38.000000', '112');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1517229342303, 0, 82001, 1516086423441, '2018-01-29 12:35:42.000000', '几号抢的');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1517234768450, 1517229342303, 93793, 1516086423441, '2018-01-29 14:06:08.000000', '9号');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1517303775429, 1490863903900, 82001, 470, '2018-01-30 09:16:15.000000', '???');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1517375165233, 0, 82001, 1508053762227, '2018-01-31 05:06:05.000000', '666');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1517730034960, 0, 82001, 170, '2018-02-04 07:40:34.000000', '陌陌陌陌');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1518365470893, 44, 82001, 170, '2018-02-11 16:11:10.000000', '野蜂飞舞');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1518614899681, 0, 82001, 301, '2018-02-14 13:28:19.000000', 'https://goo.gl/search/JJB+Sports
JJB Sports,');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1519719341810, 0, 82001, 1516086423441, '2018-02-27 08:15:41.000000', '我也想抢一张');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1519793574249, 1519719341810, 93793, 1516086423441, '2018-02-28 04:52:54.000000', '哈哈,春运都过了啊');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1519813825959, 0, 82001, 1516086423441, '2018-02-28 10:30:25.000000', '距P民');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1519974842508, 0, 82001, 1516086423441, '2018-03-02 07:14:02.000000', '1111');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1519974868848, 1516691119239, 82001, 1516086423441, '2018-03-02 07:14:28.000000', '1111');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1519979533242, 0, 82001, 1508072633830, '2018-03-02 08:32:13.000000', 'hj');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1520231250819, 0, 82001, 12, '2018-03-05 06:27:30.000000', '浑身难受呢');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1520264640815, 0, 70793, 1520242333325, '2018-03-05 15:44:00.000000', '兰博基尼');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1520330788006, 0, 1520242280259, 1514017444961, '2018-03-06 10:06:28.000000', '八组');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1520578883309, 0, 82001, 12, '2018-03-09 07:01:23.000000', '我用流量');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1520699466219, 1520578883309, 82001, 12, '2018-03-10 16:31:06.000000', '壕');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1522074343188, 1513656045399, 82001, 1508072633830, '2018-03-26 14:25:43.000000', 'rrrrr');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1522074360206, 1519979533242, 82001, 1508072633830, '2018-03-26 14:26:00.000000', 'tttt');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1522657767636, 120, 82001, 301, '2018-04-02 08:29:27.000000', '云画');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1522741138316, 1517193278459, 82001, 1508072633830, '2018-04-03 07:38:58.000000', '哦哦哦');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1522986959852, 1508072695833, 82001, 1508072633830, '2018-04-06 03:55:59.000000', '!????');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1523936378484, 0, 1523935772553, 1523936332614, '2018-04-17 03:39:38.000000', '不错不错哦');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1524032180807, 1519719341810, 82001, 1516086423441, '2018-04-18 06:16:20.000000', '你好啊');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1524032244441, 1519974842508, 82001, 1516086423441, '2018-04-18 06:17:24.000000', '干嘛,单身吗?');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1524032255755, 1519974842508, 82001, 1516086423441, '2018-04-18 06:17:35.000000', '单身到底吗?');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1524032299622, 0, 82001, 1516086423441, '2018-04-18 06:18:19.000000', '别给我得怂');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1524032305810, 1524032299622, 82001, 1516086423441, '2018-04-18 06:18:25.000000', '你好');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1524178495587, 0, 1524042900591, 1524178455305, '2018-04-19 22:54:55.000000', '嘻嘻');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1524178500568, 1524178495587, 1524042900591, 1524178455305, '2018-04-19 22:55:00.000000', '哈哈哈');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1524190367904, 0, 38710, 1524178455305, '2018-04-20 02:12:47.000000', '你头像用的是本地的路径,只有你能看到,别人看不到哦,可以换一个url');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1524190412418, 1524190367904, 38710, 1524178455305, '2018-04-20 02:13:32.000000', '我的资料>编辑>改下备注');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1524190941111, 1524032244441, 82003, 1516086423441, '2018-04-20 02:22:21.000000', '单身约吗?');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1524190981549, 1522657767636, 82003, 301, '2018-04-20 02:23:01.000000', '这个6');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1524191012552, 0, 82003, 1524178455305, '2018-04-20 02:23:32.000000', '早上好小姐姐');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1524214012015, 1524190367904, 1524042900591, 1524178455305, '2018-04-20 08:46:52.000000', '怎么换url');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1524235902970, 1524214012015, 82003, 1524178455305, '2018-04-20 14:51:42.000000', '在我的资料界面编辑备注');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1524297798490, 0, 82001, 1513094436910, '2018-04-21 08:03:18.000000', 'gg');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1524461430874, 1519979533242, 82001, 1508072633830, '2018-04-23 05:30:30.000000', '哦哦哦');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1524461436914, 0, 82001, 1508072633830, '2018-04-23 05:30:36.000000', '莫');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1524461441914, 0, 82001, 1508072633830, '2018-04-23 05:30:41.000000', '默默');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1524488068926, 1524178500568, 82001, 1524178455305, '2018-04-23 12:54:28.000000', '哦哦哦');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1524582671132, 1524461441914, 82003, 1508072633830, '2018-04-24 15:11:11.000000', '陌陌');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1524582716289, 1524461441914, 70793, 1508072633830, '2018-04-24 15:11:56.000000', '脉脉');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1524798402799, 0, 1523626157302, 1524178455305, '2018-04-27 03:06:42.000000', '能不能把本地的图片传到服务器,这样大家都能看到了,用url换头像不太习惯');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1524799118232, 0, 1523626157302, 1512314438990, '2018-04-27 03:18:38.000000', '这些图片是怎么发上去的呢?我发动态只有默认的两张图');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1524843908458, 1524799118232, 82001, 1512314438990, '2018-04-27 15:45:08.000000', '在HttpRequest.addMoment中加的,因为APIJSON的Server Demo没做图片存储,所以目前只能自己传图片的url,可以百度图片上找哈');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1524844181029, 1524798402799, 82001, 1524178455305, '2018-04-27 15:49:41.000000', '确实有这样的问题,但这个Demo仅供展示APIJSON的接口数据增删改查的能力,又拍云,七牛等平台又需要对接及付费,所以Demo暂时不提供哈,需要的话可以自己搞。建议先把图片上传到又拍云等平台,拿回url再传到自己的服务器^_^');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1524844222775, 1524798402799, 82001, 1524178455305, '2018-04-27 15:50:22.000000', '目前也可以百度一张图,把对应的url传上去,大家就都能看到了哈哈');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1525658333654, 0, 82001, 1513094436910, '2018-05-07 01:58:53.000000', 'q');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1527821844576, 0, 1527821445610, 1527821296110, '2018-06-01 02:57:24.000000', '好不好用啊');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1527821876802, 1527821844576, 1527495857924, 1527821296110, '2018-06-01 02:57:56.000000', '当然好用啊');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1527837906576, 0, 38710, 1527830331780, '2018-06-01 07:25:06.000000', '哇,好漂亮');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1527837965006, 0, 82002, 1527830474378, '2018-06-01 07:26:05.000000', '像平板电脑哈哈');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1527862540820, 0, 1527495857924, 1527830331780, '2018-06-01 14:15:40.000000', '谢谢你');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1527862609352, 1527837965006, 1527495857924, 1527830474378, '2018-06-01 14:16:49.000000', 'ㄟ(≧◇≦)ㄏ');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1528105592852, 0, 82001, 1516086423441, '2018-06-04 09:46:32.000000', 'aaaaa');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1528250648974, 0, 82001, 1523936332614, '2018-06-06 02:04:08.000000', 'hshdv');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1528270188205, 0, 1528250827953, 1527830474378, '2018-06-06 07:29:48.000000', '这个图片是怎么发出来的啊,我发动态就只是那两张默认图片');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1528278187969, 0, 82001, 470, '2018-06-06 09:43:07.000000', '啊啊啊啊');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1528289446172, 0, 82001, 1528269988360, '2018-06-06 12:50:46.000000', '因为没做前端上传和后端保存图片的功能,APIJSONApp主要是用来展示APIJSON的自动化接口的');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1528289580140, 0, 38710, 1528274037224, '2018-06-06 12:53:00.000000', '这两张图片的url错了哦,都是网页url,所以小图加载不出来,只能点击后用WebView查看');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1528327885509, 1528289580140, 1528250827953, 1528274037224, '2018-06-06 23:31:25.000000', '噢噢,没想到你能这么快回复,谢谢');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1528333168328, 0, 82001, 1514017444961, '2018-06-07 00:59:28.000000', 'zj');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1528333174811, 0, 82001, 1514017444961, '2018-06-07 00:59:34.000000', 'xj');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1528393204569, 1528270188205, 38710, 1527830474378, '2018-06-07 17:40:04.000000', '把接口里的pictureList的值改下,里面包含图片url');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1528463152459, 1528463135762, 1528339692804, 1528462217322, '2018-06-08 13:05:52.000000', '我想去');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1528463165903, 0, 1528339692804, 1528462217322, '2018-06-08 13:06:05.000000', '我想去');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1528516951218, 0, 82001, 1528462217322, '2018-06-09 04:02:31.000000', '这里能约到小姐姐算我输୧(๑•̀⌄•́๑)૭');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1528554476310, 0, 82001, 1516086423441, '2018-06-09 14:27:56.000000', 'thS');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1528676480604, 0, 1528339692804, 1528356421201, '2018-06-11 00:21:20.000000', 'nihshs');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1528677257985, 0, 1528339692804, 1528676875139, '2018-06-11 00:34:17.000000', 'aaa');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1528679814166, 0, 1528339692804, 1528676875139, '2018-06-11 01:16:54.000000', '12');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1528681265496, 1528516951218, 1528339692804, 1528462217322, '2018-06-11 01:41:05.000000', '你输了有什么惩罚吗?');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1528698907535, 0, 82001, 1516086423441, '2018-06-11 06:35:07.000000', 'yhbv');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1528703971675, 1528681265496, 82001, 1528462217322, '2018-06-11 07:59:31.000000', '一起陪小姐姐出游*。٩(ˊωˋ*)و✧');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1528799506317, 1516805340593, 82001, 1513094436910, '2018-06-12 10:31:46.000000', '摩恩');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1528972547638, 0, 82001, 1528462217322, '2018-06-14 10:35:47.000000', '古古怪怪');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1528972555336, 0, 82001, 1528462217322, '2018-06-14 10:35:55.000000', '合计怕v就怕vi');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1529730035521, 0, 82001, 1527830331780, '2018-06-23 05:00:35.000000', '还有别的吗?');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1530528524447, 0, 38710, 1528269988360, '2018-07-02 10:48:44.000000', '所以HttpRequest里写死了两张图片url,你可以改下');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1531063660028, 0, 82003, 1531062713966, '2018-07-08 15:27:40.000000', '这是哪里啊?我也想去');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1531412238453, 0, 82001, 1528356378455, '2018-07-12 16:17:18.000000', '去啊');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1531412264667, 0, 82003, 1528356378455, '2018-07-12 16:17:44.000000', '去哪呢?');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1531887938362, 1531063660028, 82001, 1531062713966, '2018-07-18 04:25:38.000000', '是呀');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1531894411487, 0, 82001, 1520242333325, '2018-07-18 06:13:31.000000', 'sssx');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1531983163150, 0, 1531969715979, 1531969818357, '2018-07-19 06:52:43.000000', 'http://q18idc.com');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1532057419100, 0, 38710, 1531969818357, '2018-07-20 03:30:19.000000', '可以加上标题哦');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1533008631299, 1532057419100, 82001, 1531969818357, '2018-07-31 03:43:51.000000', '加上');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1533120405110, 1516780129884, 82001, 1516086423441, '2018-08-01 10:46:45.000000', 'eeeeee');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1533120420498, 1528105592852, 82001, 1516086423441, '2018-08-01 10:47:00.000000', 'eeeeeee');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1533186909764, 0, 82001, 1531969818357, '2018-08-02 05:15:09.000000', 'hello');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1533187733941, 0, 82001, 1508072633830, '2018-08-02 05:28:53.000000', '好好');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1533188056603, 1531887938362, 82001, 1531062713966, '2018-08-02 05:34:16.000000', '顺带');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1533195207026, 0, 82001, 1531062713966, '2018-08-02 07:33:27.000000', 'JJ');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1533202426013, 1533186909764, 82003, 1531969818357, '2018-08-02 09:33:46.000000', 'world');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1533202917743, 1533186909764, 82001, 1531969818357, '2018-08-02 09:41:57.000000', '00');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1533629063261, 0, 82001, 1531969818357, '2018-08-07 08:04:23.000000', '大鸡鸡');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1533631893738, 0, 82001, 1531969818357, '2018-08-07 08:51:33.000000', '哈哈哈哈哈哈');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1533809879340, 1533186909764, 82001, 1531969818357, '2018-08-09 10:17:59.000000', '434');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1533889646344, 0, 82001, 1508072491570, '2018-08-10 08:27:26.000000', '11111111');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1533902815448, 0, 82001, 1531969818357, '2018-08-10 12:06:55.000000', '很不要吃');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1533902902749, 0, 82001, 1531969818357, '2018-08-10 12:08:22.000000', '性能还可以');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1534053913157, 1524190941111, 1508072160401, 1516086423441, '2018-08-12 06:05:13.000000', '怎么约?');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1534128014211, 0, 82001, 1520242333325, '2018-08-13 02:40:14.000000', 'zxxx');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1534412022857, 0, 82001, 1531969818357, '2018-08-16 09:33:42.000000', 'dgf');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1534684074665, 1531983163150, 82001, 1531969818357, '2018-08-19 13:07:54.000000', 'ggggg');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1534684209052, 110, 82001, 371, '2018-08-19 13:10:09.000000', '44444444444444444444444444');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1534926143012, 0, 82001, 1508053762227, '2018-08-22 08:22:23.000000', '治标不治本在不在不在不');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1534926149638, 1517375165233, 82001, 1508053762227, '2018-08-22 08:22:29.000000', '把标准版申报表上班设备');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1534992151350, 0, 82001, 1516086423441, '2018-08-23 02:42:31.000000', '你咋不');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1535279823332, 0, 82001, 1520242333325, '2018-08-26 10:37:03.000000', '斤斤计较');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1535279827983, 0, 82001, 1520242333325, '2018-08-26 10:37:07.000000', '斤斤计较');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1535598334136, 1534992151350, 82003, 1516086423441, '2018-08-30 03:05:34.000000', '啥?');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1535600352436, 0, 82001, 1520242333325, '2018-08-30 03:39:12.000000', '6666666');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1535600430479, 0, 82001, 1520242333325, '2018-08-30 03:40:30.000000', '法拉利');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1535785537390, 1535279823332, 82003, 1520242333325, '2018-09-01 07:05:37.000000', '不好哦');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1535785585222, 1534926143012, 82003, 1508053762227, '2018-09-01 07:06:25.000000', '啥?');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1535963519864, 0, 82001, 1535781636403, '2018-09-03 08:31:59.000000', 'gghhh');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1535963525135, 1535963519864, 82001, 1535781636403, '2018-09-03 08:32:05.000000', 'gyuji');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1536337000073, 1516686985310, 82001, 1516086423441, '2018-09-07 16:16:40.000000', 'heh');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1536378833060, 0, 82001, 1508072633830, '2018-09-08 03:53:53.000000', '真的嘛');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1536469270492, 0, 82001, 1528356496939, '2018-09-09 05:01:10.000000', '这是啥表情?Σ(ŎдŎ|||)ノノ');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1536805661269, 0, 70793, 1536805585275, '2018-09-13 02:27:41.000000', '6s再战一年');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1537373307627, 0, 82001, 1516086423441, '2018-09-19 16:08:27.000000', '。。。');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1537410620002, 0, 82001, 1536805585275, '2018-09-20 02:30:20.000000', '不一样');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1537710348414, 0, 82001, 1516086423441, '2018-09-23 13:45:48.000000', 'hhj');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1537710359760, 0, 82001, 1516086423441, '2018-09-23 13:45:59.000000', '锵锵锵');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1537857324518, 0, 82001, 1536805585275, '2018-09-25 06:35:24.000000', '嗯呢');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1537857334299, 1537857324518, 82001, 1536805585275, '2018-09-25 06:35:34.000000', '嗯嗯');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1539252343243, 1539252313711, 82001, 15, '2018-10-11 10:05:43.000000', 'dxdf');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1539252350604, 1539252337210, 82001, 15, '2018-10-11 10:05:50.000000', 'djdnjd');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1539868250267, 1531063660028, 82001, 1531062713966, '2018-10-18 13:10:50.000000', '555555555555555555');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1539868258868, 1533188056603, 82001, 1531062713966, '2018-10-18 13:10:58.000000', '555555555');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1539868269471, 1539868250267, 82001, 1531062713966, '2018-10-18 13:11:09.000000', '4444444444444');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1539868275645, 1531887938362, 82001, 1531062713966, '2018-10-18 13:11:15.000000', '22222222222222222');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1539960436993, 0, 82001, 1539868023868, '2018-10-19 14:47:16.000000', '111');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1541496033857, 0, 82001, 301, '2018-11-06 09:20:33.000000', '能解决');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1541651688961, 1539960436993, 82001, 1539868023868, '2018-11-08 04:34:48.000000', '哈哈');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1541815269164, 0, 82001, 1541667945772, '2018-11-10 02:01:09.000000', '11');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1543193682067, 0, 1528339692804, 1528269822710, '2018-11-26 00:54:42.000000', 'ss');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1544496611006, 0, 82001, 15, '2018-12-11 02:50:11.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1544496618728, 0, 82001, 15, '2018-12-11 02:50:18.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1544496620126, 0, 82001, 15, '2018-12-11 02:50:20.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1544503960414, 1537410620002, 1544503822963, 1536805585275, '2018-12-11 04:52:40.000000', '664984');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1545527888416, 0, 82001, 1553096819293, '2018-12-23 01:18:08.000000', 'hello');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1545527898986, 1545527888416, 82001, 1553096819293, '2018-12-23 01:18:18.000000', 'world');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1545527923036, 1545527888416, 82001, 1553096819293, '2018-12-23 01:18:43.000000', '还差还差还差');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1545918307310, 0, 82001, 15, '2018-12-27 13:45:07.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1545927001999, 1545895875719, 82001, 1553096819293, '2018-12-27 16:10:02.000000', '哦哦哦www');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1545961973331, 0, 82001, 15, '2018-12-28 01:52:53.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1546050359778, 0, 82001, 15, '2018-12-29 02:25:59.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1546050386785, 0, 82001, 1516086423441, '2018-12-29 02:26:26.000000', '不鸟你');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1546934145366, 0, 82001, 15, '2019-01-08 07:55:45.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1546935903414, 0, 82001, 15, '2019-01-08 08:25:03.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1551061659233, 0, 82001, 15, '2019-02-25 02:27:39.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1551080228544, 0, 82001, 1553096819293, '2019-02-25 07:37:08.000000', '几何画板');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1551080263524, 0, 82001, 1516086423441, '2019-02-25 07:37:43.000000', '你就看看');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1551146130246, 0, 82001, 15, '2019-02-26 01:55:30.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1551325753556, 0, 82001, 15, '2019-02-28 03:49:13.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1551409858047, 0, 82001, 301, '2019-03-01 03:10:58.000000', '您');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1551430453424, 0, 82001, 1553096819293, '2019-03-01 08:54:13.000000', '啊啊');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1551430465241, 1551430453424, 82001, 1553096819293, '2019-03-01 08:54:25.000000', '123');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1551430474490, 1551430453424, 82001, 1553096819293, '2019-03-01 08:54:34.000000', '444');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1551430485689, 1551430453424, 82001, 1553096819293, '2019-03-01 08:54:45.000000', '品牌');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1551430485828, 0, 82001, 1553096819293, '2019-03-01 08:54:45.000000', '品牌');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1551430579358, 1516691119239, 82001, 1516086423441, '2019-03-01 08:56:19.000000', '555555');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1551683545557, 1490863711703, 82001, 511, '2019-03-04 07:12:25.000000', '科技');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1551777156494, 0, 82001, 15, '2019-03-05 09:12:36.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1552215780595, 0, 82001, 15, '2019-03-10 11:03:00.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1552297994119, 0, 82001, 1512314438990, '2019-03-11 09:53:14.000000', '小米');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1552298015880, 1524799118232, 82001, 1512314438990, '2019-03-11 09:53:35.000000', '评论真的假的');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1552378943273, 0, 82001, 1551251234369, '2019-03-12 08:22:23.000000', '123');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1552381508342, 0, 82001, 15, '2019-03-12 09:05:08.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1552532948487, 0, 82001, 15, '2019-03-14 03:09:08.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1552980434725, 0, 82001, 15, '2019-03-19 07:27:14.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1553053346095, 0, 82001, 1553096819293, '2019-03-20 03:42:26.000000', '启');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1553053362233, 1551430485689, 82001, 1553096819293, '2019-03-20 03:42:42.000000', '集合vyih');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1553065269448, 0, 82001, 1553096819293, '2019-03-20 07:01:09.000000', '3333');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1553094325098, 0, 82001, 1550825876665, '2019-03-20 15:05:25.000000', '哦哦哦');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1553095251058, 0, 82001, 1552879777083, '2019-03-20 15:20:51.000000', '1111');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1553233020780, 0, 82001, 15, '2019-03-22 05:37:00.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1553433076832, 0, 82001, 1552879777083, '2019-03-24 13:11:16.000000', 'ggg');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1553676470274, 0, 82001, 1551184480247, '2019-03-27 08:47:50.000000', 'hhhhhh');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1553739854431, 0, 82001, 1539868023868, '2019-03-28 02:24:14.000000', '。。。。');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1553837780458, 0, 82001, 1548145750536, '2019-03-29 05:36:20.000000', '王八蛋');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1553837842352, 0, 82001, 1541557989440, '2019-03-29 05:37:22.000000', '小赤佬');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1554051650026, 0, 82001, 15, '2019-03-31 17:00:50.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1554263554592, 0, 82001, 15, '2019-04-03 03:52:34.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1554263558562, 0, 82001, 15, '2019-04-03 03:52:38.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1554286215772, 0, 82001, 301, '2019-04-03 10:10:15.000000', 'hjkj');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1554309729462, 0, 82001, 1554263554668, '2019-04-03 16:42:09.000000', '没有我');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1554309735842, 1554309729462, 82001, 1554263554668, '2019-04-03 16:42:15.000000', '哦下午');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1554372265517, 0, 82001, 1554263554668, '2019-04-04 10:04:25.000000', '测试');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1554373265740, 0, 82001, 543, '2019-04-04 10:21:05.000000', '那你');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1554373282941, 0, 82001, 543, '2019-04-04 10:21:22.000000', '。');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1554374987602, 1554372265517, 82001, 1554263554668, '2019-04-04 10:49:47.000000', '@jj');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1554548838567, 0, 82001, 1554263558104, '2019-04-06 11:07:18.000000', 'Yyhgy');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1554564631059, 0, 82001, 15, '2019-04-06 15:30:31.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1554564640129, 0, 82001, 15, '2019-04-06 15:30:40.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1554629321427, 0, 82001, 15, '2019-04-07 09:28:41.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1554704296003, 0, 82001, 1554564640071, '2019-04-08 06:18:16.000000', '吃');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1554707281257, 0, 82001, 1554688976001, '2019-04-08 07:08:01.000000', '要');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1554777053552, 0, 82001, 15, '2019-04-09 02:30:53.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1554864037995, 0, 82001, 15, '2019-04-10 02:40:37.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1554965019923, 0, 82001, 15, '2019-04-11 06:43:39.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1554976816197, 0, 82001, 1554688976001, '2019-04-11 10:00:16.000000', '到现在');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1555136064488, 0, 82001, 1555080161904, '2019-04-13 06:14:24.000000', '。。。');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1555136143476, 0, 82001, 1554564639808, '2019-04-13 06:15:43.000000', '。。。');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1555140354828, 0, 82001, 15, '2019-04-13 07:25:54.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1555414582495, 0, 82001, 15, '2019-04-16 11:36:22.000000', '新增一条评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1555414840945, 0, 82001, 15, '2019-04-16 11:40:40.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1555414849052, 0, 82001, 15, '2019-04-16 11:40:49.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1555414888850, 0, 82001, 15, '2019-04-16 11:41:28.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1555557851140, 1512035117021, 82001, 32, '2019-04-18 03:24:11.000000', '1545456');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1555557860778, 1512035117021, 82001, 32, '2019-04-18 03:24:20.000000', '11564546');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1555557868075, 0, 82001, 32, '2019-04-18 03:24:28.000000', '121212312456');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1555557877452, 1555557868075, 82001, 32, '2019-04-18 03:24:37.000000', '123121545645');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1555572659357, 0, 82001, 15, '2019-04-18 07:30:59.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1556073175252, 0, 82001, 1555842172364, '2019-04-24 02:32:55.000000', '卡罗拉');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1556088728850, 0, 82001, 1555660645705, '2019-04-24 06:52:08.000000', '啦');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1556088739682, 0, 82001, 1555842172364, '2019-04-24 06:52:19.000000', '叫姐姐');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1556088750041, 1556088739682, 82001, 1555842172364, '2019-04-24 06:52:30.000000', '哼╯^╰');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1556109617193, 0, 82001, 15, '2019-04-24 12:40:17.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1556179911249, 0, 82001, 1555146101956, '2019-04-25 08:11:51.000000', '莫有样在真');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1556179917534, 1556179911249, 82001, 1555146101956, '2019-04-25 08:11:57.000000', '你以为走咯');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1556179921272, 1556179911249, 82001, 1555146101956, '2019-04-25 08:12:01.000000', '匿名');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1556187596511, 0, 82001, 15, '2019-04-25 10:19:56.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1556192437849, 0, 82001, 1555826433407, '2019-04-25 11:40:37.000000', '哈哈哈');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1556264166448, 0, 82001, 15, '2019-04-26 07:36:06.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1556434477631, 0, 82001, 1556416532140, '2019-04-28 06:54:37.000000', '叶圣陶');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1556438316917, 0, 82001, 15, '2019-04-28 07:58:36.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1556447474223, 0, 82001, 15, '2019-04-28 10:31:14.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1556447629955, 0, 82001, 1556447474076, '2019-04-28 10:33:49.000000', '啦啦');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1556447642188, 0, 82001, 1556447473966, '2019-04-28 10:34:02.000000', '啦啦');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1556606726466, 0, 82001, 15, '2019-04-30 06:45:26.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1556608158926, 0, 82001, 1556607959204, '2019-04-30 07:09:18.000000', '佛祖');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1556852777588, 0, 82001, 15, '2019-05-03 03:06:17.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1556953335513, 0, 82001, 1556387217941, '2019-05-04 07:02:15.000000', '嘻嘻嘻');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1556953340357, 1556953335513, 82001, 1556387217941, '2019-05-04 07:02:20.000000', '额额额');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1556987652879, 0, 82001, 15, '2019-05-04 16:34:12.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1556987738892, 0, 82001, 15, '2019-05-04 16:35:38.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1556988311205, 0, 82001, 15, '2019-05-04 16:45:11.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1557024488300, 1556953340357, 82001, 1556387217941, '2019-05-05 02:48:08.000000', '222');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1557133819296, 0, 82001, 1555146150581, '2019-05-06 09:10:19.000000', '988');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1557239093145, 0, 82001, 15, '2019-05-07 14:24:53.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1557254398378, 0, 82002, 15, '2019-05-07 18:39:58.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1557254443156, 0, 82001, 15, '2019-05-07 18:40:43.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1557254466593, 0, 82001, 15, '2019-05-07 18:41:06.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1557254474819, 0, 82001, 15, '2019-05-07 18:41:14.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1557367770352, 0, 82001, 1508072633830, '2019-05-09 02:09:30.000000', '哈哈');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1557396836045, 0, 82001, 15, '2019-05-09 10:13:56.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1557415832512, 0, 82001, 15, '2019-05-09 15:30:32.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1557707040335, 0, 82001, 1550825876665, '2019-05-13 00:24:00.000000', '帅吗?');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1557754720666, 0, 82001, 1557754680146, '2019-05-13 13:38:40.000000', '卧槽(*`へ´*)');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1557754765785, 0, 70793, 1557754680146, '2019-05-13 13:39:25.000000', '链接发下');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1557754909538, 1557754765785, 82012, 1557754680146, '2019-05-13 13:41:49.000000', 'https://baijiahao.baidu.com/s?id=1633129683262867786&wfr=spider&for=pc&isFailFlag=1');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1557838424004, 0, 1508072105320, 1557754680146, '2019-05-14 12:53:44.000000', '666');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1558059734104, 0, 82001, 15, '2019-05-17 02:22:14.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1558059843115, 0, 82001, 15, '2019-05-17 02:24:03.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1558150056102, 0, 82001, 1557754680146, '2019-05-18 03:27:36.000000', '哈哈哈');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1558251372701, 0, 82001, 15, '2019-05-19 07:36:12.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1558275517613, 0, 82001, 15, '2019-05-19 14:18:37.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1558275862700, 0, 82001, 15, '2019-05-19 14:24:22.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1558440302601, 0, 82001, 1557415707105, '2019-05-21 12:05:02.000000', '咔咔咔');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1558440307225, 0, 82001, 1557415707105, '2019-05-21 12:05:07.000000', 'i我看');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1558440318878, 0, 82001, 1555146144094, '2019-05-21 12:05:18.000000', '哦啊就是计算机');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1558440335644, 0, 82001, 1557754680146, '2019-05-21 12:05:35.000000', '就是就是觉得奖学金');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1558440349435, 0, 82001, 1557754680146, '2019-05-21 12:05:49.000000', '解决');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1558440357141, 1558440335644, 82001, 1557754680146, '2019-05-21 12:05:57.000000', '惊声尖叫额');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1558444517410, 0, 82001, 15, '2019-05-21 13:15:17.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1559479971167, 0, 82001, 15, '2019-06-02 12:52:51.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1559512310810, 0, 82001, 1559479693309, '2019-06-02 21:51:50.000000', 'gggh');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1559512315277, 1559512310810, 82001, 1559479693309, '2019-06-02 21:51:55.000000', 'ghhh');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1559531009662, 0, 82001, 15, '2019-06-03 03:03:29.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1559532427131, 0, 82001, 15, '2019-06-03 03:27:07.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1559533505750, 0, 82001, 15, '2019-06-03 03:45:05.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1559533513284, 0, 82001, 15, '2019-06-03 03:45:13.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1559553148600, 0, 82001, 1559479693309, '2019-06-03 09:12:28.000000', 'cbnxn');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1559570720109, 0, 82001, 1555146144094, '2019-06-03 14:05:20.000000', '你妹');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1559616306248, 0, 82001, 15, '2019-06-04 02:45:06.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1559617707946, 0, 82001, 15, '2019-06-04 03:08:27.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1559628052667, 0, 82001, 1559479693309, '2019-06-04 06:00:52.000000', '发放');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1559729189116, 0, 82001, 1559479693309, '2019-06-05 10:06:29.000000', '你真的牛逼');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1559731136559, 0, 82001, 15, '2019-06-05 10:38:56.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1560090719699, 0, 82001, 15, '2019-06-09 14:31:59.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1560168492719, 0, 82001, 15, '2019-06-10 12:08:12.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1560239593640, 0, 82001, 1559479693309, '2019-06-11 07:53:13.000000', '11');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1560262370938, 0, 82001, 15, '2019-06-11 14:12:50.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1560482772803, 0, 82001, 15, '2019-06-14 03:26:12.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1560482961067, 0, 82001, 1555842172364, '2019-06-14 03:29:21.000000', '3');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1560619772678, 0, 82001, 15, '2019-06-15 17:29:32.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1560736990682, 0, 82001, 15, '2019-06-17 02:03:10.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1561018625380, 1559512310810, 82001, 1559479693309, '2019-06-20 08:17:05.000000', 'ggggg');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1561364926819, 0, 82001, 15, '2019-06-24 08:28:46.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1561533263049, 1559729189116, 82001, 1559479693309, '2019-06-26 07:14:23.000000', '6666');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1561630666744, 0, 82001, 15, '2019-06-27 10:17:46.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1561949926841, 0, 82001, 15, '2019-07-01 02:58:46.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1561975421299, 1555136064488, 82001, 1555080161904, '2019-07-01 10:03:41.000000', '是不是');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1562134664290, 0, 82001, 15, '2019-07-03 06:17:44.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1562226345097, 0, 82001, 15, '2019-07-04 07:45:45.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1562248764054, 1559729189116, 82001, 1559479693309, '2019-07-04 13:59:24.000000', 'fdd');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1562307396087, 0, 82001, 1559479693309, '2019-07-05 06:16:36.000000', '我顶我顶');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1562392250526, 0, 82001, 1559479693309, '2019-07-06 05:50:50.000000', '发个方
刚刚方法');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1562392269174, 1559512310810, 82001, 1559479693309, '2019-07-06 05:51:09.000000', '古古怪怪');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1562392274283, 1559553148600, 82001, 1559479693309, '2019-07-06 05:51:14.000000', '工业园');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1562392278403, 1562307396087, 82001, 1559479693309, '2019-07-06 05:51:18.000000', '凤阳花鼓');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1562495721307, 0, 82001, 15, '2019-07-07 10:35:21.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1562662400473, 0, 82001, 15, '2019-07-09 08:53:20.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1562684469790, 0, 82001, 1559125514307, '2019-07-09 15:01:09.000000', '发广告');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1562684482831, 1562684469790, 82001, 1559125514307, '2019-07-09 15:01:22.000000', '厉害厉害');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1562684488544, 0, 82001, 1559125514307, '2019-07-09 15:01:28.000000', '发过火');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1562736873122, 1534926143012, 82001, 1508053762227, '2019-07-10 05:34:33.000000', '早睡早起');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1562814013816, 0, 82001, 1562556720665, '2019-07-11 03:00:13.000000', 'xxxx');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1562814021942, 1562814013816, 82001, 1562556720665, '2019-07-11 03:00:21.000000', 'xxxx');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1563506794618, 0, 82001, 15, '2019-07-19 03:26:34.000000', '测试新增评论');
INSERT INTO sys."Comment" (id, "toId", "userId", "momentId", date, content) VALUES (1563641514400, 0, 82001, 1563605336326, '2019-07-20 16:51:54.000000', '年轻人不要想不开');
create table "Document"
(
id bigint not null
constraint "Document_pkey"
primary key,
"userId" bigint not null,
version smallint not null,
name varchar(100) not null,
url varchar(250) not null,
request text not null,
response text,
header text,
date timestamp
);
comment on table "Document" is '测试用例文档
后端开发者在测试好后,把选好的测试用例上传,这样就能共享给前端/客户端开发者';
comment on column "Document".id is '唯一标识';
comment on column "Document"."userId" is '用户id
应该用adminId,只有当登录账户是管理员时才能操作文档。
需要先建Admin表,新增登录等相关接口。';
comment on column "Document".version is '接口版本号
<=0 - 不限制版本,任意版本都可用这个接口
>0 - 在这个版本添加的接口';
comment on column "Document".name is '接口名称';
comment on column "Document".url is '请求地址';
comment on column "Document".request is '请求
用json格式会导致强制排序,而请求中引用赋值只能引用上面的字段,必须有序。';