-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathwebapi.sql
More file actions
7107 lines (7055 loc) · 764 KB
/
webapi.sql
File metadata and controls
7107 lines (7055 loc) · 764 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
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
/*
Navicat MySQL Data Transfer
Source Server : 47.52.192.199
Source Server Version : 50726
Source Host : 47.52.192.199:3306
Source Database : webapi
Target Server Type : MYSQL
Target Server Version : 50726
File Encoding : 65001
Date: 2020-03-08 16:42:10
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `test`
-- ----------------------------
DROP TABLE IF EXISTS `test`;
CREATE TABLE `test` (
`id` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`url_1` varchar(500) COLLATE utf8_unicode_ci DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Records of test
-- ----------------------------
INSERT INTO `test` VALUES ('1088', '喜羊羊', 'http://47.95.172.168/channel/1088.m3u8');
INSERT INTO `test` VALUES ('1089', '猪猪侠', 'http://47.95.172.168/channel/1089.m3u8');
INSERT INTO `test` VALUES ('1092', '哆啦A梦', 'http://47.95.172.168/channel/1092.m3u8');
INSERT INTO `test` VALUES ('1093', '蜡笔小新', 'http://47.95.172.168/channel/1093.m3u8');
INSERT INTO `test` VALUES ('1105', '明星潮流', 'http://47.95.172.168/channel/1105.m3u8');
INSERT INTO `test` VALUES ('1106', '英雄联盟', 'http://47.95.172.168/channel/1106.m3u8');
INSERT INTO `test` VALUES ('1184', '日韩动漫', 'http://47.95.172.168/channel/1184.m3u8');
INSERT INTO `test` VALUES ('1185', '欧美动漫', 'http://47.95.172.168/channel/1185.m3u8');
INSERT INTO `test` VALUES ('1200', '轻松喜剧', 'http://47.95.172.168/channel/1200.m3u8');
INSERT INTO `test` VALUES ('1201', '悬疑犯罪', 'http://47.95.172.168/channel/1201.m3u8');
INSERT INTO `test` VALUES ('1202', '动作电影', 'http://47.95.172.168/channel/1202.m3u8');
INSERT INTO `test` VALUES ('1202', '动作电影', 'http://47.95.172.168/channel/1202.m3u8');
INSERT INTO `test` VALUES ('1216', '国漫专区', 'http://47.95.172.168/channel/1216.m3u8');
INSERT INTO `test` VALUES ('1221', '玄幻仙侠剧', 'http://47.95.172.168/channel/1221.m3u8');
INSERT INTO `test` VALUES ('1225', '休闲垂钓', 'http://47.95.172.168/channel/1225.m3u8');
INSERT INTO `test` VALUES ('1227', '汽车视界', 'http://47.95.172.168/channel/1227.m3u8');
INSERT INTO `test` VALUES ('1230', '美课美妆', 'http://47.95.172.168/channel/1230.m3u8');
INSERT INTO `test` VALUES ('1233', '湖南卫视', 'http://47.95.172.168/channel/1233.m3u8');
INSERT INTO `test` VALUES ('1234', '芒果TV自制', 'http://47.95.172.168/channel/1234.m3u8');
INSERT INTO `test` VALUES ('1242', '热播综艺', 'http://47.95.172.168/channel/1242.m3u8');
INSERT INTO `test` VALUES ('1243', '熊出没', 'http://47.95.172.168/channel/1243.m3u8');
INSERT INTO `test` VALUES ('1244', '快乐购', 'http://47.95.172.168/channel/1244.m3u8');
INSERT INTO `test` VALUES ('1256', '新剧速递', 'http://47.95.172.168/channel/1256.m3u8');
INSERT INTO `test` VALUES ('1258', '最新院线', 'http://47.95.172.168/channel/1258.m3u8');
INSERT INTO `test` VALUES ('1259', '成龙电影全集', 'http://47.95.172.168/channel/1259.m3u8');
INSERT INTO `test` VALUES ('1262', '超级飞侠', 'http://47.95.172.168/channel/1262.m3u8');
INSERT INTO `test` VALUES ('1266', '新番连载', 'http://47.95.172.168/channel/1266.m3u8');
INSERT INTO `test` VALUES ('1426', '快手早餐', 'http://47.95.172.168/channel/1426.m3u8');
INSERT INTO `test` VALUES ('1428', '66款爆好吃的面', 'http://47.95.172.168/channel/1428.m3u8');
INSERT INTO `test` VALUES ('1466', '樱桃小丸子', 'http://47.95.172.168/channel/1466.m3u8');
INSERT INTO `test` VALUES ('1525', '爆笑虫子', 'http://47.95.172.168/channel/1525.m3u8');
INSERT INTO `test` VALUES ('1546', '明星大侦探', 'http://47.95.172.168/channel/1546.m3u8');
INSERT INTO `test` VALUES ('1552', '向往的生活1', 'http://47.95.172.168/channel/1552.m3u8');
INSERT INTO `test` VALUES ('1565', '《歌手》纯享版', 'http://47.95.172.168/channel/1565.m3u8');
INSERT INTO `test` VALUES ('1569', '新还珠格格', 'http://47.95.172.168/channel/1569.m3u8');
INSERT INTO `test` VALUES ('1612', '极限挑战', 'http://47.95.172.168/channel/1612.m3u8');
INSERT INTO `test` VALUES ('1616', '凤凰传奇', 'http://47.95.172.168/channel/1616.m3u8');
INSERT INTO `test` VALUES ('1652', '寻情记', 'http://47.95.172.168/channel/1652.m3u8');
INSERT INTO `test` VALUES ('1653', '因为遇见你', 'http://47.95.172.168/channel/1653.m3u8');
INSERT INTO `test` VALUES ('1654', '有一种情歌叫薛之谦', 'http://47.95.172.168/channel/1654.m3u8');
INSERT INTO `test` VALUES ('1741', '人民的名义', 'http://47.95.172.168/channel/1741.m3u8');
INSERT INTO `test` VALUES ('1795', '花儿与少年', 'http://47.95.172.168/channel/1795.m3u8');
INSERT INTO `test` VALUES ('1812', '2018变形计', 'http://47.95.172.168/channel/1812.m3u8');
INSERT INTO `test` VALUES ('1820', '贝瓦儿歌', 'http://47.95.172.168/channel/1820.m3u8');
INSERT INTO `test` VALUES ('1821', '兔小贝儿歌', 'http://47.95.172.168/channel/1821.m3u8');
INSERT INTO `test` VALUES ('1838', '花千骨', 'http://47.95.172.168/channel/1838.m3u8');
INSERT INTO `test` VALUES ('1860', '我想和你唱', 'http://47.95.172.168/channel/1860.m3u8');
INSERT INTO `test` VALUES ('1869', '王者荣耀', 'http://47.95.172.168/channel/1869.m3u8');
INSERT INTO `test` VALUES ('1901', '熊熊乐园', 'http://47.95.172.168/channel/1901.m3u8');
INSERT INTO `test` VALUES ('1918', '恐怖电影', 'http://47.95.172.168/channel/1918.m3u8');
INSERT INTO `test` VALUES ('1951', '特种兵之火凤凰', 'http://47.95.172.168/channel/1951.m3u8');
INSERT INTO `test` VALUES ('1993', '我的世界', 'http://47.95.172.168/channel/1993.m3u8');
INSERT INTO `test` VALUES ('2008', '美食中国', 'http://47.95.172.168/channel/2008.m3u8');
INSERT INTO `test` VALUES ('2020', '中餐厅', 'http://47.95.172.168/channel/2020.m3u8');
INSERT INTO `test` VALUES ('2023', '青春校园剧', 'http://47.95.172.168/channel/2023.m3u8');
INSERT INTO `test` VALUES ('2057', '办公室小野', 'http://47.95.172.168/channel/2057.m3u8');
INSERT INTO `test` VALUES ('2063', '浪花一朵朵', 'http://47.95.172.168/channel/2063.m3u8');
INSERT INTO `test` VALUES ('2085', '经典特工电影', 'http://47.95.172.168/channel/2085.m3u8');
INSERT INTO `test` VALUES ('2118', '爸爸去哪儿5', 'http://47.95.172.168/channel/2118.m3u8');
INSERT INTO `test` VALUES ('2118', '爸爸去哪儿5', 'http://47.95.172.168/channel/2118.m3u8');
INSERT INTO `test` VALUES ('2154', '热血军旅剧', 'http://47.95.172.168/channel/2154.m3u8');
INSERT INTO `test` VALUES ('2180', '亲爱的客栈', 'http://47.95.172.168/channel/2180.m3u8');
INSERT INTO `test` VALUES ('2181', '大话西游', 'http://47.95.172.168/channel/2181.m3u8');
INSERT INTO `test` VALUES ('2190', '生活小妙招', 'http://47.95.172.168/channel/2190.m3u8');
INSERT INTO `test` VALUES ('2803', '影帝古天乐电影合集', 'http://47.95.172.168/channel/2803.m3u8');
-- ----------------------------
-- Table structure for `test2`
-- ----------------------------
DROP TABLE IF EXISTS `test2`;
CREATE TABLE `test2` (
`id` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`url_1` varchar(500) COLLATE utf8_unicode_ci DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Records of test2
-- ----------------------------
INSERT INTO `test2` VALUES ('1083', '天天向上', 'http://47.95.172.168/channel/1083.m3u8');
INSERT INTO `test2` VALUES ('1084', '快乐大本营', 'http://47.95.172.168/channel/1084.m3u8');
INSERT INTO `test2` VALUES ('1088', '喜羊羊', 'http://47.95.172.168/channel/1088.m3u8');
INSERT INTO `test2` VALUES ('1089', '猪猪侠', 'http://47.95.172.168/channel/1089.m3u8');
INSERT INTO `test2` VALUES ('1092', '哆啦A梦', 'http://47.95.172.168/channel/1092.m3u8');
INSERT INTO `test2` VALUES ('1093', '蜡笔小新', 'http://47.95.172.168/channel/1093.m3u8');
INSERT INTO `test2` VALUES ('1095', '影视金曲', 'http://47.95.172.168/channel/1095.m3u8');
INSERT INTO `test2` VALUES ('1105', '明星潮流', 'http://47.95.172.168/channel/1105.m3u8');
INSERT INTO `test2` VALUES ('1106', '英雄联盟', 'http://47.95.172.168/channel/1106.m3u8');
INSERT INTO `test2` VALUES ('1172', '最全旅游指南', 'http://47.95.172.168/channel/1172.m3u8');
INSERT INTO `test2` VALUES ('1184', '日韩动漫', 'http://47.95.172.168/channel/1184.m3u8');
INSERT INTO `test2` VALUES ('1185', '欧美动漫', 'http://47.95.172.168/channel/1185.m3u8');
INSERT INTO `test2` VALUES ('1190', '古装宫斗', 'http://47.95.172.168/channel/1190.m3u8');
INSERT INTO `test2` VALUES ('1200', '轻松喜剧', 'http://47.95.172.168/channel/1200.m3u8');
INSERT INTO `test2` VALUES ('1201', '悬疑犯罪', 'http://47.95.172.168/channel/1201.m3u8');
INSERT INTO `test2` VALUES ('1202', '动作电影', 'http://47.95.172.168/channel/1202.m3u8');
INSERT INTO `test2` VALUES ('1215', '谍战剧', 'http://47.95.172.168/channel/1215.m3u8');
INSERT INTO `test2` VALUES ('1216', '国漫专区', 'http://47.95.172.168/channel/1216.m3u8');
INSERT INTO `test2` VALUES ('1221', '玄幻仙侠剧', 'http://47.95.172.168/channel/1221.m3u8');
INSERT INTO `test2` VALUES ('1225', '休闲垂钓', 'http://47.95.172.168/channel/1225.m3u8');
INSERT INTO `test2` VALUES ('1227', '汽车视界', 'http://47.95.172.168/channel/1227.m3u8');
INSERT INTO `test2` VALUES ('1230', '美课美妆', 'http://47.95.172.168/channel/1230.m3u8');
INSERT INTO `test2` VALUES ('1233', '湖南卫视', 'http://47.95.172.168/channel/1233.m3u8');
INSERT INTO `test2` VALUES ('1234', '芒果TV自制', 'http://47.95.172.168/channel/1234.m3u8');
INSERT INTO `test2` VALUES ('1242', '热播综艺', 'http://47.95.172.168/channel/1242.m3u8');
INSERT INTO `test2` VALUES ('1243', '熊出没', 'http://47.95.172.168/channel/1243.m3u8');
INSERT INTO `test2` VALUES ('1244', '快乐购', 'http://47.95.172.168/channel/1244.m3u8');
INSERT INTO `test2` VALUES ('1256', '新剧速递', 'http://47.95.172.168/channel/1256.m3u8');
INSERT INTO `test2` VALUES ('1258', '最新院线', 'http://47.95.172.168/channel/1258.m3u8');
INSERT INTO `test2` VALUES ('1259', '成龙电影全集', 'http://47.95.172.168/channel/1259.m3u8');
INSERT INTO `test2` VALUES ('1262', '超级飞侠', 'http://47.95.172.168/channel/1262.m3u8');
INSERT INTO `test2` VALUES ('1266', '新番连载', 'http://47.95.172.168/channel/1266.m3u8');
INSERT INTO `test2` VALUES ('1426', '快手早餐', 'http://47.95.172.168/channel/1426.m3u8');
INSERT INTO `test2` VALUES ('1428', '66款爆好吃的面', 'http://47.95.172.168/channel/1428.m3u8');
INSERT INTO `test2` VALUES ('1466', '樱桃小丸子', 'http://47.95.172.168/channel/1466.m3u8');
INSERT INTO `test2` VALUES ('1524', '宝宝巴士儿歌', 'http://47.95.172.168/channel/1524.m3u8');
INSERT INTO `test2` VALUES ('1525', '爆笑虫子', 'http://47.95.172.168/channel/1525.m3u8');
INSERT INTO `test2` VALUES ('1526', '小猪佩奇全集', 'http://47.95.172.168/channel/1526.m3u8');
INSERT INTO `test2` VALUES ('1546', '明星大侦探', 'http://47.95.172.168/channel/1546.m3u8');
INSERT INTO `test2` VALUES ('1552', '向往的生活1', 'http://47.95.172.168/channel/1552.m3u8');
INSERT INTO `test2` VALUES ('1565', '《歌手》纯享版', 'http://47.95.172.168/channel/1565.m3u8');
INSERT INTO `test2` VALUES ('1569', '新还珠格格', 'http://47.95.172.168/channel/1569.m3u8');
INSERT INTO `test2` VALUES ('1576', '称霸广场舞必备神曲', 'http://47.95.172.168/channel/1576.m3u8');
INSERT INTO `test2` VALUES ('1578', '宋小宝', 'http://47.95.172.168/channel/1578.m3u8');
INSERT INTO `test2` VALUES ('1611', '春晚小品集锦', 'http://47.95.172.168/channel/1611.m3u8');
INSERT INTO `test2` VALUES ('1612', '极限挑战', 'http://47.95.172.168/channel/1612.m3u8');
INSERT INTO `test2` VALUES ('1616', '凤凰传奇', 'http://47.95.172.168/channel/1616.m3u8');
INSERT INTO `test2` VALUES ('1617', '汪汪队立大功', 'http://47.95.172.168/channel/1617.m3u8');
INSERT INTO `test2` VALUES ('1652', '寻情记', 'http://47.95.172.168/channel/1652.m3u8');
INSERT INTO `test2` VALUES ('1653', '因为遇见你', 'http://47.95.172.168/channel/1653.m3u8');
INSERT INTO `test2` VALUES ('1654', '有一种情歌叫薛之谦', 'http://47.95.172.168/channel/1654.m3u8');
INSERT INTO `test2` VALUES ('1701', '妈妈是超人2', 'http://47.95.172.168/channel/1701.m3u8');
INSERT INTO `test2` VALUES ('1741', '人民的名义', 'http://47.95.172.168/channel/1741.m3u8');
INSERT INTO `test2` VALUES ('1795', '花儿与少年', 'http://47.95.172.168/channel/1795.m3u8');
INSERT INTO `test2` VALUES ('1804', '贾玲', 'http://47.95.172.168/channel/1804.m3u8');
INSERT INTO `test2` VALUES ('1812', '2018变形计', 'http://47.95.172.168/channel/1812.m3u8');
INSERT INTO `test2` VALUES ('1820', '贝瓦儿歌', 'http://47.95.172.168/channel/1820.m3u8');
INSERT INTO `test2` VALUES ('1821', '兔小贝儿歌', 'http://47.95.172.168/channel/1821.m3u8');
INSERT INTO `test2` VALUES ('1823', '蓝迪儿歌', 'http://47.95.172.168/channel/1823.m3u8');
INSERT INTO `test2` VALUES ('1838', '花千骨', 'http://47.95.172.168/channel/1838.m3u8');
INSERT INTO `test2` VALUES ('1843', '一人一首经典歌曲', 'http://47.95.172.168/channel/1843.m3u8');
INSERT INTO `test2` VALUES ('1846', '本周人气菜谱', 'http://47.95.172.168/channel/1846.m3u8');
INSERT INTO `test2` VALUES ('1853', '逗逗迪迪爱唱歌', 'http://47.95.172.168/channel/1853.m3u8');
INSERT INTO `test2` VALUES ('1860', '我想和你唱', 'http://47.95.172.168/channel/1860.m3u8');
INSERT INTO `test2` VALUES ('1869', '王者荣耀', 'http://47.95.172.168/channel/1869.m3u8');
INSERT INTO `test2` VALUES ('1880', '芭比系列', 'http://47.95.172.168/channel/1880.m3u8');
INSERT INTO `test2` VALUES ('1901', '熊熊乐园', 'http://47.95.172.168/channel/1901.m3u8');
INSERT INTO `test2` VALUES ('1911', '儿歌300首', 'http://47.95.172.168/channel/1911.m3u8');
INSERT INTO `test2` VALUES ('1918', '恐怖电影', 'http://47.95.172.168/channel/1918.m3u8');
INSERT INTO `test2` VALUES ('1926', '岳云鹏', 'http://47.95.172.168/channel/1926.m3u8');
INSERT INTO `test2` VALUES ('1937', '疯狂的麦咭', 'http://47.95.172.168/channel/1937.m3u8');
INSERT INTO `test2` VALUES ('1938', '狐妖小红娘', 'http://47.95.172.168/channel/1938.m3u8');
INSERT INTO `test2` VALUES ('1940', '七十二层奇楼', 'http://47.95.172.168/channel/1940.m3u8');
INSERT INTO `test2` VALUES ('1951', '特种兵之火凤凰', 'http://47.95.172.168/channel/1951.m3u8');
INSERT INTO `test2` VALUES ('1952', '哇!这里有好多玩具', 'http://47.95.172.168/channel/1952.m3u8');
INSERT INTO `test2` VALUES ('1993', '我的世界', 'http://47.95.172.168/channel/1993.m3u8');
INSERT INTO `test2` VALUES ('2008', '美食中国', 'http://47.95.172.168/channel/2008.m3u8');
INSERT INTO `test2` VALUES ('2020', '中餐厅', 'http://47.95.172.168/channel/2020.m3u8');
INSERT INTO `test2` VALUES ('2023', '青春校园剧', 'http://47.95.172.168/channel/2023.m3u8');
INSERT INTO `test2` VALUES ('2048', '环球购物', 'http://47.95.172.168/channel/2048.m3u8');
INSERT INTO `test2` VALUES ('2050', '惊喜价到', 'http://47.95.172.168/channel/2050.m3u8');
INSERT INTO `test2` VALUES ('2057', '办公室小野', 'http://47.95.172.168/channel/2057.m3u8');
INSERT INTO `test2` VALUES ('2063', '浪花一朵朵', 'http://47.95.172.168/channel/2063.m3u8');
INSERT INTO `test2` VALUES ('2081', '空中超市', 'http://47.95.172.168/channel/2081.m3u8');
INSERT INTO `test2` VALUES ('2085', '经典特工电影', 'http://47.95.172.168/channel/2085.m3u8');
INSERT INTO `test2` VALUES ('2118', '爸爸去哪儿5', 'http://47.95.172.168/channel/2118.m3u8');
INSERT INTO `test2` VALUES ('2154', '热血军旅剧', 'http://47.95.172.168/channel/2154.m3u8');
INSERT INTO `test2` VALUES ('2159', '中国惊奇先生', 'http://47.95.172.168/channel/2159.m3u8');
INSERT INTO `test2` VALUES ('2180', '亲爱的客栈', 'http://47.95.172.168/channel/2180.m3u8');
INSERT INTO `test2` VALUES ('2181', '大话西游', 'http://47.95.172.168/channel/2181.m3u8');
INSERT INTO `test2` VALUES ('2182', '今日必看资讯', 'http://47.95.172.168/channel/2182.m3u8');
INSERT INTO `test2` VALUES ('2183', '社会热点', 'http://47.95.172.168/channel/2183.m3u8');
INSERT INTO `test2` VALUES ('2190', '生活小妙招', 'http://47.95.172.168/channel/2190.m3u8');
INSERT INTO `test2` VALUES ('2195', '爸爸去哪儿1', 'http://47.95.172.168/channel/2195.m3u8');
INSERT INTO `test2` VALUES ('2196', '爸爸去哪儿2', 'http://47.95.172.168/channel/2196.m3u8');
INSERT INTO `test2` VALUES ('2197', '爸爸去哪儿3', 'http://47.95.172.168/channel/2197.m3u8');
INSERT INTO `test2` VALUES ('2198', '爸爸去哪儿4', 'http://47.95.172.168/channel/2198.m3u8');
INSERT INTO `test2` VALUES ('2201', '一年级', 'http://47.95.172.168/channel/2201.m3u8');
INSERT INTO `test2` VALUES ('2211', '家装指南', 'http://47.95.172.168/channel/2211.m3u8');
INSERT INTO `test2` VALUES ('2214', '大美中国', 'http://47.95.172.168/channel/2214.m3u8');
INSERT INTO `test2` VALUES ('2215', '麻辣变形计', 'http://47.95.172.168/channel/2215.m3u8');
INSERT INTO `test2` VALUES ('2221', '蒙面唱将金曲捞', 'http://47.95.172.168/channel/2221.m3u8');
INSERT INTO `test2` VALUES ('2223', '十五部超搞笑动漫', 'http://47.95.172.168/channel/2223.m3u8');
INSERT INTO `test2` VALUES ('2230', '启蒙音乐剧', 'http://47.95.172.168/channel/2230.m3u8');
INSERT INTO `test2` VALUES ('2259', '香港经典动作片', 'http://47.95.172.168/channel/2259.m3u8');
INSERT INTO `test2` VALUES ('2263', '惹味川菜', 'http://47.95.172.168/channel/2263.m3u8');
INSERT INTO `test2` VALUES ('2270', '喜剧总动员', 'http://47.95.172.168/channel/2270.m3u8');
INSERT INTO `test2` VALUES ('2272', '天籁之战', 'http://47.95.172.168/channel/2272.m3u8');
INSERT INTO `test2` VALUES ('2274', '贝乐虎儿歌', 'http://47.95.172.168/channel/2274.m3u8');
INSERT INTO `test2` VALUES ('2277', '大胃美少女合集', 'http://47.95.172.168/channel/2277.m3u8');
INSERT INTO `test2` VALUES ('2278', 'Papi酱团队创意视频', 'http://47.95.172.168/channel/2278.m3u8');
INSERT INTO `test2` VALUES ('2284', '科幻电影', 'http://47.95.172.168/channel/2284.m3u8');
INSERT INTO `test2` VALUES ('2285', '反腐纪录片揭落马细节', 'http://47.95.172.168/channel/2285.m3u8');
INSERT INTO `test2` VALUES ('2288', '一分钟性知识', 'http://47.95.172.168/channel/2288.m3u8');
INSERT INTO `test2` VALUES ('2289', '全球最性感女人', 'http://47.95.172.168/channel/2289.m3u8');
INSERT INTO `test2` VALUES ('2296', '日食记', 'http://47.95.172.168/channel/2296.m3u8');
INSERT INTO `test2` VALUES ('2318', '动物儿歌', 'http://47.95.172.168/channel/2318.m3u8');
INSERT INTO `test2` VALUES ('2321', '潘长江', 'http://47.95.172.168/channel/2321.m3u8');
INSERT INTO `test2` VALUES ('2331', '一起来看流星雨', 'http://47.95.172.168/channel/2331.m3u8');
INSERT INTO `test2` VALUES ('2345', '爆笑恶作剧', 'http://47.95.172.168/channel/2345.m3u8');
INSERT INTO `test2` VALUES ('2361', '萌仔萌萌宅', 'http://47.95.172.168/channel/2361.m3u8');
INSERT INTO `test2` VALUES ('2370', '熊出没之探险日记', 'http://47.95.172.168/channel/2370.m3u8');
INSERT INTO `test2` VALUES ('2380', '绝地求生', 'http://47.95.172.168/channel/2380.m3u8');
INSERT INTO `test2` VALUES ('2387', '爆笑运动会', 'http://47.95.172.168/channel/2387.m3u8');
INSERT INTO `test2` VALUES ('2399', '本周电影TOP10', 'http://47.95.172.168/channel/2399.m3u8');
INSERT INTO `test2` VALUES ('2410', '放学别走', 'http://47.95.172.168/channel/2410.m3u8');
INSERT INTO `test2` VALUES ('2418', '相声合集', 'http://47.95.172.168/channel/2418.m3u8');
INSERT INTO `test2` VALUES ('2421', '爆笑喜剧让你开心一整年', 'http://47.95.172.168/channel/2421.m3u8');
INSERT INTO `test2` VALUES ('2429', '2017洗脑神曲', 'http://47.95.172.168/channel/2429.m3u8');
INSERT INTO `test2` VALUES ('2434', '声临其境', 'http://47.95.172.168/channel/2434.m3u8');
INSERT INTO `test2` VALUES ('2437', '歌手2018', 'http://47.95.172.168/channel/2437.m3u8');
INSERT INTO `test2` VALUES ('2441', '最戳你笑点的小品', 'http://47.95.172.168/channel/2441.m3u8');
INSERT INTO `test2` VALUES ('2444', '武侠修仙动漫', 'http://47.95.172.168/channel/2444.m3u8');
INSERT INTO `test2` VALUES ('2447', '步步惊心', 'http://47.95.172.168/channel/2447.m3u8');
INSERT INTO `test2` VALUES ('2456', '童谣100首', 'http://47.95.172.168/channel/2456.m3u8');
INSERT INTO `test2` VALUES ('2461', '恋爱先生', 'http://47.95.172.168/channel/2461.m3u8');
INSERT INTO `test2` VALUES ('2463', '2017十大犯罪类电影', 'http://47.95.172.168/channel/2463.m3u8');
INSERT INTO `test2` VALUES ('2473', '英文儿歌100首', 'http://47.95.172.168/channel/2473.m3u8');
INSERT INTO `test2` VALUES ('2487', '凤囚凰', 'http://47.95.172.168/channel/2487.m3u8');
INSERT INTO `test2` VALUES ('2499', '小沈阳', 'http://47.95.172.168/channel/2499.m3u8');
INSERT INTO `test2` VALUES ('2501', '赵丽颖电视剧全集', 'http://47.95.172.168/channel/2501.m3u8');
INSERT INTO `test2` VALUES ('2507', '周润发电影全集', 'http://47.95.172.168/channel/2507.m3u8');
INSERT INTO `test2` VALUES ('2508', 'Miss吃鸡日记', 'http://47.95.172.168/channel/2508.m3u8');
INSERT INTO `test2` VALUES ('2510', '狄仁杰探案剧系列', 'http://47.95.172.168/channel/2510.m3u8');
INSERT INTO `test2` VALUES ('2518', '我的前半生', 'http://47.95.172.168/channel/2518.m3u8');
INSERT INTO `test2` VALUES ('2520', '2017金曲TOP100', 'http://47.95.172.168/channel/2520.m3u8');
INSERT INTO `test2` VALUES ('2545', '谈判官', 'http://47.95.172.168/channel/2545.m3u8');
INSERT INTO `test2` VALUES ('2550', '华晨宇', 'http://47.95.172.168/channel/2550.m3u8');
INSERT INTO `test2` VALUES ('2554', '可惜不是你', 'http://47.95.172.168/channel/2554.m3u8');
INSERT INTO `test2` VALUES ('2555', '今日说法', 'http://47.95.172.168/channel/2555.m3u8');
INSERT INTO `test2` VALUES ('2558', '合家欢!春节经典贺岁片', 'http://47.95.172.168/channel/2558.m3u8');
INSERT INTO `test2` VALUES ('2560', '超经典!银幕黄金搭档', 'http://47.95.172.168/channel/2560.m3u8');
INSERT INTO `test2` VALUES ('2561', '孙悟空!哪部你最爱', 'http://47.95.172.168/channel/2561.m3u8');
INSERT INTO `test2` VALUES ('2577', '江湖武侠剧', 'http://47.95.172.168/channel/2577.m3u8');
INSERT INTO `test2` VALUES ('2580', '隋唐英雄系列', 'http://47.95.172.168/channel/2580.m3u8');
INSERT INTO `test2` VALUES ('2582', '航拍中国', 'http://47.95.172.168/channel/2582.m3u8');
INSERT INTO `test2` VALUES ('2584', '百变大咖秀', 'http://47.95.172.168/channel/2584.m3u8');
INSERT INTO `test2` VALUES ('2593', '亲爱的翻译官', 'http://47.95.172.168/channel/2593.m3u8');
INSERT INTO `test2` VALUES ('2598', '浪漫韩剧', 'http://47.95.172.168/channel/2598.m3u8');
INSERT INTO `test2` VALUES ('2599', '新闻大求真', 'http://47.95.172.168/channel/2599.m3u8');
INSERT INTO `test2` VALUES ('2603', '熊鼠一家', 'http://47.95.172.168/channel/2603.m3u8');
INSERT INTO `test2` VALUES ('2604', '萌鸡小队', 'http://47.95.172.168/channel/2604.m3u8');
INSERT INTO `test2` VALUES ('2606', '林正英经典电影', 'http://47.95.172.168/channel/2606.m3u8');
INSERT INTO `test2` VALUES ('2609', '粤听越经典', 'http://47.95.172.168/channel/2609.m3u8');
INSERT INTO `test2` VALUES ('2610', '了不起我的国', 'http://47.95.172.168/channel/2610.m3u8');
INSERT INTO `test2` VALUES ('2616', '老男孩', 'http://47.95.172.168/channel/2616.m3u8');
INSERT INTO `test2` VALUES ('2630', '妈妈是超人3', 'http://47.95.172.168/channel/2630.m3u8');
INSERT INTO `test2` VALUES ('2640', '地道湘菜', 'http://47.95.172.168/channel/2640.m3u8');
INSERT INTO `test2` VALUES ('2642', '经典粤菜', 'http://47.95.172.168/channel/2642.m3u8');
INSERT INTO `test2` VALUES ('2643', '简单做西餐', 'http://47.95.172.168/channel/2643.m3u8');
INSERT INTO `test2` VALUES ('2644', '少女心炸裂美食', 'http://47.95.172.168/channel/2644.m3u8');
INSERT INTO `test2` VALUES ('2646', '100道减脂沙拉', 'http://47.95.172.168/channel/2646.m3u8');
INSERT INTO `test2` VALUES ('2658', '贾冰', 'http://47.95.172.168/channel/2658.m3u8');
INSERT INTO `test2` VALUES ('2664', '佛系少女冯提莫', 'http://47.95.172.168/channel/2664.m3u8');
INSERT INTO `test2` VALUES ('2667', '本周推荐人物:张翰', 'http://47.95.172.168/channel/2667.m3u8');
INSERT INTO `test2` VALUES ('2671', '豆瓣评分9.0冒险电影', 'http://47.95.172.168/channel/2671.m3u8');
INSERT INTO `test2` VALUES ('2672', '嘴巴都笑裂了', 'http://47.95.172.168/channel/2672.m3u8');
INSERT INTO `test2` VALUES ('2678', '我是大侦探', 'http://47.95.172.168/channel/2678.m3u8');
INSERT INTO `test2` VALUES ('2683', '妖神记', 'http://47.95.172.168/channel/2683.m3u8');
INSERT INTO `test2` VALUES ('2688', '东北人就好这口', 'http://47.95.172.168/channel/2688.m3u8');
INSERT INTO `test2` VALUES ('2691', '古装剧BGM大放送', 'http://47.95.172.168/channel/2691.m3u8');
INSERT INTO `test2` VALUES ('2694', '精灵宝可梦系列', 'http://47.95.172.168/channel/2694.m3u8');
INSERT INTO `test2` VALUES ('2703', '星学院', 'http://47.95.172.168/channel/2703.m3u8');
INSERT INTO `test2` VALUES ('2711', '郭德纲', 'http://47.95.172.168/channel/2711.m3u8');
INSERT INTO `test2` VALUES ('2716', '兔小贝讲故事', 'http://47.95.172.168/channel/2716.m3u8');
INSERT INTO `test2` VALUES ('2719', '本月上映电影预告', 'http://47.95.172.168/channel/2719.m3u8');
INSERT INTO `test2` VALUES ('2720', '广场舞教学', 'http://47.95.172.168/channel/2720.m3u8');
INSERT INTO `test2` VALUES ('2722', '中国新闻', 'http://47.95.172.168/channel/2722.m3u8');
INSERT INTO `test2` VALUES ('2726', '真心大冒险', 'http://47.95.172.168/channel/2726.m3u8');
INSERT INTO `test2` VALUES ('2738', '娘亲舅大', 'http://47.95.172.168/channel/2738.m3u8');
INSERT INTO `test2` VALUES ('2740', '极品小品都在这', 'http://47.95.172.168/channel/2740.m3u8');
INSERT INTO `test2` VALUES ('2741', '欢乐过五一', 'http://47.95.172.168/channel/2741.m3u8');
INSERT INTO `test2` VALUES ('2751', '月光公主', 'http://47.95.172.168/channel/2751.m3u8');
INSERT INTO `test2` VALUES ('2753', '一人之下', 'http://47.95.172.168/channel/2753.m3u8');
INSERT INTO `test2` VALUES ('2755', '远大前程', 'http://47.95.172.168/channel/2755.m3u8');
INSERT INTO `test2` VALUES ('2758', '《妈超3》独家彩蛋', 'http://47.95.172.168/channel/2758.m3u8');
INSERT INTO `test2` VALUES ('2759', '精灵梦叶罗丽', 'http://47.95.172.168/channel/2759.m3u8');
INSERT INTO `test2` VALUES ('2760', '奥特曼系列', 'http://47.95.172.168/channel/2760.m3u8');
INSERT INTO `test2` VALUES ('2761', '十万个冷笑话', 'http://47.95.172.168/channel/2761.m3u8');
INSERT INTO `test2` VALUES ('2763', '十部恋爱少女必看电影', 'http://47.95.172.168/channel/2763.m3u8');
INSERT INTO `test2` VALUES ('2764', 'MC同人之方块学园', 'http://47.95.172.168/channel/2764.m3u8');
INSERT INTO `test2` VALUES ('2769', 'MUZI看世界', 'http://47.95.172.168/channel/2769.m3u8');
INSERT INTO `test2` VALUES ('2770', '金牌投资人', 'http://47.95.172.168/channel/2770.m3u8');
INSERT INTO `test2` VALUES ('2775', '密室逃脱', 'http://47.95.172.168/channel/2775.m3u8');
INSERT INTO `test2` VALUES ('2780', '超级新闻场', 'http://47.95.172.168/channel/2780.m3u8');
INSERT INTO `test2` VALUES ('2781', '每日新闻报', 'http://47.95.172.168/channel/2781.m3u8');
INSERT INTO `test2` VALUES ('2782', '开心麻花小品集', 'http://47.95.172.168/channel/2782.m3u8');
INSERT INTO `test2` VALUES ('2786', '悬疑推理剧', 'http://47.95.172.168/channel/2786.m3u8');
INSERT INTO `test2` VALUES ('2788', '一起哈哈哈', 'http://47.95.172.168/channel/2788.m3u8');
INSERT INTO `test2` VALUES ('2789', '偶像练习生BGM合集', 'http://47.95.172.168/channel/2789.m3u8');
INSERT INTO `test2` VALUES ('2791', '京剧猫', 'http://47.95.172.168/channel/2791.m3u8');
INSERT INTO `test2` VALUES ('2792', '海底小纵队', 'http://47.95.172.168/channel/2792.m3u8');
INSERT INTO `test2` VALUES ('2793', '阿米尔汗电影合集', 'http://47.95.172.168/channel/2793.m3u8');
INSERT INTO `test2` VALUES ('2796', '夏至未至', 'http://47.95.172.168/channel/2796.m3u8');
INSERT INTO `test2` VALUES ('2800', '铁血军事', 'http://47.95.172.168/channel/2800.m3u8');
INSERT INTO `test2` VALUES ('2801', '历史风云', 'http://47.95.172.168/channel/2801.m3u8');
INSERT INTO `test2` VALUES ('2803', '影帝古天乐电影合集', 'http://47.95.172.168/channel/2803.m3u8');
INSERT INTO `test2` VALUES ('2804', '2018香港金像奖获奖影片', 'http://47.95.172.168/channel/2804.m3u8');
INSERT INTO `test2` VALUES ('2807', '向往的生活2', 'http://47.95.172.168/channel/2807.m3u8');
INSERT INTO `test2` VALUES ('2808', '肉丸子的天空', 'http://47.95.172.168/channel/2808.m3u8');
INSERT INTO `test2` VALUES ('2810', '斗龙战士', 'http://47.95.172.168/channel/2810.m3u8');
INSERT INTO `test2` VALUES ('2812', '妈妈是超人1', 'http://47.95.172.168/channel/2812.m3u8');
INSERT INTO `test2` VALUES ('2815', '黄磊私房菜', 'http://47.95.172.168/channel/2815.m3u8');
INSERT INTO `test2` VALUES ('2816', '世界多美丽', 'http://47.95.172.168/channel/2816.m3u8');
INSERT INTO `test2` VALUES ('2818', '嗯哼咘咘宠妈日记', 'http://47.95.172.168/channel/2818.m3u8');
INSERT INTO `test2` VALUES ('2821', '记忆香港 回味港片', 'http://47.95.172.168/channel/2821.m3u8');
INSERT INTO `test2` VALUES ('2828', '我爱你,中国', 'http://47.95.172.168/channel/2828.m3u8');
INSERT INTO `test2` VALUES ('2830', '我想和你唱3', 'http://47.95.172.168/channel/2830.m3u8');
INSERT INTO `test2` VALUES ('2831', '奇趣新闻', 'http://47.95.172.168/channel/2831.m3u8');
INSERT INTO `test2` VALUES ('2833', '愤怒的小鸟', 'http://47.95.172.168/channel/2833.m3u8');
INSERT INTO `test2` VALUES ('2835', '三只松鼠', 'http://47.95.172.168/channel/2835.m3u8');
INSERT INTO `test2` VALUES ('2837', '民国风年代剧', 'http://47.95.172.168/channel/2837.m3u8');
INSERT INTO `test2` VALUES ('2838', '温暖的弦', 'http://47.95.172.168/channel/2838.m3u8');
INSERT INTO `test2` VALUES ('2840', '徐峥电影合集', 'http://47.95.172.168/channel/2840.m3u8');
INSERT INTO `test2` VALUES ('2845', '嗨,唱起来', 'http://47.95.172.168/channel/2845.m3u8');
INSERT INTO `test2` VALUES ('2847', '三宝大战诸葛亮', 'http://47.95.172.168/channel/2847.m3u8');
INSERT INTO `test2` VALUES ('2848', '新闻当事人', 'http://47.95.172.168/channel/2848.m3u8');
INSERT INTO `test2` VALUES ('2849', '大咖创始人访谈录', 'http://47.95.172.168/channel/2849.m3u8');
INSERT INTO `test2` VALUES ('2850', '超级工程', 'http://47.95.172.168/channel/2850.m3u8');
INSERT INTO `test2` VALUES ('2851', '方言小品', 'http://47.95.172.168/channel/2851.m3u8');
INSERT INTO `test2` VALUES ('2858', '刘德华电影全集', 'http://47.95.172.168/channel/2858.m3u8');
INSERT INTO `test2` VALUES ('2859', '青春疼痛电影', 'http://47.95.172.168/channel/2859.m3u8');
INSERT INTO `test2` VALUES ('2860', '王者荣耀进阶攻略', 'http://47.95.172.168/channel/2860.m3u8');
INSERT INTO `test2` VALUES ('2861', '千金归来', 'http://47.95.172.168/channel/2861.m3u8');
INSERT INTO `test2` VALUES ('2862', '抖音明星秀', 'http://47.95.172.168/channel/2862.m3u8');
INSERT INTO `test2` VALUES ('2863', 'TFboys的音乐时光', 'http://47.95.172.168/channel/2863.m3u8');
INSERT INTO `test2` VALUES ('2865', '鱼的50种吃法', 'http://47.95.172.168/channel/2865.m3u8');
INSERT INTO `test2` VALUES ('2867', '比得兔全集', 'http://47.95.172.168/channel/2867.m3u8');
INSERT INTO `test2` VALUES ('2868', '倒霉熊', 'http://47.95.172.168/channel/2868.m3u8');
INSERT INTO `test2` VALUES ('2869', '疯狂的兔子', 'http://47.95.172.168/channel/2869.m3u8');
INSERT INTO `test2` VALUES ('2870', '45道爽口小凉菜', 'http://47.95.172.168/channel/2870.m3u8');
INSERT INTO `test2` VALUES ('2871', '向往的生活老友记', 'http://47.95.172.168/channel/2871.m3u8');
INSERT INTO `test2` VALUES ('2873', '2018欧洲歌唱大赛', 'http://47.95.172.168/channel/2873.m3u8');
INSERT INTO `test2` VALUES ('2878', '历届戛纳华人评委电影集', 'http://47.95.172.168/channel/2878.m3u8');
INSERT INTO `test2` VALUES ('2881', '《复仇者联盟3》精彩看点', 'http://47.95.172.168/channel/2881.m3u8');
INSERT INTO `test2` VALUES ('2882', '狂野动物王国', 'http://47.95.172.168/channel/2882.m3u8');
INSERT INTO `test2` VALUES ('2883', '萌宠逗你玩', 'http://47.95.172.168/channel/2883.m3u8');
INSERT INTO `test2` VALUES ('2885', 'OMG蜜糖辣妈', 'http://47.95.172.168/channel/2885.m3u8');
INSERT INTO `test2` VALUES ('2886', '海底世界的秘密', 'http://47.95.172.168/channel/2886.m3u8');
INSERT INTO `test2` VALUES ('2887', '解密紫禁城', 'http://47.95.172.168/channel/2887.m3u8');
INSERT INTO `test2` VALUES ('2888', '爱笑小品屋', 'http://47.95.172.168/channel/2888.m3u8');
INSERT INTO `test2` VALUES ('2889', '甜虐燃!泰国电影合集', 'http://47.95.172.168/channel/2889.m3u8');
INSERT INTO `test2` VALUES ('2890', '玄幻片!神鬼仙侠传奇', 'http://47.95.172.168/channel/2890.m3u8');
INSERT INTO `test2` VALUES ('2891', '绝地求生搞笑合集', 'http://47.95.172.168/channel/2891.m3u8');
INSERT INTO `test2` VALUES ('2892', '跨界歌王', 'http://47.95.172.168/channel/2892.m3u8');
INSERT INTO `test2` VALUES ('2893', '长腿妹纸热舞秀', 'http://47.95.172.168/channel/2893.m3u8');
INSERT INTO `test2` VALUES ('2894', '游戏就该这么玩', 'http://47.95.172.168/channel/2894.m3u8');
INSERT INTO `test2` VALUES ('2895', '觅食迹', 'http://47.95.172.168/channel/2895.m3u8');
INSERT INTO `test2` VALUES ('2896', '54款果蔬汁', 'http://47.95.172.168/channel/2896.m3u8');
INSERT INTO `test2` VALUES ('2897', '叫我僵小鱼', 'http://47.95.172.168/channel/2897.m3u8');
INSERT INTO `test2` VALUES ('2898', '甜炸!霸道总裁也柔情', 'http://47.95.172.168/channel/2898.m3u8');
INSERT INTO `test2` VALUES ('2899', '《归去来》倒计时1天', 'http://47.95.172.168/channel/2899.m3u8');
INSERT INTO `test2` VALUES ('2900', '鸡的40种吃法', 'http://47.95.172.168/channel/2900.m3u8');
INSERT INTO `test2` VALUES ('2901', '母亲节,温暖示爱指南', 'http://47.95.172.168/channel/2901.m3u8');
INSERT INTO `test2` VALUES ('2902', '三分钟追剧', 'http://47.95.172.168/channel/2902.m3u8');
INSERT INTO `test2` VALUES ('2904', '一禅小和尚', 'http://47.95.172.168/channel/2904.m3u8');
INSERT INTO `test2` VALUES ('2905', '积高侠与阿里巴巴', 'http://47.95.172.168/channel/2905.m3u8');
INSERT INTO `test2` VALUES ('2906', '新天线宝宝', 'http://47.95.172.168/channel/2906.m3u8');
INSERT INTO `test2` VALUES ('2907', '娱乐圈人气辣妈了解下', 'http://47.95.172.168/channel/2907.m3u8');
INSERT INTO `test2` VALUES ('2908', '汶川地震10年祭特别报道', 'http://47.95.172.168/channel/2908.m3u8');
-- ----------------------------
-- Table structure for `test3`
-- ----------------------------
DROP TABLE IF EXISTS `test3`;
CREATE TABLE `test3` (
`id` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`url_1` varchar(500) COLLATE utf8_unicode_ci DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Records of test3
-- ----------------------------
INSERT INTO `test3` VALUES ('1083', '天天向上', 'http://47.95.172.168/channel/1083.m3u8');
INSERT INTO `test3` VALUES ('1084', '快乐大本营', 'http://47.95.172.168/channel/1084.m3u8');
INSERT INTO `test3` VALUES ('1095', '影视金曲', 'http://47.95.172.168/channel/1095.m3u8');
INSERT INTO `test3` VALUES ('1172', '最全旅游指南', 'http://47.95.172.168/channel/1172.m3u8');
INSERT INTO `test3` VALUES ('1190', '古装宫斗', 'http://47.95.172.168/channel/1190.m3u8');
INSERT INTO `test3` VALUES ('1215', '谍战剧', 'http://47.95.172.168/channel/1215.m3u8');
INSERT INTO `test3` VALUES ('1524', '宝宝巴士儿歌', 'http://47.95.172.168/channel/1524.m3u8');
INSERT INTO `test3` VALUES ('1526', '小猪佩奇全集', 'http://47.95.172.168/channel/1526.m3u8');
INSERT INTO `test3` VALUES ('1576', '称霸广场舞必备神曲', 'http://47.95.172.168/channel/1576.m3u8');
INSERT INTO `test3` VALUES ('1578', '宋小宝', 'http://47.95.172.168/channel/1578.m3u8');
INSERT INTO `test3` VALUES ('1611', '春晚小品集锦', 'http://47.95.172.168/channel/1611.m3u8');
INSERT INTO `test3` VALUES ('1617', '汪汪队立大功', 'http://47.95.172.168/channel/1617.m3u8');
INSERT INTO `test3` VALUES ('1701', '妈妈是超人2', 'http://47.95.172.168/channel/1701.m3u8');
INSERT INTO `test3` VALUES ('1804', '贾玲', 'http://47.95.172.168/channel/1804.m3u8');
INSERT INTO `test3` VALUES ('1823', '蓝迪儿歌', 'http://47.95.172.168/channel/1823.m3u8');
INSERT INTO `test3` VALUES ('1843', '一人一首经典歌曲', 'http://47.95.172.168/channel/1843.m3u8');
INSERT INTO `test3` VALUES ('1846', '本周人气菜谱', 'http://47.95.172.168/channel/1846.m3u8');
INSERT INTO `test3` VALUES ('1853', '逗逗迪迪爱唱歌', 'http://47.95.172.168/channel/1853.m3u8');
INSERT INTO `test3` VALUES ('1880', '芭比系列', 'http://47.95.172.168/channel/1880.m3u8');
INSERT INTO `test3` VALUES ('1911', '儿歌300首', 'http://47.95.172.168/channel/1911.m3u8');
INSERT INTO `test3` VALUES ('1926', '岳云鹏', 'http://47.95.172.168/channel/1926.m3u8');
INSERT INTO `test3` VALUES ('1937', '疯狂的麦咭', 'http://47.95.172.168/channel/1937.m3u8');
INSERT INTO `test3` VALUES ('1938', '狐妖小红娘', 'http://47.95.172.168/channel/1938.m3u8');
INSERT INTO `test3` VALUES ('1940', '七十二层奇楼', 'http://47.95.172.168/channel/1940.m3u8');
INSERT INTO `test3` VALUES ('1952', '哇!这里有好多玩具', 'http://47.95.172.168/channel/1952.m3u8');
INSERT INTO `test3` VALUES ('2048', '环球购物', 'http://47.95.172.168/channel/2048.m3u8');
INSERT INTO `test3` VALUES ('2050', '惊喜价到', 'http://47.95.172.168/channel/2050.m3u8');
INSERT INTO `test3` VALUES ('2081', '空中超市', 'http://47.95.172.168/channel/2081.m3u8');
INSERT INTO `test3` VALUES ('2159', '中国惊奇先生', 'http://47.95.172.168/channel/2159.m3u8');
INSERT INTO `test3` VALUES ('2182', '今日必看资讯', 'http://47.95.172.168/channel/2182.m3u8');
INSERT INTO `test3` VALUES ('2183', '社会热点', 'http://47.95.172.168/channel/2183.m3u8');
INSERT INTO `test3` VALUES ('2195', '爸爸去哪儿1', 'http://47.95.172.168/channel/2195.m3u8');
INSERT INTO `test3` VALUES ('2196', '爸爸去哪儿2', 'http://47.95.172.168/channel/2196.m3u8');
INSERT INTO `test3` VALUES ('2197', '爸爸去哪儿3', 'http://47.95.172.168/channel/2197.m3u8');
INSERT INTO `test3` VALUES ('2198', '爸爸去哪儿4', 'http://47.95.172.168/channel/2198.m3u8');
INSERT INTO `test3` VALUES ('2201', '一年级', 'http://47.95.172.168/channel/2201.m3u8');
INSERT INTO `test3` VALUES ('2211', '家装指南', 'http://47.95.172.168/channel/2211.m3u8');
INSERT INTO `test3` VALUES ('2214', '大美中国', 'http://47.95.172.168/channel/2214.m3u8');
INSERT INTO `test3` VALUES ('2215', '麻辣变形计', 'http://47.95.172.168/channel/2215.m3u8');
INSERT INTO `test3` VALUES ('2221', '蒙面唱将金曲捞', 'http://47.95.172.168/channel/2221.m3u8');
INSERT INTO `test3` VALUES ('2223', '十五部超搞笑动漫', 'http://47.95.172.168/channel/2223.m3u8');
INSERT INTO `test3` VALUES ('2230', '启蒙音乐剧', 'http://47.95.172.168/channel/2230.m3u8');
INSERT INTO `test3` VALUES ('2259', '香港经典动作片', 'http://47.95.172.168/channel/2259.m3u8');
INSERT INTO `test3` VALUES ('2263', '惹味川菜', 'http://47.95.172.168/channel/2263.m3u8');
INSERT INTO `test3` VALUES ('2270', '喜剧总动员', 'http://47.95.172.168/channel/2270.m3u8');
INSERT INTO `test3` VALUES ('2272', '天籁之战', 'http://47.95.172.168/channel/2272.m3u8');
INSERT INTO `test3` VALUES ('2274', '贝乐虎儿歌', 'http://47.95.172.168/channel/2274.m3u8');
INSERT INTO `test3` VALUES ('2277', '大胃美少女合集', 'http://47.95.172.168/channel/2277.m3u8');
INSERT INTO `test3` VALUES ('2278', 'Papi酱团队创意视频', 'http://47.95.172.168/channel/2278.m3u8');
INSERT INTO `test3` VALUES ('2284', '科幻电影', 'http://47.95.172.168/channel/2284.m3u8');
INSERT INTO `test3` VALUES ('2285', '反腐纪录片揭落马细节', 'http://47.95.172.168/channel/2285.m3u8');
INSERT INTO `test3` VALUES ('2288', '一分钟性知识', 'http://47.95.172.168/channel/2288.m3u8');
INSERT INTO `test3` VALUES ('2289', '全球最性感女人', 'http://47.95.172.168/channel/2289.m3u8');
INSERT INTO `test3` VALUES ('2296', '日食记', 'http://47.95.172.168/channel/2296.m3u8');
INSERT INTO `test3` VALUES ('2318', '动物儿歌', 'http://47.95.172.168/channel/2318.m3u8');
INSERT INTO `test3` VALUES ('2321', '潘长江', 'http://47.95.172.168/channel/2321.m3u8');
INSERT INTO `test3` VALUES ('2331', '一起来看流星雨', 'http://47.95.172.168/channel/2331.m3u8');
INSERT INTO `test3` VALUES ('2345', '爆笑恶作剧', 'http://47.95.172.168/channel/2345.m3u8');
INSERT INTO `test3` VALUES ('2361', '萌仔萌萌宅', 'http://47.95.172.168/channel/2361.m3u8');
INSERT INTO `test3` VALUES ('2370', '熊出没之探险日记', 'http://47.95.172.168/channel/2370.m3u8');
INSERT INTO `test3` VALUES ('2380', '绝地求生', 'http://47.95.172.168/channel/2380.m3u8');
INSERT INTO `test3` VALUES ('2387', '爆笑运动会', 'http://47.95.172.168/channel/2387.m3u8');
INSERT INTO `test3` VALUES ('2399', '本周电影TOP10', 'http://47.95.172.168/channel/2399.m3u8');
INSERT INTO `test3` VALUES ('2410', '放学别走', 'http://47.95.172.168/channel/2410.m3u8');
INSERT INTO `test3` VALUES ('2418', '相声合集', 'http://47.95.172.168/channel/2418.m3u8');
INSERT INTO `test3` VALUES ('2421', '爆笑喜剧让你开心一整年', 'http://47.95.172.168/channel/2421.m3u8');
INSERT INTO `test3` VALUES ('2429', '2017洗脑神曲', 'http://47.95.172.168/channel/2429.m3u8');
INSERT INTO `test3` VALUES ('2434', '声临其境', 'http://47.95.172.168/channel/2434.m3u8');
INSERT INTO `test3` VALUES ('2437', '歌手2018', 'http://47.95.172.168/channel/2437.m3u8');
INSERT INTO `test3` VALUES ('2441', '最戳你笑点的小品', 'http://47.95.172.168/channel/2441.m3u8');
INSERT INTO `test3` VALUES ('2444', '武侠修仙动漫', 'http://47.95.172.168/channel/2444.m3u8');
INSERT INTO `test3` VALUES ('2447', '步步惊心', 'http://47.95.172.168/channel/2447.m3u8');
INSERT INTO `test3` VALUES ('2456', '童谣100首', 'http://47.95.172.168/channel/2456.m3u8');
INSERT INTO `test3` VALUES ('2461', '恋爱先生', 'http://47.95.172.168/channel/2461.m3u8');
INSERT INTO `test3` VALUES ('2463', '2017十大犯罪类电影', 'http://47.95.172.168/channel/2463.m3u8');
INSERT INTO `test3` VALUES ('2473', '英文儿歌100首', 'http://47.95.172.168/channel/2473.m3u8');
INSERT INTO `test3` VALUES ('2487', '凤囚凰', 'http://47.95.172.168/channel/2487.m3u8');
INSERT INTO `test3` VALUES ('2499', '小沈阳', 'http://47.95.172.168/channel/2499.m3u8');
INSERT INTO `test3` VALUES ('2501', '赵丽颖电视剧全集', 'http://47.95.172.168/channel/2501.m3u8');
INSERT INTO `test3` VALUES ('2507', '周润发电影全集', 'http://47.95.172.168/channel/2507.m3u8');
INSERT INTO `test3` VALUES ('2508', 'Miss吃鸡日记', 'http://47.95.172.168/channel/2508.m3u8');
INSERT INTO `test3` VALUES ('2510', '狄仁杰探案剧系列', 'http://47.95.172.168/channel/2510.m3u8');
INSERT INTO `test3` VALUES ('2518', '我的前半生', 'http://47.95.172.168/channel/2518.m3u8');
INSERT INTO `test3` VALUES ('2520', '2017金曲TOP100', 'http://47.95.172.168/channel/2520.m3u8');
INSERT INTO `test3` VALUES ('2545', '谈判官', 'http://47.95.172.168/channel/2545.m3u8');
INSERT INTO `test3` VALUES ('2550', '华晨宇', 'http://47.95.172.168/channel/2550.m3u8');
INSERT INTO `test3` VALUES ('2554', '可惜不是你', 'http://47.95.172.168/channel/2554.m3u8');
INSERT INTO `test3` VALUES ('2555', '今日说法', 'http://47.95.172.168/channel/2555.m3u8');
INSERT INTO `test3` VALUES ('2558', '合家欢!春节经典贺岁片', 'http://47.95.172.168/channel/2558.m3u8');
INSERT INTO `test3` VALUES ('2560', '超经典!银幕黄金搭档', 'http://47.95.172.168/channel/2560.m3u8');
INSERT INTO `test3` VALUES ('2561', '孙悟空!哪部你最爱', 'http://47.95.172.168/channel/2561.m3u8');
INSERT INTO `test3` VALUES ('2577', '江湖武侠剧', 'http://47.95.172.168/channel/2577.m3u8');
INSERT INTO `test3` VALUES ('2580', '隋唐英雄系列', 'http://47.95.172.168/channel/2580.m3u8');
INSERT INTO `test3` VALUES ('2582', '航拍中国', 'http://47.95.172.168/channel/2582.m3u8');
INSERT INTO `test3` VALUES ('2584', '百变大咖秀', 'http://47.95.172.168/channel/2584.m3u8');
INSERT INTO `test3` VALUES ('2593', '亲爱的翻译官', 'http://47.95.172.168/channel/2593.m3u8');
INSERT INTO `test3` VALUES ('2598', '浪漫韩剧', 'http://47.95.172.168/channel/2598.m3u8');
INSERT INTO `test3` VALUES ('2599', '新闻大求真', 'http://47.95.172.168/channel/2599.m3u8');
INSERT INTO `test3` VALUES ('2603', '熊鼠一家', 'http://47.95.172.168/channel/2603.m3u8');
INSERT INTO `test3` VALUES ('2604', '萌鸡小队', 'http://47.95.172.168/channel/2604.m3u8');
INSERT INTO `test3` VALUES ('2606', '林正英经典电影', 'http://47.95.172.168/channel/2606.m3u8');
INSERT INTO `test3` VALUES ('2609', '粤听越经典', 'http://47.95.172.168/channel/2609.m3u8');
INSERT INTO `test3` VALUES ('2610', '了不起我的国', 'http://47.95.172.168/channel/2610.m3u8');
INSERT INTO `test3` VALUES ('2616', '老男孩', 'http://47.95.172.168/channel/2616.m3u8');
INSERT INTO `test3` VALUES ('2630', '妈妈是超人3', 'http://47.95.172.168/channel/2630.m3u8');
INSERT INTO `test3` VALUES ('2640', '地道湘菜', 'http://47.95.172.168/channel/2640.m3u8');
INSERT INTO `test3` VALUES ('2642', '经典粤菜', 'http://47.95.172.168/channel/2642.m3u8');
INSERT INTO `test3` VALUES ('2643', '简单做西餐', 'http://47.95.172.168/channel/2643.m3u8');
INSERT INTO `test3` VALUES ('2644', '少女心炸裂美食', 'http://47.95.172.168/channel/2644.m3u8');
INSERT INTO `test3` VALUES ('2646', '100道减脂沙拉', 'http://47.95.172.168/channel/2646.m3u8');
INSERT INTO `test3` VALUES ('2658', '贾冰', 'http://47.95.172.168/channel/2658.m3u8');
INSERT INTO `test3` VALUES ('2664', '佛系少女冯提莫', 'http://47.95.172.168/channel/2664.m3u8');
INSERT INTO `test3` VALUES ('2667', '本周推荐人物:张翰', 'http://47.95.172.168/channel/2667.m3u8');
INSERT INTO `test3` VALUES ('2671', '豆瓣评分9.0冒险电影', 'http://47.95.172.168/channel/2671.m3u8');
INSERT INTO `test3` VALUES ('2672', '嘴巴都笑裂了', 'http://47.95.172.168/channel/2672.m3u8');
INSERT INTO `test3` VALUES ('2678', '我是大侦探', 'http://47.95.172.168/channel/2678.m3u8');
INSERT INTO `test3` VALUES ('2683', '妖神记', 'http://47.95.172.168/channel/2683.m3u8');
INSERT INTO `test3` VALUES ('2688', '东北人就好这口', 'http://47.95.172.168/channel/2688.m3u8');
INSERT INTO `test3` VALUES ('2691', '古装剧BGM大放送', 'http://47.95.172.168/channel/2691.m3u8');
INSERT INTO `test3` VALUES ('2694', '精灵宝可梦系列', 'http://47.95.172.168/channel/2694.m3u8');
INSERT INTO `test3` VALUES ('2703', '星学院', 'http://47.95.172.168/channel/2703.m3u8');
INSERT INTO `test3` VALUES ('2711', '郭德纲', 'http://47.95.172.168/channel/2711.m3u8');
INSERT INTO `test3` VALUES ('2716', '兔小贝讲故事', 'http://47.95.172.168/channel/2716.m3u8');
INSERT INTO `test3` VALUES ('2719', '本月上映电影预告', 'http://47.95.172.168/channel/2719.m3u8');
INSERT INTO `test3` VALUES ('2720', '广场舞教学', 'http://47.95.172.168/channel/2720.m3u8');
INSERT INTO `test3` VALUES ('2722', '中国新闻', 'http://47.95.172.168/channel/2722.m3u8');
INSERT INTO `test3` VALUES ('2726', '真心大冒险', 'http://47.95.172.168/channel/2726.m3u8');
INSERT INTO `test3` VALUES ('2738', '娘亲舅大', 'http://47.95.172.168/channel/2738.m3u8');
INSERT INTO `test3` VALUES ('2740', '极品小品都在这', 'http://47.95.172.168/channel/2740.m3u8');
INSERT INTO `test3` VALUES ('2741', '欢乐过五一', 'http://47.95.172.168/channel/2741.m3u8');
INSERT INTO `test3` VALUES ('2751', '月光公主', 'http://47.95.172.168/channel/2751.m3u8');
INSERT INTO `test3` VALUES ('2753', '一人之下', 'http://47.95.172.168/channel/2753.m3u8');
INSERT INTO `test3` VALUES ('2755', '远大前程', 'http://47.95.172.168/channel/2755.m3u8');
INSERT INTO `test3` VALUES ('2758', '《妈超3》独家彩蛋', 'http://47.95.172.168/channel/2758.m3u8');
INSERT INTO `test3` VALUES ('2759', '精灵梦叶罗丽', 'http://47.95.172.168/channel/2759.m3u8');
INSERT INTO `test3` VALUES ('2760', '奥特曼系列', 'http://47.95.172.168/channel/2760.m3u8');
INSERT INTO `test3` VALUES ('2761', '十万个冷笑话', 'http://47.95.172.168/channel/2761.m3u8');
INSERT INTO `test3` VALUES ('2763', '十部恋爱少女必看电影', 'http://47.95.172.168/channel/2763.m3u8');
INSERT INTO `test3` VALUES ('2764', 'MC同人之方块学园', 'http://47.95.172.168/channel/2764.m3u8');
INSERT INTO `test3` VALUES ('2769', 'MUZI看世界', 'http://47.95.172.168/channel/2769.m3u8');
INSERT INTO `test3` VALUES ('2770', '金牌投资人', 'http://47.95.172.168/channel/2770.m3u8');
INSERT INTO `test3` VALUES ('2775', '密室逃脱', 'http://47.95.172.168/channel/2775.m3u8');
INSERT INTO `test3` VALUES ('2780', '超级新闻场', 'http://47.95.172.168/channel/2780.m3u8');
INSERT INTO `test3` VALUES ('2781', '每日新闻报', 'http://47.95.172.168/channel/2781.m3u8');
INSERT INTO `test3` VALUES ('2782', '开心麻花小品集', 'http://47.95.172.168/channel/2782.m3u8');
INSERT INTO `test3` VALUES ('2786', '悬疑推理剧', 'http://47.95.172.168/channel/2786.m3u8');
INSERT INTO `test3` VALUES ('2788', '一起哈哈哈', 'http://47.95.172.168/channel/2788.m3u8');
INSERT INTO `test3` VALUES ('2789', '偶像练习生BGM合集', 'http://47.95.172.168/channel/2789.m3u8');
INSERT INTO `test3` VALUES ('2791', '京剧猫', 'http://47.95.172.168/channel/2791.m3u8');
INSERT INTO `test3` VALUES ('2792', '海底小纵队', 'http://47.95.172.168/channel/2792.m3u8');
INSERT INTO `test3` VALUES ('2793', '阿米尔汗电影合集', 'http://47.95.172.168/channel/2793.m3u8');
INSERT INTO `test3` VALUES ('2796', '夏至未至', 'http://47.95.172.168/channel/2796.m3u8');
INSERT INTO `test3` VALUES ('2800', '铁血军事', 'http://47.95.172.168/channel/2800.m3u8');
INSERT INTO `test3` VALUES ('2801', '历史风云', 'http://47.95.172.168/channel/2801.m3u8');
INSERT INTO `test3` VALUES ('2804', '2018香港金像奖获奖影片', 'http://47.95.172.168/channel/2804.m3u8');
INSERT INTO `test3` VALUES ('2807', '向往的生活2', 'http://47.95.172.168/channel/2807.m3u8');
INSERT INTO `test3` VALUES ('2808', '肉丸子的天空', 'http://47.95.172.168/channel/2808.m3u8');
INSERT INTO `test3` VALUES ('2810', '斗龙战士', 'http://47.95.172.168/channel/2810.m3u8');
INSERT INTO `test3` VALUES ('2812', '妈妈是超人1', 'http://47.95.172.168/channel/2812.m3u8');
INSERT INTO `test3` VALUES ('2815', '黄磊私房菜', 'http://47.95.172.168/channel/2815.m3u8');
INSERT INTO `test3` VALUES ('2816', '世界多美丽', 'http://47.95.172.168/channel/2816.m3u8');
INSERT INTO `test3` VALUES ('2818', '嗯哼咘咘宠妈日记', 'http://47.95.172.168/channel/2818.m3u8');
INSERT INTO `test3` VALUES ('2821', '记忆香港 回味港片', 'http://47.95.172.168/channel/2821.m3u8');
INSERT INTO `test3` VALUES ('2828', '我爱你,中国', 'http://47.95.172.168/channel/2828.m3u8');
INSERT INTO `test3` VALUES ('2830', '我想和你唱3', 'http://47.95.172.168/channel/2830.m3u8');
INSERT INTO `test3` VALUES ('2831', '奇趣新闻', 'http://47.95.172.168/channel/2831.m3u8');
INSERT INTO `test3` VALUES ('2833', '愤怒的小鸟', 'http://47.95.172.168/channel/2833.m3u8');
INSERT INTO `test3` VALUES ('2835', '三只松鼠', 'http://47.95.172.168/channel/2835.m3u8');
INSERT INTO `test3` VALUES ('2837', '民国风年代剧', 'http://47.95.172.168/channel/2837.m3u8');
INSERT INTO `test3` VALUES ('2838', '温暖的弦', 'http://47.95.172.168/channel/2838.m3u8');
INSERT INTO `test3` VALUES ('2840', '徐峥电影合集', 'http://47.95.172.168/channel/2840.m3u8');
INSERT INTO `test3` VALUES ('2845', '嗨,唱起来', 'http://47.95.172.168/channel/2845.m3u8');
INSERT INTO `test3` VALUES ('2847', '三宝大战诸葛亮', 'http://47.95.172.168/channel/2847.m3u8');
INSERT INTO `test3` VALUES ('2848', '新闻当事人', 'http://47.95.172.168/channel/2848.m3u8');
INSERT INTO `test3` VALUES ('2849', '大咖创始人访谈录', 'http://47.95.172.168/channel/2849.m3u8');
INSERT INTO `test3` VALUES ('2850', '超级工程', 'http://47.95.172.168/channel/2850.m3u8');
INSERT INTO `test3` VALUES ('2851', '方言小品', 'http://47.95.172.168/channel/2851.m3u8');
INSERT INTO `test3` VALUES ('2858', '刘德华电影全集', 'http://47.95.172.168/channel/2858.m3u8');
INSERT INTO `test3` VALUES ('2859', '青春疼痛电影', 'http://47.95.172.168/channel/2859.m3u8');
INSERT INTO `test3` VALUES ('2860', '王者荣耀进阶攻略', 'http://47.95.172.168/channel/2860.m3u8');
INSERT INTO `test3` VALUES ('2861', '千金归来', 'http://47.95.172.168/channel/2861.m3u8');
INSERT INTO `test3` VALUES ('2862', '抖音明星秀', 'http://47.95.172.168/channel/2862.m3u8');
INSERT INTO `test3` VALUES ('2863', 'TFboys的音乐时光', 'http://47.95.172.168/channel/2863.m3u8');
INSERT INTO `test3` VALUES ('2865', '鱼的50种吃法', 'http://47.95.172.168/channel/2865.m3u8');
INSERT INTO `test3` VALUES ('2867', '比得兔全集', 'http://47.95.172.168/channel/2867.m3u8');
INSERT INTO `test3` VALUES ('2868', '倒霉熊', 'http://47.95.172.168/channel/2868.m3u8');
INSERT INTO `test3` VALUES ('2869', '疯狂的兔子', 'http://47.95.172.168/channel/2869.m3u8');
INSERT INTO `test3` VALUES ('2870', '45道爽口小凉菜', 'http://47.95.172.168/channel/2870.m3u8');
INSERT INTO `test3` VALUES ('2871', '向往的生活老友记', 'http://47.95.172.168/channel/2871.m3u8');
INSERT INTO `test3` VALUES ('2873', '2018欧洲歌唱大赛', 'http://47.95.172.168/channel/2873.m3u8');
INSERT INTO `test3` VALUES ('2878', '历届戛纳华人评委电影集', 'http://47.95.172.168/channel/2878.m3u8');
INSERT INTO `test3` VALUES ('2881', '《复仇者联盟3》精彩看点', 'http://47.95.172.168/channel/2881.m3u8');
INSERT INTO `test3` VALUES ('2882', '狂野动物王国', 'http://47.95.172.168/channel/2882.m3u8');
INSERT INTO `test3` VALUES ('2883', '萌宠逗你玩', 'http://47.95.172.168/channel/2883.m3u8');
INSERT INTO `test3` VALUES ('2885', 'OMG蜜糖辣妈', 'http://47.95.172.168/channel/2885.m3u8');
INSERT INTO `test3` VALUES ('2886', '海底世界的秘密', 'http://47.95.172.168/channel/2886.m3u8');
INSERT INTO `test3` VALUES ('2887', '解密紫禁城', 'http://47.95.172.168/channel/2887.m3u8');
INSERT INTO `test3` VALUES ('2888', '爱笑小品屋', 'http://47.95.172.168/channel/2888.m3u8');
INSERT INTO `test3` VALUES ('2889', '甜虐燃!泰国电影合集', 'http://47.95.172.168/channel/2889.m3u8');
INSERT INTO `test3` VALUES ('2890', '玄幻片!神鬼仙侠传奇', 'http://47.95.172.168/channel/2890.m3u8');
INSERT INTO `test3` VALUES ('2891', '绝地求生搞笑合集', 'http://47.95.172.168/channel/2891.m3u8');
INSERT INTO `test3` VALUES ('2892', '跨界歌王', 'http://47.95.172.168/channel/2892.m3u8');
INSERT INTO `test3` VALUES ('2893', '长腿妹纸热舞秀', 'http://47.95.172.168/channel/2893.m3u8');
INSERT INTO `test3` VALUES ('2894', '游戏就该这么玩', 'http://47.95.172.168/channel/2894.m3u8');
INSERT INTO `test3` VALUES ('2895', '觅食迹', 'http://47.95.172.168/channel/2895.m3u8');
INSERT INTO `test3` VALUES ('2896', '54款果蔬汁', 'http://47.95.172.168/channel/2896.m3u8');
INSERT INTO `test3` VALUES ('2897', '叫我僵小鱼', 'http://47.95.172.168/channel/2897.m3u8');
INSERT INTO `test3` VALUES ('2898', '甜炸!霸道总裁也柔情', 'http://47.95.172.168/channel/2898.m3u8');
INSERT INTO `test3` VALUES ('2899', '《归去来》倒计时1天', 'http://47.95.172.168/channel/2899.m3u8');
INSERT INTO `test3` VALUES ('2900', '鸡的40种吃法', 'http://47.95.172.168/channel/2900.m3u8');
INSERT INTO `test3` VALUES ('2901', '母亲节,温暖示爱指南', 'http://47.95.172.168/channel/2901.m3u8');
INSERT INTO `test3` VALUES ('2902', '三分钟追剧', 'http://47.95.172.168/channel/2902.m3u8');
INSERT INTO `test3` VALUES ('2904', '一禅小和尚', 'http://47.95.172.168/channel/2904.m3u8');
INSERT INTO `test3` VALUES ('2905', '积高侠与阿里巴巴', 'http://47.95.172.168/channel/2905.m3u8');
INSERT INTO `test3` VALUES ('2906', '新天线宝宝', 'http://47.95.172.168/channel/2906.m3u8');
INSERT INTO `test3` VALUES ('2907', '娱乐圈人气辣妈了解下', 'http://47.95.172.168/channel/2907.m3u8');
INSERT INTO `test3` VALUES ('2908', '汶川地震10年祭特别报道', 'http://47.95.172.168/channel/2908.m3u8');
-- ----------------------------
-- Table structure for `t_auth`
-- ----------------------------
DROP TABLE IF EXISTS `t_auth`;
CREATE TABLE `t_auth` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(20) NOT NULL COMMENT '权限名称',
`status` tinyint(1) unsigned DEFAULT '1' COMMENT '状态(1:禁用,2:启用)',
`sort` smallint(6) unsigned DEFAULT '0' COMMENT '排序权重',
`desc` varchar(255) DEFAULT NULL COMMENT '备注说明',
`create_by` bigint(11) unsigned DEFAULT '0' COMMENT '创建人',
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
PRIMARY KEY (`id`),
UNIQUE KEY `index_system_auth_title` (`title`) USING BTREE,
KEY `index_system_auth_status` (`status`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='系统权限表';
-- ----------------------------
-- Records of t_auth
-- ----------------------------
INSERT INTO `t_auth` VALUES ('1', '超级管理员', '1', '0', '超级管理员', '0', '2017-10-13 12:25:16');
INSERT INTO `t_auth` VALUES ('2', 'APP普通用户', '1', '0', '只能调用接口', '0', '2018-02-27 10:09:54');
-- ----------------------------
-- Table structure for `t_auth_node`
-- ----------------------------
DROP TABLE IF EXISTS `t_auth_node`;
CREATE TABLE `t_auth_node` (
`auth` bigint(20) unsigned DEFAULT NULL COMMENT '角色ID',
`node` varchar(200) DEFAULT NULL COMMENT '节点路径',
KEY `index_system_auth_auth` (`auth`) USING BTREE,
KEY `index_system_auth_node` (`node`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='角色与节点关系表';
-- ----------------------------
-- Records of t_auth_node
-- ----------------------------
INSERT INTO `t_auth_node` VALUES ('2', 'api');
INSERT INTO `t_auth_node` VALUES ('2', 'api/chat');
INSERT INTO `t_auth_node` VALUES ('2', 'api/chat/addchat');
INSERT INTO `t_auth_node` VALUES ('2', 'api/chat/getchatforpage');
INSERT INTO `t_auth_node` VALUES ('2', 'api/comment');
INSERT INTO `t_auth_node` VALUES ('2', 'api/comment/getcommentforpage');
INSERT INTO `t_auth_node` VALUES ('2', 'api/comment/addcomment');
INSERT INTO `t_auth_node` VALUES ('2', 'api/index');
INSERT INTO `t_auth_node` VALUES ('2', 'api/index/index');
INSERT INTO `t_auth_node` VALUES ('2', 'api/notice');
INSERT INTO `t_auth_node` VALUES ('2', 'api/notice/getnoticeforpage');
INSERT INTO `t_auth_node` VALUES ('2', 'api/region');
INSERT INTO `t_auth_node` VALUES ('2', 'api/region/getprovinces');
INSERT INTO `t_auth_node` VALUES ('2', 'api/television');
INSERT INTO `t_auth_node` VALUES ('2', 'api/television/gettvforpagebytype');
INSERT INTO `t_auth_node` VALUES ('2', 'api/television/gettvbyproperty');
INSERT INTO `t_auth_node` VALUES ('2', 'api/television/gettvforindex');
INSERT INTO `t_auth_node` VALUES ('2', 'api/television/gettvbyuseridandtypeid');
INSERT INTO `t_auth_node` VALUES ('2', 'api/television/deletetvbyuseridandtypeid');
INSERT INTO `t_auth_node` VALUES ('2', 'api/television/updatehit');
INSERT INTO `t_auth_node` VALUES ('2', 'api/television/getalltv');
INSERT INTO `t_auth_node` VALUES ('2', 'api/television/gettvforpagebyprovince');
INSERT INTO `t_auth_node` VALUES ('2', 'api/television/gettvforpagebyprovinceforindex');
INSERT INTO `t_auth_node` VALUES ('2', 'api/television/addtvbyuserid');
INSERT INTO `t_auth_node` VALUES ('2', 'api/television/gettvforpagebysearch');
INSERT INTO `t_auth_node` VALUES ('2', 'api/television/getprogram');
INSERT INTO `t_auth_node` VALUES ('2', 'api/television/getprogrambyid');
INSERT INTO `t_auth_node` VALUES ('2', 'api/television/getprogramfortype');
INSERT INTO `t_auth_node` VALUES ('2', 'api/user');
INSERT INTO `t_auth_node` VALUES ('2', 'api/user/register');
INSERT INTO `t_auth_node` VALUES ('2', 'api/user/registerforother');
INSERT INTO `t_auth_node` VALUES ('2', 'api/user/login');
INSERT INTO `t_auth_node` VALUES ('2', 'api/user/profile');
INSERT INTO `t_auth_node` VALUES ('2', 'api/user/getfriendsforpage');
INSERT INTO `t_auth_node` VALUES ('2', 'api/user/updategoodlog');
INSERT INTO `t_auth_node` VALUES ('2', 'api/user/getgoodlog');
INSERT INTO `t_auth_node` VALUES ('2', 'api/video');
INSERT INTO `t_auth_node` VALUES ('2', 'api/video/getvideoforpage');
INSERT INTO `t_auth_node` VALUES ('2', 'api/video/uploadvideo');
INSERT INTO `t_auth_node` VALUES ('1', 'admin');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/auth');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/auth/index');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/auth/apply');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/auth/add');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/auth/edit');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/auth/forbid');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/auth/resume');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/auth/del');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/comment');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/comment/index');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/config');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/config/index');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/config/file');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/config/sms');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/dict');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/dict/index');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/dict/add');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/dict/edit');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/dict/del');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/index');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/index/index');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/index/main');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/log');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/log/index');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/log/del');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/menu');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/menu/index');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/menu/add');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/menu/edit');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/menu/del');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/menu/forbid');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/menu/resume');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/node');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/node/index');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/node/save');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/plugins');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/plugins/upfile');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/plugins/upload');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/plugins/upstate');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/plugins/icon');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/region');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/region/index');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/region/getchildregion');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/region/add');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/television');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/television/index');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/television/add');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/television/upfile');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/television/getchildregion');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/television/edit');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/television/del');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/television/forbid');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/television/resume');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/tvprogram');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/tvprogram/index');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/tvprogram/importpg');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/tvprogram/delall');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/tvprogram/importsubmit');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/tvprogram/getprogramfortype');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/user');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/user/index');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/user/auth');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/user/add');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/user/edit');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/user/profile');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/user/pass');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/user/del');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/user/forbid');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/user/resume');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/video');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/video/index');
INSERT INTO `t_auth_node` VALUES ('1', 'admin/video/del');
-- ----------------------------
-- Table structure for `t_chat`
-- ----------------------------
DROP TABLE IF EXISTS `t_chat`;
CREATE TABLE `t_chat` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`context` varchar(1000) COLLATE utf8_unicode_ci NOT NULL,
`user_id` int(11) DEFAULT NULL,
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`hit` int(11) DEFAULT '0',
`type_id` int(11) DEFAULT '0',
`good` int(11) DEFAULT '0',
`bad` int(11) DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=76 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Records of t_chat
-- ----------------------------
INSERT INTO `t_chat` VALUES ('6', '这是一条短文', '10000', '2017-11-26 15:48:45', '0', '1', '1', null);
INSERT INTO `t_chat` VALUES ('7', '这是一条短文这是一条短文这是一条短文这是一条短文这是一条短文这是一条短文这是一条短文这是一条短文', '10000', '2017-11-26 15:48:47', '0', '1', '12', null);
INSERT INTO `t_chat` VALUES ('8', '这是一条短文这是一条短文这是一条短文这是一条短文', '10000', '2017-11-26 15:48:49', '0', '1', '33', null);
INSERT INTO `t_chat` VALUES ('9', '这是一条短文', '10000', '2017-11-26 15:48:46', '0', '1', '1', null);
INSERT INTO `t_chat` VALUES ('10', '你们的支持', '10000', '2017-11-27 23:00:48', '0', '1', '0', '0');
INSERT INTO `t_chat` VALUES ('11', '这么一来是不是', '10000', '2017-11-27 23:03:34', '0', '1', '0', '0');
INSERT INTO `t_chat` VALUES ('12', '这个世界冠军联赛出场时间进球助攻得牌的春夏单品。我在想我', '10001', '2017-11-27 23:14:02', '0', '1', '0', '0');
INSERT INTO `t_chat` VALUES ('13', '这样一来?你就可以', '10000', '2017-11-27 23:15:53', '0', '1', '0', '0');
INSERT INTO `t_chat` VALUES ('14', '这么些人生就生一窝小狗', '10001', '2017-11-27 23:17:31', '0', '1', '0', '0');
INSERT INTO `t_chat` VALUES ('18', '这么多年都会过去?你是个不停?我', '10001', '2017-11-29 11:05:47', '0', '1', '0', '0');
INSERT INTO `t_chat` VALUES ('17', '你是个很赞哦', '10000', '2017-11-28 21:07:58', '0', '1', '0', '0');
INSERT INTO `t_chat` VALUES ('21', ':flushed::grin::relaxed:️:wink:哈哈', '10000', '2017-12-04 20:25:05', '0', '1', '0', '0');
INSERT INTO `t_chat` VALUES ('24', '周五:grin::grin::grin:', '10002', '2017-12-22 08:50:37', '0', '1', '0', '0');
INSERT INTO `t_chat` VALUES ('25', ':wink2::heart_eyes:', '10007', '2018-01-23 21:18:57', '0', '1', '0', '0');
INSERT INTO `t_chat` VALUES ('26', 'test', '10000', '2018-05-10 21:16:14', '0', '1', '0', '0');
INSERT INTO `t_chat` VALUES ('75', ':joy::grinning::sweat_smile::kissing_heart::heart_eyes::satisfied::satisfied::monkey_face::tiger::tiger::frog::elephant::hatched_chick::camera::minidisc::sparkler::santa::mount_fuji::department_store::statue_of_liberty::church:️:statue_of_liberty::church:️:statue_of_liberty::church:️:arrow_backward:️:arrows_counterclockwise::arrow_lower_right:️:arrow_upper_left:️明明你', '10009', '2018-06-20 10:01:55', '0', '1', '0', '0');
INSERT INTO `t_chat` VALUES ('74', '很精神', '10009', '2018-05-12 22:52:39', '0', '1', '0', '0');
INSERT INTO `t_chat` VALUES ('73', '2222', '10009', '2018-05-12 18:26:18', '0', '1', '0', '0');
-- ----------------------------
-- Table structure for `t_chat_info`
-- ----------------------------
DROP TABLE IF EXISTS `t_chat_info`;
CREATE TABLE `t_chat_info` (
`chat_id` int(11) DEFAULT NULL,
`url` varchar(500) COLLATE utf8_unicode_ci DEFAULT NULL,
`size` int(11) DEFAULT '0',
`id` int(11) NOT NULL AUTO_INCREMENT,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=23 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Records of t_chat_info
-- ----------------------------
INSERT INTO `t_chat_info` VALUES ('8', 'http://webapi.abigfish.net/static/upload/chat/2017-11-10/5a05630e65ded.jpg', '845941', '1');
INSERT INTO `t_chat_info` VALUES ('8', 'http://webapi.abigfish.net/static/upload/chat/2017-11-10/5a05630e671e0.jpg', '620888', '2');
INSERT INTO `t_chat_info` VALUES ('9', 'http://webapi.abigfish.net/static/upload/chat/2017-11-10/5a05634262442.jpg', '845941', '3');
INSERT INTO `t_chat_info` VALUES ('9', 'http://webapi.abigfish.net/static/upload/chat/2017-11-10/5a0563426388d.jpg', '620888', '4');
INSERT INTO `t_chat_info` VALUES ('9', 'http://webapi.abigfish.net/static/upload/chat/2017-11-10/5a05634269543.mp4', '3332038', '5');
INSERT INTO `t_chat_info` VALUES ('11', 'http://webapi.abigfish.net/static/upload/chat/2017-11-27/5a1c29473dc3a.png', '7063823', '6');
INSERT INTO `t_chat_info` VALUES ('15', 'http://webapi.abigfish.net/static/upload/chat/2017-11-27/5a1c2e156b21a.png', '4769634', '7');
INSERT INTO `t_chat_info` VALUES ('16', 'http://webapi.abigfish.net/static/upload/chat/2017-11-28/5a1cd42dd7870.png', '403713', '8');
INSERT INTO `t_chat_info` VALUES ('16', 'http://webapi.abigfish.net/static/upload/chat/2017-11-28/5a1cd42dd9f55.png', '1343457', '9');
INSERT INTO `t_chat_info` VALUES ('17', 'http://webapi.abigfish.net/static/upload/chat/2017-11-28/5a1d5faeb8d33.png', '1016661', '10');
INSERT INTO `t_chat_info` VALUES ('17', 'http://webapi.abigfish.net/static/upload/chat/2017-11-28/5a1d5faebb235.png', '1269432', '11');
INSERT INTO `t_chat_info` VALUES ('17', 'http://webapi.abigfish.net/static/upload/chat/2017-11-28/5a1d5faebd30a.png', '1129975', '12');
INSERT INTO `t_chat_info` VALUES ('18', 'http://webapi.abigfish.net/static/upload/chat/2017-11-29/5a1e240b23251.png', '2527060', '13');
INSERT INTO `t_chat_info` VALUES ('19', 'http://webapi.abigfish.net/static/upload/chat/2017-12-01/5a21561c37b60.png', '1269432', '14');
INSERT INTO `t_chat_info` VALUES ('24', 'http://webapi.abigfish.net/static/upload/chat/2017-12-22/5a3c56dd858fd.png', '10144485', '15');
INSERT INTO `t_chat_info` VALUES ('35', 'http://webapi.abigfish.net/static/upload/chat/2018-05-10/5af450bf57258.png', '47319', '16');
INSERT INTO `t_chat_info` VALUES ('36', 'http://webapi.abigfish.net/static/upload/chat/2018-05-10/5af4526761933.png', '47319', '17');
INSERT INTO `t_chat_info` VALUES ('73', 'http://webapi.abigfish.net/static/upload/chat/2018-05-12/5af6c14a535c0.png', '579955', '18');
INSERT INTO `t_chat_info` VALUES ('73', 'http://webapi.abigfish.net/static/upload/chat/2018-05-12/5af6c14a54def.png', '737676', '19');
INSERT INTO `t_chat_info` VALUES ('73', 'http://webapi.abigfish.net/static/upload/chat/2018-05-12/5af6c14a573e2.png', '1106921', '20');
INSERT INTO `t_chat_info` VALUES ('74', 'http://webapi.abigfish.net/static/upload/chat/2018-05-12/5af6ffb79c1b3.png', '718897', '21');
INSERT INTO `t_chat_info` VALUES ('75', 'http://webapi.abigfish.net/static/upload/chat/2018-06-20/5b29b593a925a.png', '819740', '22');
-- ----------------------------
-- Table structure for `t_comment`
-- ----------------------------
DROP TABLE IF EXISTS `t_comment`;
CREATE TABLE `t_comment` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`context` varchar(500) COLLATE utf8_unicode_ci DEFAULT NULL,
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`user_id` int(11) DEFAULT '0',
`reply_id` int(11) DEFAULT '0',
`uid` int(11) DEFAULT NULL,
`type_id` int(11) DEFAULT NULL,
`good` int(11) DEFAULT '0',
`bad` int(11) DEFAULT '0',
`pid` int(11) DEFAULT '0',
PRIMARY KEY (`id`),
KEY `index_uid_typeid` (`uid`,`type_id`) USING HASH
) ENGINE=MyISAM AUTO_INCREMENT=197 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Records of t_comment
-- ----------------------------
INSERT INTO `t_comment` VALUES ('1', 'test1', '2017-10-13 15:25:06', '10000', '0', '4', '11', '1', '1', '0');
INSERT INTO `t_comment` VALUES ('2', 'test2', '2017-10-13 15:25:42', '10000', '0', '4', '11', '0', '1', '0');
INSERT INTO `t_comment` VALUES ('3', 'reply', '2017-10-13 15:26:10', '0', '10000', '4', '11', '1', '0', '1');
INSERT INTO `t_comment` VALUES ('4', 'reply2', '2017-10-13 15:47:56', '0', '10000', '4', '11', '0', '1', '1');
INSERT INTO `t_comment` VALUES ('5', '你好', '2017-10-26 17:15:24', '10000', '10001', '4', '11', '0', '0', '1');
INSERT INTO `t_comment` VALUES ('6', '这是测试评论', '2017-11-06 15:51:41', '10001', '0', '5', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('7', '这是测试回复评论', '2017-11-06 15:51:45', '0', '10002', '5', '11', '0', '0', '6');
INSERT INTO `t_comment` VALUES ('8', '这是测试回复评论', '2017-11-06 15:52:26', '0', '10000', '5', '11', '0', '0', '6');
INSERT INTO `t_comment` VALUES ('9', '这是测试回复评论对其他人', '2017-11-06 15:53:02', '10002', '10000', '5', '11', '0', '0', '6');
INSERT INTO `t_comment` VALUES ('10', '这是测试回复评论这是测试回复评论这是测试回复评论', '2017-11-06 15:58:10', '10001', '0', '5', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('11', '这是测试回复评论1', '2017-11-06 15:59:28', '0', '10000', '5', '11', '0', '0', '10');
INSERT INTO `t_comment` VALUES ('12', '这是测试回复评论1', '2017-11-06 16:00:52', '10000', '10001', '5', '11', '0', '0', '10');
INSERT INTO `t_comment` VALUES ('13', '这是测试回复评论', '2017-11-13 15:21:34', '10001', '0', '6', '12', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('14', '这是测试回复评论', '2017-11-13 15:21:43', '10000', '0', '7', '12', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('15', '这是测试回复评论', '2017-11-13 15:21:51', '10001', '0', '8', '12', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('16', '这是测试回复评论...', '2017-11-13 15:30:25', '0', '10001', '7', '12', '0', '0', '14');
INSERT INTO `t_comment` VALUES ('17', '这是测试回复评论......', '2017-11-13 15:31:56', '10001', '10000', '7', '12', '0', '0', '14');
INSERT INTO `t_comment` VALUES ('18', '一起交通事故责任强制措施!你', '2017-11-26 11:03:49', '10000', '0', '9', '12', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('19', '在你心里想说什么事我想让他', '2017-11-26 11:05:15', '10000', '0', '9', '12', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('20', '在你心里想说什么事我想让他颓废风格和现代社会', '2017-11-26 11:05:24', '10000', '0', '9', '12', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('21', '在一次一个人去除黑头方法就是把一切', '2017-11-26 11:06:02', '10000', '0', '7', '12', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('37', '一直都不想去看看的份', '2017-11-26 12:21:55', '10000', '0', '7', '12', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('38', '在线运营模式立即赢得', '2017-11-26 12:23:05', '10000', '0', '7', '12', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('39', '这么一来就是不知道怎么', '2017-11-26 12:24:01', '10000', '0', '6', '12', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('40', '你就不要在一起的', '2017-11-26 12:26:05', '10001', '0', '6', '12', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('41', '你就不会自己找了好久终于', '2017-11-26 12:26:14', '10001', '0', '7', '12', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('42', '在这方面做得', '2017-11-26 13:40:27', '0', '10000', '7', '12', '0', '0', '41');
INSERT INTO `t_comment` VALUES ('43', '在这方面做得偶有意义', '2017-11-26 13:40:49', '0', '10000', '7', '12', '0', '0', '37');
INSERT INTO `t_comment` VALUES ('44', '特软隐隐约约听到这些声音好苏哦', '2017-11-26 13:41:22', '0', '10000', '7', '12', '0', '0', '21');
INSERT INTO `t_comment` VALUES ('45', '特软隐隐约约听到这些声音好苏哦', '2017-11-26 13:41:38', '0', '10000', '7', '12', '0', '0', '21');
INSERT INTO `t_comment` VALUES ('46', '一次性通过了对我好', '2017-11-26 13:42:46', '0', '10001', '7', '12', '0', '0', '41');
INSERT INTO `t_comment` VALUES ('47', '这些什么!我在想着去', '2017-11-26 13:42:59', '0', '10001', '7', '12', '0', '0', '37');
INSERT INTO `t_comment` VALUES ('48', '一直在我们的产品', '2017-11-26 13:43:15', '10001', '0', '8', '12', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('49', '一个人觉得你有一', '2017-11-26 13:43:26', '10001', '0', '9', '12', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('51', '这样的话就', '2017-11-26 15:26:59', '10001', '10000', '7', '12', '0', '0', '41');
INSERT INTO `t_comment` VALUES ('52', '这样的话就像一个', '2017-11-26 15:27:13', '10001', '10000', '7', '12', '0', '0', '37');
INSERT INTO `t_comment` VALUES ('53', '这样的生活中', '2017-11-26 15:31:41', '10001', '10000', '7', '12', '0', '0', '14');
INSERT INTO `t_comment` VALUES ('54', '这样的男人在', '2017-11-26 15:32:14', '10000', '10001', '7', '12', '0', '0', '41');
INSERT INTO `t_comment` VALUES ('55', '你们都说我', '2017-11-26 15:32:30', '0', '10001', '9', '12', '0', '0', '19');
INSERT INTO `t_comment` VALUES ('56', '是啊真心痛痛的', '2017-11-26 15:32:58', '0', '10002', '9', '12', '0', '0', '20');
INSERT INTO `t_comment` VALUES ('57', '是啊我们是有多久没有', '2017-11-26 15:33:09', '10001', '10002', '9', '12', '0', '0', '19');
INSERT INTO `t_comment` VALUES ('58', '你的人生态度是那么的不', '2017-11-26 15:53:05', '10002', '10000', '9', '12', '0', '0', '20');
INSERT INTO `t_comment` VALUES ('59', '好', '2017-11-26 15:53:20', '10002', '10000', '9', '12', '0', '0', '19');
INSERT INTO `t_comment` VALUES ('61', '这些天一直是我们', '2017-11-26 16:09:24', '10001', '10000', '9', '12', '0', '0', '19');
INSERT INTO `t_comment` VALUES ('62', '这些天一直是我们', '2017-11-26 16:10:09', '0', '10000', '9', '12', '0', '0', '18');
INSERT INTO `t_comment` VALUES ('63', '这样的男人的女人的', '2017-11-27 23:17:46', '10001', '0', '14', '12', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('64', '好吧!我也要', '2017-11-28 00:06:07', '10001', '0', '15', '12', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('65', '我们的生活方式是什么', '2017-11-28 08:23:14', '10001', '0', '13', '12', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('66', '我们是个', '2017-11-28 10:52:46', '0', '10000', '14', '12', '0', '0', '63');
INSERT INTO `t_comment` VALUES ('67', '在一起就是幸福快乐', '2017-11-28 14:16:38', '10000', '0', '12', '12', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('68', '不过现在还是有点', '2017-11-28 16:36:21', '10000', '0', '11', '12', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('69', '111111111111', '2017-11-28 22:16:07', '10001', '0', '5', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('70', '你的手机', '2017-11-30 09:07:42', '10000', '0', '18', '12', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('71', '你们的最新影讯', '2017-11-30 20:18:46', '10000', '0', '6', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('72', '这么一来就', '2017-11-30 20:21:26', '10000', '0', '6', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('73', '在这方面做的事情?我', '2017-11-30 20:21:43', '10000', '0', '7', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('74', '一个人的喜好', '2017-11-30 20:37:49', '0', '10000', '6', '12', '0', '0', '71');
INSERT INTO `t_comment` VALUES ('75', 'Rettrr', '2017-11-30 20:46:09', '10000', '10001', '6', '11', '0', '0', '71');
INSERT INTO `t_comment` VALUES ('76', '这么一来就', '2017-11-30 20:46:19', '0', '10001', '6', '12', '0', '0', '72');
INSERT INTO `t_comment` VALUES ('77', '一个人简介场上有名字叫', '2017-11-30 20:47:40', '10001', '0', '8', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('78', '哈哈哈哈', '2017-11-30 20:49:03', '10001', '0', '1290', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('79', '呵呵呵呵哒', '2017-11-30 20:49:13', '10001', '0', '1293', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('80', '一直都不是该', '2017-11-30 20:49:33', '10001', '0', '1292', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('81', '哈哈哈哈哈哈哈', '2017-11-30 23:46:42', '10001', '0', '11', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('82', '哈哈哈哈', '2017-11-30 23:46:57', '10001', '0', '13', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('83', '好', '2017-12-01 00:18:14', '10001', '0', '20', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('84', '你的孩子在你', '2017-12-01 08:48:23', '10000', '0', '52', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('85', '这样的:flushed::heart_eyes::v:️', '2017-12-04 20:35:21', '10000', '0', '21', '12', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('86', '你:wink:', '2017-12-04 20:35:46', '0', '10000', '14', '12', '0', '0', '63');
INSERT INTO `t_comment` VALUES ('87', 'R:heart_eyes::relaxed:️', '2017-12-04 20:36:04', '10001', '10000', '7', '12', '0', '0', '41');
INSERT INTO `t_comment` VALUES ('88', 'ww', '2017-12-04 20:36:28', '10000', '0', '16', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('89', ':pensive::blush::blush:让人', '2017-12-04 20:38:49', '10001', '0', '15', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('90', ':blush:', '2017-12-04 22:28:07', '10000', '0', '17', '12', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('91', ':blush:hh ', '2017-12-04 22:28:34', '0', '10000', '17', '12', '0', '0', '90');
INSERT INTO `t_comment` VALUES ('92', ':pensive::kissing_heart::kissing_heart::wink::pensive:', '2017-12-04 23:39:27', '10000', '0', '21', '12', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('93', ':smirk:', '2017-12-05 09:55:07', '10000', '0', '18', '12', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('94', ':kissing_heart::kissing_heart:', '2017-12-05 18:57:18', '10000', '0', '1488', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('95', ':pensive::smirk::heart_eyes::smile::blush::relaxed:️', '2017-12-05 23:38:23', '10000', '0', '1290', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('96', '你是怎么样:relaxed:️:joy:', '2017-12-05 23:38:47', '10000', '0', '1290', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('97', '努力', '2017-12-06 16:07:11', '10000', '0', '5', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('98', '努力', '2017-12-06 16:07:12', '10000', '0', '5', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('99', '努力', '2017-12-06 16:07:12', '10000', '0', '5', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('100', '努力', '2017-12-06 16:07:12', '10000', '0', '5', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('101', '努力', '2017-12-06 16:07:12', '10000', '0', '5', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('102', '努力', '2017-12-06 16:08:38', '0', '10000', '5', '12', '0', '0', '101');
INSERT INTO `t_comment` VALUES ('103', '努力', '2017-12-06 16:08:46', '0', '10000', '5', '12', '0', '0', '101');
INSERT INTO `t_comment` VALUES ('104', '努力', '2017-12-06 16:08:50', '0', '10000', '5', '12', '0', '0', '101');
INSERT INTO `t_comment` VALUES ('105', '体育用品', '2017-12-06 16:09:08', '0', '10000', '5', '12', '0', '0', '10');
INSERT INTO `t_comment` VALUES ('106', '体育用品', '2017-12-06 16:09:16', '10001', '10000', '5', '11', '0', '0', '10');
INSERT INTO `t_comment` VALUES ('107', ':grin::kissing_heart::kissing_heart::smirk::blush:', '2017-12-06 17:20:51', '10000', '0', '17', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('108', '哈哈哈:smile:', '2017-12-07 07:35:03', '10001', '0', '1291', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('109', '好:ok_hand:', '2017-12-08 07:34:07', '10000', '0', '1493', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('110', '为你而', '2017-12-10 15:25:20', '10000', '0', '5', '22', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('111', ':grin::grin::grin:', '2017-12-10 15:25:33', '10000', '0', '5', '22', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('112', ':satisfied::expressionless::expressionless::sleeping:', '2017-12-10 15:25:43', '10000', '0', '5', '22', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('113', ':flushed::grin:', '2017-12-10 15:42:18', '10000', '0', '6', '22', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('114', ':v::skinColor4::ok_hand:', '2017-12-10 15:47:52', '10000', '0', '23', '12', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('115', ':+1::skinColor2:', '2017-12-10 15:48:05', '10000', '0', '8', '22', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('116', ':sleeping:', '2017-12-10 15:55:14', '10000', '0', '848', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('117', ':smiley:', '2017-12-11 10:15:24', '10000', '0', '12', '22', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('118', ':heart_eyes:', '2017-12-11 10:15:35', '10000', '0', '11', '22', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('119', ':+1:', '2017-12-11 10:16:08', '10000', '0', '10', '22', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('120', ':+1:', '2017-12-11 10:22:52', '10002', '0', '12', '22', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('121', ':smirk::smirk:', '2017-12-11 10:23:18', '0', '10002', '5', '22', '0', '0', '112');
INSERT INTO `t_comment` VALUES ('122', 'Tttttt', '2017-12-11 22:55:48', '10000', '0', '9', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('123', ':+1:', '2017-12-11 23:46:45', '10000', '0', '1481', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('124', ':joy:', '2017-12-13 00:07:58', '10002', '0', '1495', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('125', ':grinning:', '2017-12-15 22:56:11', '10000', '0', '1496', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('126', '就好好', '2017-12-22 07:43:00', '10000', '0', '65', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('127', ':+1::+1:', '2017-12-22 22:23:25', '10000', '0', '23', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('128', ':unamused:', '2017-12-22 22:24:44', '10000', '0', '888', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('129', ':wink:', '2017-12-22 22:25:41', '10000', '0', '428', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('130', ':blush:', '2017-12-22 22:27:26', '10000', '0', '358', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('131', ':heart_eyes:', '2017-12-24 09:52:35', '10002', '0', '8', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('132', ':heart:️:heart:️', '2017-12-24 09:54:21', '10002', '0', '304', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('133', ':blush::+1:', '2017-12-24 09:54:36', '10002', '0', '304', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('134', ':ok_hand:', '2017-12-24 11:28:36', '10002', '0', '495', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('135', '我们自己都不知道是不是', '2017-12-24 11:31:22', '10000', '0', '435', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('136', ':grin:', '2017-12-24 11:31:34', '10000', '0', '435', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('137', ':grin:', '2017-12-24 11:32:54', '10000', '0', '657', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('138', ':blush:', '2017-12-24 11:59:42', '10000', '0', '1426', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('139', ':ok_hand:', '2017-12-24 11:59:55', '0', '10000', '1426', '12', '0', '0', '138');
INSERT INTO `t_comment` VALUES ('140', ':v:️:v:️', '2017-12-24 12:00:22', '10000', '10001', '1426', '11', '0', '0', '138');
INSERT INTO `t_comment` VALUES ('141', ':relaxed:️', '2017-12-27 22:36:40', '10000', '0', '5', '22', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('142', ':joy:', '2017-12-29 20:51:33', '10002', '0', '24', '12', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('143', 'Dr', '2018-01-26 23:03:31', '10000', '0', '714', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('144', '我想', '2018-01-26 23:08:17', '10000', '0', '54', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('145', ':grin:', '2018-01-26 23:37:56', '10005', '0', '1489', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('146', 'Wwwwww', '2018-01-28 20:43:53', '0', '10000', '54', '11', '0', '0', '144');
INSERT INTO `t_comment` VALUES ('147', ':sob::grin:', '2018-01-28 20:44:20', '10000', '0', '54', '11', '0', '0', '0');
INSERT INTO `t_comment` VALUES ('148', ':kissing_heart:', '2018-02-02 13:40:17', '10002', '0', '10', '11', '0', '0', '0');