-
Notifications
You must be signed in to change notification settings - Fork 1
/
english_study_web.sql
2153 lines (2108 loc) · 465 KB
/
english_study_web.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
/*
Navicat Premium Data Transfer
Source Server : 127.0.0.1
Source Server Type : MySQL
Source Server Version : 50726
Source Host : localhost:3306
Source Schema : english_study_web
Target Server Type : MySQL
Target Server Version : 50726
File Encoding : 65001
Date: 16/02/2022 23:16:49
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for article
-- ----------------------------
DROP TABLE IF EXISTS `article`;
CREATE TABLE `article` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '文章标题',
`image` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '文章封面',
`author` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '文章作者',
`published_time` datetime(0) NULL DEFAULT NULL COMMENT '文章发布时间',
`content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '文章正文',
`description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '描述',
`is_published` tinyint(1) NOT NULL COMMENT '公开或私密',
`is_comment_enabled` tinyint(1) NOT NULL COMMENT '评论开关',
`is_top` int(20) NOT NULL COMMENT '是否置顶',
`created_at` datetime(0) NOT NULL COMMENT '创建时间',
`updated_at` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
`views` int(11) NULL DEFAULT NULL COMMENT '浏览次数',
`words` int(11) NULL DEFAULT NULL COMMENT '文章字数',
`read_time` int(11) NULL DEFAULT NULL COMMENT '阅读时长(分钟)',
`categoryId` bigint(20) NULL DEFAULT NULL COMMENT '文章分类',
`deleted_at` datetime(0) NULL DEFAULT NULL COMMENT '删除时间',
PRIMARY KEY (`id`, `created_at`) USING BTREE,
INDEX `type_id`(`categoryId`) USING BTREE,
INDEX `user_id`(`author`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 46 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of article
-- ----------------------------
INSERT INTO `article` VALUES (18, '双语:古特雷斯秘书长2021年世界水日致辞', '1616569119925.jpg', '内容管理员', '2021-03-24 15:04:22', '<p><img class=\"aligncenter size-medium\" style=\"display: block; margin-left: auto; margin-right: auto;\" src=\"https://www.en84.com/pic/2103/202103224.jpg\" alt=\"World Water Day 2021\" width=\"500\" height=\"333\" /></p>\n<p style=\"text-align: center;\"><strong>Message by United Nations Secretary-General António Guterres on</strong><strong> World Water Day</strong></p>\n<p style=\"text-align: center;\"><strong>联合国秘书长<span class=\"keyword-inner\">安东尼奥·古特雷斯</span>世界水日致辞</strong></p>\n<p> </p>\n<p>22 March 2021</p>\n<p>2021年3月22日</p>\n<p> </p>\n<p>This year’s World Water Day, with the theme “Valuing water”, asks: What does water mean to me?</p>\n<p> </p>\n<p>今年世界水日的主题是“珍惜水”。世界水日让我们思考:水对我而言意味着什么?</p>\n<p> </p>\n<p>The value of water is profound and complex. There is no aspect of sustainable development that does not fundamentally rely upon it.</p>\n<p> </p>\n<p>水的价值具有重大而复杂的意义。可持续发展的方方面面都以水为本。</p>\n<p> </p>\n<p>For me, water means protection. A well-managed water cycle – encompassing drinking water, sanitation, hygiene, wastewater, transboundary governance, the environment and more – means a defence against ill-health and indignity and a response to challenges from a changing climate and increasing global demand.</p>\n<p> </p>\n<p>对我而言,水意味着保护。管理良好的水循环包含保障饮用水、环境卫生和个人卫生、废水处理、跨界治理、环境保护等内容。管理良好的水循环意味着保护健康免受损害、尊严免遭侮辱,还意味着应对气候变化和不断增长的全球需求带来的挑战。</p>\n<p> </p>\n<p>This World Water Day, we want to record and understand as many views as possible, so decision-makers are better informed and equipped to safeguard this human right for every person and every purpose.</p>\n<p> </p>\n<p>值此世界水日,我们希望记录和了解尽可能多的观点,以便决策者更好地了解情况,更有能力保障人人享有这项人权,以实现每项目标。</p>\n<p> </p>\n<p>Today, we are not on track to ensure everyone has access to water and sanitation by 2030, as set out in <em>Sustainable Development Goal 6</em>. While advances being made, current progress needs to quadruple to achieve universal access.</p>\n<p> </p>\n<p>今天我们还无法按照可持续发展目标6的规定,确保到2030年使人人享有水和环境卫生。尽管已取得进展,但目前的进展需要翻两番才能实现普遍享有的目标。</p>\n<p> </p>\n<p>Chronic under-investment in water and sanitation disadvantages and harms vast numbers of people. This is unacceptable.</p>\n<p> </p>\n<p>对水和环境卫生的投资长期不足,使许多人处于不利地位并受到伤害。这是不可接受的。</p>\n<p> </p>\n<p>I am encouraged by the joint statement signed by some 160 countries during the UN High-Level meeting on water on 18 March. This shows a strong commitment to advancing all water-related aspects of the <em>Sustainable Development Goals</em>.</p>\n<p> </p>\n<p>3月18日,约160个国家在联合国水问题高级别会议上签署了联合声明,这令我感到鼓舞。这表明为推进可持续发展目标中所有与水有关的目标作出了坚定承诺。</p>\n<p> </p>\n<p>On this World Water Day, let us commit to intensifying efforts to truly valuing water so all may have equitable access to this most precious resource.</p>\n<p> </p>\n<p>值此世界水日,让我们承诺加紧努力,真正珍惜水,使所有人都能公平获得这一最宝贵的资源。</p>', 'Message by UN Chief for World Water Day 2021', 0, 1, 6, '2021-03-24 15:05:08', '2021-05-07 17:58:09', 21, 690, 3, 5, NULL);
INSERT INTO `article` VALUES (19, '测试文章210', NULL, '测试7', '2021-03-19 08:00:00', '<divclass=\"caas-body\"><figureclass=\"caas-figure\"><divclass=\"caas-figure-with-pb\"><div><divclass=\"caas-img-container\"><imgclass=\"caas-img has-preview caas-loaded\"src=\"https://s.yimg.com/ny/api/res/1.2/4KmF00KWVkGOJ2ylyAxB0g--/YXBwaWQ9aGlnaGxhbmRlcjt3PTk2MDtoPTY0MC4wNjIzMjk1Njc1ODg3O2NmPXdlYnA-/https://s.yimg.com/uu/api/res/1.2/ePnygq8htx69okVjEK.xtA--~B/aD0zNDIzO3c9NTEzNDthcHBpZD15dGFjaHlvbg--/https://media.zenfs.com/en/the_independent_635/d7f54bfeb8831085f14c83f3a82d7369\"alt=\" (AP)\"/></div></div></div><divclass=\"caption-wrapper caption-aligned-with-image\"><divclass=\"caption-wrapper caption-aligned-with-image\"> </div></div><figcaptionclass=\"caption-collapse\"data-id=\"m-0\">(AP)</figcaption></figure><p>Amongtheitemson <aclass=\"link rapid-noclick-resp\"href=\"https://www.independent.co.uk/topic/texas\"target=\"_blank\"rel=\"nofollow noopener\"data-ylk=\"slk:Texas\"data-rapid_p=\"6\"data-v9y=\"1\">Texas</a> governor <aclass=\"link rapid-noclick-resp\"href=\"https://www.independent.co.uk/topic/greg-abbott\"target=\"_blank\"rel=\"nofollow noopener\"data-ylk=\"slk:Greg Abbott\"data-rapid_p=\"7\"data-v9y=\"1\">GregAbbott</a>’slistofemergencyprioritiesin2021:“electionintegrity”.</p><p>ThephrasehasemergedamongRepublicanlawmakersinstatelegislaturesacrosstheUS,asstatesconsiderdozensofGOP-backedbillstorestrictvotingaccessinthewakeofthe2020electionsthatsawunprecedentedvoterturnoutandexpandedvote-by-mailoptionsduringthecoronaviruspandemic.</p><p>RepublicanlawmakersinTexashavefiledmorethantwodozenbillsaimedatrestrictingvotinginastatethatalreadyhassomeofthemostrestrictivevotinglawsinthecountry,whichvotingrightsgroupssaydisproportionatelythreatenandsuppressvotesfromBlackvoters.</p><p>GovernorAbbottsaidonMondaythatthebillsareaimedatrestoring“trustandconfidenceintheoutcome”ofthestate’selections,althoughhealsoadmittedthatheisnotawareofanyelectionsalteredbyfraud.</p><p>Texasisamong43stateswhereRepublicanlawmakershaveintroducedmorethan250billsrestrictingvotingrights,limitingballotaccessoraddingbarrierstovoting.GOPlawmakershavesaidthebillsaimtorestore“trust”inelections,compelledbybaselessclaimsofelectionfraudpromotedbyformerpresidentDonaldTrump.</p><p>Votingrightsadvocatesandcivilrightsgroupshavearguedthattheformerpresident’spersistentliethattheelectionwasstolenfromhim,andhislegalteam’sattemptstooverturnmillionsofAmericans’votes,hasemboldenedRepublicanstatelawmakersacrosstheUStodowhatMrTrumpandhisattorneyscouldnot,using“electionintegrity”or“electionsafety”tomaskMrTrump’sclaimsattheheartoftheirobjections.</p><p>Electionofficialsacrossthecountry–aswellastheformerpresident’sownattorneys,JusticeDepartmentandafederalelectionscommission,whichhedisbanded–havefailedtoproduceanyevidencethatsuchwidespreadfraudexists.</p><p>“Rightnow,Idon’tknowhowmany,orifany,electionsinthestateofTexasin2020werealteredbecauseofvoterfraud,”GovernorAbbottsaidonMonday.</p><p>Adayearlier,thegovernoraccusedDemocraticlawmakersinCongressof“tryingtoinstitutionalisevoterfraud”intheUSwiththe <aclass=\"link rapid-noclick-resp\"href=\"https://www.independent.co.uk/news/world/americas/us-politics/for-the-people-act-democrats-b1812180.html\"target=\"_blank\"rel=\"nofollow noopener\"data-ylk=\"slk:passage of HR 1, or the For The People Act\"data-rapid_p=\"12\"data-v9y=\"1\">passageofHR1,ortheForThePeopleAct</a>,whichwouldenshrineintofederallawsomevotingaccesseffortsalreadyinplaceinseveralstates,includingautomaticvoterregistrationandsame-dayregistrationandexpandedmail-invoting.</p><p>“Everyoneknows,includingDemocratsinTexas…thatoneoftheeasiestwaystocheatinelectionsisthroughthesemail-inballots,”hesaid,withoutprovidinganyevidence.</p><p>TexasAttorneyGeneralKenPaxton’sofficehasspent22,000hourslookingforvoterfraudanduncoveredjust16casesofvoterregistrationformsthatcontainedfalseaddresses,accordingto <em>TheHoustonChronicle</em>.Texas–thesecond-mostpopulousstateintheUS–hasmorethan16millionregisteredvoters.Theofficehasdiscovered100voterfraudcasessince2005.</p><p>GOP-sponsoredbillsinTexaswouldpurgevoterrolls,addmorelayerstovoterIDlaws,shrinkmail-invotingperiods,andshutterearlyvotingandmail-invotingsites.</p><p>Oneproposalwouldeliminatetheuseoftentsandotherstructuresfordrive-throughearlyvoting,whichwasusedinseverallargeTexascountiestoaccommodatemail-inballotdrop-offstoensureballotsweredeliveredontimeamidapandemicwithabeleagueredUSPostalServicethatsawwidespreaddelaysandservicecuts.</p><p>HarrisCounty,oneofthelargestcountiesintheUS,had12satelliteoffices,coveringthegreaterHoustonarea.Thecountycoversmorethan1,700squaremiles,withmorethan2.4millionregisteredvoters.</p><divclass=\"twitter-tweet-wrapper\"><blockquoteclass=\"twitter-tweet caas-loaded\"data-theme=\"light\"><divclass=\"caas-card-loader small fixed-height\"> </div><p>VotersuppressionhasanefariousanddarkhistoryinTexas,onethatshouldn\'t be seen as clearly in our election laws as it is today.<br /><br />We are more than overdue for common sense reforms like enacting online voter registration in Texas. Let\'smakeithappenthissession. <aclass=\"link rapid-noclick-resp\"href=\"https://twitter.com/hashtag/txlege?src=hash&ref_src=twsrc%5Etfw\"target=\"_blank\"rel=\"nofollow noopener\"data-ylk=\"slk:#txlege\"data-rapid_p=\"13\"data-v9y=\"1\">#txlege</a> <aclass=\"link rapid-noclick-resp\"href=\"https://t.co/PdYbh7NjDc\"target=\"_blank\"rel=\"nofollow noopener\"data-ylk=\"slk:https://t.co/PdYbh7NjDc\"data-rapid_p=\"14\"data-v9y=\"1\">https://t.co/PdYbh7NjDc</a></p><p>—Rep.EddieRodriguez(@EddieforTexas) <aclass=\"link rapid-noclick-resp\"href=\"https://twitter.com/EddieforTexas/status/1371558707054710789?ref_src=twsrc%5Etfw\"target=\"_blank\"rel=\"nofollow noopener\"data-ylk=\"slk:March 15, 2021\"data-rapid_p=\"15\"data-v9y=\"1\">March15,2021</a></p></blockquote></div><p>InTravisCounty,whichholdsthestate’scapitalofAustin,officialshadopenedfoursatellitelocationsforvoterstohand-delivertheirmail-inballots.Thecountyof1.2millionpeopleincludesmorethan800,000registeredvoters,allwithinacountythat’smorethan1,000squaremiles.</p><p>Lastyear,Republicans <aclass=\"link rapid-noclick-resp\"href=\"https://www.independent.co.uk/news/world/americas/us-election/texas-ballot-dropoff-boxes-lawsuit-2020-election-b750186.html\"target=\"_blank\"rel=\"nofollow noopener\"data-ylk=\"slk:repeatedly targeted early voting sites in lawsuits and in an executive order\"data-rapid_p=\"16\"data-v9y=\"1\">repeatedlytargetedearlyvotingsitesinlawsuitsandinanexecutiveorder</a> fromthegovernor’soffice.OnMonday,thegovernorcalleditan“unauthorisedexpansion”ofmail-invoting.</p><p>TexasDemocratsandvotingrightsgroupsinthestatehaveslammedthegovernor’sagendaandGOP-backedlegislation.</p><p>“IfGovernorAbbotwantstotalkaboutelectionintegrity,hecanstartwiththis:whenthevotershavespoken,respecttheresults,”saidChrisTurner,chairoftheTexasHouseDemocraticCaucus.</p><p>“Votingrightsarehumanrights,”saidTexasStateRepresentativeNicoleCollier.“Allcitizensofthisstatedeservetohavetheirvoicesheardandtolegallyaccesstheballotboxwithoutfear.”</p></div>', '测试10描述', 0, 1, 0, '2021-03-25 19:48:44', '2021-03-25 21:02:57', 1, 1, 1, 4, '2021-03-27 15:45:43');
INSERT INTO `article` VALUES (20, '古特雷斯世界提高自闭症意识日致辞', '1617383259567.jpg', '内容管理员', '2021-04-02 00:08:00', '<p><img class=\"aligncenter size-medium\" style=\"display: block; margin-left: auto; margin-right: auto;\" src=\"https://www.en84.com/pic/2104/2021040211.jpg\" alt=\"World Autism Awareness Day 2021\" width=\"500\" height=\"333\" /></p>\n<p style=\"text-align: center;\"><strong>Message by</strong> <strong>António Guterres, Secretary-General of United Nations, on World Autism Awareness Day</strong></p>\n<p style=\"text-align: center;\"><strong>联合国秘书长<span class=\"keyword-inner\">安东尼奥·古特雷斯</span>世界提高自闭症意识日致辞</strong></p>\n<p> </p>\n<p>2 April 2021</p>\n<p>2021年4月2日</p>\n<p> </p>\n<p>As we work together to recover from the COVID-19 pandemic, one key goal must be to build a more inclusive and accessible world that recognizes the contributions of all people, including persons with disabilities.</p>\n<p> </p>\n<p>当我们共同努力从COVID-19大流行中恢复之际,必须树立一个关键目标,即建设更加包容且无障碍的世界,对包括残疾人在内的所有人的贡献予以认可。</p>\n<p> </p>\n<p>The crisis has created new obstacles and challenges. But efforts to reignite the global economy offer an opportunity to reimagine the workplace to make diversity, inclusion and equity a reality.</p>\n<p> </p>\n<p>这场危机带来了新的障碍与挑战。不过,重振全球经济的努力为重新畅想工作场所创造了机遇,让多元、包容和公平成为现实。</p>\n<p> </p>\n<p>Recovery is also a chance to rethink our systems of education and training to ensure that persons with autism are afforded opportunities for realizing their potential.</p>\n<p> </p>\n<p>复苏还提供了机会,让我们重新思考教育和培训系统,确保自闭症患者有机会实现潜力。</p>\n<p> </p>\n<p>Breaking old habits will be crucial. For persons with autism, access to decent work on an equal basis requires creating an enabling environment, along with reasonable accommodation.</p>\n<p> </p>\n<p>打破旧习至关重要。为使自闭症患者平等获得体面工作,需要创造有利的环境,并为他们提供合理便利。</p>\n<p> </p>\n<p>To truly leave no one behind in pursuit of the <em>2030 Agenda on Sustainable Development</em>, we must realize the rights of all persons with disabilities, including persons with autism, ensuring their full participation in social, cultural and economic life.</p>\n<p> </p>\n<p>在落实《2030年可持续发展议程》的过程中,若要真正不让任何一个人掉队,我们必须实现包括自闭症患者在内的所有残疾人的权利,确保他们充分参与社会、文化和经济生活。</p>\n<p> </p>\n<p>Let us work together with all persons with disabilities and their representative organizations to find innovative solutions to recover better and build a better world for all.</p>\n<p> </p>\n<p>让我们与所有残疾人及其代表组织共同努力,寻找创新解决办法,从而更好地恢复,并为所有人建设一个更美好的世界。</p>', 'Message by UN Chief for World Autism Awareness Day 2021', 1, 1, 0, '2021-04-03 01:08:27', '2021-05-08 16:30:21', 5, 541, 2, 5, NULL);
INSERT INTO `article` VALUES (21, '新闻素养第一课:真新闻与假新闻', '1617517884350.jpg', '内容管理员', '2021-04-04 14:31:32', '<p style=\"text-align: center;\"><video controls=\"controls\" width=\"730\" height=\"365\">\n<source src=\"//down.chinavoa.com/voadownload/voamsvideo/2019/20190505ms.mp4\" type=\"video/mp4\" /></video></p>\n<p style=\"text-align: center;\"><strong>News Literacy Lesson 1: Real News vs. Fake News</strong></p>\n<p style=\"text-align: center;\"><strong>新闻素养第一课:真新闻与假新闻</strong></p>\n<p>Information is an important part of our society. People depend on it to guide them through a complex world.</p>\n<p>信息是社会的重要组成部分,人们依靠它引导着自己认识复杂的世界。</p>\n<p>The invention of movable type in 15th century Europe revolutionized the communication of ideas. This invention made it possible to print and publish information to masses of people.</p>\n<p>15世纪欧洲发明的活字印刷术使思想交流发生了革命性的变化,这项发明使印刷和向大众发布信息成为可能。</p>\n<p>This free flow of information eventually led to a free press in many parts of the world. But because information is so powerful, many world leaders have tried to stop it.</p>\n<p>这种信息的自由最终引领了世界许多地区的新闻自由。但由于信息太过强大,许多世界领导人试图阻止它。</p>\n<p>French leader Napoleon Bonaparte once said he feared four newspapers more than 1,000 bayonets.</p>\n<p>法国领导人拿破仑·波拿巴曾经说过,他害怕四家报纸超过1000支刺刀。</p>\n<p>The Chinese emperor who oversaw the building of the Great Wall famously used his power to stop published information. Qin Shi Huang ordered the burning of thousands of books on subjects he wanted to keep from the people. He even had hundreds of scholars executed for refusing to give up their book collections.</p>\n<div> </div>\n<p>中国监督长城建造的皇帝,成功地使用他的权力阻止了信息传播。秦始皇下令烧毁数千本关于他不想要人民看到的主题的书,他甚至处决了数百名拒绝放弃藏书的学者。</p>\n<p>Even powerful leaders in modern times have succeeded in blocking material they do not want the people to see, as in Russia and China.</p>\n<p>就像俄罗斯和中国一样,即使是现代的当权者也成功地阻止了他们不想让人民看到的信息。</p>\n<p>But when true information is allowed to reach the people, good results can follow. Information has fueled successful revolutions in many nations. Government atrocities have been identified and world leaders have been forced to be held accountable for their actions.</p>\n<p>但是,当真正的信息传递给人们时,好的结果会产生,信息推动了许多国家的成功革命。政府的暴行已经被确认,迫使世界领导人对自己的行为负责。</p>\n<p>Advances in media technology have made words and images more powerful and widespread than ever. Smart phones and social media have become quick and easy tools to receive and share news and information. These tools have even made it possible for anyone with a device to gather and publish “news.”</p>\n<p>媒体技术的进步使文字和图像比以往任何时候都更加强大,传播更加广泛。智能手机和社交媒体已经成为接收和分享新闻、信息的便捷工具。这些工具甚至使任何拥有设备的人都有可能收集和发布“新闻”。</p>\n<p>This media environment makes it important for us to be able to recognize reliable information. True information gives us the facts to guide our decisions and actions.</p>\n<p>这种媒体环境使得我们能够识别可靠的信息变得非常重要。真实的信息给了我们事实来指导我们的决定和行动。</p>\n<p>In addition to informing, news can also divert.</p>\n<p>除了通知之外,新闻也可以使我们开心。</p>\n<p>This means it can focus our attention on something we are interested in as a kind of escape. An example would be news about subjects we seek out for enjoyment, such as entertainment, celebrities or sports.</p>\n<p>这意味着它可以把我们的注意力集中在我们感兴趣的东西上,作为一种逃避的方式。一个例子就是关于我们寻找娱乐等主题的新闻,比如娱乐、名人或运动。</p>\n<p>News can also serve as a way to connect us as human beings. This could include stories about tragedies or uplifting events that affect us emotionally. Such stories can lead people to join a cause or donate money to help those in need.</p>\n<p>新闻也可以作为连接我们人类的一种方式,这可能包括影响我们情感的悲剧或令人振奋的故事,这样的故事可以引导人们加入一个事业,或者捐钱帮助那些有需要的人。</p>\n<p>No matter what kind of news we experience, we have to be able to tell whether it is authentic or not. In the coming lessons, we will show you the steps; how you can do this.</p>\n<p>无论我们经历的是什么样的新闻,我们都必须能够判断它是否真实。在接下来的课程中,我们将向您展示如何做到这些。</p>\n<p> </p>\n<p><strong>Words in This Story</strong></p>\n<p><strong>type </strong>- n. standardized letters for printing</p>\n<p><strong>masses</strong> - n. large groups of people</p>\n<p><strong>bayonet</strong> - n. Knife at the end of a rifle</p>\n<p><strong>atrocity</strong> - n. a cruel and terrible act</p>\n<p><strong>device </strong>- n. an item, such as mobile phone or radio</p>\n<p><strong>reliable</strong> - adj. can be trusted to do the correct thing</p>\n<p><strong>divert</strong> - v. to change direction, or move one\'s attention</p>', 'voa慢速英语视频:News Literacy Lesson 1: Real News vs. Fake News', 1, 1, 2, '2021-04-04 14:31:36', '2021-04-20 20:17:16', 4, 1138, 4, 7, NULL);
INSERT INTO `article` VALUES (22, '新闻素养第二课:验证、独立、问责', '1617518045724.jpg', '内容管理员', '2021-04-04 14:34:03', '<p style=\"text-align: center;\"><video controls=\"controls\" width=\"730\" height=\"365\">\n<source src=\"//down.chinavoa.com/voadownload/voamsvideo/2019/20190506ms.mp4\" type=\"video/mp4\" /></video></p>\n<p style=\"text-align: center;\"><strong>News Literacy Lesson 2: Verification, Independence, Accountability</strong></p>\n<p style=\"text-align: center;\"><strong>新闻素养第二课:验证、独立、问责</strong></p>\n<p>What is legitimate journalism? It is news that has been verified by an independent organization that is accountable for the information.</p>\n<p>什么是合法新闻?就是一个对信息负责的独立组织已经核实过的新闻。</p>\n<p>Verification, independence and accountability are the characteristics of quality journalism. Let’s examine Verification. It’s the process of establishing that information is truthful and accurate.</p>\n<p>验证、独立和问责是高质量新闻工作的特点。我们重点说一下验证,这是建立真实和准确信息的过程。</p>\n<p>Journalists collect information with the goal of providing the most accurate version of events. They talk to sources, dig through information, and provide accurate documents to back up their stories.</p>\n<p>记者收集信息的目的是提供事件最准确的版本,他们谈论消息来源,挖掘信息,并提供准确的文件来支持他们的故事。</p>\n<p>In 2004, the CBS News broadcast 60 Minutes II claimed it had documents critical of the National Guard service of President George W. Bush. But CBS News failed to authenticate the documents and they were, in fact, forgeries.Several journalists, including anchorman Dan Rather, were fired.</p>\n<p>2004年,哥伦比亚广播公司的“60分钟(第二季)”节目,声称有批评乔治·W·布什总统国民警卫队的文件,但是CBS新闻没有对这些文件进行验证,事实上,这是伪造的,结果包括主持人丹·拉瑟在内的一些记者都被解雇了。</p>\n<p>Independence. It is a freedom from control or influence, combined with impartiality.</p>\n<p>独立,是一种不受控制或影响,与公正相结合的自由。</p>\n<p>Independence includes objectivity, fairness and balance. But what is fairness? What is balance? And how do we determine that?</p>\n<p>独立包括客观性、公平性和平衡性。但什么是公平?什么是平衡?我们怎么确定呢?</p>\n<p>Let’s take, for example the myth that the measles, mumps, and rubella (MMR) vaccine is the cause of autism. This claim has been completely discredited, yet several Hollywood celebrities continue to endorse it, some backing an anti-vaccine film made by pseudo-scientists. Should journalists reporting on autism give time to the position of the anti-vaccine believers? No. They are not scientists. Their “opinions” cannot be balanced against scientific knowledge and certainty. Both sides are not equal and it is misleading to treat them equally.</p>\n<p>让我们以麻疹、腮腺炎和风疹疫苗是孤独症病因的说法为例。这一说法已完全不可信,但一些好莱坞名人仍在支持它,一些人还支持伪科学家制作的一部反疫苗电影。应该给报道孤独症的记者一些时间来了解抗疫苗信徒的立场吗?不需要,他们不是科学家。他们的“意见”与科学知识和确定性不平衡。两者是不平等的,所以平等对待他们是有误导性的。</p>\n<p>Accountability. The process of taking responsibility for the reporting.</p>\n<p>问责,是为报告负责的过程。</p>\n<p>News organizations should be clearly identified and journalists’ contact information, easily obtainable. But most importantly, any news organization or journalist should be prepared to admit errors when they’ve been made.</p>\n<p>应该清楚地识别新闻机构和记者的联系信息,这些信息很容易获得。但最重要的是,任何新闻机构或记者都应该在错误出现的时候准备承认。</p>\n<p>In 2005, the New York Times asked veteran reporter Judith Miller to resign after it became clear her reporting about the Iraq war was wrong. The Times wrote an extraordinary critique of its own editorial process. That is also accountability.</p>\n<p>2005年,“纽约时报”要求资深记者朱迪思·米勒辞职,因为她对伊拉克战争的报道显然是错误的。“泰晤士报”对自己的编辑过程进行了非同寻常的批评,这也是问责。</p>\n<p>Verification, Independence and Accountability. These are the three main elements of journalism and what distinguishes it from other kinds of information.</p>\n<p>验证、独立和问责,这是新闻工作的三大要素,也是新闻与其他信息的区别。</p>\n<p>In our next lesson, we will look more closely at verification.</p>\n<p>在我们的下一课中,我们将更仔细地研究验证问题。</p>\n<p><strong>Words in This Story</strong></p>\n<p><strong>legitimate</strong> - adj. real truthful</p>\n<p><strong>accountable</strong> – adj. take responsibility for</p>\n<p><strong>characteristic</strong> – n. a feature of something</p>\n<p><strong>accurate</strong> – adj. truthful, correct</p>\n<p><strong>forgeries </strong>– n. something that is created to falsely look real</p>\n<p><strong>Impartiality</strong> – n. without any interest, seeing both sides equally</p>\n<p><strong>myth</strong> – n. In our next lesson, we will look more closely at verification.</p>\n<p><strong>autism</strong> – n. a condition or disorder that begins in childhood and that causes problems in forming relationships and in communicating with other people</p>\n<p><strong>mislead</strong> – v. to purposely give a false idea to someone</p>\n<p><strong>obtain </strong>– v. to get, to have</p>\n<p><strong>error</strong> - n. a mistake, something incorrect</p>\n<p><strong>critique</strong> – n. a careful judgment about something’s quality</p>', 'voa慢速英语视频:News Literacy Lesson 2: Verification, Independence, Accountability', 1, 1, 0, '2021-04-04 14:35:14', '2021-04-17 17:48:12', 4, 1056, 4, 7, NULL);
INSERT INTO `article` VALUES (23, '新闻素养第三课:建立真理', '1617518170461.jpg', '内容管理员', '2021-04-04 14:36:15', '<p style=\"text-align: center;\"><video poster=\"//down.chinavoa.com/voadownload/voamsvideo/2019/20190507ms.mp4\" controls=\"controls\" width=\"730\" height=\"365\">\n<source src=\"//down.chinavoa.com/voadownload/voamsvideo/2019/20190507ms.mp4\" type=\"video/mp4\" />\n<source src=\"//down.chinavoa.com/voadownload/voamsvideo/2019/20190507ms.mp4\" type=\"video/mp4\" /></video></p>\n<p style=\"text-align: center;\"><strong>News Literacy Lesson 3: Establishing the Truth</strong></p>\n<p style=\"text-align: center;\"><strong>新闻素养第三课:建立真理</strong></p>\n<p>Let’s examine the verification process a little closer. Becoming a literate news consumer requires us to be able to identify legitimate journalism. Legitimate journalism seeks truth. But how do we define that truth?</p>\n<p>让我们仔细研究一下验证过程。成为一个文学新闻的消费者需要我们能够识别合法的新闻,合法新闻追求的是真理。但我们要怎样定义真实呢?</p>\n<p>Truthful reporting comes from using facts that can be confirmed. All the details may not be known. But a news story should include the latest version of events based on verified facts.</p>\n<p>真实的报道使用的是可以证明的事实,虽然不可能知道所有的细节,但新闻报道应该包括基于事实的最新事件。</p>\n<p>Truth is a journey that evolves over time. It is not possible for us to read one newspaper on one day and get a complete picture of world events. We must seek out multiple sources: newspapers, magazines, television and – yes – the internet.</p>\n<p>真理是一段随时间而演变的旅程,我们不可能在某一天读一份报纸,了解到世界上所有事件的全部情况。我们必须通过多种渠道寻找:报纸、杂志、电视,当然还有互联网。</p>\n<p>In Iran recently, massive street demonstrations took place throughout the country.</p>\n<p>最近,伊朗全国各地都发生了大规模的街头示威活动。</p>\n<p>When news organizations reported on these events, the evidence was clear. Images of the protests appeared on television, in newspapers and on the internet. Literate news consumers could be certain the demonstrations took place.</p>\n<p>当新闻机构报道这些事件时,证据是明确的,抗议活动的图像出现在电视、报纸和互联网上,文学新闻的消费者可以确信发生了示威活动。</p>\n<p>But not all evidence is captured on digital equipment. Sometimes evidence comes in the most unreliable form – memory. It is well known that if a police officer interviews 10 witnesses about a crime, he will receive 10 different versions of events. Yet all were witnesses. A journalist seeking the truth should interview as many witnesses as possible in search of the true story.</p>\n<p>但并不是所有的证据都是在数字设备上捕捉到的,有时证据以最不可靠的形式出现-记忆。众所周知,如果一名警官询问一个案件的10名目击者,他将收到10种关于事件的不同版本的说法,但他们都是目击证人。寻求真相的记者应该采访尽可能多的证人,以寻找事件的真相。</p>\n<p>One of the most exciting developments in the “smart phone age” is the ability to record events as they happen.</p>\n<p>“智能手机时代”中最令人兴奋的发展之一是,当事件发生时,能随时记录。</p>\n<p>In May of 2017 former North Charleston, South Carolina police officer Michael Slager admitted in court to shooting and killing Walter Scott. But two years earlier, Officer Slager stated that Scott, pulled over for a traffic violation, had grabbed for his gun. Many news organizations reported Slager’s version of the incident. But the next day, a video emerged clearly showing that Slager was lying. He shot Scott in the back as he ran away. News organizations quickly corrected and updated their earlier reporting.</p>\n<p>2017年5月,前北查尔斯顿的南卡罗来纳州警官迈克尔·斯雷格在法庭上承认枪杀了沃尔特·司各特。但是两年前,斯雷格警官说司各特因为交通违规而被逮捕,并抢了他的枪。许多新闻机构报道了斯雷格对这起事件的陈述,但第二天,一段视频的出现清晰地显示出斯雷格在撒谎,当司各特跑走时,他在背后冲司各特开了枪。新闻机构迅速更正和更新了他们先前的报道。</p>\n<p>Verification is the responsibility of both news organizations and journalists. But a literate news consumer also checks often for updates or for corrections in stories because he realizes that sometimes – even journalists make mistakes.</p>\n<p>核查是新闻机构和记者共同的责任。但是,一个文学新闻消费者也经常核查以更新或修正新闻,因为他意识到,有时即使是记者也会犯错。</p>\n<p>Next, we will examine balance and fairness.</p>\n<p>接下来,我们将研究平衡和公平。</p>\n<p><strong>Words in This Story</strong></p>\n<p><strong>verification</strong> - n. to quickly take and hold (someone or something) with your hand or arms</p>\n<p><strong>literate</strong> - adj. one who can read, write and understand</p>\n<p><strong>consumer </strong>- n. one who uses or buys things</p>\n<p><strong>journey</strong> - n. a trip</p>\n<p><strong>multiple</strong> - adj. many, more than one or two</p>\n<p><strong>grab</strong> - v. to quickly take and hold (someone or something) with your hand or arms</p>\n<p><strong>emerge</strong> - v. to become known or apparent</p>', 'voa慢速英语视频:News Literacy Lesson 3: Establishing the Truth', 1, 1, 4, '2021-04-04 14:37:29', '2021-04-21 14:18:24', 4, 1058, 4, 7, NULL);
INSERT INTO `article` VALUES (24, '新闻素养第四课:平衡,公平', '1617518296669.jpg', '内容管理员', '2021-04-04 14:38:19', '<p style=\"text-align: center;\"><video controls=\"controls\" width=\"730\" height=\"365\">\n<source src=\"//down.chinavoa.com/voadownload/voamsvideo/2019/20190508ms.mp4\" type=\"video/mp4\" /></video></p>\n<p style=\"text-align: center;\"><strong>News Literacy Lesson 4: Balance, Fairness</strong></p>\n<p style=\"text-align: center;\"><strong>新闻素养第四课:平衡,公平</strong></p>\n<p>Media organizations often use words like “balance” and “fairness.” They want to say that they are reporting without showing favoritism or making judgments. Balance simply means giving equal time to both sides of an issue, or not giving one side more importance.</p>\n<p>媒体机构经常使用“平衡”和“公平”这样的词,他们想说,他们的报道并没有显示出偏袒或作出评判。平衡仅仅意味着给问题的两面同等的时间,或不给予一方更多的重视。</p>\n<p>For example, let’s consider a report about abortion bills winding their way through U.S. legislatures. A balanced report will give equal time to both supporters of abortion and those opposed to the operation. However, journalists must verify the facts put forth by each side. It is not balance to allow both sides to make any statement supporting their case. This can perpetuate fake news and leaves the reader or viewer without solid information.</p>\n<p>例如,我们来看一份关于堕胎法案在美国立法机构中曲折通过的报告。一份平衡的报告将给予堕胎支持者和反对该法案者同样的时间。但是,记者必须核实双方提出的事实。允许双方发表任何支持其理由的声明是不平衡的,这会使假新闻永久化,而没有把可靠信息留给读者或观众。</p>\n<p>“Will you just shut up for a minute and let me finish? Pardon me, sir, you don’t get to tell me to shut up and national television.”</p>\n<p>“你能不能闭嘴,让我说完?对不起,先生,你不能让我和国家电视台闭嘴。“</p>\n<p>Shouting and arguing does not bring balance to an issue and it certainly isn’t journalism.</p>\n<p>喊和争论并不能使问题得到平衡,当然也不是新闻业。</p>\n<p>But journalists must be careful that seeking balance doesn’t lead to unfair reporting, or setting up an unfair moral equivalency or balance, between unequal sides in an argument.</p>\n<p>但是记者们必须注意,寻求平衡不能导致不公平的报道,或者在争论中不平等的双方之间建立不公平的道德对等或平衡。</p>\n<p>Actually, objectivity means reporting the truth, it means getting everybody’s truth and reporting it, but never creating a false moral equivalence. Never saying all sides are equal because that’s not the truth, false. That’s a cop-out, it’s a lie.</p>\n<p>事实上,客观性意味着报道真相,也就是得到每个人的真相并报道,但绝不制造虚假的道德对等。永远不要说各方都是平等的,因为这不是事实,是假的,这是没有根据的,是谎言。</p>\n<p>Journalist Christiane Amanpour is talking about the Bosnian War, where she reported on attacks against Bosnian Muslims. Experts called it a kind of ethnic cleansing. To give equal weight to official denials of the violence she saw would have been wrong.</p>\n<p>记者克里斯蒂娜·阿曼普尔正在谈论波斯尼亚战争,她在那里报道了对波斯尼亚穆斯林的袭击,专家称这是种族清洗。对官方否认她所看到的暴力行为给予同样的重视是错误的。</p>\n<p>Fair reporting represents reality, not a simple “he said, she said.” False moral equivalency is a failure of journalists to carry out their duties.</p>\n<p>公平的报道代表着现实,而不是一个简单的“他说的或她说的”。虚假的道德等于是记者未能成功履行其职责。</p>\n<p>A smart news consumer must ask: is this coverage fair to the evidence? And what exactly is evidence? In lesson 5 we will explain how to evaluate news coverage in order to answer these questions.</p>\n<p>一个聪明的新闻消费者必须问:这种报道对证据公平吗?证据到底是什么?在第五课,我们将解释如何评估新闻报道,以回答这些问题。</p>\n<p><strong>Words in this story</strong></p>\n<p><strong>abortion</strong> – n. a medical procedure used to end a pregnancy and cause the death of the fetus</p>\n<p><strong>verify </strong>– v. to prove, show, find out, or state that (something) is true or correct</p>\n<p><strong>perpetuate</strong> – v. to cause (something that should be stopped, such as a mistaken idea or a bad situation) to continue</p>\n<p><strong>equivalency</strong> – n. a level of that is considered to be on the same level</p>\n<p><strong>Ethnic </strong>– adj. of or relating to races or large groups of people who have the same customs, religion, origin, etc.</p>', 'voa慢速英语视频:News Literacy Lesson 4: Balance, Fairness', 1, 1, 0, '2021-04-04 14:39:01', '2021-04-17 16:43:48', 4, 957, 4, 7, NULL);
INSERT INTO `article` VALUES (25, '新闻素养第五课:新闻报道的质量', '1617519296835.jpg', '内容管理员', '2021-04-04 14:54:59', '<p style=\"text-align: center;\"><video controls=\"controls\" width=\"730\" height=\"365\">\n<source src=\"//down.chinavoa.com/voadownload/voamsvideo/2019/20190509ms.mp4\" type=\"video/mp4\" /></video></p>\n<p style=\"text-align: center;\"><strong>News Literacy Lesson 5: Quality of News Reports</strong></p>\n<p style=\"text-align: center;\"><strong>新闻素养第五课:新闻报道的质量</strong></p>\n<p>In this lesson, we present seven steps to help you judge the quality of news reporting:</p>\n<p>在本课程中,我们将介绍七个步骤来帮助您判断新闻报道的质量:</p>\n<p>Step One: Main Points</p>\n<p>第一步:要点</p>\n<p>Be able to recognize and re-state the main points of the story. An intelligent news consumer asks: What are the facts and how are they presented?</p>\n<p>能够识别并再述新闻的要点。一位聪明的新闻消费者问:事实是什么?它们是如何呈现的?</p>\n<p>Step Two: Evidence</p>\n<p>第二步:证据</p>\n<p>Examine the evidence. How has the reporter confirmed the evidence? Is there video you can trust? Is there a paper trail -- documents to prove what happened?</p>\n<p>核实证据。记者是如何证实证据的?有可以信任的视频吗?有书面证据证明发生了什么吗?</p>\n<p>Step Three: Sources</p>\n<p>第三步:来源</p>\n<p>Consider the sources of the story. Are they named or not identified in the story?</p>\n<p>考虑一下新闻的来源,他们在故事中是被指定的还是没有被识别出来的?</p>\n<p>Step Four: Openness</p>\n<p>第四步:开放</p>\n<p>What is the transparency level -- the level of openness -- in the news organization? Where did they get their information?</p>\n<p>新闻机构的透明度-开放程度是多少?他们是从哪里得到信息的?</p>\n<p>Step Five: Knowledge of Subject</p>\n<p>第五步:主题知识</p>\n<p>Is there something to provide context, such as background information or history? Does the reporter have a command of the subject of the report?</p>\n<p>是否有什么可以提供上下文信息,例如背景信息或历史?记者对报道的主题有掌握吗?</p>\n<p>Step Six: The Five “W”s</p>\n<p>第六步:五个“W”</p>\n<p>Are important pieces of information missing? Does the report answer the questions: what happened? Where, when and why did it happen? Who was involved?</p>\n<p>重要的信息丢失了吗?报告是否回答了以下问题:发生了什么?在哪里、何时以及为什么会发生这种情况?谁被牵扯进来了?</p>\n<p>Step Seven: Self Examination</p>\n<p>第七步:自我检查</p>\n<p>Are you open to fairness? As a news consumer, you must know yourself. Do you have opinions or beliefs that could influence your judgment?</p>\n<p>你愿意接受公平吗?作为一个新闻消费者,你必须了解自己。你是否有可能影响你判断力的观点或信念?</p>\n<p>Perhaps step seven is the most important of the seven steps. Ask yourself: Are you more likely to believe a story if it confirms your pre-existing beliefs? That is called confirmation bias. Confirmation bias is a sort of blindness that leads news consumers to seek out information they WANT to be true. A smart news consumer seeks out information from multiple sources, weighing the reputation of each source, and comparing their coverage.</p>\n<p>或许第七步是最重要的。扪心自问:如果一个故事证实了你原有的信念,你更有可能相信它吗?这叫做确认偏差。确认偏差是一种盲目性,导致新闻消费者寻找他们想要的真实信息。聪明的新闻消费者从多个来源寻找信息,衡量每个消息来源的可信度,并比较它们的报道。</p>\n<p>Using these seven steps, a reader or listener can decide the quality and truthfulness of news reports.</p>\n<p>通过这七个步骤,读者或听众可以决定新闻报道的质量和真实性。</p>\n<p>In our final lesson, we will consider journalistic responsibility in the age of social media.</p>\n<p>在我们的最后一课,我们将考虑新闻在社会媒体时代的责任。</p>\n<p><strong>Words in This Story</strong></p>\n<p><strong>consumer </strong>-- n. one who buys or uses a product</p>\n<p><strong>transparency</strong> - n. the quality that makes it possible to see through something</p>\n<p><strong>context </strong>- n. the situation in which something happens : the group of conditions that exist where and when something happens</p>\n<p><strong>bias</strong> - n. a tendency to believe that some people, ideas, etc., are better than others that usually results in treating some people unfairly</p>', 'voa慢速英语视频:News Literacy Lesson 5: Quality of News Reports', 1, 1, 0, '2021-04-04 14:55:44', '2021-04-17 16:43:56', 3, 878, 3, 7, NULL);
INSERT INTO `article` VALUES (26, '新闻素养第六课:新闻与社会媒体', '1617519411272.jpg', '内容管理员', '2021-04-04 14:56:53', '<p style=\"text-align: center;\"> </p>\n<p style=\"text-align: center;\"><video controls=\"controls\" width=\"730\" height=\"365\">\n<source src=\"//down.chinavoa.com/voadownload/voamsvideo/2019/20190510ms.mp4\" type=\"video/mp4\" /></video></p>\n<p style=\"text-align: center;\"><strong>News Literacy Lesson 6: News and Social Media</strong></p>\n<p style=\"text-align: center;\"><strong>新闻素养第六课:新闻与社会媒体</strong></p>\n<p>Today anyone with a smartphone or a laptop can spread information and video around the world immediately.</p>\n<p>如今,任何拥有智能手机或笔记本电脑的人都可以在世界各地即时传播信息和视频。</p>\n<p>This new-found power can play a vital role in our understanding of events in places that have been cut off from traditional journalism.</p>\n<p>这种新发现的力量可以在我们理解与传统新闻隔绝的地方的事件中发挥至关重要的作用。</p>\n<p>As in Syria where the effects of the violent civil war are captured by citizens who are often trapped behind the firing line. In this digital age, it is nearly impossible for tyrants to mask their cruelty and anyone can speak about oppression to a global audience.</p>\n<p>就像在叙利亚,暴力内战影响了那些经常被困在火线后面的公民。在这个数字时代,专制者几乎不可能掩盖他们的残忍,任何人都可以向全球观众谈论压迫。</p>\n<p>But digitalization has a dark side. Social media, like Twitter and Facebook, often release information to the public that has not been verified, or long before a legitimate news organization would release it. So, it is possible for erroneous information to spread quickly.</p>\n<p>但数字化有其阴暗面。像twitter和facebook这样的社交媒体经常向公众发布未经证实的信息,或者抢在合法的新闻机构之前发布信息。因此,错误信息有可能迅速传播。</p>\n<p>Take the case of Veerender Jubbal. Several European news outlets named the Canadian Sikh as a possible suspect for the November 2015 Paris terror attack. They even published a photo of him wearing a suicide bomber vest.<ins class=\"adsbygoogle\" data-ad-format=\"fluid\" data-ad-layout=\"in-article\" data-ad-client=\"ca-pub-6138521113002217\" data-ad-slot=\"8622533935\" data-adsbygoogle-status=\"done\"><ins id=\"aswift_1_expand\" tabindex=\"0\" title=\"Advertisement\" aria-label=\"Advertisement\"><ins id=\"aswift_1_anchor\"></ins></ins></ins></p>\n<p>以维伦德·朱巴尔为例,一些欧洲的新闻媒体认定这位加拿大锡克人可能是2015年11月巴黎恐怖袭击的嫌疑人,他们甚至公布了他身穿自杀炸弹背心的照片。</p>\n<p>But Mr. Jubbal was completely innocent. Someone had manipulated a photo on his Facebook page and posted it on social media as a joke. It quickly spread, causing Mr. Jubbal to suffer extreme damage to his reputation and a lot of emotional distress.</p>\n<p>但是,朱巴尔先生完全是无辜的,某个人在他的脸书主页上合成了一张照片,然后当做玩笑似的发到了社交媒体上。信息很快传播开来,致使朱巴尔先生遭受了严重的名誉伤害和巨大的精神压力。</p>\n<p>This is a dramatic example but think about it. How many times have you fallen for click bait -- those deceptive ads that lure you to click with gossip or untrue information? For example, those ads that imply a famous celebrity has died or suffered a terrible tragedy?</p>\n<p>这虽是一个戏剧性的例子,但也值得我们思考。你有多少次陷入了点击诱饵,即利用谣言或虚假信息吸引你点击的欺诈性广告。例如,一些暗示某个名人已经死亡或遭受严重悲剧的广告。</p>\n<p>Unlike traditional journalism, social media does not have an obligation to the truth. Its users are its reporters, and they are accountable to no one.</p>\n<p>不同于传统媒体,社交媒体不用为事实负责,它的用户就是报告者,他们不用对任何人负责。</p>\n<p>A smart news consumer is always aware of this discrepancy between traditional media and social media.</p>\n<p>一个明智的消费者总能意识到传统媒体和现代社交媒体的矛盾。</p>\n<p>Exercising news literacy is a skill like any other skill. It requires thoughtful concentration and consideration. A literate news consumer uses the tools we have outlined to evaluate the mounds of information we encounter every minute of every day.</p>\n<p>与其他技能一样,新闻素养的锻炼也是一项技能。它需要超强的专注力和周全的考虑。有素质的新闻消费者使用我们重点标出的工具去评估我们每天、每分钟看到的大量的信息。</p>\n<p> </p>\n<p><strong>Words in this story</strong></p>\n<p><strong>tyrant </strong>– n. a ruler who has complete power over a country and who is cruel and unfair</p>\n<p><strong>cruelty</strong> – n. a desire to cause others to suffer : the quality or state of being cruel</p>\n<p><strong>legitimate</strong> – adj. allowed according to rules or laws</p>\n<p><strong>erroneous</strong> – adj. not correct</p>\n<p><strong>manipulate </strong>– v. to deal with or control (someone or something) in a clever and usually unfair or selfish way</p>\n<p><strong>reputation</strong> – n. the common opinion that people have about someone or something</p>\n<p><strong>distress</strong> – n. suffering that affects the mind or body</p>\n<p><strong>lure</strong> – v. to cause or persuade (a person or an animal) to go somewhere or to do something by offering some pleasure or gain</p>\n<p><strong>gossip</strong> – n. information about the behavior and personal lives of other people</p>\n<p><strong>obligation</strong> – n. something that you must do because of a law, rule, promise, etc.</p>\n<p><strong>discrepancy</strong> – n. a difference especially between things that should be the same</p>', 'voa慢速英语视频:News Literacy Lesson 6: News and Social Media', 1, 1, 0, '2021-04-04 14:57:37', '2021-04-20 10:48:09', 4, 1068, 4, 7, NULL);
INSERT INTO `article` VALUES (27, '中国女足拼下东京奥运会入场券 如何用英语解说比赛?', '1618388588313.jpeg', '内容管理员', '2021-04-14 10:04:00', '<p>东京奥运会女足亚洲区预选赛(Asian Qualification playoffs for Tokyo 2020 Olympics)附加赛第二回合较量4月13日在苏州结束,中国队最终拿下东京奥运会参赛资格。</p>\n<figure class=\"image\"><img id=\"img-60764d20e4b0fc41953c67c4\" style=\"width: 708px; height: 447px;\" src=\"https://cds.chinadaily.com.cn/dams/capital/image/202104/14/60764d20e4b0fc41953c67c4.jpeg\" data-from=\"dams\" data-damsstoid=\"po60764d2de4b0fc41953c67c6\" data-damslibid=\"capital\" data-imgid=\"60764d200b9f006b94de0aec\" data-mimetype=\"image/jpg\" />\n<figcaption>4月13日,中国队球员王霜(中)在比赛中庆祝进球。新华社记者 丁旭 摄</figcaption>\n</figure>\n<p> </p>\n<p>Chinese star player Wang Shuang contributed one goal and one assist as the Steel Roses came from 2-0 behind to beat South Korea 4-3 on aggregate in the Olympic Qualification playoffs.<br />中国女足在半场落后两球的情况下反击,名将王霜贡献了一记进球和一次助攻,最终以4:3的总比分拿下东京奥运会女足亚洲区的入场券。</p>\n<p><strong>【词汇讲解】</strong></p>\n<p>On aggregate这个短语在体育比赛的报道中比较常见,表示“一系列比赛之后某个队拿到的总分”,一般直接跟在比分的后面,比如:They won 2-1 on the night and 3-2 on aggregate.(他们当晚2比1赢了,最终总分3比2胜出)。</p>\n<p><br />双方首回合较量,中国女足客场2:1获胜,掌握出线主动权。回到苏州主场,中国队却在开场后陷入被动,甚至一度陷入绝境。</p>\n<p>Going into the match 2-1 down from the first leg, the South Koreans executed a high press from the front and took the reins in the first half. They broke the deadlock in the 30th minute when Kang Chae-rim scored after a precise cross from Cho So-hyun.<br />第一回合2:1落后的情况下,这场比赛韩国队通过积极拼抢给中国队造成很大压力,上半场占据主导。第30分钟,赵昭贤送出精准传球,助力姜綵林攻入一球,打破场上僵局。</p>\n<p><br />In the last minute of the first half, Chinese goalkeeper Peng Shimeng saved a close-range header from a corner, but couldn\'t keep the ball out of the net from a rebound shot. The goal was initially credited to South Korean forward Choe Yu-ri, but the Asian Football Confederation (AFC) later ruled it as Chinese defender Li Mengwen\'s own goal.<br />上半场最后一分钟,中国队守门员彭诗梦扑出了韩国队利用角球机会发出的一个近距离头球,但是球反弹进网。这个进球最初判给了韩国队前锋崔友利,不过亚洲足联后来又判定这个进球是中国队后卫李梦雯的乌龙球。</p>\n<p><strong>【词汇讲解】</strong></p>\n<p>“头球”直接用header表示,如果说某个球员“善于顶球”我们就可以说someone is good in the air。除此之外,足球比赛中还会经常出现“香蕉球”和“倒勾球”。</p>\n<p>“香蕉球”(banana kick)指以弧线运行的球(a type of kick that gives the ball a curved trajectory),多是为了让球绕过守门员或者后卫,也就是大家熟知的“弧线球”。</p>\n<p>传说中的“倒钩球”(bicycle kick或overhead kick)指球员在腾空状态下、且头下脚上将球往后踢的动作(a player kicks the ball in mid-air backwards and over his own head)。</p>\n<p><br />Chinese head coach Jia Xiuquan changed his tactics in the second half as Yang Man came off the bench and became the turning point of the match. The 1.86-meter center forward headed home a free kick from Wang in the 69th minute.<br />下半场,中国队主教练贾秀全改变策略,换上身高1米86的中锋杨曼,成为整场比赛的转折点。第69分钟,中国队获得前场任意球,王霜主罚,杨曼将球攻入。</p>\n<p><br />凭借这个进球,中国队在90分钟内追成1:2。双方总比分打成3:3,重回同一起跑线。</p>\n<p><br />In the 103rd minute, Wang fired a long-distance shot into the bottom right corner, gifting China a lead on aggregate, which denied South Korean\'s dream to qualify for the Olympics.<br />加时赛第13分钟,王霜在禁区外拿球一脚远射破门,中国队总分领先,韩国队无缘奥运赛场。</p>\n<figure class=\"image\"><img id=\"img-60764d42e4b0fc41953c67c9\" style=\"width: 706px; height: 525px;\" src=\"https://cds.chinadaily.com.cn/dams/capital/image/202104/14/60764d42e4b0fc41953c67c9.jpeg\" data-from=\"dams\" data-damsstoid=\"po60764d7de4b0fc41953c67cb\" data-damslibid=\"capital\" data-imgid=\"60764d430b9f006b94de0aef\" data-mimetype=\"image/jpg\" />\n<figcaption>4月13日,中国队总比分4:3淘汰韩国队,拿下东京奥运会参赛资格。</figcaption>\n</figure>\n<p><br /><strong>【足球比赛技术统计的关键词】</strong></p>\n<p>射门 shots</p>\n<p>球门范围内射门 shots on goal</p>\n<p>进球数 goals scored</p>\n<p>犯规 fouls committed</p>\n<p>角球 corner kick</p>\n<p>任意球 free kick</p>\n<p>点球 penalty kick</p>\n<p>越位 offside</p>\n<p>乌龙球 own goals</p>\n<p>控球率 possession percentage</p>\n<p><br />参考来源:新华网</p>\n<p>(中国日报网英语点津 Helen)</p>', '东京奥运会女足亚洲区预选赛(Asian Qualification playoffs for Tokyo 2020 Olympics)附加赛第二回合较量4月13日在苏州结束,中国队最终拿下东京奥运会参赛资格。', 1, 1, 0, '2021-04-14 16:24:31', '2021-05-07 17:35:01', 2, 1034, 4, 9, NULL);
INSERT INTO `article` VALUES (28, '哪些是精彩的人生所必须的技能?', '1618388855433.jpg', '内容管理员', '2021-04-08 09:00:00', '<div class=\"main_title\"> </div>\n<div id=\"Content\" class=\"mian_txt\"><iframe id=\"playerFrame\" src=\"https://v-hls.chinadaily.com.cn/player/player.html?src=//v-hls.chinadaily.com.cn/stream/606312/f6bf8627-c174-411a-971e-b3143f6460c8/03837d89-84cd-4429-b59c-6f2bca34cedd_h.m3u8&p=//img2.chinadaily.com.cn/images/202104/08/606ecb7ca31024adbdc0a7a6.jpeg&l=en&c=5af95d2da3103f6866ee8458&s=WS606ecb7ca31024ad0bab44cc&d=20210408172305&t=TED%E6%BC%94%E8%AE%B2%EF%BC%9A%E5%93%AA%E4%BA%9B%E6%98%AF%E7%B2%BE%E5%BD%A9%E7%9A%84%E4%BA%BA%E7%94%9F%E6%89%80%E5%BF%85%E9%A1%BB%E7%9A%84%E6%8A%80%E8%83%BD%EF%BC%9F\" width=\"730\" height=\"357\" frameborder=\"0\" scrolling=\"no\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"></iframe>\n<div class=\"urlShareArea\" style=\"text-align: center;\">\n<div class=\"smallishide\">\n<div class=\"urlShareBox\" style=\"text-align: left;\"><br />现代人类的生活充满焦虑,压力重重,这是因为人类遗忘了生活的基础:POD(play,others,downtime)。人类应该学会像海豚一样生活,才能重新找回生活的平衡。</div>\n</div>\n</div>\n<p style=\"text-align: left;\">每个焦虑的父母都应该听一听这个演讲。孩子最需要的人生技能是adaptability(适应力),而你我都需要玩耍、联系和休息时间。</p>\n<p style=\"text-align: left;\"> </p>\n</div>', '现代人类的生活充满焦虑,压力重重,这是因为人类遗忘了生活的基础:POD(play,others,downtime)。', 1, 1, 0, '2021-04-14 16:31:42', '2021-04-20 21:11:17', 1, 104, 1, 10, NULL);
INSERT INTO `article` VALUES (29, '现象级畅销书《掌控习惯》作者谈习惯的力量', '1618389192097.jpg', '内容管理员', '2021-04-08 09:00:00', '<div class=\"main_title\"> </div>\n<div id=\"Content\" class=\"mian_txt\"><iframe id=\"playerFrame\" src=\"https://v-hls.chinadaily.com.cn/player/player.html?src=//v-hls.chinadaily.com.cn/stream/606309/78e05cb2-2b3f-4cd0-af9e-64b5f2d33e30/a3f37877-867e-4ed1-80d9-21ae0ab722b1_h.m3u8&p=//img2.chinadaily.com.cn/images/202103/16/60505670a31024adbdbb9fbb.jpeg&l=en&c=5af95d2da3103f6866ee8458&s=WS60505670a31024ad0baaf836&d=20210316145543&t=%E7%8E%B0%E8%B1%A1%E7%BA%A7%E7%95%85%E9%94%80%E4%B9%A6%E3%80%8A%E6%8E%8C%E6%8E%A7%E4%B9%A0%E6%83%AF%E3%80%8B%E4%BD%9C%E8%80%85%E8%B0%88%E4%B9%A0%E6%83%AF%E7%9A%84%E5%8A%9B%E9%87%8F\" width=\"730\" height=\"437\" frameborder=\"0\" scrolling=\"no\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"></iframe>\n<p>雄踞《纽约时报》排行榜的现象级畅销书《掌控习惯》(Atomic Habits)的作者詹姆斯·克利尔(James Clear)花了数年时间研究关于习惯的科学知识,来听听这个著名习惯研究专家揭示习惯养成的奥秘吧。</p>\n</div>', '雄踞《纽约时报》排行榜的现象级畅销书《掌控习惯》(Atomic Habits)的作者詹姆斯·克利尔(James Clear)花了数年时间研究关于习惯的科学知识,来听听这个著名习惯研究专家揭示习惯养成的奥秘吧。', 1, 1, 0, '2021-04-14 16:34:52', '2021-04-20 20:07:39', 5, 73, 1, 10, NULL);
INSERT INTO `article` VALUES (30, '全国累计报告接种新冠疫苗超过1亿剂次', '1618389582926.jpeg', '内容管理员', '2021-04-14 16:39:46', '<p>3月28日举行的国务院联防联控机制新闻发布会正式宣布,</p>\n<p>China had administered more than 100 million doses of COVID-19 vaccines by Saturday.<br />截至3月27日24时,全国累计报告接种新冠病毒疫苗超过1亿剂次。</p>\n<p><strong>【单词讲解】</strong></p>\n<p>Administer这个词最常见的意思是“管理、治理”,所以很多管理机构的名称里都有administration,比如National Medical Products Administration(国家药品监督管理局)。但是在接种疫苗这个语境里,administer的意思是“to give something to someone/to cause someone to receive something”(让某人接收到某物),比如:This drug should not be administered to the very young(这个药不能给太小的孩子用);administer justice(实施正义);Tests will be administered to schoolchildren at seven and twelve years(要对7岁和12岁的学生进行考试)。</p>\n<figure class=\"image\"><img id=\"img-606145d1e4b0fc419538a429\" src=\"https://cds.chinadaily.com.cn/dams/capital/image/202103/29/606145d1e4b0fc419538a429.jpeg\" width=\"700\" height=\"487\" data-from=\"dams\" data-damsstoid=\"po606145e5e4b0fc419538a42b\" data-damslibid=\"capital\" data-imgid=\"606145d20b9f006b94dd478d\" data-mimetype=\"image/jpg\" />\n<figcaption>3月28日,华东师范大学的师生在接种新冠疫苗。(图片来源:新华网)</figcaption>\n</figure>\n<p> </p>\n<p>国家卫健委疾控局副局长吴良有在发布会上表示,</p>\n<p>Beijing and Shanghai have started vaccinating people over 60 who are in good health and those who have chronic disease.<br />北京、上海等地已经陆续开展了针对60岁以上身体健康状况良好的老年人群的疫苗接种。</p>\n<p><br />The country will actively and prudently advance the COVID-19 vaccination of people over 60 and those who have chronic disease, based on the effectiveness of its mass vaccination campaign.<br />下一步将结合疫苗在大规模人群中的使用效果,积极稳妥推进60岁以上人群和慢性病患者的疫苗接种工作。</p>\n<p> </p>\n<p><br /><strong>未来疫苗接种还将覆盖18岁以下人群</strong></p>\n<p><br />国药集团中国生物副总裁张云涛表示,</p>\n<p>China National Biotech Group will start consultations with the National Medical Products Administration on the vaccination of those aged between 3 and 17, and it is expected to start soon.<br />对于3-17岁人群的接种工作,中国生物近期将和药监局作沟通。</p>\n<p><br />The company started early and mid-stage clinical trials of vaccinations for people in that age group in Henan province last year, Zhang said.<br />去年中国生物在河南现场开展的I/II期临床研究的过程中就涵盖了3-17岁年龄段的临床研究。</p>\n<p><br />The trials have shown that the vaccine\'s safety met expectations, and data on its effectiveness has also been obtained, he said.<br />目前这个年龄段的安全性数据已获得,达到了预期效果,有效性数据也已获得。</p>\n<p> </p>\n<p><br /><strong>两款灭活疫苗对不同地区的10多株毒株有中和作用</strong></p>\n<p>近期国外频频发现变异新冠病毒,引发许多人对于我国疫苗有效性的担忧。对此,张云涛介绍,</p>\n<p>Researchers have been testing the antiviral-mutation ability of the inactivated vaccines.<br />研究人员对灭活疫苗对抗变异病毒的能力进行了实验。</p>\n<p><br />By using data from mid-and late-stage clinical trials in China and overseas, researchers have conducted experiments on a dozen variants, including those found in South Africa and the United Kingdom, Zhang said.<br />研究人员利用在国内和海外二期、三期临床试验后的血清,对包括南非发现的、英国发现的毒株,还有国内不同地区、不同流行区发现的10多株的毒株进行了交叉综合实验。</p>\n<p><br />The experiments have found that the antibodies produced by the two inactivated vaccines have a good neutralizing effect on all the tested strains, he said, adding that such experiments are continuing on strains found in Brazil and Zimbabwe.<br />结果显示,两款灭活疫苗产生的中和抗体对这些毒株都有很好的中和作用。目前,国药集团中国生物在对巴西、津巴布韦发现的毒株进行中和实验监测。</p>\n<p><br />北京科兴中维生物技术公司总经理高强也表示,</p>\n<p>The company has started research and development of vaccines against the variants discovered in South Africa and Brazil.<br />科兴中维同时已经启动了对南非株、巴西株的疫苗研发工作。</p>\n<p><br />Based on earlier cross-neutralization research on mutated strains found in 10 countries, its vaccine has proved to be effective, he said.<br />在研究初期已经对10个国家病毒株的变异进行中和试验,已经证明了当时研发的疫苗对各个国家的变异株是有保护作用的。</p>\n<p><br /><strong>【相关词汇】</strong></p>\n<p>药品和疫苗研发<br />drug and vaccine development</p>\n<p>免疫系统<br />immune system</p>\n<p>有效性和安全性研究<br />safety and efficacy research</p>\n<p>人类卫生健康共同体<br />a global community of health for all</p>\n<p>疫苗联合研发<br />joint research and development of vaccines</p>\n<p><br />参考来源:新华网、中国日报网</p>\n<p>(中国日报网英语点津 Helen)</p>', '截至3月27日24时,全国累计报告接种新冠病毒疫苗超过1亿剂次。', 1, 1, 0, '2021-04-14 16:42:43', '2021-04-20 21:11:03', 1, 1105, 4, 6, NULL);
INSERT INTO `article` VALUES (31, '《你好,李焕英》即将全球上映', '1618390087618.jpg', '内容管理员', '2021-04-09 09:00:00', '<p>热门影片《你好,李焕英》要走出国门了,该片即将在全球范围内上映。</p>\n<p>\"Hi, Mom,\" the maiden directorial project of Chinese comedian and actress Jia Ling, is scheduled to hit international theaters on Thursday. The tear-jerker film will be released in North America, Japan, the Republic of Korea, Britain, Spain, Australia, New Zealand, Colombia and several other countries and regions, according to Ruyi Films, one of the producers.<br />喜剧演员贾玲的导演处女作《你好,李焕英》4月8日起将在全球范围内上映。制片方儒意影业表示,这部催泪影片将在北美、日本、韩国、英国、西班牙、澳大利亚、新西兰、哥伦比亚等国家和地区上映。</p>\n<p><strong>【单词讲解】</strong></p>\n<p>Maiden这个词来源于maid,本意指“未婚女子”,用作形容词时多表示“初次的、首次的”,比如:a ship\'s maiden voyage(船只首航),the maiden flight of a spacecraft(飞机首飞)等。</p>\n<p>影片在影院全面放映一般叫theatrical release或者general release,用动词形式表达就可以用hit theaters/cinemas,但是有些影片在正式全面上映之前会选择部分城市的部分影院进行“点映”(preview),为的是营造口碑,推动票房销售。</p>\n<figure class=\"image\"><img id=\"img-606fc568e4b0fc41953b44c5\" src=\"https://cds.chinadaily.com.cn/dams/capital/image/202104/09/606fc568e4b0fc41953b44c5.jpg\" width=\"700\" height=\"2551\" data-from=\"dams\" data-damsstoid=\"po606fc56ce4b0fc41953b44c7\" data-damslibid=\"capital\" data-imgid=\"606fc5690b9f006b94ddd511\" data-mimetype=\"image/jpg\" />\n<figcaption></figcaption>\n</figure>\n<p><br />The film has raked in nearly 5.4 billion yuan as of early Tuesday afternoon.<br />截至4月6日中午,该片已经收获近54亿元的票房。</p>\n<p><strong>【单词讲解】</strong></p>\n<p>Rake本意指“耙子,耙状工具”等可以用来把地面上的树叶等轻轻拢到一起的工具,用作动词的时候就表示“拢到一起”这个动作,比如:rake leaves into a pile(把叶子拢成一堆)。Rake in是一个常用的固定搭配,表示“迅速、大量获得”,除了上文中出现的rake in+金额以外,也可以说rake in a fortune(暴富)。</p>\n<p><br />It surpassed the 2017 superhero film \"Wonder Woman\" from Patty Jenkins and became the world\'s top-grossing film ever from a solo female director, according to the China Movie Data Information Network.<br />中国电影数据信息网的数据显示,该片已经超过派蒂·杰金斯2017年导演的超级英雄影片《神奇女侠》,成为全球票房最高的女性导演作品。</p>\n<p><br />The film overtook the 2019 animated fantasy \"Ne Zha\" to become the second highest-grossing film ever screened in China on March 6. The 2017 action-adventure film<em> Wolf Warrior 2</em> is currently topping the all-time box office chart covering all films ever screened in China with a total revenue of 5.693 billion yuan, according to data compiled by the China Movie Data Information Network.<br />3月6日,该片超过2019年奇幻动漫电影《哪吒之魔童降世》,成为中国影史票房第二高的电影。目前,位列影史票房冠军的是2017年的动作冒险影片《战狼2》,票房成绩为56.93亿元。</p>\n<p> </p>\n<p><strong>【相关词汇】</strong></p>\n<p>动作片 action movie</p>\n<p>武侠片 swordsmen film, martial-arts movie</p>\n<p>音乐歌舞片 musical</p>\n<p>古装剧 costume drama</p>\n<p>催泪片 tear-jerker</p>\n<p>票房 box office</p>\n<p>大片 blockbuster</p>\n<p>影评网站 film rating/review site</p>\n<p>视觉特效 visual effect</p>\n<p>影片配音 film dubbing</p>\n<p>电影发行公司 film distribution corporation</p>\n<p><br />参考来源:新华网、中新网</p>\n<p>(中国日报网英语点津 Helen)</p>', '热门影片《你好,李焕英》要走出国门了,该片即将在全球范围内上映。', 1, 1, 0, '2021-04-14 16:49:09', '2021-04-20 21:07:35', 1, 740, 3, 11, NULL);
INSERT INTO `article` VALUES (32, '四月最值得一看的4部电影', '1618390238925.jpeg', '内容管理员', '2021-04-01 00:00:00', '<p>四月份科幻片云集,讲述外太空殖民的《太空异旅》、超级英雄“女团”首度亮相的《雷霆女神》、以疫情后时代为背景的《地表惊旅》……科幻迷们千万不要错过!</p>\n<p> </p>\n<figure class=\"image\"><img id=\"img-6066d1faa31024adbdbfbfb4\" src=\"https://img2.chinadaily.com.cn/images/202104/02/6066d1faa31024adbdbfbfb4.jpeg\" data-from=\"newsroom\" data-mimetype=\"image/jpeg\" />\n<figcaption>(Credit: Lionsgate)</figcaption>\n</figure>\n<p> </p>\n<p><strong><em>Voyagers</em>《太空异旅》</strong></p>\n<p> </p>\n<p>In the near future, 30 young men and women are sent into space to populate a recently discovered planet. Onboard their spacecraft, they\'re dosed with drugs to keep their emotions in check, but, of course, something goes wrong. According to <em>Variety</em>, the \"crew descends into chaos, reverting to a primitive, tribal state, giving in to their most feral and animal desires\". This sci-fi version of <em>Lord of the Flies</em> stars Lily-Rose Depp and Tye Sheridan as two of the colonists, alongside Colin Farrell as the vessel\'s unfortunate captain.</p>\n<p>在不久的未来,30名年轻男女被送往太空,到一个刚被发现的行星繁殖人类后代。在登上飞船后,这些人服用了克制情感的药物,但是意外发生了。据《综艺》杂志报道,“船员们陷入了混乱,回归到了原始的部落状态,野性的动物欲望占了上风。”在这部科幻版《蝇王》中,莉莉-罗丝·德普和泰尔·谢里丹分别饰演其中两名殖民者,科林·法瑞尔饰演不幸的飞船船长。</p>\n<p> </p>\n<p>Released on 8 April in Australia and Singapore, and 9 April in the US and Canada</p>\n<p>该片将于4月8日在澳大利亚和新加坡上映,4月9日在美国和加拿大上映。</p>\n<p> </p>\n<p> </p>\n<figure class=\"image\"><img id=\"img-6066d1faa31024adbdbfbfb6\" src=\"https://img2.chinadaily.com.cn/images/202104/02/6066d1faa31024adbdbfbfb6.jpeg\" data-from=\"newsroom\" data-mimetype=\"image/jpeg\" />\n<figcaption>(Credit: Netflix)</figcaption>\n</figure>\n<p> </p>\n<p><strong><em>Thunder Force</em>《雷霆女神》</strong></p>\n<p> </p>\n<p>If Zack Snyder\'s <em>Justice League</em> was too gloomy for you, try <em>Thunder Force</em>, a superhero film that is a bit lighter and a lot shorter. Melissa McCarthy stars as Lydia, a slacker whose best friend from school, Emily (Octavia Spencer), is now a top scientist. Emily concocts a secret formula that accidentally gives her the power of invisibility, and gives Lydia phenomenal strength, so the two inexperienced middle-aged women put on rubber suits and become the world\'s first superhero team. The supervillains are played by Jason Bateman and Bobby Cannavale, and the writer-director is McCarthy\'s husband, Ben Falcone.</p>\n<p>如果扎克·施奈德的《正义联盟》对你来说太阴郁了,不妨看看《雷霆女神》。这部超级英雄电影比《正义联盟》轻快一些,而且短得多。梅丽莎·麦卡西饰演懒散的莉迪娅,她的老同学兼好友艾米丽(奥克塔维亚·斯宾瑟饰演)如今是一名顶级科学家。艾米丽意外调制出了一种能让自己隐形并让莉迪娅获得神力的秘方,于是这两位缺乏经验的中年妇女穿上了橡胶制服,组成了世界上第一支超级英雄团队。片中的反派由杰森·贝特曼和鲍比·坎纳瓦尔饰演,编剧兼导演则是麦卡西的丈夫本·法尔科内。</p>\n<p> </p>\n<p>Released on Netflix from 9 April</p>\n<p>该片将于4月9日在奈飞平台上线。</p>\n<p> </p>\n<p> </p>\n<figure class=\"image\"><img id=\"img-6066d1faa31024adbdbfbfb8\" src=\"https://img2.chinadaily.com.cn/images/202104/02/6066d1faa31024adbdbfbfb8.jpeg\" data-from=\"newsroom\" data-mimetype=\"image/jpeg\" />\n<figcaption>(Credit: Netflix)</figcaption>\n</figure>\n<p> </p>\n<p><strong><em>Things Heard and Seen</em>《所见所闻》</strong></p>\n<p> </p>\n<p>Shari Springer Berman and Robert Pulcini have been married for 25 years, but the latest film from the writer-directors of <em>American Splendor</em> and <em>The Nanny Diaries</em> is all about the terrors of marriage. Adapted from a gothic novel by Elizabeth Brundage, <em>Things Heard and Seen</em> stars Amanda Seyfried as an artist who moves from Manhattan to rural Hudson Valley with her husband, James Norton, but soon fears that her new house is cursed. It\'s a film that examines what it means to be bound to another person. \"I think one of the most frightening things in the world is a marriage,\" Berman told <em>EW</em>. \"It can be incredibly wonderful, and it can be incredibly scary, both at the same time. \"</p>\n<p>《美国荣耀》和《保姆日记》的编剧兼导演莎里·斯宾厄·伯曼和罗伯特·帕西尼已经结婚25年,但是两人的新片则是关于婚姻的恐怖。电影《所见所闻》改编自伊丽莎白·布伦代奇所著的哥特式小说,阿曼达·塞弗里德在片中饰演和丈夫(詹姆斯·诺顿饰演)一起从曼哈顿搬到哈德逊河谷乡村的艺术家,但很快她开始担心自己的新房子受到了诅咒。这部电影检视了被另一个人束缚住意味着什么。伯曼告诉《娱乐周刊》说:“我认为世界上最可怕的东西之一就是婚姻。婚姻可以美妙至极,同时也可以非常恐怖。”</p>\n<p> </p>\n<p>Released on Netflix from 30 April</p>\n<p>该片将于4月30日在奈飞平台上线。</p>\n<p> </p>\n<p> </p>\n<figure class=\"image\"><img id=\"img-6066d1faa31024adbdbfbfba\" src=\"https://img2.chinadaily.com.cn/images/202104/02/6066d1faa31024adbdbfbfba.jpeg\" data-from=\"newsroom\" data-mimetype=\"image/jpeg\" />\n<figcaption>(Credit: Neon)</figcaption>\n</figure>\n<p> </p>\n<p><strong><em>In the Earth</em>《地表惊旅》</strong></p>\n<p> </p>\n<p>Written and shot during last year\'s lockdowns, <em>In the Earth</em> is set in a Britain which has been devastated by a Covid-like virus. A scientist (Joel Fry) and a park scout (Ellora Torchia) trek into a forest to rendezvous with another scientist (Hayley Squires) who is experimenting with genetically modified crops. Along the way they encounter a mad hermit played by Reece Shearsmith (<em>Inside No. 9</em>), and things get weirder from there.</p>\n<p>《地表惊旅》的编剧和拍摄均在去年封锁期间完成,故事背景设定在被类似新冠的病毒摧毁的英国。一名科学家(乔尔·弗莱饰演)和一名公园巡逻员(埃洛拉·托尔基亚饰演)徒步进入森林和另一名正在做转基因谷物试验的科学家(海莉·斯奎尔斯饰演)会合。在路上他们碰见了里斯·谢尔史密斯(曾主演《9号秘室》)饰演的一名疯癫的隐居者,从那开始事情变得诡异起来。</p>\n<p> </p>\n<p>Released on 30 April in the US and Canada, 18 June in the UK and Ireland</p>\n<p>该片于4月30日在美国和加拿大上映,6月18日在英国和爱尔兰上映。</p>\n<p> </p>\n<p>英文来源:BBC文化频道</p>\n<p>翻译&编辑:丹妮</p>', '四月份科幻片云集,讲述外太空殖民的《太空异旅》、超级英雄“女团”首度亮相的《雷霆女神》、以疫情后时代为背景的《地表惊旅》……科幻迷们千万不要错过', 1, 1, 0, '2021-04-14 16:51:14', '2021-05-08 16:30:25', 2, 1308, 5, 11, NULL);
INSERT INTO `article` VALUES (38, '五一火车票秒光,或成“史上最热黄金周”', '1618815947804.jpg', '内容管理员', '2021-04-19 15:06:05', '<p>你抢到五一假期的票了吗?,五一假期第一天的火车票开售。不少热门方向的火车票手快有手慢无,瞬间秒没!</p>\n<figure class=\"image\"><img id=\"img-607cf4dba31024adbdc2c576\" src=\"https://img2.chinadaily.com.cn/images/202104/19/607cf4dba31024adbdc2c576.png\" data-from=\"newsroom\" data-mimetype=\"image/png\" />\n<figcaption></figcaption>\n</figure>\n<p><br />Train tickets to some of the most popular destinations for this year\'s May Day holiday sold out the moment they became available, causing platforms to temporarily crash, foretelling an explosive holiday season starting on May 1.<br />今年五一假期一些热门目的地的火车票一开售就售罄,导致售票平台暂时瘫痪,这预示着一个火爆的五一假期。</p>\n<p><br />据报道,17日早晨8点,北京日报记者登录12306官网查询,发现开售仅仅两分钟,北京西站到郑州东站50余趟高铁、动车车票售罄,剩余车次所剩车票不多。</p>\n<p><br />北京西站到石家庄站当天,只有21时以后发车车次还有余票。北京西站到长沙南站,只剩两趟高铁一等座还有部分余票。</p>\n<p><br />此外,前往武汉、太原等方向高铁列车同样抢手。</p>\n<p><br />随着京哈高铁全线贯通,北京前往东北地区主要城市间旅行时间大幅缩短,北京朝阳站前往哈尔滨、沈阳等地车票也非常抢手。</p>\n<p><br />目前,假期前一日北京朝阳站前往沈阳、阜新的车票,已经“一票难求”。</p>\n<figure class=\"image\"><img id=\"img-607cf4dba31024adbdc2c578\" src=\"https://img2.chinadaily.com.cn/images/202104/19/607cf4dba31024adbdc2c578.jpeg\" data-from=\"newsroom\" data-mimetype=\"image/jpeg\" />\n<figcaption>[Photo by Wei Xiaohao/chinadaily.com.cn]</figcaption>\n</figure>\n<p><br /><strong>“五一火车票秒光”上热搜</strong></p>\n<p><br />随着假期首日火车票的开售,微博上#五一火车票秒光#的话题也冲上了热搜。</p>\n<p><br />不少网友表示,抢了个寂寞。</p>\n<p><br />\"I tried wearing and taking off my glasses, binding and not binding my hair, and walked to the brighter living room to pass the facial recognition check on the app, but failed five or six times,\" a Beijing resident surnamed Zhang told the Global Times on Friday.<br />据环球时报,一位姓张的北京居民16日表示,“为了通过应用程序上的面部识别验证,我试了五六次,戴着眼镜的、不戴眼镜的,绑着头发的、披着头发的,甚至走到光线更充足的客厅,但都没成功。”</p>\n<p><br />\"Only when I browsed social media did I realize it wasn\'t my problem, it was that 12306 was down,\" Zhang said. She was trying to purchase a ticket to her hometown, Luoyang in Central China\'s Henan Province, which also has many historical sites and tourist spots.<br />张女士说:“后来我浏览社交媒体平台才发现这不是我的问题,而是12306‘崩了’。” 据悉,当时她正试着购买回家乡洛阳的车票。洛阳坐落于中国河南省,是一座拥有许多历史古迹和旅游景点的城市。</p>\n<p><br />世界上最远的距离,就是眼看着火车票显示“有”,但是你却抢不到票……</p>\n<p><br />而抢到票的网友们,心境就完全不一样了。</p>\n<p><br />不过抢到票的小伙伴们也别忘了,还要记得定时抢回来的车票。</p>\n<p><br />温馨小提示:</p>\n<p><br />4月21日,可购买5月5日假期最后一天的返程火车票。</p>\n<p><br />为了方便旅客购票,铁路部门已经延长了铁路12306网站售票服务时间:从每日的6:00至23:30,提前到每日5:00至23:30,同步12306网站和线下窗口改签规则,线上也可改签乘车当日24点前其它列车的车票。</p>\n<p><br /><strong>今年五一或成史上最热黄金周</strong></p>\n<p><br />小长假是激发消费活力、观察经济内在潜力的重要窗口。</p>\n<p><br />随着各项五一假期预订数据的出炉,业内人士分析,今年五一假期将成为“史上最热五一黄金周”。</p>\n<p><br />数据显示,\"五一\"期间国内进出港航班搜索量同比2020年提升超过五倍。三亚、西安、重庆、成都等热门目的地,进港航班搜索量分别提升550%到1000%。</p>\n<p><br />从旅游目的地搜索量、航班和酒店预订量等先行指标来看,今年五一出游人次或达到两亿。其中,红色旅游、跨省长线游、探秘新秘境等广受青睐。</p>\n<figure class=\"image\"><img id=\"img-607cf4dba31024adbdc2c57b\" src=\"https://img2.chinadaily.com.cn/images/202104/19/607cf4dba31024adbdc2c57b.jpeg\" data-from=\"newsroom\" data-mimetype=\"image/jpeg\" />\n<figcaption>Travelers line up at Air China\'s check-in counters for domestic flights at Beijing Capital International Airport. [Photo provided to China Daily]</figcaption>\n</figure>\n<p><br />Apart from railway travels, China\'s domestic civil aviation industry has also come up with a vengeance, based on bookings for the coming holiday. According to the Civil Aviation Administration of China (CAAC), the five-day May Day holiday will \"fully release\" the transportation demand in China that had been previously suppressed by the pandemic.<br />除铁路旅行外,从即将到来的黄金周的机票预订情况来看,中国民航业也迎来了复苏。据中国民航总局(CAAC),为期五天的五一黄金周假期将使中国民航业前期因新冠疫情受到抑制的运输需求得到“全面释放”。</p>\n<p><br />而透过这些数据,或许能窥见旺盛的假日市场需求背后,旅游市场中蕴藏的经济活力和消费潜力。</p>\n<p><br />还有两周就到五一小长假了,这个假期你有什么计划?</p>', '你抢到五一假期的票了吗?,五一假期第一天的火车票开售。不少热门方向的火车票手快有手慢无,瞬间秒没!', 0, 1, 0, '2021-04-19 15:06:43', '2021-04-20 10:45:55', 0, 1226, 5, 6, NULL);
INSERT INTO `article` VALUES (39, 'ceshi ', '1618908502238.png', '内容管理员', '2021-04-20 16:48:47', '<p>1</p>', 'ces', 0, 1, 7, '2021-04-20 16:49:06', '2021-04-20 16:53:20', 0, 1, 0, 2, '2021-04-20 20:06:45');
INSERT INTO `article` VALUES (40, '我是修改后的', '1618915818359.png', '内容管理员', '2021-04-20 18:49:56', '<p>1</p>', '1', 1, 1, 12, '2021-04-20 18:50:20', '2021-05-04 14:49:46', 3, 1, 1, 2, '2021-05-04 14:52:00');
INSERT INTO `article` VALUES (41, 'ceshi33', '1618915878946.png', '内容管理员', '2021-04-20 18:51:21', '<p>1</p>', '1', 0, 0, 9, '2021-04-20 18:51:32', '2021-04-20 19:57:40', 1, 1, 1, 2, '2021-04-20 20:06:43');
INSERT INTO `article` VALUES (42, 'cehis2', '1618986308197.jpeg', '内容管理员', '2021-04-21 14:25:11', '<p>ceshi2</p>', '策士', 1, 1, 11, '2021-04-21 14:25:22', '2021-04-21 14:26:02', 0, 33, 1, 2, '2021-05-04 14:52:02');
INSERT INTO `article` VALUES (43, 'ceshi', '1620381319496.jpg', '内容管理员', '2021-05-07 17:55:23', '<p>ces</p>', 'ces', 1, 1, 0, '2021-05-07 17:55:33', '2021-05-08 16:27:56', 0, 111, 1, 2, '2021-05-08 16:28:17');
INSERT INTO `article` VALUES (44, '测试', '1620461617279.jpeg', '内容管理员', '2021-05-08 16:13:41', '<p>测试</p>', '测试', 1, 1, 7, '2021-05-08 16:13:47', '2021-05-08 16:13:47', 0, 22, 1, 4, '2021-05-08 16:13:51');
INSERT INTO `article` VALUES (45, '修改了标题', '1620462031633.jpeg', '内容管理员', '2021-05-08 16:20:35', '<p>测试</p>', '测试', 1, 1, 7, '2021-05-08 16:20:44', '2021-05-08 16:29:31', 0, 3, 1, 4, NULL);
-- ----------------------------
-- Table structure for book
-- ----------------------------
DROP TABLE IF EXISTS `book`;
CREATE TABLE `book` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`author` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`summary` varchar(1000) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`image` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`create_time` datetime(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3),
`update_time` datetime(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3) ON UPDATE CURRENT_TIMESTAMP(3),
`delete_time` datetime(3) NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 14 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of book
-- ----------------------------
INSERT INTO `book` VALUES (1, '冬至快乐', 'lee', '小肥冬至快乐', 'https://img2.mukewang.com/5842b4e40001d52607480562-80-80.jpg', '2020-12-22 00:51:08.000', '2020-12-22 00:51:08.000', NULL);
INSERT INTO `book` VALUES (2, '深入理解计算机系统22', 'Randal E.Bryant', '从程序员的视角,看计算机系统!\n本书适用于那些想要写出更快、更可靠程序的程序员。通过掌握程序是如何映射到系统上,以及程序是如何执行的,读者能够更好的理解程序的行为为什么是这样的,以及效率低下是如何造成的。', 'https://img3.doubanio.com/lpic/s1470003.jpg', '2020-12-22 01:28:30.000', '2021-01-05 12:53:36.000', NULL);
INSERT INTO `book` VALUES (3, 'C程序设计语言22', '(美)Brian W. Kernighan', '在计算机发展的历史上,没有哪一种程序设计语言像C语言这样应用广泛。本书原著即为C语言的设计者之一Dennis M.Ritchie和著名计算机科学家Brian W.Kernighan合著的一本介绍C语言的权威经典著作。', 'https://img3.doubanio.com/lpic/s1106934.jpg', '2020-12-22 01:28:30.000', '2021-01-05 12:52:36.000', '2021-01-05 12:52:36.000');
INSERT INTO `book` VALUES (4, '测试2', '测试', '1', 'www.baidu.com', '2021-01-05 12:43:37.000', '2021-01-05 12:44:17.000', '2021-01-05 12:44:17.000');
INSERT INTO `book` VALUES (5, '测试', '测试', '1', '1', '2021-01-29 21:24:48.000', '2021-01-29 21:24:48.000', NULL);
INSERT INTO `book` VALUES (6, '测试2', '测试2', '测试2', '测试2', '2021-01-29 21:24:53.000', '2021-01-29 21:24:53.000', NULL);
INSERT INTO `book` VALUES (7, '测试3', '测试3', '测试3', '测试3', '2021-01-29 21:24:57.000', '2021-03-17 17:18:17.000', '2021-03-17 17:18:17.000');
INSERT INTO `book` VALUES (8, '测试4', '测试4', '测试4', '测试4', '2021-01-29 21:25:01.000', '2021-03-17 17:18:15.000', '2021-03-17 17:18:15.000');
INSERT INTO `book` VALUES (9, '测试5', '测试5', '测试5', '测试5', '2021-01-29 21:25:07.000', '2021-03-17 17:18:14.000', '2021-03-17 17:18:14.000');
INSERT INTO `book` VALUES (10, '测试6', '测试6', '测试6', '测试6', '2021-01-29 21:25:21.000', '2021-03-17 17:18:12.000', '2021-03-17 17:18:12.000');
INSERT INTO `book` VALUES (11, '测试7', '测试7', '测试7', '测试7', '2021-01-29 21:25:28.000', '2021-03-17 17:18:09.000', '2021-03-17 17:18:09.000');
INSERT INTO `book` VALUES (12, '测试8', '测试8', '测试8', '测试8', '2021-01-29 21:27:01.000', '2021-03-17 17:18:06.000', '2021-03-17 17:18:06.000');
INSERT INTO `book` VALUES (13, '1', '1', '1', '1', '2021-01-29 21:27:18.000', '2021-03-17 17:17:55.000', '2021-03-17 17:17:55.000');
-- ----------------------------
-- Table structure for category
-- ----------------------------
DROP TABLE IF EXISTS `category`;
CREATE TABLE `category` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '分类id',
`category_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '分类名称',
`created_at` datetime(0) NULL DEFAULT NULL,
`updated_at` datetime(0) NULL DEFAULT NULL,
`deleted_at` datetime(0) NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 18 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of category
-- ----------------------------
INSERT INTO `category` VALUES (1, '体育', NULL, '2021-03-24 16:53:14', '2021-03-24 16:38:48');
INSERT INTO `category` VALUES (2, '音乐', '2021-03-24 16:53:29', '2021-03-24 16:53:26', NULL);
INSERT INTO `category` VALUES (3, '测试', '2021-03-21 15:28:24', '2021-03-21 15:30:13', '2021-03-21 15:30:41');
INSERT INTO `category` VALUES (4, '四级', '2021-03-21 23:39:00', '2021-03-21 23:39:03', NULL);
INSERT INTO `category` VALUES (5, '演讲', '2021-03-24 11:51:43', '2021-03-24 11:51:43', NULL);
INSERT INTO `category` VALUES (6, '时事新闻', '2021-03-24 16:41:52', '2021-03-24 16:50:06', NULL);
INSERT INTO `category` VALUES (7, 'VOA慢速英语', '2021-04-04 14:28:17', '2021-04-04 14:28:17', NULL);
INSERT INTO `category` VALUES (8, '六级', '2021-04-04 19:46:07', '2021-04-04 19:46:07', NULL);
INSERT INTO `category` VALUES (9, '体育', '2021-04-14 16:22:30', '2021-04-14 16:22:30', NULL);
INSERT INTO `category` VALUES (10, 'TED演讲', '2021-04-14 16:26:22', '2021-04-14 16:26:22', NULL);
INSERT INTO `category` VALUES (11, '电影', '2021-04-14 16:47:18', '2021-04-21 14:26:56', NULL);
INSERT INTO `category` VALUES (12, '测试', '2021-04-19 19:29:07', '2021-04-19 19:29:07', '2021-04-19 19:36:29');
INSERT INTO `category` VALUES (13, '测试', '2021-04-19 19:40:08', '2021-04-19 19:40:08', '2021-04-19 19:42:29');
INSERT INTO `category` VALUES (14, 'ces', '2021-04-20 18:47:56', '2021-04-20 18:47:56', '2021-04-20 18:48:01');
INSERT INTO `category` VALUES (15, '测试分类', '2021-04-21 14:27:00', '2021-04-21 14:27:00', '2021-04-21 14:27:06');
INSERT INTO `category` VALUES (16, '测试111', '2021-05-07 17:56:05', '2021-05-07 17:56:10', '2021-05-07 17:56:12');
INSERT INTO `category` VALUES (17, '测试分类', '2021-05-08 16:21:01', '2021-05-08 16:21:01', NULL);
-- ----------------------------
-- Table structure for cms_group
-- ----------------------------
DROP TABLE IF EXISTS `cms_group`;
CREATE TABLE `cms_group` (
`id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
`name` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '分组名称,例如:搬砖者',
`info` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '分组信息:例如:搬砖的人',
`level` tinyint(2) NOT NULL DEFAULT 3 COMMENT '分组级别 1:root 2:guest 3:user(root、guest分组只能存在一个)',
`create_time` datetime(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3),
`update_time` datetime(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3) ON UPDATE CURRENT_TIMESTAMP(3),
`delete_time` datetime(3) NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `name_del`(`name`, `delete_time`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 10 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of cms_group
-- ----------------------------
INSERT INTO `cms_group` VALUES (1, 'root', '超级用户组', 1, '2020-12-22 00:35:50.235', '2020-12-22 00:35:50.235', NULL);
INSERT INTO `cms_group` VALUES (2, 'guest', '游客组', 2, '2020-12-22 00:35:50.238', '2020-12-22 00:35:50.238', NULL);
INSERT INTO `cms_group` VALUES (3, '管理员', '管理员', 3, '2021-03-22 23:32:45.000', '2021-04-13 17:20:09.000', '2021-04-13 17:20:09.000');
INSERT INTO `cms_group` VALUES (4, '内容管理员', '负责网站的日常内容管理', 3, '2021-04-13 20:29:25.000', '2021-04-13 20:29:25.000', NULL);
INSERT INTO `cms_group` VALUES (5, '测试分组', '测试分组', 3, '2021-04-19 19:09:57.000', '2021-04-21 10:43:31.000', '2021-04-21 10:43:31.000');
INSERT INTO `cms_group` VALUES (6, '测试1', '测试1', 3, '2021-04-20 11:26:38.000', '2021-04-21 10:42:56.000', '2021-04-21 10:42:56.000');
INSERT INTO `cms_group` VALUES (7, '测试111', '测试', 3, '2021-04-21 14:22:32.000', '2021-04-21 14:22:32.000', NULL);
INSERT INTO `cms_group` VALUES (8, '新的测试', '123123', 3, '2021-05-07 17:57:26.000', '2021-05-07 17:57:26.000', NULL);
INSERT INTO `cms_group` VALUES (9, '测试分组1', '111', 3, '2021-05-08 16:21:59.000', '2021-05-08 16:21:59.000', NULL);
-- ----------------------------
-- Table structure for cms_group_permission
-- ----------------------------
DROP TABLE IF EXISTS `cms_group_permission`;
CREATE TABLE `cms_group_permission` (
`id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
`group_id` int(10) UNSIGNED NOT NULL COMMENT '分组id',
`permission_id` int(10) UNSIGNED NOT NULL COMMENT '权限id',
PRIMARY KEY (`id`) USING BTREE,
INDEX `group_id_permission_id`(`group_id`, `permission_id`) USING BTREE COMMENT '联合索引'
) ENGINE = InnoDB AUTO_INCREMENT = 115 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of cms_group_permission
-- ----------------------------
INSERT INTO `cms_group_permission` VALUES (31, 4, 22);
INSERT INTO `cms_group_permission` VALUES (32, 4, 23);
INSERT INTO `cms_group_permission` VALUES (33, 4, 24);
INSERT INTO `cms_group_permission` VALUES (34, 4, 25);
INSERT INTO `cms_group_permission` VALUES (35, 4, 26);
INSERT INTO `cms_group_permission` VALUES (36, 4, 27);
INSERT INTO `cms_group_permission` VALUES (37, 4, 28);
INSERT INTO `cms_group_permission` VALUES (38, 4, 29);
INSERT INTO `cms_group_permission` VALUES (39, 4, 30);
INSERT INTO `cms_group_permission` VALUES (88, 4, 37);
INSERT INTO `cms_group_permission` VALUES (89, 4, 38);
INSERT INTO `cms_group_permission` VALUES (90, 4, 39);
INSERT INTO `cms_group_permission` VALUES (92, 4, 41);
INSERT INTO `cms_group_permission` VALUES (93, 4, 42);
INSERT INTO `cms_group_permission` VALUES (94, 4, 44);
INSERT INTO `cms_group_permission` VALUES (91, 4, 45);
INSERT INTO `cms_group_permission` VALUES (95, 8, 37);
INSERT INTO `cms_group_permission` VALUES (96, 8, 38);
INSERT INTO `cms_group_permission` VALUES (97, 8, 39);
INSERT INTO `cms_group_permission` VALUES (98, 8, 45);
INSERT INTO `cms_group_permission` VALUES (103, 9, 25);
INSERT INTO `cms_group_permission` VALUES (104, 9, 26);
INSERT INTO `cms_group_permission` VALUES (105, 9, 27);
INSERT INTO `cms_group_permission` VALUES (107, 9, 28);
INSERT INTO `cms_group_permission` VALUES (108, 9, 29);
INSERT INTO `cms_group_permission` VALUES (109, 9, 30);
INSERT INTO `cms_group_permission` VALUES (111, 9, 37);
INSERT INTO `cms_group_permission` VALUES (112, 9, 38);
INSERT INTO `cms_group_permission` VALUES (113, 9, 39);
INSERT INTO `cms_group_permission` VALUES (106, 9, 42);
INSERT INTO `cms_group_permission` VALUES (110, 9, 44);
INSERT INTO `cms_group_permission` VALUES (114, 9, 45);
-- ----------------------------
-- Table structure for cms_log
-- ----------------------------
DROP TABLE IF EXISTS `cms_log`;
CREATE TABLE `cms_log` (
`id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '日志id',
`message` varchar(450) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '操作日志信息',
`user_id` int(10) UNSIGNED NOT NULL COMMENT '用户id',
`username` varchar(24) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '用户名',
`status_code` int(11) NULL DEFAULT NULL COMMENT '响应状态码',
`method` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '请求方法',
`path` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '接口访问路径',
`permission` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '权限名称',
`create_time` datetime(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3),
`update_time` datetime(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3) ON UPDATE CURRENT_TIMESTAMP(3),
`delete_time` datetime(3) NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 444 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of cms_log
-- ----------------------------
INSERT INTO `cms_log` VALUES (1, '管理员新建了一个用户', 1, 'root', 201, 'POST', '/cms/user/register', '', '2021-01-02 11:41:14.000', '2021-01-02 11:41:14.000', NULL);
INSERT INTO `cms_log` VALUES (2, 'root新增期刊内容', 1, 'root', 201, 'POST', '/v1/content', '新增期刊内容', '2021-01-02 11:58:43.000', '2021-01-02 11:58:43.000', NULL);
INSERT INTO `cms_log` VALUES (3, 'root删除期刊内容', 1, 'root', 201, 'DELETE', '/v1/content/6', '删除期刊内容', '2021-01-02 12:03:38.000', '2021-01-02 12:03:38.000', NULL);
INSERT INTO `cms_log` VALUES (4, 'root新增最新期刊', 1, 'root', 201, 'POST', '/v1/flow', '新增最新期刊', '2021-01-02 15:57:00.000', '2021-01-02 15:57:00.000', NULL);
INSERT INTO `cms_log` VALUES (5, 'root新增最新期刊', 1, 'root', 201, 'POST', '/v1/flow', '新增最新期刊', '2021-01-02 16:47:13.000', '2021-01-02 16:47:13.000', NULL);
INSERT INTO `cms_log` VALUES (6, 'root新增最新期刊', 1, 'root', 201, 'POST', '/v1/flow', '新增最新期刊', '2021-01-02 16:47:36.000', '2021-01-02 16:47:36.000', NULL);
INSERT INTO `cms_log` VALUES (7, 'root新增最新期刊', 1, 'root', 201, 'POST', '/v1/flow', '新增最新期刊', '2021-01-02 16:47:40.000', '2021-01-02 16:47:40.000', NULL);
INSERT INTO `cms_log` VALUES (8, 'root修改最新期刊', 1, 'root', 201, 'PUT', '/v1/flow/1', '编辑最新期刊', '2021-01-03 00:44:40.000', '2021-01-03 00:44:40.000', NULL);
INSERT INTO `cms_log` VALUES (9, 'root修改最新期刊', 1, 'root', 201, 'PUT', '/v1/flow/1', '编辑最新期刊', '2021-01-03 00:44:48.000', '2021-01-03 00:44:48.000', NULL);
INSERT INTO `cms_log` VALUES (10, 'root修改最新期刊', 1, 'root', 201, 'PUT', '/v1/flow/1', '编辑最新期刊', '2021-01-03 00:45:15.000', '2021-01-03 00:45:15.000', NULL);
INSERT INTO `cms_log` VALUES (11, 'root修改最新期刊', 1, 'root', 201, 'PUT', '/v1/flow/1', '编辑最新期刊', '2021-01-03 00:45:25.000', '2021-01-03 00:45:25.000', NULL);
INSERT INTO `cms_log` VALUES (12, 'root修改最新期刊', 1, 'root', 201, 'PUT', '/v1/flow/1', '编辑最新期刊', '2021-01-03 00:45:36.000', '2021-01-03 00:45:36.000', NULL);
INSERT INTO `cms_log` VALUES (13, 'root最新期刊内容删除', 1, 'root', 201, 'DELETE', '/v1/flow/4', '最新期刊内容删除', '2021-01-03 00:56:39.000', '2021-01-03 00:56:39.000', NULL);
INSERT INTO `cms_log` VALUES (14, 'root新增期刊内容', 1, 'root', 201, 'POST', '/v1/content', '新增期刊内容', '2021-01-03 01:17:01.000', '2021-01-03 01:17:01.000', NULL);
INSERT INTO `cms_log` VALUES (15, 'root新增期刊内容', 1, 'root', 201, 'POST', '/v1/content', '新增期刊内容', '2021-01-03 01:20:20.000', '2021-01-03 01:20:20.000', NULL);
INSERT INTO `cms_log` VALUES (16, 'root删除期刊内容', 1, 'root', 201, 'DELETE', '/v1/content/8', '删除期刊内容', '2021-01-03 01:21:51.000', '2021-01-03 01:21:51.000', NULL);
INSERT INTO `cms_log` VALUES (17, 'root修改期刊内容', 1, 'root', 201, 'PUT', '/v1/content/1', '修改期刊内容', '2021-01-03 01:22:27.000', '2021-01-03 01:22:27.000', NULL);
INSERT INTO `cms_log` VALUES (18, 'root修改期刊内容', 1, 'root', 201, 'PUT', '/v1/content/1', '修改期刊内容', '2021-01-03 01:23:18.000', '2021-01-03 01:23:18.000', NULL);
INSERT INTO `cms_log` VALUES (19, 'root修改最新期刊', 1, 'root', 201, 'PUT', '/v1/flow/1', '编辑最新期刊', '2021-01-03 01:25:27.000', '2021-01-03 01:25:27.000', NULL);
INSERT INTO `cms_log` VALUES (20, 'root修改最新期刊', 1, 'root', 201, 'PUT', '/v1/flow/1', '编辑最新期刊', '2021-01-03 01:25:30.000', '2021-01-03 01:25:30.000', NULL);
INSERT INTO `cms_log` VALUES (21, 'root新增期刊内容', 1, 'root', 201, 'POST', '/v1/content', '新增期刊内容', '2021-01-04 14:05:27.000', '2021-01-04 14:05:27.000', NULL);
INSERT INTO `cms_log` VALUES (22, 'root新增期刊内容', 1, 'root', 201, 'POST', '/v1/content', '新增期刊内容', '2021-01-05 12:16:14.000', '2021-01-05 12:16:14.000', NULL);
INSERT INTO `cms_log` VALUES (23, 'root新增期刊内容', 1, 'root', 201, 'POST', '/v1/content', '新增期刊内容', '2021-01-05 12:16:19.000', '2021-01-05 12:16:19.000', NULL);
INSERT INTO `cms_log` VALUES (24, 'root新增期刊内容', 1, 'root', 201, 'POST', '/v1/content', '新增期刊内容', '2021-01-05 12:16:22.000', '2021-01-05 12:16:22.000', NULL);
INSERT INTO `cms_log` VALUES (25, 'root新增期刊内容', 1, 'root', 201, 'POST', '/v1/content', '新增期刊内容', '2021-01-05 12:16:26.000', '2021-01-05 12:16:26.000', NULL);
INSERT INTO `cms_log` VALUES (26, 'root修改期刊内容', 1, 'root', 201, 'PUT', '/v1/content/1', '修改期刊内容', '2021-01-05 12:34:34.000', '2021-01-05 12:34:34.000', NULL);
INSERT INTO `cms_log` VALUES (27, 'root修改期刊内容', 1, 'root', 201, 'PUT', '/v1/content/1', '修改期刊内容', '2021-01-05 12:48:56.000', '2021-01-05 12:48:56.000', NULL);
INSERT INTO `cms_log` VALUES (28, 'root新增期刊内容', 1, 'root', 201, 'POST', '/v1/content', '新增期刊内容', '2021-01-22 00:13:52.000', '2021-01-22 00:13:52.000', NULL);
INSERT INTO `cms_log` VALUES (29, 'root新增期刊内容', 1, 'root', 201, 'POST', '/v1/content', '新增期刊内容', '2021-01-22 00:18:05.000', '2021-01-22 00:18:05.000', NULL);
INSERT INTO `cms_log` VALUES (30, 'root新增期刊内容', 1, 'root', 201, 'POST', '/v1/content', '新增期刊内容', '2021-01-22 01:57:51.000', '2021-01-22 01:57:51.000', NULL);
INSERT INTO `cms_log` VALUES (31, 'root新增期刊内容', 1, 'root', 201, 'POST', '/v1/content', '新增期刊内容', '2021-01-22 01:59:11.000', '2021-01-22 01:59:11.000', NULL);
INSERT INTO `cms_log` VALUES (32, 'root新增期刊内容', 1, 'root', 201, 'POST', '/v1/content', '新增期刊内容', '2021-01-22 02:01:57.000', '2021-01-22 02:01:57.000', NULL);
INSERT INTO `cms_log` VALUES (33, 'root新增期刊内容', 1, 'root', 201, 'POST', '/v1/content', '新增期刊内容', '2021-01-22 02:02:25.000', '2021-01-22 02:02:25.000', NULL);
INSERT INTO `cms_log` VALUES (34, 'root新增期刊内容', 1, 'root', 201, 'POST', '/v1/content', '新增期刊内容', '2021-01-22 02:03:56.000', '2021-01-22 02:03:56.000', NULL);
INSERT INTO `cms_log` VALUES (35, 'root修改期刊内容', 1, 'root', 201, 'PUT', '/v1/content/17', '修改期刊内容', '2021-01-26 02:08:33.000', '2021-01-26 02:08:33.000', NULL);
INSERT INTO `cms_log` VALUES (36, 'root修改期刊内容', 1, 'root', 201, 'PUT', '/v1/content/18', '修改期刊内容', '2021-01-26 02:08:39.000', '2021-01-26 02:08:39.000', NULL);
INSERT INTO `cms_log` VALUES (37, 'root修改期刊内容', 1, 'root', 201, 'PUT', '/v1/content/18', '修改期刊内容', '2021-01-26 02:08:51.000', '2021-01-26 02:08:51.000', NULL);
INSERT INTO `cms_log` VALUES (38, 'root删除期刊内容', 1, 'root', 201, 'DELETE', '/v1/content/7', '删除期刊内容', '2021-01-29 21:21:47.000', '2021-01-29 21:21:47.000', NULL);
INSERT INTO `cms_log` VALUES (39, 'root删除期刊内容', 1, 'root', 201, 'DELETE', '/v1/content/18', '删除期刊内容', '2021-01-29 21:23:30.000', '2021-01-29 21:23:30.000', NULL);
INSERT INTO `cms_log` VALUES (40, 'root删除期刊内容', 1, 'root', 201, 'DELETE', '/v1/content/5', '删除期刊内容', '2021-01-29 21:23:35.000', '2021-01-29 21:23:35.000', NULL);
INSERT INTO `cms_log` VALUES (41, 'root删除期刊内容', 1, 'root', 201, 'DELETE', '/v1/content/1', '删除期刊内容', '2021-01-29 21:23:37.000', '2021-01-29 21:23:37.000', NULL);
INSERT INTO `cms_log` VALUES (42, 'root删除期刊内容', 1, 'root', 201, 'DELETE', '/v1/content/1', '删除期刊内容', '2021-01-29 21:23:39.000', '2021-01-29 21:23:39.000', NULL);
INSERT INTO `cms_log` VALUES (43, 'root删除期刊内容', 1, 'root', 201, 'DELETE', '/v1/content/2', '删除期刊内容', '2021-01-29 21:23:41.000', '2021-01-29 21:23:41.000', NULL);
INSERT INTO `cms_log` VALUES (44, 'root删除期刊内容', 1, 'root', 201, 'DELETE', '/v1/content/2', '删除期刊内容', '2021-01-29 21:23:43.000', '2021-01-29 21:23:43.000', NULL);
INSERT INTO `cms_log` VALUES (45, 'root删除期刊内容', 1, 'root', 201, 'DELETE', '/v1/content/3', '删除期刊内容', '2021-01-29 21:23:45.000', '2021-01-29 21:23:45.000', NULL);
INSERT INTO `cms_log` VALUES (46, 'root删除期刊内容', 1, 'root', 201, 'DELETE', '/v1/content/4', '删除期刊内容', '2021-01-29 21:23:46.000', '2021-01-29 21:23:46.000', NULL);
INSERT INTO `cms_log` VALUES (47, 'root删除期刊内容', 1, 'root', 201, 'DELETE', '/v1/content/5', '删除期刊内容', '2021-01-29 21:23:47.000', '2021-01-29 21:23:47.000', NULL);
INSERT INTO `cms_log` VALUES (48, 'root删除期刊内容', 1, 'root', 201, 'DELETE', '/v1/content/7', '删除期刊内容', '2021-01-29 21:23:49.000', '2021-01-29 21:23:49.000', NULL);
INSERT INTO `cms_log` VALUES (49, 'root删除期刊内容', 1, 'root', 201, 'DELETE', '/v1/content/9', '删除期刊内容', '2021-01-29 21:23:51.000', '2021-01-29 21:23:51.000', NULL);
INSERT INTO `cms_log` VALUES (50, 'root删除期刊内容', 1, 'root', 201, 'DELETE', '/v1/content/10', '删除期刊内容', '2021-01-29 21:23:52.000', '2021-01-29 21:23:52.000', NULL);
INSERT INTO `cms_log` VALUES (51, 'root删除期刊内容', 1, 'root', 201, 'DELETE', '/v1/content/11', '删除期刊内容', '2021-01-29 21:23:54.000', '2021-01-29 21:23:54.000', NULL);
INSERT INTO `cms_log` VALUES (52, 'root删除期刊内容', 1, 'root', 201, 'DELETE', '/v1/content/12', '删除期刊内容', '2021-01-29 21:23:56.000', '2021-01-29 21:23:56.000', NULL);
INSERT INTO `cms_log` VALUES (53, 'root删除期刊内容', 1, 'root', 201, 'DELETE', '/v1/content/13', '删除期刊内容', '2021-01-29 21:23:57.000', '2021-01-29 21:23:57.000', NULL);
INSERT INTO `cms_log` VALUES (54, 'root删除期刊内容', 1, 'root', 201, 'DELETE', '/v1/content/14', '删除期刊内容', '2021-01-29 21:23:59.000', '2021-01-29 21:23:59.000', NULL);
INSERT INTO `cms_log` VALUES (55, 'root删除期刊内容', 1, 'root', 201, 'DELETE', '/v1/content/15', '删除期刊内容', '2021-01-29 21:24:00.000', '2021-01-29 21:24:00.000', NULL);
INSERT INTO `cms_log` VALUES (56, 'root删除期刊内容', 1, 'root', 201, 'DELETE', '/v1/content/6', '删除期刊内容', '2021-01-29 21:24:01.000', '2021-01-29 21:24:01.000', NULL);
INSERT INTO `cms_log` VALUES (57, 'root新增期刊内容', 1, 'root', 201, 'POST', '/v1/content', '新增期刊内容', '2021-01-29 21:34:35.000', '2021-01-29 21:34:35.000', NULL);
INSERT INTO `cms_log` VALUES (58, 'root新增期刊内容', 1, 'root', 201, 'POST', '/v1/content', '新增期刊内容', '2021-01-29 21:37:49.000', '2021-01-29 21:37:49.000', NULL);
INSERT INTO `cms_log` VALUES (59, 'root新增期刊内容', 1, 'root', 201, 'POST', '/v1/content', '新增期刊内容', '2021-01-29 22:01:45.000', '2021-01-29 22:01:45.000', NULL);
INSERT INTO `cms_log` VALUES (60, 'root新增期刊内容', 1, 'root', 201, 'POST', '/v1/content', '新增期刊内容', '2021-01-29 22:22:18.000', '2021-01-29 22:22:18.000', NULL);
INSERT INTO `cms_log` VALUES (61, 'root新增期刊内容', 1, 'root', 201, 'POST', '/v1/content', '新增期刊内容', '2021-01-29 22:23:40.000', '2021-01-29 22:23:40.000', NULL);
INSERT INTO `cms_log` VALUES (62, 'root新增期刊内容', 1, 'root', 201, 'POST', '/v1/content', '新增期刊内容', '2021-01-29 22:24:48.000', '2021-01-29 22:24:48.000', NULL);
INSERT INTO `cms_log` VALUES (63, 'root新增期刊内容', 1, 'root', 201, 'POST', '/v1/content', '新增期刊内容', '2021-01-29 22:25:43.000', '2021-01-29 22:25:43.000', NULL);
INSERT INTO `cms_log` VALUES (64, 'root新增期刊内容', 1, 'root', 201, 'POST', '/v1/content', '新增期刊内容', '2021-01-29 22:27:19.000', '2021-01-29 22:27:19.000', NULL);
INSERT INTO `cms_log` VALUES (65, 'root新增期刊内容', 1, 'root', 201, 'POST', '/v1/content', '新增期刊内容', '2021-01-29 22:29:10.000', '2021-01-29 22:29:10.000', NULL);
INSERT INTO `cms_log` VALUES (66, 'root新增期刊内容', 1, 'root', 201, 'POST', '/v1/content', '新增期刊内容', '2021-01-29 22:29:38.000', '2021-01-29 22:29:38.000', NULL);
INSERT INTO `cms_log` VALUES (67, 'root新增期刊内容', 1, 'root', 201, 'POST', '/v1/content', '新增期刊内容', '2021-01-29 22:31:55.000', '2021-01-29 22:31:55.000', NULL);
INSERT INTO `cms_log` VALUES (68, 'root新增期刊内容', 1, 'root', 201, 'POST', '/v1/content', '新增期刊内容', '2021-01-29 22:33:14.000', '2021-01-29 22:33:14.000', NULL);
INSERT INTO `cms_log` VALUES (69, 'root新增期刊内容', 1, 'root', 201, 'POST', '/v1/content', '新增期刊内容', '2021-01-29 22:33:56.000', '2021-01-29 22:33:56.000', NULL);
INSERT INTO `cms_log` VALUES (70, 'root新增期刊内容', 1, 'root', 201, 'POST', '/v1/content', '新增期刊内容', '2021-01-29 22:38:16.000', '2021-01-29 22:38:16.000', NULL);
INSERT INTO `cms_log` VALUES (71, 'root新增期刊内容', 1, 'root', 201, 'POST', '/v1/content', '新增期刊内容', '2021-01-29 22:39:04.000', '2021-01-29 22:39:04.000', NULL);
INSERT INTO `cms_log` VALUES (72, 'root新增期刊内容', 1, 'root', 201, 'POST', '/v1/content', '新增期刊内容', '2021-01-29 22:40:26.000', '2021-01-29 22:40:26.000', NULL);
INSERT INTO `cms_log` VALUES (73, 'root新增期刊内容', 1, 'root', 201, 'POST', '/v1/content', '新增期刊内容', '2021-01-29 22:41:45.000', '2021-01-29 22:41:45.000', NULL);
INSERT INTO `cms_log` VALUES (74, 'root新增期刊内容', 1, 'root', 201, 'POST', '/v1/content', '新增期刊内容', '2021-01-29 22:42:06.000', '2021-01-29 22:42:06.000', NULL);
INSERT INTO `cms_log` VALUES (75, 'root新增期刊内容', 1, 'root', 201, 'POST', '/v1/content', '新增期刊内容', '2021-01-29 22:44:24.000', '2021-01-29 22:44:24.000', NULL);
INSERT INTO `cms_log` VALUES (76, 'root新增期刊内容', 1, 'root', 201, 'POST', '/v1/content', '新增期刊内容', '2021-01-29 22:45:05.000', '2021-01-29 22:45:05.000', NULL);
INSERT INTO `cms_log` VALUES (77, 'root新增期刊内容', 1, 'root', 201, 'POST', '/v1/content', '新增期刊内容', '2021-01-29 22:46:05.000', '2021-01-29 22:46:05.000', NULL);
INSERT INTO `cms_log` VALUES (78, 'root新增期刊内容', 1, 'root', 201, 'POST', '/v1/content', '新增期刊内容', '2021-01-29 22:47:03.000', '2021-01-29 22:47:03.000', NULL);
INSERT INTO `cms_log` VALUES (79, 'root新增期刊内容', 1, 'root', 201, 'POST', '/v1/content', '新增期刊内容', '2021-01-29 22:47:59.000', '2021-01-29 22:47:59.000', NULL);
INSERT INTO `cms_log` VALUES (80, 'root新增期刊内容', 1, 'root', 201, 'POST', '/v1/content', '新增期刊内容', '2021-01-29 22:49:55.000', '2021-01-29 22:49:55.000', NULL);
INSERT INTO `cms_log` VALUES (81, 'root新增期刊内容', 1, 'root', 201, 'POST', '/v1/content', '新增期刊内容', '2021-01-29 22:52:13.000', '2021-01-29 22:52:13.000', NULL);
INSERT INTO `cms_log` VALUES (82, 'root新增期刊内容', 1, 'root', 201, 'POST', '/v1/content', '新增期刊内容', '2021-01-29 22:53:11.000', '2021-01-29 22:53:11.000', NULL);
INSERT INTO `cms_log` VALUES (83, 'root新增文章', 1, 'root', 201, 'POST', '/v1/article', '新增文章', '2021-03-19 23:28:12.000', '2021-03-19 23:28:12.000', NULL);
INSERT INTO `cms_log` VALUES (84, 'root新增文章', 1, 'root', 201, 'POST', '/v1/article', '新增文章', '2021-03-19 23:42:04.000', '2021-03-19 23:42:04.000', NULL);
INSERT INTO `cms_log` VALUES (85, 'root新增文章', 1, 'root', 201, 'POST', '/v1/article', '新增文章', '2021-03-19 23:42:18.000', '2021-03-19 23:42:18.000', NULL);
INSERT INTO `cms_log` VALUES (86, 'root新增文章', 1, 'root', 201, 'POST', '/v1/article', '新增文章', '2021-03-19 23:47:44.000', '2021-03-19 23:47:44.000', NULL);
INSERT INTO `cms_log` VALUES (87, 'root删除文章', 1, 'root', 201, 'DELETE', '/v1/article/1', '删除文章', '2021-03-19 23:53:42.000', '2021-03-19 23:53:42.000', NULL);
INSERT INTO `cms_log` VALUES (88, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/2', '修改文章内容', '2021-03-19 23:57:52.000', '2021-03-19 23:57:52.000', NULL);
INSERT INTO `cms_log` VALUES (89, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/2', '修改文章内容', '2021-03-19 23:58:18.000', '2021-03-19 23:58:18.000', NULL);
INSERT INTO `cms_log` VALUES (90, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/2', '修改文章内容', '2021-03-19 23:59:37.000', '2021-03-19 23:59:37.000', NULL);
INSERT INTO `cms_log` VALUES (91, 'root新增文章', 1, 'root', 201, 'POST', '/v1/article', '新增文章', '2021-03-20 00:37:51.000', '2021-03-20 00:37:51.000', NULL);
INSERT INTO `cms_log` VALUES (92, 'root新增文章', 1, 'root', 201, 'POST', '/v1/article', '新增文章', '2021-03-20 00:38:05.000', '2021-03-20 00:38:05.000', NULL);
INSERT INTO `cms_log` VALUES (93, 'root新增文章', 1, 'root', 201, 'POST', '/v1/article', '新增文章', '2021-03-20 00:38:11.000', '2021-03-20 00:38:11.000', NULL);
INSERT INTO `cms_log` VALUES (94, 'root新增文章', 1, 'root', 201, 'POST', '/v1/article', '新增文章', '2021-03-20 00:38:17.000', '2021-03-20 00:38:17.000', NULL);
INSERT INTO `cms_log` VALUES (95, 'root新增文章', 1, 'root', 201, 'POST', '/v1/article', '新增文章', '2021-03-20 00:38:24.000', '2021-03-20 00:38:24.000', NULL);
INSERT INTO `cms_log` VALUES (96, 'root新增文章', 1, 'root', 201, 'POST', '/v1/article', '新增文章', '2021-03-20 01:32:37.000', '2021-03-20 01:32:37.000', NULL);
INSERT INTO `cms_log` VALUES (97, 'root新增文章', 1, 'root', 201, 'POST', '/v1/article', '新增文章', '2021-03-21 14:40:40.000', '2021-03-21 14:40:40.000', NULL);
INSERT INTO `cms_log` VALUES (98, 'root新增分类', 1, 'root', 201, 'POST', '/v1/category', '新增分类', '2021-03-21 15:28:24.000', '2021-03-21 15:28:24.000', NULL);
INSERT INTO `cms_log` VALUES (99, 'root修改分类内容', 1, 'root', 201, 'PUT', '/v1/category/3', '修改分类内容', '2021-03-21 15:30:13.000', '2021-03-21 15:30:13.000', NULL);
INSERT INTO `cms_log` VALUES (100, 'root删除分类', 1, 'root', 201, 'DELETE', '/v1/category/3', '删除分类', '2021-03-21 15:30:41.000', '2021-03-21 15:30:41.000', NULL);
INSERT INTO `cms_log` VALUES (101, 'root删除分类', 1, 'root', 201, 'DELETE', '/v1/category/2', '删除分类', '2021-03-21 22:01:48.000', '2021-03-21 22:01:48.000', NULL);
INSERT INTO `cms_log` VALUES (102, 'root删除分类', 1, 'root', 201, 'DELETE', '/v1/category/2', '删除分类', '2021-03-21 22:02:33.000', '2021-03-21 22:02:33.000', NULL);
INSERT INTO `cms_log` VALUES (103, 'root新增听力练习', 1, 'root', 201, 'POST', '/v1/listen', '新增听力练习', '2021-03-22 10:11:18.000', '2021-03-22 10:11:18.000', NULL);
INSERT INTO `cms_log` VALUES (104, 'root修改听力练习内容', 1, 'root', 201, 'PUT', '/v1/listen/2', '修改听力练习内容', '2021-03-22 10:12:40.000', '2021-03-22 10:12:40.000', NULL);
INSERT INTO `cms_log` VALUES (105, 'root修改听力练习内容', 1, 'root', 201, 'PUT', '/v1/listen/2', '修改听力练习内容', '2021-03-22 10:13:01.000', '2021-03-22 10:13:01.000', NULL);
INSERT INTO `cms_log` VALUES (106, 'root删除听力练习', 1, 'root', 201, 'DELETE', '/v1/listen/1', '删除听力练习', '2021-03-22 10:13:47.000', '2021-03-22 10:13:47.000', NULL);
INSERT INTO `cms_log` VALUES (107, '管理员新建了一个用户', 1, 'root', 201, 'POST', '/cms/user/register', '', '2021-03-22 23:32:07.000', '2021-03-22 23:32:07.000', NULL);
INSERT INTO `cms_log` VALUES (108, 'root删除文章', 1, 'root', 201, 'DELETE', '/v1/article/9', '删除文章', '2021-03-23 16:38:53.000', '2021-03-23 16:38:53.000', NULL);
INSERT INTO `cms_log` VALUES (109, 'root删除文章', 1, 'root', 201, 'DELETE', '/v1/article/9', '删除文章', '2021-03-23 16:39:20.000', '2021-03-23 16:39:20.000', NULL);
INSERT INTO `cms_log` VALUES (110, 'root删除文章', 1, 'root', 201, 'DELETE', '/v1/article/8', '删除文章', '2021-03-23 16:39:55.000', '2021-03-23 16:39:55.000', NULL);
INSERT INTO `cms_log` VALUES (111, 'root删除文章', 1, 'root', 201, 'DELETE', '/v1/article/7', '删除文章', '2021-03-23 16:41:01.000', '2021-03-23 16:41:01.000', NULL);
INSERT INTO `cms_log` VALUES (112, 'root删除文章', 1, 'root', 201, 'DELETE', '/v1/article/6', '删除文章', '2021-03-23 16:45:16.000', '2021-03-23 16:45:16.000', NULL);
INSERT INTO `cms_log` VALUES (113, 'root删除文章', 1, 'root', 201, 'DELETE', '/v1/article/6', '删除文章', '2021-03-23 16:45:56.000', '2021-03-23 16:45:56.000', NULL);
INSERT INTO `cms_log` VALUES (114, 'root删除文章', 1, 'root', 201, 'DELETE', '/v1/article/5', '删除文章', '2021-03-23 16:47:02.000', '2021-03-23 16:47:02.000', NULL);
INSERT INTO `cms_log` VALUES (115, 'root新增文章', 1, 'root', 201, 'POST', '/v1/article', '新增文章', '2021-03-23 17:37:13.000', '2021-03-23 17:37:13.000', NULL);
INSERT INTO `cms_log` VALUES (116, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/10', '修改文章内容', '2021-03-23 17:39:22.000', '2021-03-23 17:39:22.000', NULL);
INSERT INTO `cms_log` VALUES (117, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/10', '修改文章内容', '2021-03-23 17:39:52.000', '2021-03-23 17:39:52.000', NULL);
INSERT INTO `cms_log` VALUES (118, 'root新增文章', 1, 'root', 201, 'POST', '/v1/article', '新增文章', '2021-03-23 19:23:20.000', '2021-03-23 19:23:20.000', NULL);
INSERT INTO `cms_log` VALUES (119, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/11', '修改文章内容', '2021-03-23 19:34:57.000', '2021-03-23 19:34:57.000', NULL);
INSERT INTO `cms_log` VALUES (120, 'root新增文章', 1, 'root', 201, 'POST', '/v1/article', '新增文章', '2021-03-23 19:40:22.000', '2021-03-23 19:40:22.000', NULL);
INSERT INTO `cms_log` VALUES (121, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/10', '修改文章内容', '2021-03-23 19:49:06.000', '2021-03-23 19:49:06.000', NULL);
INSERT INTO `cms_log` VALUES (122, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/11', '修改文章内容', '2021-03-23 20:00:15.000', '2021-03-23 20:00:15.000', NULL);
INSERT INTO `cms_log` VALUES (123, 'root新增文章', 1, 'root', 201, 'POST', '/v1/article', '新增文章', '2021-03-23 20:08:09.000', '2021-03-23 20:08:09.000', NULL);
INSERT INTO `cms_log` VALUES (124, 'root新增文章', 1, 'root', 201, 'POST', '/v1/article', '新增文章', '2021-03-23 20:10:21.000', '2021-03-23 20:10:21.000', NULL);
INSERT INTO `cms_log` VALUES (125, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/14', '修改文章内容', '2021-03-23 20:10:54.000', '2021-03-23 20:10:54.000', NULL);
INSERT INTO `cms_log` VALUES (126, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/12', '修改文章内容', '2021-03-23 20:13:02.000', '2021-03-23 20:13:02.000', NULL);
INSERT INTO `cms_log` VALUES (127, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/13', '修改文章内容', '2021-03-23 20:13:16.000', '2021-03-23 20:13:16.000', NULL);
INSERT INTO `cms_log` VALUES (128, 'root新增文章', 1, 'root', 201, 'POST', '/v1/article', '新增文章', '2021-03-24 11:15:22.000', '2021-03-24 11:15:22.000', NULL);
INSERT INTO `cms_log` VALUES (129, 'root新增文章', 1, 'root', 201, 'POST', '/v1/article', '新增文章', '2021-03-24 11:15:39.000', '2021-03-24 11:15:39.000', NULL);
INSERT INTO `cms_log` VALUES (130, 'root删除文章', 1, 'root', 201, 'DELETE', '/v1/article/11', '删除文章', '2021-03-24 11:16:06.000', '2021-03-24 11:16:06.000', NULL);
INSERT INTO `cms_log` VALUES (131, 'root新增分类', 1, 'root', 201, 'POST', '/v1/category', '新增分类', '2021-03-24 11:51:43.000', '2021-03-24 11:51:43.000', NULL);
INSERT INTO `cms_log` VALUES (132, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/12', '修改文章内容', '2021-03-24 11:59:36.000', '2021-03-24 11:59:36.000', NULL);
INSERT INTO `cms_log` VALUES (133, 'root新增文章', 1, 'root', 201, 'POST', '/v1/article', '新增文章', '2021-03-24 14:25:58.000', '2021-03-24 14:25:58.000', NULL);
INSERT INTO `cms_log` VALUES (134, 'root新增文章', 1, 'root', 201, 'POST', '/v1/article', '新增文章', '2021-03-24 15:05:08.000', '2021-03-24 15:05:08.000', NULL);
INSERT INTO `cms_log` VALUES (135, 'root删除文章', 1, 'root', 201, 'DELETE', '/v1/article/2', '删除文章', '2021-03-24 15:35:42.000', '2021-03-24 15:35:42.000', NULL);
INSERT INTO `cms_log` VALUES (136, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/3', '修改文章内容', '2021-03-24 15:36:05.000', '2021-03-24 15:36:05.000', NULL);
INSERT INTO `cms_log` VALUES (137, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/3', '修改文章内容', '2021-03-24 15:36:38.000', '2021-03-24 15:36:38.000', NULL);
INSERT INTO `cms_log` VALUES (138, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/3', '修改文章内容', '2021-03-24 16:12:34.000', '2021-03-24 16:12:34.000', NULL);
INSERT INTO `cms_log` VALUES (139, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/3', '修改文章内容', '2021-03-24 16:13:29.000', '2021-03-24 16:13:29.000', NULL);
INSERT INTO `cms_log` VALUES (140, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/3', '修改文章内容', '2021-03-24 16:15:54.000', '2021-03-24 16:15:54.000', NULL);
INSERT INTO `cms_log` VALUES (141, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/3', '修改文章内容', '2021-03-24 16:16:04.000', '2021-03-24 16:16:04.000', NULL);
INSERT INTO `cms_log` VALUES (142, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/3', '修改文章内容', '2021-03-24 16:16:40.000', '2021-03-24 16:16:40.000', NULL);
INSERT INTO `cms_log` VALUES (143, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/3', '修改文章内容', '2021-03-24 16:17:11.000', '2021-03-24 16:17:11.000', NULL);
INSERT INTO `cms_log` VALUES (144, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/3', '修改文章内容', '2021-03-24 16:17:50.000', '2021-03-24 16:17:50.000', NULL);
INSERT INTO `cms_log` VALUES (145, 'root删除文章', 1, 'root', 201, 'DELETE', '/v1/article/3', '删除文章', '2021-03-24 16:21:21.000', '2021-03-24 16:21:21.000', NULL);
INSERT INTO `cms_log` VALUES (146, 'root删除文章', 1, 'root', 201, 'DELETE', '/v1/article/4', '删除文章', '2021-03-24 16:21:24.000', '2021-03-24 16:21:24.000', NULL);
INSERT INTO `cms_log` VALUES (147, 'root删除文章', 1, 'root', 201, 'DELETE', '/v1/article/10', '删除文章', '2021-03-24 16:21:26.000', '2021-03-24 16:21:26.000', NULL);
INSERT INTO `cms_log` VALUES (148, 'root删除文章', 1, 'root', 201, 'DELETE', '/v1/article/12', '删除文章', '2021-03-24 16:21:27.000', '2021-03-24 16:21:27.000', NULL);
INSERT INTO `cms_log` VALUES (149, 'root删除文章', 1, 'root', 201, 'DELETE', '/v1/article/13', '删除文章', '2021-03-24 16:21:29.000', '2021-03-24 16:21:29.000', NULL);
INSERT INTO `cms_log` VALUES (150, 'root删除文章', 1, 'root', 201, 'DELETE', '/v1/article/14', '删除文章', '2021-03-24 16:21:31.000', '2021-03-24 16:21:31.000', NULL);
INSERT INTO `cms_log` VALUES (151, 'root删除文章', 1, 'root', 201, 'DELETE', '/v1/article/15', '删除文章', '2021-03-24 16:21:33.000', '2021-03-24 16:21:33.000', NULL);
INSERT INTO `cms_log` VALUES (152, 'root删除文章', 1, 'root', 201, 'DELETE', '/v1/article/16', '删除文章', '2021-03-24 16:21:35.000', '2021-03-24 16:21:35.000', NULL);
INSERT INTO `cms_log` VALUES (153, 'root删除文章', 1, 'root', 201, 'DELETE', '/v1/article/17', '删除文章', '2021-03-24 16:21:37.000', '2021-03-24 16:21:37.000', NULL);
INSERT INTO `cms_log` VALUES (154, 'root删除分类', 1, 'root', 201, 'DELETE', '/v1/category/1', '删除分类', '2021-03-24 16:38:48.000', '2021-03-24 16:38:48.000', NULL);
INSERT INTO `cms_log` VALUES (155, 'root新增分类', 1, 'root', 201, 'POST', '/v1/category', '新增分类', '2021-03-24 16:41:52.000', '2021-03-24 16:41:52.000', NULL);
INSERT INTO `cms_log` VALUES (156, 'root修改分类内容', 1, 'root', 201, 'PUT', '/v1/category/6', '修改分类内容', '2021-03-24 16:49:11.000', '2021-03-24 16:49:11.000', NULL);
INSERT INTO `cms_log` VALUES (157, 'root修改分类内容', 1, 'root', 201, 'PUT', '/v1/category/6', '修改分类内容', '2021-03-24 16:50:06.000', '2021-03-24 16:50:06.000', NULL);
INSERT INTO `cms_log` VALUES (158, 'root新增听力练习', 1, 'root', 201, 'POST', '/v1/listen', '新增听力练习', '2021-03-24 19:17:46.000', '2021-03-24 19:17:46.000', NULL);
INSERT INTO `cms_log` VALUES (159, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/18', '修改文章内容', '2021-03-24 19:25:03.000', '2021-03-24 19:25:03.000', NULL);
INSERT INTO `cms_log` VALUES (160, 'root新增听力练习', 1, 'root', 201, 'POST', '/v1/listen', '新增听力练习', '2021-03-24 19:26:44.000', '2021-03-24 19:26:44.000', NULL);
INSERT INTO `cms_log` VALUES (161, 'root新增听力练习', 1, 'root', 201, 'POST', '/v1/listen', '新增听力练习', '2021-03-24 21:33:50.000', '2021-03-24 21:33:50.000', NULL);
INSERT INTO `cms_log` VALUES (162, 'root新增文章', 1, 'root', 201, 'POST', '/v1/article', '新增文章', '2021-03-25 19:48:44.000', '2021-03-25 19:48:44.000', NULL);
INSERT INTO `cms_log` VALUES (163, 'root删除文章', 1, 'root', 201, 'DELETE', '/v1/article/19', '删除文章', '2021-03-27 15:45:43.000', '2021-03-27 15:45:43.000', NULL);
INSERT INTO `cms_log` VALUES (164, 'root新增单词', 1, 'root', 201, 'POST', '/v1/word', '新增单词', '2021-04-02 21:30:28.000', '2021-04-02 21:30:28.000', NULL);
INSERT INTO `cms_log` VALUES (165, 'root新增单词', 1, 'root', 201, 'POST', '/v1/word', '新增单词', '2021-04-02 21:30:56.000', '2021-04-02 21:30:56.000', NULL);
INSERT INTO `cms_log` VALUES (166, 'root新增单词', 1, 'root', 201, 'POST', '/v1/word', '新增单词', '2021-04-02 21:31:34.000', '2021-04-02 21:31:34.000', NULL);
INSERT INTO `cms_log` VALUES (167, 'root新增单词', 1, 'root', 201, 'POST', '/v1/word', '新增单词', '2021-04-02 21:31:45.000', '2021-04-02 21:31:45.000', NULL);
INSERT INTO `cms_log` VALUES (168, 'root删除单词', 1, 'root', 201, 'DELETE', '/v1/word/1', '删除单词', '2021-04-02 21:51:33.000', '2021-04-02 21:51:33.000', NULL);
INSERT INTO `cms_log` VALUES (169, 'root新增文章', 1, 'root', 201, 'POST', '/v1/article', '新增文章', '2021-04-03 01:08:27.000', '2021-04-03 01:08:27.000', NULL);
INSERT INTO `cms_log` VALUES (170, 'root新增分类', 1, 'root', 201, 'POST', '/v1/category', '新增分类', '2021-04-04 14:28:17.000', '2021-04-04 14:28:17.000', NULL);
INSERT INTO `cms_log` VALUES (171, 'root新增文章', 1, 'root', 201, 'POST', '/v1/article', '新增文章', '2021-04-04 14:31:36.000', '2021-04-04 14:31:36.000', NULL);
INSERT INTO `cms_log` VALUES (172, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/21', '修改文章内容', '2021-04-04 14:32:18.000', '2021-04-04 14:32:18.000', NULL);
INSERT INTO `cms_log` VALUES (173, 'root新增文章', 1, 'root', 201, 'POST', '/v1/article', '新增文章', '2021-04-04 14:35:15.000', '2021-04-04 14:35:15.000', NULL);
INSERT INTO `cms_log` VALUES (174, 'root新增文章', 1, 'root', 201, 'POST', '/v1/article', '新增文章', '2021-04-04 14:37:29.000', '2021-04-04 14:37:29.000', NULL);
INSERT INTO `cms_log` VALUES (175, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/22', '修改文章内容', '2021-04-04 14:37:40.000', '2021-04-04 14:37:40.000', NULL);
INSERT INTO `cms_log` VALUES (176, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/21', '修改文章内容', '2021-04-04 14:37:48.000', '2021-04-04 14:37:48.000', NULL);
INSERT INTO `cms_log` VALUES (177, 'root新增文章', 1, 'root', 201, 'POST', '/v1/article', '新增文章', '2021-04-04 14:39:02.000', '2021-04-04 14:39:02.000', NULL);
INSERT INTO `cms_log` VALUES (178, 'root新增文章', 1, 'root', 201, 'POST', '/v1/article', '新增文章', '2021-04-04 14:55:44.000', '2021-04-04 14:55:44.000', NULL);
INSERT INTO `cms_log` VALUES (179, 'root新增文章', 1, 'root', 201, 'POST', '/v1/article', '新增文章', '2021-04-04 14:57:37.000', '2021-04-04 14:57:37.000', NULL);
INSERT INTO `cms_log` VALUES (180, 'root删除听力练习', 1, 'root', 201, 'DELETE', '/v1/listen/5', '删除听力练习', '2021-04-04 17:54:44.000', '2021-04-04 17:54:44.000', NULL);
INSERT INTO `cms_log` VALUES (181, 'root删除听力练习', 1, 'root', 201, 'DELETE', '/v1/listen/4', '删除听力练习', '2021-04-04 17:54:45.000', '2021-04-04 17:54:45.000', NULL);
INSERT INTO `cms_log` VALUES (182, 'root删除听力练习', 1, 'root', 201, 'DELETE', '/v1/listen/3', '删除听力练习', '2021-04-04 17:54:47.000', '2021-04-04 17:54:47.000', NULL);
INSERT INTO `cms_log` VALUES (183, 'root新增听力练习', 1, 'root', 201, 'POST', '/v1/listen', '新增听力练习', '2021-04-04 19:00:26.000', '2021-04-04 19:00:26.000', NULL);
INSERT INTO `cms_log` VALUES (184, 'root修改听力练习内容', 1, 'root', 201, 'PUT', '/v1/listen/6', '修改听力练习内容', '2021-04-04 19:30:21.000', '2021-04-04 19:30:21.000', NULL);
INSERT INTO `cms_log` VALUES (185, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/18', '修改文章内容', '2021-04-04 19:30:48.000', '2021-04-04 19:30:48.000', NULL);
INSERT INTO `cms_log` VALUES (186, 'root修改听力练习内容', 1, 'root', 201, 'PUT', '/v1/listen/6', '修改听力练习内容', '2021-04-04 19:31:20.000', '2021-04-04 19:31:20.000', NULL);
INSERT INTO `cms_log` VALUES (187, 'root修改听力练习内容', 1, 'root', 201, 'PUT', '/v1/listen/6', '修改听力练习内容', '2021-04-04 19:31:27.000', '2021-04-04 19:31:27.000', NULL);
INSERT INTO `cms_log` VALUES (188, 'root修改听力练习内容', 1, 'root', 201, 'PUT', '/v1/listen/6', '修改听力练习内容', '2021-04-04 19:34:12.000', '2021-04-04 19:34:12.000', NULL);
INSERT INTO `cms_log` VALUES (189, 'root修改听力练习内容', 1, 'root', 201, 'PUT', '/v1/listen/6', '修改听力练习内容', '2021-04-04 19:36:42.000', '2021-04-04 19:36:42.000', NULL);
INSERT INTO `cms_log` VALUES (190, 'root修改听力练习内容', 1, 'root', 201, 'PUT', '/v1/listen/6', '修改听力练习内容', '2021-04-04 19:39:51.000', '2021-04-04 19:39:51.000', NULL);
INSERT INTO `cms_log` VALUES (191, 'root新增听力练习', 1, 'root', 201, 'POST', '/v1/listen', '新增听力练习', '2021-04-04 19:45:51.000', '2021-04-04 19:45:51.000', NULL);
INSERT INTO `cms_log` VALUES (192, 'root新增分类', 1, 'root', 201, 'POST', '/v1/category', '新增分类', '2021-04-04 19:46:07.000', '2021-04-04 19:46:07.000', NULL);
INSERT INTO `cms_log` VALUES (193, 'root新增听力练习', 1, 'root', 201, 'POST', '/v1/listen', '新增听力练习', '2021-04-04 19:51:33.000', '2021-04-04 19:51:33.000', NULL);
INSERT INTO `cms_log` VALUES (194, 'root新增听力练习', 1, 'root', 201, 'POST', '/v1/listen', '新增听力练习', '2021-04-04 19:53:08.000', '2021-04-04 19:53:08.000', NULL);
INSERT INTO `cms_log` VALUES (195, 'root新增听力练习', 1, 'root', 201, 'POST', '/v1/listen', '新增听力练习', '2021-04-04 19:56:02.000', '2021-04-04 19:56:02.000', NULL);
INSERT INTO `cms_log` VALUES (196, 'root新增单词', 1, 'root', 201, 'POST', '/v1/word', '新增单词', '2021-04-12 10:21:36.000', '2021-04-12 10:21:36.000', NULL);
INSERT INTO `cms_log` VALUES (197, 'root新增单词', 1, 'root', 201, 'POST', '/v1/word', '新增单词', '2021-04-12 10:22:28.000', '2021-04-12 10:22:28.000', NULL);
INSERT INTO `cms_log` VALUES (198, 'root新增单词', 1, 'root', 201, 'POST', '/v1/word', '新增单词', '2021-04-12 10:24:17.000', '2021-04-12 10:24:17.000', NULL);
INSERT INTO `cms_log` VALUES (199, 'root新增单词', 1, 'root', 201, 'POST', '/v1/word', '新增单词', '2021-04-12 10:24:38.000', '2021-04-12 10:24:38.000', NULL);
INSERT INTO `cms_log` VALUES (200, 'root新增单词', 1, 'root', 201, 'POST', '/v1/word', '新增单词', '2021-04-12 10:24:56.000', '2021-04-12 10:24:56.000', NULL);
INSERT INTO `cms_log` VALUES (201, 'root新增单词', 1, 'root', 201, 'POST', '/v1/word', '新增单词', '2021-04-12 10:25:12.000', '2021-04-12 10:25:12.000', NULL);
INSERT INTO `cms_log` VALUES (202, 'root新增单词', 1, 'root', 201, 'POST', '/v1/word', '新增单词', '2021-04-12 10:25:28.000', '2021-04-12 10:25:28.000', NULL);
INSERT INTO `cms_log` VALUES (203, 'root新增单词', 1, 'root', 201, 'POST', '/v1/word', '新增单词', '2021-04-12 10:25:44.000', '2021-04-12 10:25:44.000', NULL);
INSERT INTO `cms_log` VALUES (204, 'root新增单词', 1, 'root', 201, 'POST', '/v1/word', '新增单词', '2021-04-13 20:01:21.000', '2021-04-13 20:01:21.000', NULL);
INSERT INTO `cms_log` VALUES (205, 'root新增单词', 1, 'root', 201, 'POST', '/v1/word', '新增单词', '2021-04-13 20:01:56.000', '2021-04-13 20:01:56.000', NULL);
INSERT INTO `cms_log` VALUES (206, 'root新增单词', 1, 'root', 201, 'POST', '/v1/word', '新增单词', '2021-04-13 20:02:30.000', '2021-04-13 20:02:30.000', NULL);
INSERT INTO `cms_log` VALUES (207, 'root新增单词', 1, 'root', 201, 'POST', '/v1/word', '新增单词', '2021-04-13 20:09:09.000', '2021-04-13 20:09:09.000', NULL);
INSERT INTO `cms_log` VALUES (208, 'root新增单词', 1, 'root', 201, 'POST', '/v1/word', '新增单词', '2021-04-13 20:10:32.000', '2021-04-13 20:10:32.000', NULL);
INSERT INTO `cms_log` VALUES (209, 'root删除单词', 1, 'root', 201, 'DELETE', '/v1/word/20', '删除单词', '2021-04-13 20:10:35.000', '2021-04-13 20:10:35.000', NULL);
INSERT INTO `cms_log` VALUES (210, 'lzl新增分类', 3, 'lzl', 201, 'POST', '/v1/category', '新增分类', '2021-04-14 16:22:30.000', '2021-04-14 16:22:30.000', NULL);
INSERT INTO `cms_log` VALUES (211, 'lzl新增文章', 3, 'lzl', 201, 'POST', '/v1/article', '新增文章', '2021-04-14 16:24:31.000', '2021-04-14 16:24:31.000', NULL);
INSERT INTO `cms_log` VALUES (212, 'lzl修改文章内容', 3, 'lzl', 201, 'PUT', '/v1/article/18', '修改文章内容', '2021-04-14 16:24:49.000', '2021-04-14 16:24:49.000', NULL);
INSERT INTO `cms_log` VALUES (213, 'lzl修改文章内容', 3, 'lzl', 201, 'PUT', '/v1/article/20', '修改文章内容', '2021-04-14 16:25:03.000', '2021-04-14 16:25:03.000', NULL);
INSERT INTO `cms_log` VALUES (214, 'lzl新增分类', 3, 'lzl', 201, 'POST', '/v1/category', '新增分类', '2021-04-14 16:26:22.000', '2021-04-14 16:26:22.000', NULL);
INSERT INTO `cms_log` VALUES (215, 'lzl新增文章', 3, 'lzl', 201, 'POST', '/v1/article', '新增文章', '2021-04-14 16:31:43.000', '2021-04-14 16:31:43.000', NULL);
INSERT INTO `cms_log` VALUES (216, 'lzl新增文章', 3, 'lzl', 201, 'POST', '/v1/article', '新增文章', '2021-04-14 16:34:52.000', '2021-04-14 16:34:52.000', NULL);
INSERT INTO `cms_log` VALUES (217, 'lzl新增文章', 3, 'lzl', 201, 'POST', '/v1/article', '新增文章', '2021-04-14 16:42:44.000', '2021-04-14 16:42:44.000', NULL);
INSERT INTO `cms_log` VALUES (218, 'lzl修改文章内容', 3, 'lzl', 201, 'PUT', '/v1/article/25', '修改文章内容', '2021-04-14 16:43:47.000', '2021-04-14 16:43:47.000', NULL);
INSERT INTO `cms_log` VALUES (219, 'lzl新增分类', 3, 'lzl', 201, 'POST', '/v1/category', '新增分类', '2021-04-14 16:47:18.000', '2021-04-14 16:47:18.000', NULL);
INSERT INTO `cms_log` VALUES (220, 'lzl新增文章', 3, 'lzl', 201, 'POST', '/v1/article', '新增文章', '2021-04-14 16:49:09.000', '2021-04-14 16:49:09.000', NULL);
INSERT INTO `cms_log` VALUES (221, 'lzl新增文章', 3, 'lzl', 201, 'POST', '/v1/article', '新增文章', '2021-04-14 16:51:14.000', '2021-04-14 16:51:14.000', NULL);
INSERT INTO `cms_log` VALUES (222, 'lzl修改文章内容', 3, 'lzl', 201, 'PUT', '/v1/article/26', '修改文章内容', '2021-04-14 16:58:57.000', '2021-04-14 16:58:57.000', NULL);
INSERT INTO `cms_log` VALUES (223, 'lzl修改分类内容', 3, 'lzl', 201, 'PUT', '/v1/category/4', '修改分类内容', '2021-04-14 21:18:08.000', '2021-04-14 21:18:08.000', NULL);
INSERT INTO `cms_log` VALUES (224, 'lzl修改分类内容', 3, 'lzl', 201, 'PUT', '/v1/category/2', '修改分类内容', '2021-04-14 21:22:57.000', '2021-04-14 21:22:57.000', NULL);
INSERT INTO `cms_log` VALUES (225, 'lzl修改分类内容', 3, 'lzl', 201, 'PUT', '/v1/category/2', '修改分类内容', '2021-04-14 21:23:22.000', '2021-04-14 21:23:22.000', NULL);
INSERT INTO `cms_log` VALUES (226, 'lzl修改分类内容', 3, 'lzl', 201, 'PUT', '/v1/category/2', '修改分类内容', '2021-04-14 21:34:59.000', '2021-04-14 21:34:59.000', NULL);
INSERT INTO `cms_log` VALUES (227, 'lzl新增单词', 3, 'lzl', 201, 'POST', '/v1/word', '新增单词', '2021-04-15 10:52:53.000', '2021-04-15 10:52:53.000', NULL);
INSERT INTO `cms_log` VALUES (228, 'lzl新增单词', 3, 'lzl', 201, 'POST', '/v1/word', '新增单词', '2021-04-15 11:05:41.000', '2021-04-15 11:05:41.000', NULL);
INSERT INTO `cms_log` VALUES (229, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/21', '修改文章内容', '2021-04-17 16:42:55.000', '2021-04-17 16:42:55.000', NULL);
INSERT INTO `cms_log` VALUES (230, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/22', '修改文章内容', '2021-04-17 16:43:13.000', '2021-04-17 16:43:13.000', NULL);
INSERT INTO `cms_log` VALUES (231, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/23', '修改文章内容', '2021-04-17 16:43:23.000', '2021-04-17 16:43:23.000', NULL);
INSERT INTO `cms_log` VALUES (232, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/24', '修改文章内容', '2021-04-17 16:43:48.000', '2021-04-17 16:43:48.000', NULL);
INSERT INTO `cms_log` VALUES (233, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/25', '修改文章内容', '2021-04-17 16:43:56.000', '2021-04-17 16:43:56.000', NULL);
INSERT INTO `cms_log` VALUES (234, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/26', '修改文章内容', '2021-04-17 16:44:20.000', '2021-04-17 16:44:20.000', NULL);
INSERT INTO `cms_log` VALUES (235, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/28', '修改文章内容', '2021-04-17 16:44:33.000', '2021-04-17 16:44:33.000', NULL);
INSERT INTO `cms_log` VALUES (236, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/29', '修改文章内容', '2021-04-17 16:44:43.000', '2021-04-17 16:44:43.000', NULL);
INSERT INTO `cms_log` VALUES (237, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/18', '修改文章内容', '2021-04-17 16:47:00.000', '2021-04-17 16:47:00.000', NULL);
INSERT INTO `cms_log` VALUES (238, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/23', '修改文章内容', '2021-04-17 16:57:33.000', '2021-04-17 16:57:33.000', NULL);
INSERT INTO `cms_log` VALUES (239, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/23', '修改文章内容', '2021-04-17 16:59:29.000', '2021-04-17 16:59:29.000', NULL);
INSERT INTO `cms_log` VALUES (240, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/22', '修改文章内容', '2021-04-17 16:59:56.000', '2021-04-17 16:59:56.000', NULL);
INSERT INTO `cms_log` VALUES (241, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/23', '修改文章内容', '2021-04-17 17:00:58.000', '2021-04-17 17:00:58.000', NULL);
INSERT INTO `cms_log` VALUES (242, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/23', '修改文章内容', '2021-04-17 17:02:01.000', '2021-04-17 17:02:01.000', NULL);
INSERT INTO `cms_log` VALUES (243, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/23', '修改文章内容', '2021-04-17 17:02:13.000', '2021-04-17 17:02:13.000', NULL);
INSERT INTO `cms_log` VALUES (244, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/23', '修改文章内容', '2021-04-17 17:02:36.000', '2021-04-17 17:02:36.000', NULL);
INSERT INTO `cms_log` VALUES (245, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/23', '修改文章内容', '2021-04-17 17:05:45.000', '2021-04-17 17:05:45.000', NULL);
INSERT INTO `cms_log` VALUES (246, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/23', '修改文章内容', '2021-04-17 17:08:09.000', '2021-04-17 17:08:09.000', NULL);
INSERT INTO `cms_log` VALUES (247, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/23', '修改文章内容', '2021-04-17 17:10:16.000', '2021-04-17 17:10:16.000', NULL);
INSERT INTO `cms_log` VALUES (248, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/23', '修改文章内容', '2021-04-17 17:10:32.000', '2021-04-17 17:10:32.000', NULL);
INSERT INTO `cms_log` VALUES (249, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/23', '修改文章内容', '2021-04-17 17:14:59.000', '2021-04-17 17:14:59.000', NULL);
INSERT INTO `cms_log` VALUES (250, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/23', '修改文章内容', '2021-04-17 17:18:24.000', '2021-04-17 17:18:24.000', NULL);
INSERT INTO `cms_log` VALUES (251, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/23', '修改文章内容', '2021-04-17 17:18:59.000', '2021-04-17 17:18:59.000', NULL);
INSERT INTO `cms_log` VALUES (252, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/23', '修改文章内容', '2021-04-17 17:19:34.000', '2021-04-17 17:19:34.000', NULL);
INSERT INTO `cms_log` VALUES (253, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/23', '修改文章内容', '2021-04-17 17:20:03.000', '2021-04-17 17:20:03.000', NULL);
INSERT INTO `cms_log` VALUES (254, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/23', '修改文章内容', '2021-04-17 17:20:46.000', '2021-04-17 17:20:46.000', NULL);
INSERT INTO `cms_log` VALUES (255, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/23', '修改文章内容', '2021-04-17 17:33:14.000', '2021-04-17 17:33:14.000', NULL);
INSERT INTO `cms_log` VALUES (256, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/23', '修改文章内容', '2021-04-17 17:33:45.000', '2021-04-17 17:33:45.000', NULL);
INSERT INTO `cms_log` VALUES (257, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/23', '修改文章内容', '2021-04-17 17:35:34.000', '2021-04-17 17:35:34.000', NULL);
INSERT INTO `cms_log` VALUES (258, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/23', '修改文章内容', '2021-04-17 17:36:07.000', '2021-04-17 17:36:07.000', NULL);
INSERT INTO `cms_log` VALUES (259, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/22', '修改文章内容', '2021-04-17 17:36:47.000', '2021-04-17 17:36:47.000', NULL);
INSERT INTO `cms_log` VALUES (260, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/23', '修改文章内容', '2021-04-17 17:37:52.000', '2021-04-17 17:37:52.000', NULL);
INSERT INTO `cms_log` VALUES (261, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/23', '修改文章内容', '2021-04-17 17:39:59.000', '2021-04-17 17:39:59.000', NULL);
INSERT INTO `cms_log` VALUES (262, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/22', '修改文章内容', '2021-04-17 17:40:53.000', '2021-04-17 17:40:53.000', NULL);
INSERT INTO `cms_log` VALUES (263, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/23', '修改文章内容', '2021-04-17 17:42:07.000', '2021-04-17 17:42:07.000', NULL);
INSERT INTO `cms_log` VALUES (264, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/23', '修改文章内容', '2021-04-17 17:42:57.000', '2021-04-17 17:42:57.000', NULL);
INSERT INTO `cms_log` VALUES (265, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/23', '修改文章内容', '2021-04-17 17:43:37.000', '2021-04-17 17:43:37.000', NULL);
INSERT INTO `cms_log` VALUES (266, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/21', '修改文章内容', '2021-04-17 17:43:53.000', '2021-04-17 17:43:53.000', NULL);
INSERT INTO `cms_log` VALUES (267, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/22', '修改文章内容', '2021-04-17 17:44:02.000', '2021-04-17 17:44:02.000', NULL);
INSERT INTO `cms_log` VALUES (268, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/23', '修改文章内容', '2021-04-17 17:45:37.000', '2021-04-17 17:45:37.000', NULL);
INSERT INTO `cms_log` VALUES (269, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/23', '修改文章内容', '2021-04-17 17:45:46.000', '2021-04-17 17:45:46.000', NULL);
INSERT INTO `cms_log` VALUES (270, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/22', '修改文章内容', '2021-04-17 17:46:01.000', '2021-04-17 17:46:01.000', NULL);
INSERT INTO `cms_log` VALUES (271, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/22', '修改文章内容', '2021-04-17 17:46:16.000', '2021-04-17 17:46:16.000', NULL);
INSERT INTO `cms_log` VALUES (272, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/22', '修改文章内容', '2021-04-17 17:48:12.000', '2021-04-17 17:48:12.000', NULL);
INSERT INTO `cms_log` VALUES (273, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/18', '修改文章内容', '2021-04-17 17:48:36.000', '2021-04-17 17:48:36.000', NULL);
INSERT INTO `cms_log` VALUES (274, '管理员新建了一个用户', 1, 'root', 201, 'POST', '/cms/user/register', '', '2021-04-18 18:41:51.000', '2021-04-18 18:41:51.000', NULL);
INSERT INTO `cms_log` VALUES (275, '管理员新建了一个用户', 1, 'root', 201, 'POST', '/cms/user/register', '', '2021-04-18 18:48:22.000', '2021-04-18 18:48:22.000', NULL);
INSERT INTO `cms_log` VALUES (276, 'root新增文章', 1, 'root', 201, 'POST', '/v1/article', '新增文章', '2021-04-18 19:18:44.000', '2021-04-18 19:18:44.000', NULL);
INSERT INTO `cms_log` VALUES (277, 'root删除文章', 1, 'root', 201, 'DELETE', '/v1/article/33', '删除文章', '2021-04-18 19:20:01.000', '2021-04-18 19:20:01.000', NULL);
INSERT INTO `cms_log` VALUES (278, 'root新增文章', 1, 'root', 201, 'POST', '/v1/article', '新增文章', '2021-04-18 19:20:23.000', '2021-04-18 19:20:23.000', NULL);
INSERT INTO `cms_log` VALUES (279, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/34', '修改文章内容', '2021-04-18 19:20:40.000', '2021-04-18 19:20:40.000', NULL);
INSERT INTO `cms_log` VALUES (280, 'root删除文章', 1, 'root', 201, 'DELETE', '/v1/article/34', '删除文章', '2021-04-18 19:29:15.000', '2021-04-18 19:29:15.000', NULL);
INSERT INTO `cms_log` VALUES (281, '管理员新建了一个用户', 1, 'root', 201, 'POST', '/cms/user/register', '', '2021-04-18 19:37:11.000', '2021-04-18 19:37:11.000', NULL);
INSERT INTO `cms_log` VALUES (282, 'ceshi新增文章', 6, 'ceshi', 201, 'POST', '/v1/article', '新增文章', '2021-04-18 19:37:45.000', '2021-04-18 19:37:45.000', NULL);
INSERT INTO `cms_log` VALUES (283, 'ceshi修改文章内容', 6, 'ceshi', 201, 'PUT', '/v1/article/35', '修改文章内容', '2021-04-18 19:38:00.000', '2021-04-18 19:38:00.000', NULL);
INSERT INTO `cms_log` VALUES (284, 'root新增文章', 1, 'root', 201, 'POST', '/v1/article', '新增文章', '2021-04-19 14:38:14.000', '2021-04-19 14:38:14.000', NULL);
INSERT INTO `cms_log` VALUES (285, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/36', '修改文章内容', '2021-04-19 14:39:44.000', '2021-04-19 14:39:44.000', NULL);
INSERT INTO `cms_log` VALUES (286, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/36', '修改文章内容', '2021-04-19 14:40:41.000', '2021-04-19 14:40:41.000', NULL);
INSERT INTO `cms_log` VALUES (287, 'root删除文章', 1, 'root', 201, 'DELETE', '/v1/article/36', '删除文章', '2021-04-19 14:44:55.000', '2021-04-19 14:44:55.000', NULL);
INSERT INTO `cms_log` VALUES (288, 'root删除文章', 1, 'root', 201, 'DELETE', '/v1/article/35', '删除文章', '2021-04-19 14:44:57.000', '2021-04-19 14:44:57.000', NULL);
INSERT INTO `cms_log` VALUES (289, 'root新增文章', 1, 'root', 201, 'POST', '/v1/article', '新增文章', '2021-04-19 14:45:15.000', '2021-04-19 14:45:15.000', NULL);
INSERT INTO `cms_log` VALUES (290, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/37', '修改文章内容', '2021-04-19 14:45:36.000', '2021-04-19 14:45:36.000', NULL);
INSERT INTO `cms_log` VALUES (291, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/37', '修改文章内容', '2021-04-19 14:46:16.000', '2021-04-19 14:46:16.000', NULL);
INSERT INTO `cms_log` VALUES (292, 'root删除文章', 1, 'root', 201, 'DELETE', '/v1/article/37', '删除文章', '2021-04-19 14:47:52.000', '2021-04-19 14:47:52.000', NULL);
INSERT INTO `cms_log` VALUES (293, 'root新增文章', 1, 'root', 201, 'POST', '/v1/article', '新增文章', '2021-04-19 15:06:43.000', '2021-04-19 15:06:43.000', NULL);
INSERT INTO `cms_log` VALUES (294, 'lzl新增分类', 3, 'lzl', 201, 'POST', '/v1/category', '新增分类', '2021-04-19 19:29:07.000', '2021-04-19 19:29:07.000', NULL);
INSERT INTO `cms_log` VALUES (295, 'lzl新增单词', 3, 'lzl', 201, 'POST', '/v1/word', '新增单词', '2021-04-19 19:35:58.000', '2021-04-19 19:35:58.000', NULL);
INSERT INTO `cms_log` VALUES (296, 'lzl新增单词', 3, 'lzl', 201, 'POST', '/v1/word', '新增单词', '2021-04-19 19:36:04.000', '2021-04-19 19:36:04.000', NULL);
INSERT INTO `cms_log` VALUES (297, 'lzl删除单词', 3, 'lzl', 201, 'DELETE', '/v1/word/23', '删除单词', '2021-04-19 19:36:08.000', '2021-04-19 19:36:08.000', NULL);
INSERT INTO `cms_log` VALUES (298, 'lzl新增单词', 3, 'lzl', 201, 'POST', '/v1/word', '新增单词', '2021-04-19 19:36:23.000', '2021-04-19 19:36:23.000', NULL);
INSERT INTO `cms_log` VALUES (299, 'lzl删除分类', 3, 'lzl', 201, 'DELETE', '/v1/category/12', '删除分类', '2021-04-19 19:36:29.000', '2021-04-19 19:36:29.000', NULL);
INSERT INTO `cms_log` VALUES (300, 'lzl新增分类', 3, 'lzl', 201, 'POST', '/v1/category', '新增分类', '2021-04-19 19:40:08.000', '2021-04-19 19:40:08.000', NULL);
INSERT INTO `cms_log` VALUES (301, 'lzl新增单词', 3, 'lzl', 201, 'POST', '/v1/word', '新增单词', '2021-04-19 19:40:14.000', '2021-04-19 19:40:14.000', NULL);
INSERT INTO `cms_log` VALUES (302, 'lzl新增单词', 3, 'lzl', 201, 'POST', '/v1/word', '新增单词', '2021-04-19 19:41:56.000', '2021-04-19 19:41:56.000', NULL);
INSERT INTO `cms_log` VALUES (303, 'lzl修改文章内容', 3, 'lzl', 201, 'PUT', '/v1/article/32', '修改文章内容', '2021-04-19 19:42:06.000', '2021-04-19 19:42:06.000', NULL);
INSERT INTO `cms_log` VALUES (304, 'lzl修改文章内容', 3, 'lzl', 201, 'PUT', '/v1/article/32', '修改文章内容', '2021-04-19 19:42:20.000', '2021-04-19 19:42:20.000', NULL);
INSERT INTO `cms_log` VALUES (305, 'lzl删除分类', 3, 'lzl', 201, 'DELETE', '/v1/category/13', '删除分类', '2021-04-19 19:42:29.000', '2021-04-19 19:42:29.000', NULL);
INSERT INTO `cms_log` VALUES (306, 'root新增听力练习', 1, 'root', 201, 'POST', '/v1/listen', '新增听力练习', '2021-04-20 00:17:19.000', '2021-04-20 00:17:19.000', NULL);
INSERT INTO `cms_log` VALUES (307, 'root修改听力练习内容', 1, 'root', 201, 'PUT', '/v1/listen/11', '修改听力练习内容', '2021-04-20 00:20:52.000', '2021-04-20 00:20:52.000', NULL);
INSERT INTO `cms_log` VALUES (308, 'root删除听力练习', 1, 'root', 201, 'DELETE', '/v1/listen/11', '删除听力练习', '2021-04-20 00:21:02.000', '2021-04-20 00:21:02.000', NULL);
INSERT INTO `cms_log` VALUES (309, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/38', '修改文章内容', '2021-04-20 10:44:32.000', '2021-04-20 10:44:32.000', NULL);
INSERT INTO `cms_log` VALUES (310, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/38', '修改文章内容', '2021-04-20 10:45:44.000', '2021-04-20 10:45:44.000', NULL);
INSERT INTO `cms_log` VALUES (311, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/38', '修改文章内容', '2021-04-20 10:45:55.000', '2021-04-20 10:45:55.000', NULL);
INSERT INTO `cms_log` VALUES (312, '管理员新建了一个用户', 1, 'root', 201, 'POST', '/cms/user/register', '', '2021-04-20 11:08:04.000', '2021-04-20 11:08:04.000', NULL);
INSERT INTO `cms_log` VALUES (313, '管理员新建了一个用户', 1, 'root', 201, 'POST', '/cms/user/register', '', '2021-04-20 11:26:54.000', '2021-04-20 11:26:54.000', NULL);
INSERT INTO `cms_log` VALUES (314, 'ceshi新增听力练习', 8, 'ceshi', 201, 'POST', '/v1/listen', '新增听力练习', '2021-04-20 16:45:03.000', '2021-04-20 16:45:03.000', NULL);
INSERT INTO `cms_log` VALUES (315, 'ceshi修改听力练习内容', 8, 'ceshi', 201, 'PUT', '/v1/listen/12', '修改听力练习内容', '2021-04-20 16:45:25.000', '2021-04-20 16:45:25.000', NULL);
INSERT INTO `cms_log` VALUES (316, 'ceshi修改听力练习内容', 8, 'ceshi', 201, 'PUT', '/v1/listen/10', '修改听力练习内容', '2021-04-20 16:45:37.000', '2021-04-20 16:45:37.000', NULL);
INSERT INTO `cms_log` VALUES (317, 'ceshi删除听力练习', 8, 'ceshi', 201, 'DELETE', '/v1/listen/12', '删除听力练习', '2021-04-20 16:45:48.000', '2021-04-20 16:45:48.000', NULL);
INSERT INTO `cms_log` VALUES (318, 'ceshi新增文章', 8, 'ceshi', 201, 'POST', '/v1/article', '新增文章', '2021-04-20 16:49:06.000', '2021-04-20 16:49:06.000', NULL);
INSERT INTO `cms_log` VALUES (319, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/39', '修改文章内容', '2021-04-20 16:53:20.000', '2021-04-20 16:53:20.000', NULL);
INSERT INTO `cms_log` VALUES (320, 'ceshi新增单词', 8, 'ceshi', 201, 'POST', '/v1/word', '新增单词', '2021-04-20 16:53:58.000', '2021-04-20 16:53:58.000', NULL);
INSERT INTO `cms_log` VALUES (321, 'ceshi删除单词', 8, 'ceshi', 201, 'DELETE', '/v1/word/24', '删除单词', '2021-04-20 16:54:04.000', '2021-04-20 16:54:04.000', NULL);
INSERT INTO `cms_log` VALUES (322, 'ceshi新增单词', 8, 'ceshi', 201, 'POST', '/v1/word', '新增单词', '2021-04-20 17:01:17.000', '2021-04-20 17:01:17.000', NULL);
INSERT INTO `cms_log` VALUES (323, 'ceshi新增单词', 8, 'ceshi', 201, 'POST', '/v1/word', '新增单词', '2021-04-20 17:04:15.000', '2021-04-20 17:04:15.000', NULL);
INSERT INTO `cms_log` VALUES (324, 'ceshi删除单词', 8, 'ceshi', 201, 'DELETE', '/v1/word/25', '删除单词', '2021-04-20 17:05:38.000', '2021-04-20 17:05:38.000', NULL);
INSERT INTO `cms_log` VALUES (325, 'ceshi新增单词', 8, 'ceshi', 201, 'POST', '/v1/word', '新增单词', '2021-04-20 17:12:54.000', '2021-04-20 17:12:54.000', NULL);
INSERT INTO `cms_log` VALUES (326, 'ceshi新增单词', 8, 'ceshi', 201, 'POST', '/v1/word', '新增单词', '2021-04-20 17:13:06.000', '2021-04-20 17:13:06.000', NULL);
INSERT INTO `cms_log` VALUES (327, 'ceshi新增单词', 8, 'ceshi', 201, 'POST', '/v1/word', '新增单词', '2021-04-20 17:13:14.000', '2021-04-20 17:13:14.000', NULL);
INSERT INTO `cms_log` VALUES (328, 'ceshi修改单词内容', 8, 'ceshi', 200, 'PUT', '/v1/word/undefined', '修改单词内容', '2021-04-20 17:15:41.000', '2021-04-20 17:15:41.000', NULL);
INSERT INTO `cms_log` VALUES (329, 'ceshi修改单词内容', 8, 'ceshi', 200, 'PUT', '/v1/word/17', '修改单词内容', '2021-04-20 17:16:21.000', '2021-04-20 17:16:21.000', NULL);
INSERT INTO `cms_log` VALUES (330, 'ceshi修改单词内容', 8, 'ceshi', 201, 'PUT', '/v1/word/17', '修改单词内容', '2021-04-20 17:16:44.000', '2021-04-20 17:16:44.000', NULL);
INSERT INTO `cms_log` VALUES (331, 'ceshi新增单词', 8, 'ceshi', 201, 'POST', '/v1/word', '新增单词', '2021-04-20 17:17:10.000', '2021-04-20 17:17:10.000', NULL);
INSERT INTO `cms_log` VALUES (332, 'ceshi修改单词内容', 8, 'ceshi', 201, 'PUT', '/v1/word/26', '修改单词内容', '2021-04-20 17:17:21.000', '2021-04-20 17:17:21.000', NULL);
INSERT INTO `cms_log` VALUES (333, 'ceshi修改单词内容', 8, 'ceshi', 201, 'PUT', '/v1/word/26', '修改单词内容', '2021-04-20 17:17:29.000', '2021-04-20 17:17:29.000', NULL);
INSERT INTO `cms_log` VALUES (334, 'ceshi删除单词', 8, 'ceshi', 201, 'DELETE', '/v1/word/26', '删除单词', '2021-04-20 17:17:34.000', '2021-04-20 17:17:34.000', NULL);
INSERT INTO `cms_log` VALUES (335, 'ceshi修改单词内容', 8, 'ceshi', 201, 'PUT', '/v1/word/13', '修改单词内容', '2021-04-20 17:18:53.000', '2021-04-20 17:18:53.000', NULL);
INSERT INTO `cms_log` VALUES (336, 'ceshi新增分类', 8, 'ceshi', 201, 'POST', '/v1/category', '新增分类', '2021-04-20 18:47:56.000', '2021-04-20 18:47:56.000', NULL);
INSERT INTO `cms_log` VALUES (337, 'ceshi删除分类', 8, 'ceshi', 201, 'DELETE', '/v1/category/14', '删除分类', '2021-04-20 18:48:01.000', '2021-04-20 18:48:01.000', NULL);
INSERT INTO `cms_log` VALUES (338, 'ceshi新增文章', 8, 'ceshi', 201, 'POST', '/v1/article', '新增文章', '2021-04-20 18:50:20.000', '2021-04-20 18:50:20.000', NULL);
INSERT INTO `cms_log` VALUES (339, 'ceshi新增文章', 8, 'ceshi', 201, 'POST', '/v1/article', '新增文章', '2021-04-20 18:51:32.000', '2021-04-20 18:51:32.000', NULL);
INSERT INTO `cms_log` VALUES (340, 'ceshi修改文章内容', 8, 'ceshi', 201, 'PUT', '/v1/article/41', '修改文章内容', '2021-04-20 18:51:48.000', '2021-04-20 18:51:48.000', NULL);
INSERT INTO `cms_log` VALUES (341, 'ceshi新增听力练习', 8, 'ceshi', 201, 'POST', '/v1/listen', '新增听力练习', '2021-04-20 19:13:38.000', '2021-04-20 19:13:38.000', NULL);
INSERT INTO `cms_log` VALUES (342, 'ceshi删除听力练习', 8, 'ceshi', 201, 'DELETE', '/v1/listen/13', '删除听力练习', '2021-04-20 19:16:33.000', '2021-04-20 19:16:33.000', NULL);
INSERT INTO `cms_log` VALUES (343, '管理员新建了一个用户', 1, 'root', 201, 'POST', '/cms/user/register', '', '2021-04-20 19:21:10.000', '2021-04-20 19:21:10.000', NULL);
INSERT INTO `cms_log` VALUES (344, 'root删除文章', 1, 'root', 201, 'DELETE', '/v1/article/41', '删除文章', '2021-04-20 20:06:43.000', '2021-04-20 20:06:43.000', NULL);
INSERT INTO `cms_log` VALUES (345, 'root删除文章', 1, 'root', 201, 'DELETE', '/v1/article/39', '删除文章', '2021-04-20 20:06:45.000', '2021-04-20 20:06:45.000', NULL);
INSERT INTO `cms_log` VALUES (346, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/40', '修改文章内容', '2021-04-20 20:06:49.000', '2021-04-20 20:06:49.000', NULL);
INSERT INTO `cms_log` VALUES (347, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/31', '修改文章内容', '2021-04-20 21:07:35.000', '2021-04-20 21:07:35.000', NULL);
INSERT INTO `cms_log` VALUES (348, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/30', '修改文章内容', '2021-04-20 21:09:37.000', '2021-04-20 21:09:37.000', NULL);
INSERT INTO `cms_log` VALUES (349, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/27', '修改文章内容', '2021-04-20 21:12:31.000', '2021-04-20 21:12:31.000', NULL);
INSERT INTO `cms_log` VALUES (350, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/27', '修改文章内容', '2021-04-20 21:12:50.000', '2021-04-20 21:12:50.000', NULL);
INSERT INTO `cms_log` VALUES (351, 'lzl新增听力练习', 3, 'lzl', 201, 'POST', '/v1/listen', '新增听力练习', '2021-04-21 10:51:47.000', '2021-04-21 10:51:47.000', NULL);
INSERT INTO `cms_log` VALUES (352, 'lzl修改听力练习内容', 3, 'lzl', 201, 'PUT', '/v1/listen/14', '修改听力练习内容', '2021-04-21 10:52:50.000', '2021-04-21 10:52:50.000', NULL);
INSERT INTO `cms_log` VALUES (353, 'lzl修改听力练习内容', 3, 'lzl', 201, 'PUT', '/v1/listen/6', '修改听力练习内容', '2021-04-21 12:54:59.000', '2021-04-21 12:54:59.000', NULL);
INSERT INTO `cms_log` VALUES (354, 'lzl修改听力练习内容', 3, 'lzl', 201, 'PUT', '/v1/listen/7', '修改听力练习内容', '2021-04-21 12:58:16.000', '2021-04-21 12:58:16.000', NULL);
INSERT INTO `cms_log` VALUES (355, 'lzl修改听力练习内容', 3, 'lzl', 201, 'PUT', '/v1/listen/8', '修改听力练习内容', '2021-04-21 13:01:24.000', '2021-04-21 13:01:24.000', NULL);
INSERT INTO `cms_log` VALUES (356, 'lzl修改听力练习内容', 3, 'lzl', 201, 'PUT', '/v1/listen/9', '修改听力练习内容', '2021-04-21 13:03:27.000', '2021-04-21 13:03:27.000', NULL);
INSERT INTO `cms_log` VALUES (357, 'lzl修改听力练习内容', 3, 'lzl', 201, 'PUT', '/v1/listen/9', '修改听力练习内容', '2021-04-21 13:05:32.000', '2021-04-21 13:05:32.000', NULL);
INSERT INTO `cms_log` VALUES (358, 'lzl修改听力练习内容', 3, 'lzl', 201, 'PUT', '/v1/listen/9', '修改听力练习内容', '2021-04-21 13:06:36.000', '2021-04-21 13:06:36.000', NULL);
INSERT INTO `cms_log` VALUES (359, 'lzl修改听力练习内容', 3, 'lzl', 201, 'PUT', '/v1/listen/10', '修改听力练习内容', '2021-04-21 13:10:40.000', '2021-04-21 13:10:40.000', NULL);
INSERT INTO `cms_log` VALUES (360, 'lzl修改听力练习内容', 3, 'lzl', 201, 'PUT', '/v1/listen/7', '修改听力练习内容', '2021-04-21 13:13:08.000', '2021-04-21 13:13:08.000', NULL);
INSERT INTO `cms_log` VALUES (361, 'lzl修改听力练习内容', 3, 'lzl', 201, 'PUT', '/v1/listen/14', '修改听力练习内容', '2021-04-21 13:13:56.000', '2021-04-21 13:13:56.000', NULL);
INSERT INTO `cms_log` VALUES (362, 'lzl修改听力练习内容', 3, 'lzl', 201, 'PUT', '/v1/listen/9', '修改听力练习内容', '2021-04-21 13:14:22.000', '2021-04-21 13:14:22.000', NULL);
INSERT INTO `cms_log` VALUES (363, 'root新增单词', 1, 'root', 201, 'POST', '/v1/word/wordArr', '新增单词', '2021-04-21 13:38:03.000', '2021-04-21 13:38:03.000', NULL);
INSERT INTO `cms_log` VALUES (364, 'root新增单词', 1, 'root', 201, 'POST', '/v1/word/wordArr', '新增单词', '2021-04-21 13:45:11.000', '2021-04-21 13:45:11.000', NULL);
INSERT INTO `cms_log` VALUES (365, 'root新增单词', 1, 'root', 201, 'POST', '/v1/word/wordArr', '新增单词', '2021-04-21 13:45:52.000', '2021-04-21 13:45:52.000', NULL);
INSERT INTO `cms_log` VALUES (366, 'root新增单词', 1, 'root', 201, 'POST', '/v1/word/wordArr', '新增单词', '2021-04-21 13:47:16.000', '2021-04-21 13:47:16.000', NULL);
INSERT INTO `cms_log` VALUES (367, 'root新增单词', 1, 'root', 201, 'POST', '/v1/word/wordArr', '新增单词', '2021-04-21 13:50:09.000', '2021-04-21 13:50:09.000', NULL);
INSERT INTO `cms_log` VALUES (368, 'root新增单词', 1, 'root', 201, 'POST', '/v1/word/wordArr', '新增单词', '2021-04-21 13:54:19.000', '2021-04-21 13:54:19.000', NULL);
INSERT INTO `cms_log` VALUES (369, 'root新增单词', 1, 'root', 201, 'POST', '/v1/word/wordArr', '新增单词', '2021-04-21 13:55:10.000', '2021-04-21 13:55:10.000', NULL);
INSERT INTO `cms_log` VALUES (370, 'root新增单词', 1, 'root', 201, 'POST', '/v1/word/wordArr', '新增单词', '2021-04-21 13:56:06.000', '2021-04-21 13:56:06.000', NULL);
INSERT INTO `cms_log` VALUES (371, 'root新增单词', 1, 'root', 201, 'POST', '/v1/word/wordArr', '新增单词', '2021-04-21 13:56:32.000', '2021-04-21 13:56:32.000', NULL);
INSERT INTO `cms_log` VALUES (372, 'root新增单词', 1, 'root', 201, 'POST', '/v1/word/wordArr', '新增单词', '2021-04-21 13:56:55.000', '2021-04-21 13:56:55.000', NULL);
INSERT INTO `cms_log` VALUES (373, 'root新增单词', 1, 'root', 201, 'POST', '/v1/word/wordArr', '新增单词', '2021-04-21 13:57:27.000', '2021-04-21 13:57:27.000', NULL);
INSERT INTO `cms_log` VALUES (374, 'root新增单词', 1, 'root', 201, 'POST', '/v1/word/wordArr', '新增单词', '2021-04-21 13:58:15.000', '2021-04-21 13:58:15.000', NULL);
INSERT INTO `cms_log` VALUES (375, 'root新增单词', 1, 'root', 201, 'POST', '/v1/word/wordArr', '新增单词', '2021-04-21 13:58:46.000', '2021-04-21 13:58:46.000', NULL);
INSERT INTO `cms_log` VALUES (376, 'root新增单词', 1, 'root', 201, 'POST', '/v1/word/wordArr', '新增单词', '2021-04-21 13:59:05.000', '2021-04-21 13:59:05.000', NULL);
INSERT INTO `cms_log` VALUES (377, '管理员新建了一个用户', 1, 'root', 201, 'POST', '/cms/user/register', '', '2021-04-21 14:23:11.000', '2021-04-21 14:23:11.000', NULL);
INSERT INTO `cms_log` VALUES (378, 'ceshi11修改单词内容', 10, 'ceshi11', 201, 'PUT', '/v1/word/33', '修改单词内容', '2021-04-21 14:23:58.000', '2021-04-21 14:23:58.000', NULL);
INSERT INTO `cms_log` VALUES (379, 'ceshi11修改单词内容', 10, 'ceshi11', 201, 'PUT', '/v1/word/33', '修改单词内容', '2021-04-21 14:24:02.000', '2021-04-21 14:24:02.000', NULL);
INSERT INTO `cms_log` VALUES (380, 'ceshi11新增单词', 10, 'ceshi11', 201, 'POST', '/v1/word', '新增单词', '2021-04-21 14:24:14.000', '2021-04-21 14:24:14.000', NULL);
INSERT INTO `cms_log` VALUES (381, 'ceshi11删除单词', 10, 'ceshi11', 201, 'DELETE', '/v1/word/1036', '删除单词', '2021-04-21 14:24:21.000', '2021-04-21 14:24:21.000', NULL);
INSERT INTO `cms_log` VALUES (382, 'root新增文章', 1, 'root', 201, 'POST', '/v1/article', '新增文章', '2021-04-21 14:25:22.000', '2021-04-21 14:25:22.000', NULL);
INSERT INTO `cms_log` VALUES (383, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/42', '修改文章内容', '2021-04-21 14:25:50.000', '2021-04-21 14:25:50.000', NULL);
INSERT INTO `cms_log` VALUES (384, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/42', '修改文章内容', '2021-04-21 14:26:02.000', '2021-04-21 14:26:02.000', NULL);
INSERT INTO `cms_log` VALUES (385, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/40', '修改文章内容', '2021-04-21 14:26:23.000', '2021-04-21 14:26:23.000', NULL);
INSERT INTO `cms_log` VALUES (386, 'root修改分类内容', 1, 'root', 201, 'PUT', '/v1/category/11', '修改分类内容', '2021-04-21 14:26:53.000', '2021-04-21 14:26:53.000', NULL);
INSERT INTO `cms_log` VALUES (387, 'root修改分类内容', 1, 'root', 201, 'PUT', '/v1/category/11', '修改分类内容', '2021-04-21 14:26:56.000', '2021-04-21 14:26:56.000', NULL);
INSERT INTO `cms_log` VALUES (388, 'root新增分类', 1, 'root', 201, 'POST', '/v1/category', '新增分类', '2021-04-21 14:27:00.000', '2021-04-21 14:27:00.000', NULL);
INSERT INTO `cms_log` VALUES (389, 'root删除分类', 1, 'root', 201, 'DELETE', '/v1/category/15', '删除分类', '2021-04-21 14:27:06.000', '2021-04-21 14:27:06.000', NULL);
INSERT INTO `cms_log` VALUES (390, 'root新增听力练习', 1, 'root', 201, 'POST', '/v1/listen', '新增听力练习', '2021-04-21 14:27:49.000', '2021-04-21 14:27:49.000', NULL);
INSERT INTO `cms_log` VALUES (391, 'root修改听力练习内容', 1, 'root', 201, 'PUT', '/v1/listen/15', '修改听力练习内容', '2021-04-21 14:28:12.000', '2021-04-21 14:28:12.000', NULL);
INSERT INTO `cms_log` VALUES (392, 'root修改听力练习内容', 1, 'root', 201, 'PUT', '/v1/listen/15', '修改听力练习内容', '2021-04-21 14:28:33.000', '2021-04-21 14:28:33.000', NULL);
INSERT INTO `cms_log` VALUES (393, 'root删除听力练习', 1, 'root', 201, 'DELETE', '/v1/listen/15', '删除听力练习', '2021-04-21 14:28:41.000', '2021-04-21 14:28:41.000', NULL);
INSERT INTO `cms_log` VALUES (394, 'root删除文章', 1, 'root', 201, 'DELETE', '/v1/article/40', '删除文章', '2021-05-04 14:52:00.000', '2021-05-04 14:52:00.000', NULL);
INSERT INTO `cms_log` VALUES (395, 'root删除文章', 1, 'root', 201, 'DELETE', '/v1/article/42', '删除文章', '2021-05-04 14:52:02.000', '2021-05-04 14:52:02.000', NULL);
INSERT INTO `cms_log` VALUES (396, 'lzl修改听力练习内容', 3, 'lzl', 201, 'PUT', '/v1/listen/14', '修改听力练习内容', '2021-05-07 17:12:06.000', '2021-05-07 17:12:06.000', NULL);
INSERT INTO `cms_log` VALUES (397, 'lzl修改听力练习内容', 3, 'lzl', 201, 'PUT', '/v1/listen/10', '修改听力练习内容', '2021-05-07 17:13:30.000', '2021-05-07 17:13:30.000', NULL);
INSERT INTO `cms_log` VALUES (398, 'lzl修改听力练习内容', 3, 'lzl', 201, 'PUT', '/v1/listen/9', '修改听力练习内容', '2021-05-07 17:13:43.000', '2021-05-07 17:13:43.000', NULL);
INSERT INTO `cms_log` VALUES (399, 'lzl修改听力练习内容', 3, 'lzl', 201, 'PUT', '/v1/listen/8', '修改听力练习内容', '2021-05-07 17:13:49.000', '2021-05-07 17:13:49.000', NULL);
INSERT INTO `cms_log` VALUES (400, 'lzl修改听力练习内容', 3, 'lzl', 201, 'PUT', '/v1/listen/7', '修改听力练习内容', '2021-05-07 17:15:36.000', '2021-05-07 17:15:36.000', NULL);
INSERT INTO `cms_log` VALUES (401, 'lzl修改听力练习内容', 3, 'lzl', 201, 'PUT', '/v1/listen/6', '修改听力练习内容', '2021-05-07 17:15:56.000', '2021-05-07 17:15:56.000', NULL);
INSERT INTO `cms_log` VALUES (402, 'root修改单词内容', 1, 'root', 201, 'PUT', '/v1/word/37', '修改单词内容', '2021-05-07 17:44:47.000', '2021-05-07 17:44:47.000', NULL);
INSERT INTO `cms_log` VALUES (403, 'root修改单词内容', 1, 'root', 201, 'PUT', '/v1/word/37', '修改单词内容', '2021-05-07 17:44:51.000', '2021-05-07 17:44:51.000', NULL);
INSERT INTO `cms_log` VALUES (404, 'root新增单词', 1, 'root', 201, 'POST', '/v1/word', '新增单词', '2021-05-07 17:54:48.000', '2021-05-07 17:54:48.000', NULL);
INSERT INTO `cms_log` VALUES (405, 'root修改单词内容', 1, 'root', 201, 'PUT', '/v1/word/1037', '修改单词内容', '2021-05-07 17:54:56.000', '2021-05-07 17:54:56.000', NULL);
INSERT INTO `cms_log` VALUES (406, 'root删除单词', 1, 'root', 201, 'DELETE', '/v1/word/1037', '删除单词', '2021-05-07 17:54:59.000', '2021-05-07 17:54:59.000', NULL);
INSERT INTO `cms_log` VALUES (407, 'root新增文章', 1, 'root', 201, 'POST', '/v1/article', '新增文章', '2021-05-07 17:55:33.000', '2021-05-07 17:55:33.000', NULL);
INSERT INTO `cms_log` VALUES (408, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/43', '修改文章内容', '2021-05-07 17:55:50.000', '2021-05-07 17:55:50.000', NULL);
INSERT INTO `cms_log` VALUES (409, 'root新增分类', 1, 'root', 201, 'POST', '/v1/category', '新增分类', '2021-05-07 17:56:05.000', '2021-05-07 17:56:05.000', NULL);
INSERT INTO `cms_log` VALUES (410, 'root修改分类内容', 1, 'root', 201, 'PUT', '/v1/category/16', '修改分类内容', '2021-05-07 17:56:10.000', '2021-05-07 17:56:10.000', NULL);
INSERT INTO `cms_log` VALUES (411, 'root删除分类', 1, 'root', 201, 'DELETE', '/v1/category/16', '删除分类', '2021-05-07 17:56:12.000', '2021-05-07 17:56:12.000', NULL);
INSERT INTO `cms_log` VALUES (412, 'root新增听力练习', 1, 'root', 201, 'POST', '/v1/listen', '新增听力练习', '2021-05-07 17:56:41.000', '2021-05-07 17:56:41.000', NULL);
INSERT INTO `cms_log` VALUES (413, 'root修改听力练习内容', 1, 'root', 201, 'PUT', '/v1/listen/16', '修改听力练习内容', '2021-05-07 17:56:47.000', '2021-05-07 17:56:47.000', NULL);
INSERT INTO `cms_log` VALUES (414, 'root删除听力练习', 1, 'root', 201, 'DELETE', '/v1/listen/16', '删除听力练习', '2021-05-07 17:56:51.000', '2021-05-07 17:56:51.000', NULL);
INSERT INTO `cms_log` VALUES (415, '管理员新建了一个用户', 1, 'root', 201, 'POST', '/cms/user/register', '', '2021-05-07 17:57:12.000', '2021-05-07 17:57:12.000', NULL);
INSERT INTO `cms_log` VALUES (416, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/18', '修改文章内容', '2021-05-07 17:58:09.000', '2021-05-07 17:58:09.000', NULL);
INSERT INTO `cms_log` VALUES (417, 'root新增单词', 1, 'root', 201, 'POST', '/v1/word', '新增单词', '2021-05-08 16:08:07.000', '2021-05-08 16:08:07.000', NULL);
INSERT INTO `cms_log` VALUES (418, 'root修改单词内容', 1, 'root', 201, 'PUT', '/v1/word/1038', '修改单词内容', '2021-05-08 16:08:15.000', '2021-05-08 16:08:15.000', NULL);
INSERT INTO `cms_log` VALUES (419, 'root删除单词', 1, 'root', 201, 'DELETE', '/v1/word/1038', '删除单词', '2021-05-08 16:08:17.000', '2021-05-08 16:08:17.000', NULL);
INSERT INTO `cms_log` VALUES (420, 'root新增单词', 1, 'root', 201, 'POST', '/v1/word', '新增单词', '2021-05-08 16:08:40.000', '2021-05-08 16:08:40.000', NULL);
INSERT INTO `cms_log` VALUES (421, 'root删除单词', 1, 'root', 201, 'DELETE', '/v1/word/1039', '删除单词', '2021-05-08 16:08:46.000', '2021-05-08 16:08:46.000', NULL);
INSERT INTO `cms_log` VALUES (422, 'root新增单词', 1, 'root', 201, 'POST', '/v1/word', '新增单词', '2021-05-08 16:10:00.000', '2021-05-08 16:10:00.000', NULL);
INSERT INTO `cms_log` VALUES (423, 'root删除单词', 1, 'root', 201, 'DELETE', '/v1/word/1040', '删除单词', '2021-05-08 16:10:15.000', '2021-05-08 16:10:15.000', NULL);
INSERT INTO `cms_log` VALUES (424, 'root新增单词', 1, 'root', 201, 'POST', '/v1/word', '新增单词', '2021-05-08 16:11:58.000', '2021-05-08 16:11:58.000', NULL);
INSERT INTO `cms_log` VALUES (425, 'root删除单词', 1, 'root', 201, 'DELETE', '/v1/word/1041', '删除单词', '2021-05-08 16:12:02.000', '2021-05-08 16:12:02.000', NULL);
INSERT INTO `cms_log` VALUES (426, 'root新增文章', 1, 'root', 201, 'POST', '/v1/article', '新增文章', '2021-05-08 16:13:47.000', '2021-05-08 16:13:47.000', NULL);
INSERT INTO `cms_log` VALUES (427, 'root删除文章', 1, 'root', 201, 'DELETE', '/v1/article/44', '删除文章', '2021-05-08 16:13:51.000', '2021-05-08 16:13:51.000', NULL);
INSERT INTO `cms_log` VALUES (428, 'root新增单词', 1, 'root', 201, 'POST', '/v1/word', '新增单词', '2021-05-08 16:20:04.000', '2021-05-08 16:20:04.000', NULL);
INSERT INTO `cms_log` VALUES (429, 'root修改单词内容', 1, 'root', 201, 'PUT', '/v1/word/1042', '修改单词内容', '2021-05-08 16:20:10.000', '2021-05-08 16:20:10.000', NULL);
INSERT INTO `cms_log` VALUES (430, 'root删除单词', 1, 'root', 201, 'DELETE', '/v1/word/1042', '删除单词', '2021-05-08 16:20:14.000', '2021-05-08 16:20:14.000', NULL);
INSERT INTO `cms_log` VALUES (431, 'root新增文章', 1, 'root', 201, 'POST', '/v1/article', '新增文章', '2021-05-08 16:20:43.000', '2021-05-08 16:20:43.000', NULL);
INSERT INTO `cms_log` VALUES (432, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/45', '修改文章内容', '2021-05-08 16:20:49.000', '2021-05-08 16:20:49.000', NULL);
INSERT INTO `cms_log` VALUES (433, 'root新增分类', 1, 'root', 201, 'POST', '/v1/category', '新增分类', '2021-05-08 16:21:01.000', '2021-05-08 16:21:01.000', NULL);
INSERT INTO `cms_log` VALUES (434, 'root新增听力练习', 1, 'root', 201, 'POST', '/v1/listen', '新增听力练习', '2021-05-08 16:21:38.000', '2021-05-08 16:21:38.000', NULL);
INSERT INTO `cms_log` VALUES (435, '管理员新建了一个用户', 1, 'root', 201, 'POST', '/cms/user/register', '', '2021-05-08 16:22:31.000', '2021-05-08 16:22:31.000', NULL);
INSERT INTO `cms_log` VALUES (436, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/45', '修改文章内容', '2021-05-08 16:23:47.000', '2021-05-08 16:23:47.000', NULL);
INSERT INTO `cms_log` VALUES (437, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/45', '修改文章内容', '2021-05-08 16:27:45.000', '2021-05-08 16:27:45.000', NULL);
INSERT INTO `cms_log` VALUES (438, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/43', '修改文章内容', '2021-05-08 16:27:56.000', '2021-05-08 16:27:56.000', NULL);
INSERT INTO `cms_log` VALUES (439, 'root删除文章', 1, 'root', 201, 'DELETE', '/v1/article/43', '删除文章', '2021-05-08 16:28:17.000', '2021-05-08 16:28:17.000', NULL);
INSERT INTO `cms_log` VALUES (440, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/45', '修改文章内容', '2021-05-08 16:28:32.000', '2021-05-08 16:28:32.000', NULL);
INSERT INTO `cms_log` VALUES (441, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/45', '修改文章内容', '2021-05-08 16:29:02.000', '2021-05-08 16:29:02.000', NULL);
INSERT INTO `cms_log` VALUES (442, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/45', '修改文章内容', '2021-05-08 16:29:17.000', '2021-05-08 16:29:17.000', NULL);
INSERT INTO `cms_log` VALUES (443, 'root修改文章内容', 1, 'root', 201, 'PUT', '/v1/article/45', '修改文章内容', '2021-05-08 16:29:31.000', '2021-05-08 16:29:31.000', NULL);
-- ----------------------------
-- Table structure for cms_permission
-- ----------------------------
DROP TABLE IF EXISTS `cms_permission`;
CREATE TABLE `cms_permission` (
`id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
`name` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '权限名称,例如:访问首页',
`module` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '权限所属模块,例如:人员管理',
`mount` tinyint(1) NOT NULL DEFAULT 1 COMMENT '0:关闭 1:开启',
`create_time` datetime(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3),
`update_time` datetime(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3) ON UPDATE CURRENT_TIMESTAMP(3),
`delete_time` datetime(3) NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 46 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of cms_permission
-- ----------------------------
INSERT INTO `cms_permission` VALUES (1, '查询所有日志', '日志', 1, '2020-12-22 00:39:26.000', '2021-04-13 21:10:53.000', NULL);
INSERT INTO `cms_permission` VALUES (2, '搜索日志', '日志', 1, '2020-12-22 00:39:27.000', '2021-04-13 21:10:53.000', NULL);
INSERT INTO `cms_permission` VALUES (3, '查询日志记录的用户', '日志', 1, '2020-12-22 00:39:27.000', '2021-04-13 21:10:53.000', NULL);
INSERT INTO `cms_permission` VALUES (4, '测试日志记录', '信息', 0, '2020-12-22 00:39:27.000', '2021-03-27 19:20:26.000', NULL);
INSERT INTO `cms_permission` VALUES (5, '查看lin的信息', '信息', 0, '2020-12-22 00:39:27.000', '2021-03-27 19:20:26.000', NULL);
INSERT INTO `cms_permission` VALUES (6, '删除图书', '图书', 1, '2020-12-22 00:39:27.000', '2021-04-13 20:45:40.986', '2021-04-13 20:45:38.000');
INSERT INTO `cms_permission` VALUES (7, '新增期刊内容', '内容管理', 0, '2021-01-02 11:54:52.000', '2021-03-21 22:10:43.000', NULL);
INSERT INTO `cms_permission` VALUES (8, '修改期刊内容', '内容管理', 0, '2021-01-02 12:01:40.000', '2021-03-21 22:10:43.000', NULL);
INSERT INTO `cms_permission` VALUES (9, '删除期刊内容', '内容管理', 0, '2021-01-02 12:02:24.000', '2021-03-21 22:10:43.000', NULL);
INSERT INTO `cms_permission` VALUES (10, '新增最新期刊', '最新期刊管理', 0, '2021-01-02 15:35:23.000', '2021-03-21 22:10:43.000', NULL);
INSERT INTO `cms_permission` VALUES (11, '编辑最新期刊', '最新期刊管理', 0, '2021-01-03 00:42:01.000', '2021-03-21 22:10:43.000', NULL);
INSERT INTO `cms_permission` VALUES (12, '最新期刊内容删除', '最新期刊管理', 0, '2021-01-03 00:55:04.000', '2021-03-21 22:10:43.000', NULL);
INSERT INTO `cms_permission` VALUES (13, '新增文章', '内容管理', 0, '2021-03-19 23:22:31.000', '2021-03-22 09:41:43.000', NULL);
INSERT INTO `cms_permission` VALUES (14, '删除文章', '内容管理', 0, '2021-03-19 23:52:04.000', '2021-03-22 09:41:43.000', NULL);
INSERT INTO `cms_permission` VALUES (15, '修改文章内容', '内容管理', 0, '2021-03-19 23:56:58.000', '2021-03-22 09:41:43.000', NULL);
INSERT INTO `cms_permission` VALUES (16, '新增分类', '内容管理', 0, '2021-03-21 15:11:51.000', '2021-03-22 09:41:43.000', NULL);
INSERT INTO `cms_permission` VALUES (17, '修改分类内容', '内容管理', 0, '2021-03-21 15:11:51.000', '2021-03-22 09:41:43.000', NULL);
INSERT INTO `cms_permission` VALUES (18, '删除分类', '内容管理', 0, '2021-03-21 15:11:51.000', '2021-03-22 09:41:43.000', NULL);
INSERT INTO `cms_permission` VALUES (19, '新增听力练习', '内容管理', 0, '2021-03-21 23:34:18.000', '2021-03-22 09:41:43.000', NULL);
INSERT INTO `cms_permission` VALUES (20, '修改听力练习内容', '内容管理', 0, '2021-03-21 23:34:18.000', '2021-03-22 09:41:43.000', NULL);
INSERT INTO `cms_permission` VALUES (21, '删除听力练习', '内容管理', 0, '2021-03-21 23:34:18.000', '2021-03-22 09:41:43.000', NULL);
INSERT INTO `cms_permission` VALUES (22, '新增文章', '文章管理', 1, '2021-03-22 09:41:42.000', '2021-04-13 21:10:53.000', NULL);
INSERT INTO `cms_permission` VALUES (23, '修改文章内容', '文章管理', 1, '2021-03-22 09:41:42.000', '2021-04-13 21:10:53.000', NULL);
INSERT INTO `cms_permission` VALUES (24, '删除文章', '文章管理', 1, '2021-03-22 09:41:42.000', '2021-04-13 21:10:53.000', NULL);
INSERT INTO `cms_permission` VALUES (25, '新增分类', '分类管理', 1, '2021-03-22 09:41:42.000', '2021-04-13 21:10:53.000', NULL);
INSERT INTO `cms_permission` VALUES (26, '修改分类内容', '分类管理', 1, '2021-03-22 09:41:43.000', '2021-04-13 21:10:53.000', NULL);
INSERT INTO `cms_permission` VALUES (27, '删除分类', '分类管理', 1, '2021-03-22 09:41:43.000', '2021-04-13 21:10:53.000', NULL);
INSERT INTO `cms_permission` VALUES (28, '新增听力练习', '听力练习管理', 1, '2021-03-22 09:41:43.000', '2021-04-13 21:10:53.000', NULL);
INSERT INTO `cms_permission` VALUES (29, '修改听力练习内容', '听力练习管理', 1, '2021-03-22 09:41:43.000', '2021-04-13 21:10:53.000', NULL);
INSERT INTO `cms_permission` VALUES (30, '删除听力练习', '听力练习管理', 1, '2021-03-22 09:41:43.000', '2021-04-13 21:10:53.000', NULL);
INSERT INTO `cms_permission` VALUES (31, '新增评论', '评论管理', 0, '2021-03-26 11:57:25.000', '2021-04-13 20:50:05.346', '2021-04-13 20:50:03.000');
INSERT INTO `cms_permission` VALUES (32, '修改评论内容', '评论管理', 0, '2021-03-26 11:57:25.000', '2021-04-13 20:50:14.061', '2021-04-13 20:50:11.000');
INSERT INTO `cms_permission` VALUES (33, '删除评论', '评论管理', 0, '2021-03-26 11:57:25.000', '2021-04-13 20:50:25.091', '2021-04-13 20:50:17.000');
INSERT INTO `cms_permission` VALUES (34, '新增文章收藏', '文章收藏管理', 0, '2021-03-27 22:35:38.000', '2021-03-27 23:53:45.000', NULL);
INSERT INTO `cms_permission` VALUES (35, '修改文章收藏内容', '文章收藏管理', 0, '2021-03-27 22:35:38.000', '2021-03-27 23:53:31.000', NULL);
INSERT INTO `cms_permission` VALUES (36, '删除文章收藏', '文章收藏管理', 0, '2021-03-27 22:35:38.000', '2021-04-19 19:31:07.000', NULL);
INSERT INTO `cms_permission` VALUES (37, '新增单词', '单词管理', 1, '2021-04-02 20:48:17.000', '2021-04-20 16:37:39.000', NULL);
INSERT INTO `cms_permission` VALUES (38, '修改单词内容', '单词管理', 1, '2021-04-02 20:48:17.000', '2021-04-20 16:37:39.000', NULL);
INSERT INTO `cms_permission` VALUES (39, '删除单词', '单词管理', 1, '2021-04-02 20:48:17.000', '2021-04-20 16:37:39.000', NULL);
INSERT INTO `cms_permission` VALUES (40, '删除图书', '图书', 1, '2021-04-13 20:48:41.000', '2021-04-13 20:52:51.871', '2021-04-13 20:52:49.000');
INSERT INTO `cms_permission` VALUES (41, '查询所有文章', '文章管理', 1, '2021-04-19 19:18:31.000', '2021-04-19 19:18:31.000', NULL);
INSERT INTO `cms_permission` VALUES (42, '查询所有分类', '分类管理', 1, '2021-04-19 19:28:03.000', '2021-04-20 11:16:52.000', NULL);
INSERT INTO `cms_permission` VALUES (43, '查看所有听力', '听力练习管理', 0, '2021-04-19 19:31:07.000', '2021-04-20 16:42:32.259', '2021-04-20 16:42:29.000');
INSERT INTO `cms_permission` VALUES (44, '查看所有听力练习', '听力练习管理', 1, '2021-04-19 19:31:50.000', '2021-04-19 19:31:50.000', NULL);
INSERT INTO `cms_permission` VALUES (45, '查询所有单词', '单词管理', 1, '2021-04-19 19:33:17.000', '2021-04-20 16:37:39.000', NULL);
-- ----------------------------
-- Table structure for cms_user
-- ----------------------------
DROP TABLE IF EXISTS `cms_user`;
CREATE TABLE `cms_user` (
`id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
`username` varchar(24) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '用户名,唯一',
`nickname` varchar(24) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '用户昵称',
`avatar` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '头像url',
`email` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '邮箱',
`create_time` datetime(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3),
`update_time` datetime(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3) ON UPDATE CURRENT_TIMESTAMP(3),
`delete_time` datetime(3) NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `username_del`(`username`, `delete_time`) USING BTREE,
UNIQUE INDEX `email_del`(`email`, `delete_time`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 13 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of cms_user
-- ----------------------------
INSERT INTO `cms_user` VALUES (1, 'root', 'leeAdmin', '1618313931655.jpg', NULL, '2020-12-22 00:35:50.228', '2021-04-20 19:37:45.000', NULL);
INSERT INTO `cms_user` VALUES (2, '小明', NULL, NULL, NULL, '2021-01-02 11:41:14.000', '2021-01-02 11:41:14.000', NULL);
INSERT INTO `cms_user` VALUES (3, 'lzl', '我是测试123', '1618317784758.jpg', '[email protected]', '2021-03-22 23:32:06.000', '2021-05-07 17:20:51.000', NULL);
INSERT INTO `cms_user` VALUES (4, 'ceshi', NULL, NULL, '[email protected]', '2021-04-18 18:41:50.000', '2021-04-18 18:48:08.000', '2021-04-18 18:48:08.000');
INSERT INTO `cms_user` VALUES (5, 'ceshi', NULL, NULL, '[email protected]', '2021-04-18 18:48:22.000', '2021-04-18 19:21:38.000', '2021-04-18 19:21:38.000');
INSERT INTO `cms_user` VALUES (6, 'ceshi', NULL, NULL, '[email protected]', '2021-04-18 19:37:11.000', '2021-04-19 14:34:27.000', '2021-04-19 14:34:27.000');
INSERT INTO `cms_user` VALUES (7, 'ceshi', NULL, NULL, '[email protected]', '2021-04-20 11:08:04.000', '2021-04-20 11:19:59.000', '2021-04-20 11:19:59.000');
INSERT INTO `cms_user` VALUES (8, 'ceshi', NULL, '1618917502849.jpeg', '[email protected]', '2021-04-20 11:26:54.000', '2021-04-20 19:38:03.000', '2021-04-20 19:38:03.000');
INSERT INTO `cms_user` VALUES (9, 'ceshi1', 'leeAdmin', '1618918586232.jpeg', '[email protected]', '2021-04-20 19:21:10.000', '2021-04-20 19:38:01.000', '2021-04-20 19:38:01.000');
INSERT INTO `cms_user` VALUES (10, 'ceshi11', NULL, NULL, '[email protected]', '2021-04-21 14:23:11.000', '2021-05-04 14:53:05.000', '2021-05-04 14:53:05.000');
INSERT INTO `cms_user` VALUES (11, 'ceshi', NULL, NULL, '[email protected]', '2021-05-07 17:57:12.000', '2021-05-08 16:22:19.000', '2021-05-08 16:22:19.000');
INSERT INTO `cms_user` VALUES (12, 'ceshi', NULL, NULL, '[email protected]', '2021-05-08 16:22:30.000', '2021-05-08 16:22:30.000', NULL);
-- ----------------------------
-- Table structure for cms_user_group
-- ----------------------------
DROP TABLE IF EXISTS `cms_user_group`;
CREATE TABLE `cms_user_group` (
`id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
`user_id` int(10) UNSIGNED NOT NULL COMMENT '用户id',
`group_id` int(10) UNSIGNED NOT NULL COMMENT '分组id',
PRIMARY KEY (`id`) USING BTREE,
INDEX `user_id_group_id`(`user_id`, `group_id`) USING BTREE COMMENT '联合索引'
) ENGINE = InnoDB AUTO_INCREMENT = 20 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of cms_user_group
-- ----------------------------
INSERT INTO `cms_user_group` VALUES (1, 1, 1);
INSERT INTO `cms_user_group` VALUES (7, 2, 2);
INSERT INTO `cms_user_group` VALUES (16, 3, 4);
INSERT INTO `cms_user_group` VALUES (19, 12, 9);
-- ----------------------------
-- Table structure for cms_user_identity
-- ----------------------------
DROP TABLE IF EXISTS `cms_user_identity`;
CREATE TABLE `cms_user_identity` (
`id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
`user_id` int(10) UNSIGNED NOT NULL COMMENT '用户id',
`identity_type` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '登录类型(手机号 邮箱 用户名)或第三方应用名称(微信 微博等)',
`identifier` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '标识(手机号 邮箱 用户名或第三方应用的唯一标识)',
`credential` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '密码凭证(站内的保存密码,站外的不保存或保存token)',
`create_time` datetime(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3),
`update_time` datetime(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3) ON UPDATE CURRENT_TIMESTAMP(3),
`delete_time` datetime(3) NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 13 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of cms_user_identity
-- ----------------------------
INSERT INTO `cms_user_identity` VALUES (1, 1, 'USERNAME_PASSWORD', 'root', 'sha1$13e6a034$1$29cee227b5b530e46b7ce547293546de93907e48', '2020-12-22 00:35:50.233', '2021-04-13 19:45:25.000', NULL);
INSERT INTO `cms_user_identity` VALUES (2, 2, 'USERNAME_PASSWORD', '小明', 'sha1$789526c4$1$4f58a9914565c53fc5014dd80252a30574d85bc2', '2021-01-02 11:41:14.000', '2021-01-02 11:41:14.000', NULL);
INSERT INTO `cms_user_identity` VALUES (3, 3, 'USERNAME_PASSWORD', 'lzl', 'sha1$84bd689a$1$93a73dfc51a36dd139dee1ba78c1c53ac165e653', '2021-03-22 23:32:07.000', '2021-04-13 20:40:08.000', NULL);
INSERT INTO `cms_user_identity` VALUES (4, 4, 'USERNAME_PASSWORD', 'ceshi', 'sha1$feb9e87d$1$346549cf3b9971200187db1206137ed354d8a33c', '2021-04-18 18:41:50.000', '2021-04-18 18:48:08.345', '2021-04-18 18:48:08.000');
INSERT INTO `cms_user_identity` VALUES (5, 5, 'USERNAME_PASSWORD', 'ceshi', 'sha1$a4200df9$1$ca990fc18c0baed40459cfd219337af44017b83b', '2021-04-18 18:48:22.000', '2021-04-18 19:21:38.447', '2021-04-18 19:21:38.000');
INSERT INTO `cms_user_identity` VALUES (6, 6, 'USERNAME_PASSWORD', 'ceshi', 'sha1$deee7a41$1$32eaaa0d4516f7a55ca429176322db3e7d049a81', '2021-04-18 19:37:11.000', '2021-04-19 14:34:27.297', '2021-04-19 14:34:27.000');
INSERT INTO `cms_user_identity` VALUES (7, 7, 'USERNAME_PASSWORD', 'ceshi', 'sha1$8e2216f7$1$27b9b94525eb83b4093e92e8f42146ab0801a5fd', '2021-04-20 11:08:04.000', '2021-04-20 11:19:59.777', '2021-04-20 11:19:59.000');
INSERT INTO `cms_user_identity` VALUES (8, 8, 'USERNAME_PASSWORD', 'ceshi', 'sha1$5316e4e1$1$dec6d19cf9c6d89e031a4efa2eaa050e591f4f62', '2021-04-20 11:26:54.000', '2021-04-20 19:38:03.359', '2021-04-20 19:38:03.000');
INSERT INTO `cms_user_identity` VALUES (9, 9, 'USERNAME_PASSWORD', 'ceshi1', 'sha1$05ce5467$1$3b296e9f9eadd403c31f6c47ddcd86f0a62571de', '2021-04-20 19:21:10.000', '2021-04-20 19:38:01.941', '2021-04-20 19:38:01.000');
INSERT INTO `cms_user_identity` VALUES (10, 10, 'USERNAME_PASSWORD', 'ceshi11', 'sha1$12fa7e74$1$eb2a8930c53598d59e6a96b95df3787365c73a89', '2021-04-21 14:23:11.000', '2021-05-04 14:53:05.697', '2021-05-04 14:53:05.000');
INSERT INTO `cms_user_identity` VALUES (11, 11, 'USERNAME_PASSWORD', 'ceshi', 'sha1$0037f5cf$1$2f078749a9058f7a1fb3897ed273d9a45f066fa4', '2021-05-07 17:57:12.000', '2021-05-08 16:22:19.166', '2021-05-08 16:22:19.000');
INSERT INTO `cms_user_identity` VALUES (12, 12, 'USERNAME_PASSWORD', 'ceshi', 'sha1$07327c6f$1$cb776fd6d0be1d3c2fead1f458e487e07b9c7df6', '2021-05-08 16:22:30.000', '2021-05-08 16:22:30.000', NULL);
-- ----------------------------
-- Table structure for comment
-- ----------------------------
DROP TABLE IF EXISTS `comment`;
CREATE TABLE `comment` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '评论id',
`web_user_id` bigint(20) NOT NULL COMMENT '用户id',
`content` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '评论内容',
`image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '头像(图片路径)',
`is_published` tinyint(1) NOT NULL COMMENT '是否公开',
`article_id` bigint(20) NULL DEFAULT NULL COMMENT '所属的文章id',
`parent_comment_id` bigint(20) NULL DEFAULT NULL COMMENT '父评论id,-1为根评论',
`created_at` datetime(0) NULL DEFAULT NULL,
`updated_at` datetime(0) NULL DEFAULT NULL,
`deleted_at` datetime(0) NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = MyISAM AUTO_INCREMENT = 48 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of comment
-- ----------------------------
INSERT INTO `comment` VALUES (1, 1, '测试评论', '1616584592322.jpg', 1, 18, -1, '2021-03-26 11:32:29', '2021-03-26 11:32:32', NULL);
INSERT INTO `comment` VALUES (7, 5, '张同学你好[哈哈]', '1616584592322.jpg', 1, 18, 1, '2021-03-26 18:18:05', '2021-03-26 18:18:05', NULL);
INSERT INTO `comment` VALUES (8, 5, '测试赛', '1616584592322.jpg', 1, 18, 26, '2021-03-26 18:27:37', '2021-03-26 18:27:37', NULL);
INSERT INTO `comment` VALUES (31, 10, '屏蔽[微笑]', 'avatar.png', 1, 18, -1, '2021-04-18 19:39:04', '2021-04-18 19:39:04', NULL);
INSERT INTO `comment` VALUES (30, 8, '学习了很多知识[嘻嘻]', 'avatar.png', 1, 29, -1, '2021-04-18 18:39:09', '2021-04-18 18:39:09', NULL);
INSERT INTO `comment` VALUES (29, 8, '学到了get√[嘻嘻]', '1616816972178.jpg', 1, 23, -1, '2021-04-10 21:31:50', '2021-04-10 21:31:50', NULL);
INSERT INTO `comment` VALUES (28, 8, '沙发[嘻嘻]', '1616816972178.jpg', 1, 23, -1, '2021-04-10 21:31:29', '2021-04-10 21:31:29', NULL);
INSERT INTO `comment` VALUES (27, 8, '测试2222', '1616816972178.jpg', 1, 18, 26, '2021-03-31 01:02:21', '2021-03-31 01:02:21', NULL);
INSERT INTO `comment` VALUES (26, 8, '123', '1616816972178.jpg', 1, 18, -1, '2021-03-30 21:10:56', '2021-03-30 21:10:56', NULL);
INSERT INTO `comment` VALUES (25, 8, '你是?[微笑]', '1616816972178.jpg', 1, 18, -1, '2021-03-30 21:10:44', '2021-03-30 21:10:44', NULL);
INSERT INTO `comment` VALUES (24, 8, '测试评论123', '1616584592322.jpg', 1, 18, 1, '2021-03-26 11:32:29', '2021-03-26 11:32:32', NULL);
INSERT INTO `comment` VALUES (32, 8, '习惯真的太重要了[嘻嘻]', '1618889157606.jpeg', 1, 29, -1, '2021-04-20 20:08:07', '2021-04-20 20:08:07', NULL);
INSERT INTO `comment` VALUES (33, 8, '不错,很帅!', '1618889157606.jpeg', 1, 32, -1, '2021-04-20 20:10:28', '2021-04-20 20:10:28', NULL);
INSERT INTO `comment` VALUES (34, 8, '习惯真的可以改变生活![嘻嘻]', '1618889157606.jpeg', 1, 29, -1, '2021-04-20 20:11:05', '2021-04-20 20:11:05', NULL);
INSERT INTO `comment` VALUES (35, 8, '我们不能盲目的传播一些未经过证实的新闻。', '1618889157606.jpeg', 1, 21, -1, '2021-04-20 20:18:00', '2021-04-20 20:18:00', NULL);
INSERT INTO `comment` VALUES (36, 8, '请问小编可以多更新一些慢速英语视频吗[嘻嘻]看上瘾了下饭神奇[哈哈]', '1618889157606.jpeg', 1, 21, -1, '2021-04-20 20:18:43', '2021-04-20 20:18:43', NULL);
INSERT INTO `comment` VALUES (37, 8, '原来大片的英文是blockbuster啊。学到了哈哈哈[鼓掌]', '1618889157606.jpeg', 1, 31, -1, '2021-04-20 21:08:29', '2021-04-20 21:08:29', NULL);
INSERT INTO `comment` VALUES (38, 8, '希望我国的抗疫攻坚战早日成功~[嘻嘻]', '1618889157606.jpeg', 1, 30, -1, '2021-04-20 21:10:09', '2021-04-20 21:10:09', NULL);
INSERT INTO `comment` VALUES (39, 8, '压力越大,动力越大[给力]', '1618889157606.jpeg', 1, 28, -1, '2021-04-20 21:11:48', '2021-04-20 21:11:48', NULL);
INSERT INTO `comment` VALUES (40, 8, '帅气的女足[哈哈]', '1618889157606.jpeg', 1, 27, -1, '2021-04-20 21:13:25', '2021-04-20 21:13:25', NULL);
INSERT INTO `comment` VALUES (41, 8, '测试一下[嘻嘻]', '1618889157606.jpeg', 1, 23, -1, '2021-04-21 14:18:46', '2021-04-21 14:18:46', NULL);
INSERT INTO `comment` VALUES (47, 10, '测试一下[嘻嘻]', 'avatar.png', 1, 45, -1, '2021-05-08 16:42:18', '2021-05-08 16:42:18', NULL);
-- ----------------------------
-- Table structure for listening
-- ----------------------------
DROP TABLE IF EXISTS `listening`;
CREATE TABLE `listening` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '听力练习标题',
`image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '听力练习封面',
`description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '听力练习描述',
`questions` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '听力练习问题,及对应答案',
`is_published` tinyint(1) NOT NULL COMMENT '是否发布',
`created_at` datetime(0) NOT NULL,
`updated_at` datetime(0) NOT NULL,
`deleted_at` datetime(0) NULL DEFAULT NULL,
`source` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '听力mp3的url',
`categoryId` bigint(20) NOT NULL COMMENT '分类ID',
`answer_analysis` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '答案解释',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = MyISAM AUTO_INCREMENT = 18 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of listening
-- ----------------------------
INSERT INTO `listening` VALUES (6, 'CET-4 2019-12 第1套', NULL, '大学英语2019年12月听力第一套题', '[{\"title\":\"What happened in New York\'s Prospect Park on Tuesday?\",\"op1\":\"Many facilities were destroyed by a wandering cow.\",\"op2\":\"A wandering cow knocked down one of its fences.\",\"op3\":\"Some tourists were injured by a wandering cow.\",\"op4\":\"A wandering cow was captured by the police.\",\"answer\":\"D\"},{\"title\":\"What do we learn about the cow from the end of the news report?\",\"op1\":\"It was shot to death by a police officer.\",\"op2\":\"It found its way back to the park\'s zoo.\",\"op3\":\"It became a great attraction for tourists.\",\"op4\":\"It was sent to the animal control department. \",\"answer\":\"D\"},{\"title\":\"What does the news report say about the fossil hall of the National Museum of Natural History?\",\"op1\":\"It is the largest of its kind.\",\"op2\":\"It is going to be expanded. \",\"op3\":\"It is displaying more fossil specimens.\",\"op4\":\"It is starting an online exhibition.\",\"answer\":\"B\"},{\"title\":\"What is on display this week in the museum\'s resident exhibition hall?\",\"op1\":\"A collection of bird fossils from Australia.\",\"op2\":\"Photographs of certain rare fossil exhibits.\",\"op3\":\"Some ancient wall paintings from Australia. \",\"op4\":\"Pictures by winners of a wildlife photo contest.\",\"answer\":\"C\"},{\"title\":\"What have six birds been trained to do at a French historical theme park?\",\"op1\":\"Pick up trash. \",\"op2\":\"Amuse visitors.\",\"op3\":\"Deliver messages.\",\"op4\":\"Play with children.\",\"answer\":\"A\"},{\"title\":\"Why were rooks chosen by the park manager?\",\"op1\":\"They are especially intelligent. \",\"op2\":\"They are children\'s favorite.\",\"op3\":\"They are quite easy to tame.\",\"op4\":\"They are clean and pretty.\",\"answer\":\"A\"},{\"title\":\"What is the concern of some parents?\",\"op1\":\"Children may be harmed by the rooks.\",\"op2\":\"Children may be tempted to drop litter. \",\"op3\":\"Children may contract bird diseases.\",\"op4\":\"Children may overfeed the rooks.\",\"answer\":\"B\"},{\"title\":\"What do we learn about the TV show Science Nation?\",\"op1\":\"It will be produced at Harvard University.\",\"op2\":\"It will be hosted by famous professors.\",\"op3\":\"It will cover different areas of science. \",\"op4\":\"It will focus on recent scientific discoveries.\",\"answer\":\"C\"},{\"title\":\"In what way will the TV show Science Nation differ from traditional documentaries?\",\"op1\":\"It will be more futuristic.\",\"op2\":\"It will be more systematic.\",\"op3\":\"It will be more entertaining.\",\"op4\":\"It will be easier to understand.\",\"answer\":\"C\"},{\"title\":\"Who will be the intended audience of the TV show Science Nation?\",\"op1\":\"People interested in science. \",\"op2\":\"Youngsters eager to explore.\",\"op3\":\"Children in their early teens.\",\"op4\":\"Students majoring in science.\",\"answer\":\"A\"},{\"title\":\"What does the woman want the man to do for the TV show?\",\"op1\":\"Offer professional advice.\",\"op2\":\"Provide financial support. \",\"op3\":\"Help promote it on the Internet.\",\"op4\":\"Make episodes for its first season.\",\"answer\":\"B\"}]', 1, '2021-04-04 19:00:26', '2021-05-07 17:15:55', NULL, '1617533983172.mp3', 4, '<p>[1] New York City police captured a cow on the loose in Prospect Park on Tuesday after the animal became an attraction for tourists while walking along the streets and enjoying the park facilities. The confused creature and camera-holding humans stared at each other through a fence for several minutes. At other times the cow wandered around the 526-acre park and the artificial grass field normally used for human sporting events. Officers used soccer goals to fence the animal in. However, the cow then moved through one of the nets, knocking down a police officer in the process. Police eventually trapped the cow between two vehicles parked on either side of a baseball field\'s bench area. An officer then shot an arrow to put it to sleep. Then officers waited for the drug to take effect. After it fell asleep they loaded the cow into a horse trailer. It was not clear where the cow came from or how it got lost. [2] Police turned it over to the animal control department after they caught it.</p>\n<p>[1] 周二,纽约警方在展望公园捕获了一头四处游荡的母牛,这头母牛在沿街散步和享受公园设施的过程中吸引了大量游客。这一茫然不知所措的生物和拿着相机拍照的人类隔着栅栏互相凝视了几分钟。其他时间,这头母牛在这家占地526英亩的公园里四处游荡,在通常用于举行体育赛事的人造草地上徘徊。警察们用足球门将母牛围了起来。然而,母牛随后穿过了其中一张网,期间撞倒了一名警察。警方最终将这头母牛困在了停在棒球场板凳区两边的两辆车之间。然后,一名警察射出一支麻醉箭使母牛入睡。随后,警察静等药物生效。待母牛睡着之后,他们把母牛抬上了运马拖车。目前尚不清楚母牛来自何处以及它是怎么迷路的。[2] 警察在抓到它后将其移交给了动物管理部门。</p>\n<p> </p>\n<p>[3] Starting April 28 of this year, the National Museum of Natural History will begin renovating its fossil hall. The fossil hall, which displays some of the world\'s oldest and largest fossil specimens, receives more than 2 million visitors each year. It\'s one of the museum\'s most famous attractions. As a result, the museum plans to expand the hall, as well as add to its ancient birds collection. Bird lovers, both young and old, have already responded with excitement at the news. The museum\'s social media account has been flooded with messages of support. In the meantime, the current collection will be closed. However, visitors will be compensated during the closure. Museum\'s special exhibition area will now be free of charge. [4] This week, the resident exhibition is a display of ancient wall paintings on loan from Australia. They celebrate the cultural heritage of the country and will be available to view until Sunday. Next week, the exhibition will be taken over by the Wildlife Photographer of the Year Competition. The winner of this year\'s competition will be awarded a preview of the new fossil hall, as well as a cash prize.</p>\n<p>[3]从今年4月28日起,国家自然历史博物馆将开始翻新其化石馆。化石馆陈列着世界上最古老、最大的一些化石标本,每年接待200多万名游客。它是博物馆最著名的景点之一。因此,博物馆计划扩建化石馆,并增加其古代鸟类收藏。鸟类爱好者们,无论老少,都已经对这个消息感到兴奋不已。该博物馆的社交媒体账户上充斥着支持的信息。同时,当前的收藏展示将会关闭。但是,参观者将在关展期间得到补偿。博物馆的特别展区现在将免费开放。[4] 本周的驻地展是一场从澳大利亚借来的古代壁画展。古代壁画颂扬他们国家的文化遗产,该展览将一直开放至周日。下周,本展览将由年度野生动物摄影师大赛展取代。今年大赛的获胜者将获得新化石馆的预览以及现金奖励。</p>\n<p> </p>\n<p>[5] Six birds have just been trained to pick up rubbish at a French historical theme park. According to the park\'s manager, Mr. Villiers, the goal is not just to clear up the park. He says visitors are already good at keeping things clean. Instead, he wants to show that nature itself can teach us to take care of the environment. [6] He says that rooks, the chosen birds, are considered to be particularly intelligent. In the right circumstances, they even like to communicate with humans and establish a relationship through play. The birds will be encouraged to clean the park through the use of a small box that delivers a small amount of bird food. Each time, the rook deposits a cigarette end or a small piece of rubbish. So far, visitors to the theme park have been excited to see the birds in action. [7] However, some parents are concerned that it encourages their children to drop litter so they can watch the birds to pick it up. Villiers is not concerned about this criticism. He maintains most of the feedback he has received has been overwhelmingly positive. He hopes now to train more birds.</p>\n<p>[5] 法国一家历史主题公园刚训练了六只捡垃圾的鸟。公园经理维利尔斯先生说,目标不仅仅是清理公园。他说,游客们在保持卫生方面已经做得很好了。相反,他想证明自然本身可以教我们保护环境。[6] 他表示,白嘴鸦,就是那些被选中的鸟,被认为是特别聪明的。在适当的情况下,它们甚至喜欢与人类交流,并通过做游戏的方式和人类建立关系。人们使用一个含有少量鸟食的小盒子来激励这些鸟清理公园。白嘴鸦每次都会把烟头或一小块垃圾放进盒子里。到目前为止,主题公园的参观者看到这些鸟在清理公园时都很兴奋。[7] 然而,一些家长担心这样会怂恿他们的孩子乱扔垃圾,这样他们就可以看到鸟儿捡垃圾了。维利尔斯并不担心这种批评。他坚持认为,他收到的大多数反馈都非常积极。他希望现在能训练更多的鸟。</p>\n<p> </p>\n<p>W: [8]The name of the TV show we wish to produce is Science Nation.<br />M: Please tell us more. What will Science Nation be about?<br />W: It\'ll be about science, all sorts of science. Each episode will focus on a different area of science, and tell us what we know, how we know it, and what we still don\'t know. The show will have one host only, and this will be Professor Susan Paul from Harvard University. She\'s a great public speaker.<br />M: So, just to be clear, will the show\'s format be like that of a documentary?<br />W: Kind of. It\'ll be like a documentary in the sense that it\'ll be non-fiction and fact-based. [9] However, our idea is for it to be also fun and entertaining, something which traditional documentaries aren\'t so much. Please keep in mind this will be a new TV show, like nothing ever done before.<br />M: [10] Okay, so it\'ll be both educational and entertaining, and your audience will be anyone interested in science, right?<br />W: That\'s correct, yes.<br />M: Right, thank you. So, I think we\'re more or less clear what the show will be like. Could you please tell us now, what exactly you want from us?<br />W: [11] Yes, of course. Basically, what we need from you is financial support. In order to go ahead with this idea, we need 2 million dollars. This will cover the cost of making all 12 shows in the first season for the first year. If the show is a success, we can then look at making a second season for the following year.</p>\n<p>女:[8]我们想要制作的电视节目名叫《科学国度》。<br />男:请多介绍一下。《科学国度》将呈现什么内容?<br />女:节目内容与科学有关,涉及各种科学知识。每期节目将侧重科学的一个不同领域,并讲述关于我们已知的,如何得知的以及我们仍然不知道的科学知识。该节目将只有一位主持人,就是哈佛大学的苏珊·保罗教授。她是一位出色的公众演说家。<br />男:那么,我想明确一下,节目的形式会像纪录片那样吗?<br />女:有点儿像。从它不是虚构的且基于事实这个意义上而言,它确实像纪录片。[9]但是,我们的想法是让节目既有趣又有娱乐性,这是传统的纪录片所没有的。请记住,这将是一个全新的电视节目,以往的电视节目中没有类似的。<br />男:[10]好的,所以,你的节目既具有教育意义又具有娱乐性,你的观众是所有对科学感兴趣的人,对吗?<br />女:对的,是这样。<br />男:好的,谢谢。那么,我想大家或多或少了解了这个节目。你现在能告诉我们你到底想从我们这里得到什么吗?<br />女:[11]是的,当然。我们主要是需要你们的资金支持。为了推进这个想法,我们需要200万美元的资金。这笔资金会用来支付第一年第一季全部12期节目的制作费用。如果节目成功,我们可以考虑在第二年制作第二季。</p>\n<p> </p>\n<p>W: What\'s up with you? You don\'t look very happy.<br />M: [12] I feel like I\'m a failure. I can\'t seem to do anything very well.<br />W: I wouldn\'t say that. You do very well in a lot of things. That presentation you gave last week was excellent.<br />M: [13] Yes, but I have this urge to strive for perfection. [12]I really want to push harder and progress further.<br />W: Well, that\'s very admirable. But be careful. Over concern with being perfect can damage our confidence if we never achieve it.<br />M: Yes, I know. [12]I feel awful whenever I make a mistake in whatever I\'m trying to do.<br />W: Well, think about it. You can\'t make progress without making mistakes and learning from them. Thomas Edison, the famous inventor, once said, “I\'ve not failed. I\'ve just found 10,000 ways that won\'t work.”<br />M: You may well be right. I guess I should recognize my mistakes and learn the lessons they teach me and move forward.<br />W: Also, remember a successful ending is not the only thing worthy of a celebration. You need to recognize each step of progress you take towards achieving your goals. And no matter how tiny it is, it\'s still good news.<br />M: [14]I always feel down when I see others accomplishing things and I feel miserable about my own achievements. I\'m always trying to be as good as others, but I never seem to get there.<br />W: Listen. If you always compare yourself with others, you\'ll never feel good enough. [15]You\'re the only person you should be comparing yourself with. When you compare your current status with the starting point, you\'ll find you\'ve made progress, right? That\'s good enough.<br />M: That\'s great advice. Thank you. I\'m feeling better already.</p>\n<p>女:你怎么了?你看起来不太开心。<br />男:[12]我觉得我是个失败者。我似乎什么事情都做不好。<br />女:我可不这么觉得。你在很多方面都做得很好。上周你的演讲非常出色。<br />男:[13]是的,但是我有追求完美的渴求。[12]我真的很想更加努力,取得更大的进步。<br />女:嗯,这非常令人钦佩。不过还是要小心一些。如果我们永远无法实现完美,那么过分在意是否完美就可能有损我们的自信心。<br />男:是的,我知道。[12]每当我在尽力做的事情中犯错时,我都觉得糟透了。<br />女:嗯,想想吧。如果从不犯错,不从错误中吸取教训,你就无法取得进步。著名发明家托马斯·爱迪生曾说:“我从来没有失败过。我只是发现了一万种行不通的方法。”<br />男:你可能是对的。我想我应该认识到自己的错误,并从中吸取教训,然后继续前进。<br />女:另外,记住一个成功的结局并不是唯一值得庆祝的事情。你需要认识到你为实现目标所取得的每一步进展。而且不管实现的目标有多小,都依然是个好消息。<br />男:[14]当我看到别人取得成功时,我总是感到沮丧,对自己的成就感到痛苦。我一直想和别人一样优秀,但我似乎永远都无法做到。<br />女:听着。如果你总是将自己与别人进行比较,那么你永远不会觉得自己优秀。[15]你唯一应该比较的人是你自己。当你把你现在的状态和起点比较一下,你就会发现你已经取得了进步,对吧?这就够了!<br />男:这真是个好建议。谢谢你。我已经感觉好多了。</p>\n<p> </p>\n<p>Single-sex education can have enormous benefits for female students. Numerous studies have shown that women who attend single-sex schools tend to have stronger self-confidence, better study habits and more ambitious career goals than women who attend coeducational schools. [16] Girls who graduate from single-sex schools are three times more likely to become engineers than those who attend coeducational schools. The reason is that all-girls schools encourage women to enter fields traditionally dominated by men, such as science, technology and engineering. In coeducational schools, girls are often expected to succeed only in the humanities or the arts. [17] Research has also shown that in coeducational settings, teachers are more likely to praise and give in-depth responses to a boy\'s comments in class. In contrast, they might only respond to a girl\'s comments with a nod. They are also more likely to encourage boys to work through problems on their own, while they tend to step in and help girls who struggle with a problem.<br />In an all-girls setting, girls are more likely to speak up frequently and make significant contributions to class than in a coeducational setting. Girls studying in a single-sex setting also earn higher scores on their College Board and Advanced Placement exams than girls who study in coeducational settings. [18]All girls schools tend to be smaller than coeducational schools, which means teachers will be able to tailor the materials to girl students\' personal learning styles and interest.</p>\n<p>对于女学生而言,单一性别教育有很多好处。大量研究表明,与男女同校就读的女生相比,就读于单一性别学校的女生往往更自信、拥有更好的学习习惯和更远大的职业目标。[16] 从单一性别学校毕业的女生成为工程师的可能性是从男女同校学校毕业的女生的三倍。其原因在于女子学校鼓励女生进入传统上由男生主导的领域,如科学、技术和工程领域。在男女同校的学校里,女生往往被期望仅在人文学科或艺术方面取得成功。[17]研究还表明,在男女同校环境中,老师们在课堂上更喜欢表扬男生,并对男生的评论给予深入的回应。相比之下,对于女生的评论,他们可能只会点点头以作回应。他们也更可能鼓励男生自己解决问题,但往往会介入并帮助那些遇到问题的女生。<br />与在男女同校的环境中相比,在全是女生的环境中女生更有可能频繁大胆地表达自己的观点,并对班级作出重要贡献。在单性别环境中学习的女生在大学理事会和大学预修课程中的考试分数也比在男女同校环境中学习的女生高。[18]所有的女子学校往往都比男女同校的学校小,这意味着老师们可以根据女生的个人学习风格和兴趣因材施教。</p>\n<p> </p>\n<p>[19]Today I found out that Seattle doesn\'t really get that much rain compared with most U.S. cities. In fact, Seattle ranks 44th among major U.S. cities in average annual rainfall. Cities that get more rainfall than Seattle include Huston, Memphis, Nashville, and pretty much every major city on the eastern coast, such as New York, Boston, and Miami. So, why does everyone think of Seattle as a rainy city? The primary root of this misconception lies in that Seattle has a relatively large number of days per year with rainfall compared with New York and Boston, which get an average of about 16% more rain per year than Seattle, but also average between them about 36 fewer days a year of rainfall. So it rains a lot less in Seattle. [20]And the rain is spread out over more days than those cities. This is why few locals in Seattle carry an umbrella generally. When it does rain, it tends to be a very light rain that isn\'t troublesome. It almost never really rains as most people think. On top of that, it never really storms in Seattle, either. Seattle gets an average of a mere 7 days a year with thunder. [21]So in short, if you like sunny but not too hot summers, mild winters but with lots of cloudy days, Seattle\'s the place to be. Anyway, if you visit Seattle, don\'t bring an umbrella. People will look at you, thinking you are funny.</p>\n<p>[19]今天我发现和大多数美国城市相比,西雅图并没有那么多雨。事实上,西雅图的年平均降雨量在美国主要城市中排第44位。降雨量超过西雅图的城市包括休斯顿、孟菲斯、纳什维尔,以及东部沿海区几乎所有的主要城市,比如纽约、波士顿和迈阿密。那么,为什么每个人都认为西雅图是一个多雨的城市呢?这种误解的主要根源在于,与纽约和波士顿相比,西雅图每年的降雨天数相对较多,纽约和波士顿的年平均降雨量比西雅图多大约16%,但平均每年降雨天数却比西雅图少大概36天。因此,西雅图降雨更少。[20]而且西雅图雨水蔓延的天数比那些城市多。这就是为什么在西雅图一般很少有当地人带着伞。西雅图真正下雨的时候,往往下的都是细雨,不会造成麻烦。西雅图几乎从没像大家所认为的那样下过雨。除此之外,西雅图也从未下过真正意义上的暴风雨。西雅图每年平均只有7天会打雷。[21]简言之,如果你喜欢晴朗但不太热的夏天,温和但多云的冬天,西雅图就是你的好去处。不管怎样,如果你去西雅图,就不要带伞。不然人们会看着你,觉得你很奇怪。</p>\n<p> </p>\n<p>After tough workout or a day full of physical activity, it\'s common to find your muscles aching, but where do these pains come from? [22]According to a German professor, the soreness comes from straining your muscles in an uncommon way, for example, jumping on a bicycle for a ride, because you haven\'t ridden in a long time. Soreness occurs since your leg muscles aren\'t used to that movement. When muscles perform an activity they aren\'t regularly exposed to, the tiny fibers that are inside them are being torn apart. As muscle soreness develops, the body has to work to repair the muscle tears, but this doesn\'t happen immediately. First, the body must realize the muscles are damaged. [23]When the body realizes the muscles are hurt, the response is to increase blood flow to the area and increase body heat. Damaged cells are then cleaned up and the body sends cells specially designed to break down the large muscle fiber fragments. Healing can take place after this. It takes about a day until these cells make it to your aching muscles. That\'s why there is most often a delay associated with muscle soreness. [24] Repair of damaged cells takes about two days, and afterwards the soreness disappears. [25]Unfortunately, there is little that can be done to relieve muscle soreness. Pain relieving creams don\'t work, but a hot shower, or warm bath can provide some relief.</p>\n<p>在剧烈运动或一整天的体力活动之后,通常你会发现自己肌肉酸痛,但是这些疼痛从何而来呢?[22]据一位德国教授称,这种酸痛源于以一种不寻常的方式拉伸肌肉,比如,骑自行车,因为你已经很久没有骑过了。因为你的腿部肌肉不习惯这种动作,所以会感到酸痛。当肌肉进行一项不经常接触的活动时,它们内部的微小纤维就会被撕裂。随着肌肉酸痛的发展,身体必须努力修复肌肉纤维的撕裂,但这种情况不会立即发生。首先,身体必须意识到肌肉受到了损伤。[23]当身体意识到肌肉受伤时,其反应是增加该部位的血流量和身体的热量。然后,受损细胞被清理干净,身体会输送专门用来分解大块肌肉纤维碎片的细胞。在此之后,开始愈合。这些细胞到达你酸痛的肌肉部位大概需要一天的时间。这就是为什么肌肉酸痛通常会持续一段时间。[24]受损细胞大概需要两天时间修复,随后酸痛才会消失。[25]遗憾的是,几乎没有什么方法可以减轻肌肉酸痛。缓解疼痛的药膏不起作用,但冲个热水澡或泡个热水澡可以起到一些缓解作用。</p>\n<p> </p>');
INSERT INTO `listening` VALUES (7, 'CET-4 2019-12 第2套', NULL, '大学英语2019年12月听力第二套题', '[{\"title\":\"What problem is Britain facing?\",\"op1\":\"The number of male nurses has gone down.\",\"op2\":\"There is discrimination against male nurses.\",\"op3\":\"There is a growing shortage of medical personnel.\",\"op4\":\"The number of nurses has dropped to a record low.\",\"answer\":\"A\"},{\"title\":\"What is the cause of the problem according to the UK Health Secretary?\",\"op1\":\"Working conditions.\",\"op2\":\"Educational system.\",\"op3\":\"Inadequate pay.\",\"op4\":\"Cultural bias. \",\"answer\":\"D\"},{\"title\":\"What does the news reports say about the Libyan man?\",\"op1\":\"He fell out of a lifeboat.\",\"op2\":\"He was almost drowned. \",\"op3\":\"He lost his way on a beach.\",\"op4\":\"He enjoyed swimming in the sea.\",\"answer\":\"B\"},{\"title\":\"What did Keith Porter say at an interview?\",\"op1\":\"The lifeboats patrol the area round the clock.\",\"op2\":\"The beach is a good place to watch the tide.\",\"op3\":\"The emergency services are efficient. \",\"op4\":\"The beach is a popular tourist resort.\",\"answer\":\"C\"},{\"title\":\"What does the news report say about the raccoon, a small cat-like animal?\",\"op1\":\"It climbed 25 storeys at one go.\",\"op2\":\"It broke into an office room.\",\"op3\":\"It escaped from a local zoo.\",\"op4\":\"It became an online star. \",\"answer\":\"D\"},{\"title\":\"What will the wildlife management company do with the captured raccoon?\",\"op1\":\"Release it into the wild. \",\"op2\":\"Return it to its owner.\",\"op3\":\"Send it back to the zoo.\",\"op4\":\"Give it a physical checkup.\",\"answer\":\"A\"},{\"title\":\"What did one online post say?\",\"op1\":\"A raccoon can perform acts no human can.\",\"op2\":\"A raccoon can climb much higher than a cat.\",\"op3\":\"The raccoon did something no politician could. \",\"op4\":\"The raccoon became as famous as some politicians.\",\"answer\":\"C\"},{\"title\":\"Why is the man making the phone call?\",\"op1\":\"To confirm an urgent appointment.\",\"op2\":\"To collect a package from the woman.\",\"op3\":\"To ask the woman to sign a document.\",\"op4\":\"To arrange the delivery of a package. \",\"answer\":\"D\"},{\"title\":\"Why can’t the woman meet the man today?\",\"op1\":\"She is doing shopping.\",\"op2\":\"She is visiting a friend.\",\"op3\":\"She is not at home. \",\"op4\":\"She is not feeling well.\",\"answer\":\"C\"},{\"title\":\"Why is the man unable to see the woman tomorrow?\",\"op1\":\"He will be off duty the whole day.\",\"op2\":\"He will be working somewhere else. \",\"op3\":\"He will have to have his car repaired.\",\"op4\":\"He will be too busy to spare any time.\",\"answer\":\"B\"},{\"title\":\"What should the woman do to receive her purchase?\",\"op1\":\"Sign her name. \",\"op2\":\"Confirm online. \",\"op3\":\"Pay a small fee.\",\"op4\":\"Show up in person.\",\"answer\":\"A\"}]', 1, '2021-04-04 19:45:51', '2021-05-07 17:15:36', NULL, '1617536749758.mp3', 4, '<div class=\"col-md-7 englishtop\">\n<div class=\"col-md-7 englishtop\">\n<div class=\"col-md-7 englishtop\"> </div>\n<div class=\"col-md-5 englishtop\">\n<div class=\"col-md-7 englishtop\">\n<p>The British government has called for more men to consider a career in nursing. [1] Figures show the number of male nurses has fallen in the last three years. Now, the number of men working in the nursing sector has reached a seven-year low. Numbers of male nurses increased between 2011 and 2014, and reached a peak of 7168. This figure has dropped to only 6924 in 2017.<br />[2] The UK Health Secretary said this is clearly a cultural problem, and probably one that exists in many parts of the world. But we can make efforts to change that now. We want to persuade males to think about career options of going into nursing. There is absolutely no reason why men can\'t go into this profession. The Health Secretary said that the government already has plans to attract a more varied workforce into nursing. She stated, “we are leading the way on workforce planning. We will become the first nation in Europe to publish a national health and care workforce plan.”</p>\n</div>\n<div class=\"col-md-5 englishtop\">\n<p>英国政府呼吁更多的男性考虑从事护理工作。[1] 数据显示,在过去三年里男护士的人数有所下降。现在,从事护理行业的男性人数已降至七年以来的最低水平。 2011年至2014年间,男护士人数有所增加,达到7168人的高峰水平。2017年,这一数字降至仅6924人。<br />[2] 英国卫生部长表示,这显然是一个文化问题,这个问题可能世界上许多地方都存在。但是我们现在可以努力改变这种状况。我们想说服男性考虑选择护理这个职业。完全没有理由说男性不能从事该职业。卫生部长表示,政府已经拟定计划来吸引更多样化的劳动力从事护理行业。她称:“我们在劳动力规划方面处于领先地位。我们将成为欧洲第一个发布国家医疗保健劳动力计划的国家。”</p>\n</div>\n<p> </p>\n</div>\n<p>[3] A man from Libya was enjoying a walk along the sands at Southport beach. When he was about half a mile out from the dock, he felt a bit tired. So he lay down and fell asleep, but the tide swept in quickly at the beach. And the man was shocked to wake up and find the tide had come in and completely surrounded him, cutting him off from the shore. Fortunately for him, the beach lifeguards were quickly on the scene to stop him from drowning. They acted professionally to ensure the man was comfortable until an ambulance arrived. He was then taken to hospital. He is now in a stable condition. [4] When interviewed, Keith Porter of the Southport beach said, “our beach is so flat that it\'s very common for the tide to come around the back of people and cut them off from the beach. Thankfully the emergency services have again worked well together to ensure a positive outcome and we wish the gentleman a speedy recovery. ”</p>\n</div>\n<div class=\"col-md-5 englishtop\">\n<p>[3] 一名来自利比亚的男子在绍斯波特海滩的沙滩上散步。从码头走了约半英里后,他感到有些累。于是他躺下睡着了,但浪潮迅速席卷了海滩。男子惊醒之后,发现浪潮已经涌过来并完全包围了他,将他和海岸分离开来。他很幸运,海滩救生员迅速赶到事发地,以防止他溺水身亡。在救护车到来之前,他们采取了专业的行动,确保该男子处于舒适的状态。随后,该男子被送往医院。他现在的情况很稳定。[4] 绍斯波特海滩的基思·波特在接受采访时说:“我们的海滩太平坦了,潮水从人们背后涌来,将他们跟海滩分离开来,这是很常见的事情。值得庆幸的是,紧急救援部门再次通力协作,确保没有意外发生,我们希望这位先生早日康复。”</p>\n<p> </p>\n</div>\n</div>\n<div class=\"col-md-5 englishtop\">\n<div class=\"col-md-7 englishtop\">\n<p>[5] A raccoon, a small cat-like animal climbed to the top of a 25-storey skyscraper early on Wednesday. It was captured after becoming an online star across the world.<br />At a little before 3:00 am, the animal made it to the roof of the building after it took a long break on a 17th floor window edge. At the top of the building, animal control officers put cat food in traps and captured the raccoon. [6] A private wildlife management company will release the animal into the wild.<br />The raccoon\'s upward journey began on Monday. The brown animal was spotted stuck on a narrow window edge of the office tower. On Tuesday, the raccoon slowly climbed the building. It reached the 23rd floor, and its legend continued to grow on social media with every floor it climbed. As it went up, people gathered on the sidewalk below to take photos and cheer for its safety. Online office workers posted photos and videos of the raccoon, resting on window edges and climbing up the building\'s concrete exterior. [7] One online post said that the raccoon has succeeded in uniting the country the way no politician could.</p>\n</div>\n<div class=\"col-md-5 englishtop\">\n<p>[5] 一只浣熊,一种长得像猫的小动物,于周三凌晨爬到25层高的摩天大楼的顶部。它在成为全球网络明星之后被捕获。<br />那只浣熊在17层的窗边休息了很久,之后,快到凌晨三点时它便爬到了楼顶。在楼顶,动物管理人员将猫食放在捕捉器中,然后捕获了浣熊。[6] 一家私营野生动物管理公司将把浣熊放生到野外。<br />浣熊从周一开始向上爬行。有人发现,这只棕色的浣熊被卡在办公楼狭窄的窗户边上。周二,浣熊慢慢爬上了大楼。它爬到了23楼。每爬一层楼,它的传奇故事就会在社交媒体上持续发酵。在它爬行的过程中,人们聚集在下面的人行道上拍照,并为它的安全欢呼喝彩。网络办公人员把浣熊在窗边休息然后沿着大楼的混凝土外墙攀爬的照片和视频公布到了网上。[7] 网上有一篇帖子说,浣熊以政客们无法做到的方式成功地让整个国家团结起来。</p>\n<p> </p>\n<div class=\"col-md-7 englishtop\">\n<p>W: [8] I have really amazing news. I just got a text message from my bank, saying my salary has been deposited in my account.<br />M: Getting paid is good. But I don\'t understand why you\'re so excited. It happens every month.<br />W: Well, I\'ve been working for a few years. In fact, I worked all through university, but I only had part-time jobs then. [8]So this is the first time I\'ve ever been paid for a month of full-time work.<br />M: Wow, then you must feel great. [9]I mean, it\'s been two decades, but I can still remember when I got my first real salary. I was happy for days. And I felt like it was a small fortune, even though it wasn\'t.<br />W: Yeah. I\'ve never earned so much money before. And there\'re so many things I\'d like to do with it. What did you do with your first pay?<br />M: [10] I bought a new suit for work and took my parents to a nice restaurant to celebrate. Maybe you could do the same.<br />W: I have enough professional clothes. And my parents are across the country, so seeing them is impossible. But some people from the office are members of a gym I want to join. And my university classmates are arranging a trip to visit our old campus, and I\'d love to go with them, but I can\'t afford both.<br />M: [11] If I were you, I\'d join the gym because it\'s a good way to stay healthy, and it might help you build a stronger relationship with your colleagues. And good relationships are key to a successful career.<br />W: [11] Hmm. You\'re right. Thanks for the advice. I\'m taking it.</p>\n</div>\n<div class=\"col-md-5 englishtop\">\n<p>女:[8] 我有个激动人心的好消息。我刚从银行收到一条短信,显示我的工资已经到账了。<br />男:发薪水当然很好了。但是我不明白你为什么这么兴奋。每个月都会发啊。<br />女:嗯,我已经工作了几年了。实际上,在整个大学期间我都在工作,但那时我只做兼职工作。[8]因此,这是我第一次拿一个月的全职工资。<br />男:哇,那你一定感觉棒极了。[9]我是说,虽然已经过去二十年了,但我仍然记得,当我拿到第一笔真正意义上的薪水时,我开心了好几天。我觉得那是一笔小小的财富,虽然实际上并没有多少钱。<br />女:是的。我以前从未赚过这么多钱。我想用这笔钱做很多事。你的第一笔薪水是怎么处置的?<br />男:[10]我买了一套工作时穿的新西装,并带我的父母去了一家不错的餐厅庆祝。也许你也可以这么做。<br />女:我的职业套装已经够多的了,而且我父母离我也特别远,所以,和他们相见是不可能的。但是办公室里有些同事是一家健身房的会员,我也想去这家健身房健身。另外,我的大学同学正在组织去参观我们之前的大学校园,我也很想和他们一起去,但是同时参加这两个活动我负担不起。<br />男:[11] 如果我是你,我会去健身房,因为这是保持健康的好方法,还可能有助于你与同事建立更牢固的关系。良好的人际关系是事业成功的关键。<br />女:[11] 嗯。你是对的。谢谢你的建议。我会采纳它的。</p>\n<div class=\"col-md-7 englishtop\">\n<p>W: What\'s going on with you lately? You seem so distracted. Like you aren\'t really listening to anything I say.<br />M: I know. I\'m sorry. [12]I can\'t seem to focus on anything, because I still haven\'t decided if I should accept the offer for that PhD program in London, or if I should take the job offer in New York.<br />W: Look, it\'s a tough decision, but you\'re running out of time, aren\'t you? I thought you said the company expected an answer by the end of the month.<br />M: Actually, it\'s the beginning of next month for the job, but the university needs a decision by the end of the week. So I have to act quickly.<br />W: [13]You definitely need advice for the important decision like this. So who have you talked to about it? What does your family think? And your advisor for your Master\'s program?<br />M: I\'ve asked their advice and that\'s part of the problem. [14]My parents want me to get the degree, but my advisor thinks it\'s time for me to get more work experience.<br />W: What do you mean by part of the problem? Oh, wait, it\'s your girlfriend, isn\'t it? You\'ve been dating since your first year of university, so that\'s six years now. She must have an opinion about all this. I mean isn\'t it time for you to think about getting married?<br />M: [15]Well, I do want to get married, but she thinks we need to wait until we\'ve launched our careers. Plus, she\'s not sure what she\'ll be doing next year. She\'s considering a job in England and one in Australia. And her parents are pushing for the latter.</p>\n</div>\n<div class=\"col-md-5 englishtop\">\n<p>女:你最近怎么了?看上去有些心不在焉。好像你根本没在听我说话。<br />男:我知道。对不起。[12]我似乎对什么事都不能集中注意力,因为我还没有决定是应该接受伦敦的博士学位的录取,还是应该接受纽约的工作邀请。<br />女:听我说,这是一个艰难的决定,但你已经没有多少时间了,不是吗?我想你说过公司希望在本月底前得到答复呢。<br />男:实际上,需要下个月初答复,但是大学那边需要我在本周末之前做好决定,所以我必须迅速做决定。<br />女:[13]像这样重要的决定,你一定要听取一下他人的建议。你都和谁谈过这件事呢?你家人是什么想法?你的硕导是什么建议呢?<br />男:我咨询了他们的建议,但这就是问题的一部分。[14]我的父母希望我获得学位,但是我的导师认为我是时候获取更多的工作经验了。<br />女:问题的一部分是什么意思?哦,等等,是说你女朋友,对吗?从大一开始,你们就一直在谈恋爱,到现在已经六年了。她肯定对这件事有自己的想法。我的意思是,你们是不是该考虑结婚了?<br />男:[15]嗯,我确实想结婚,但她认为我们需要等到开始自己的职业生涯后再结婚。另外,她不确定明年要做什么。她正在考虑到英格兰工作还是到澳大利亚工作。她的父母正催她去澳大利亚工作呢。</p>\n<p> </p>\n<div class=\"col-md-7 englishtop\">\n<p>[16] Analytical skills are our ability to understand and solve problems using information we have available. These skills are extremely important for our professional, social, and intellectual lives. What are the best ways to improve them? One way is to expand your worldview. Unfortunately, this takes time. Ultimately, it will help you better evaluate information and analyze different ideas and outcomes. Travelling is a great way to expand your worldview, although it can be expensive.<br />[17] An entertaining way of enhancing your analytical skills is to engage them by playing “brain games”. These are games that challenge you to think deeply and to develop your analytical skills. These games will get you used to thinking in a certain way. As a result, they will help improve your ability to think. However, opinions vary on whether video games are effective. The general consensus is that the best ones avoid mindless violence, and instead, focus on strategy and challenge us to solve problems and achieve broad goals.<br />[18] Joining a debate or reading club or group is also a good idea. This provides people with the opportunity to come together and discuss ideas, literature and problems. Groups like these will help you refine your analytical skills and enable you to express yourself better. Any social group that encourages free exchange of ideas and pursuit of knowledge is beneficial. It helps you to actively develop your analytical skills.</p>\n</div>\n<div class=\"col-md-5 englishtop\">\n<p>[16]分析技能是我们利用现有的信息去理解和解决问题的能力。这些技能对我们的职业、社交和精神生活都是极其重要的。提高分析技能的最好方法有哪些呢? 其中一种方法是拓宽你的世界观。遗憾的是,这需要花费时间。最终,它将帮助你更好地评估信息,以及更好地分析不同的想法和结果。旅行也是拓宽视野的一种极好的方法,尽管它可能会很贵。<br />[17]提高分析技能的一种有趣的方法是通过玩“益智游戏”参与其中。这些游戏挑战你深入思考的能力,培养你的分析技能。这些游戏会让你习惯以某种方式去思考。因此,它们将有助于提高你的思考能力。然而,对于电子游戏是否有效,众说纷纭。普遍的共识是,最好的游戏是避免盲目的暴力,而专注于策略,并且考验我们解决问题和实现广泛的目标的能力。<br />[18] 参加辩论、加入读书俱乐部或阅读小组也是个好主意。这给人们提供了一个聚在一起讨论想法、文学和问题的机会。这样的小组有助于你完善分析技能,让你更好地表达自己。任何鼓励自由交流观点和追求知识的社会团体都是有益的。它有助于你积极地发展你的分析技能。</p>\n<p> </p>\n<div class=\"col-md-7 englishtop\">\n<p>There\'s an endless amount of scientific data proving that dogs can develop strong bonds with their owners. People aren\'t kidding when they say they “love” their dog or their dog “loves” them. [19] But we\'re rather ignorant about the nature of the relationships that form between dogs.<br />In an effort to understand the matter further, I spoke with Dr. Marc Bekoff, a researcher and former professor of animal behavior. [20] The doctor\'s response to the question of whether or not dogs can fall in love like humans do was a straight “of course!” He went on to say that if love is defined as a long-term commitment—meaning dogs seek one another out when they\'re apart, they\'re happy when they\'re reunited, they protect one another, they feed one another, they raise their children together—[20]then, of course, dogs love each other.<br />Now our furry friends don\'t really experience “romantic” love, like in the movies, but they can form deep and lasting bonds with their fellow dogs as well as humans. [21] In fact, evidence shows that most dogs stay with one partner their whole lives. In actuality, love between dogs can be even more intimate than human relationships. When they interact, they aren\'t afraid to smell each other and will express themselves clearly and honestly. Once again, it seems we have a lot to learn from dogs.</p>\n</div>\n<div class=\"col-md-5 englishtop\">\n<p>有无数的科学数据证明:狗可以和它们的主人建立起牢固的关系。当人们说他们“爱”他们的狗或者他们的狗“爱”他们的时候,这些人不是在开玩笑。[19]但是,我们对狗和狗之间关系的本质却知之甚少。<br />为了进一步了解这个问题,我采访了马克·贝科夫博士,他是一名动物行为研究人员和前动物行为学教授。[20]当被问及狗狗是否能和人类一样坠入爱河时,博士直接回答:“当然!”他接着说,如果爱被定义为一种长期的承诺——这意味着狗狗们在分开的时候会互相寻找,团聚的时候会很开心,它们互相保护,互相喂食,一起抚养它们的幼崽—— [20]那么狗狗们当然就是彼此相爱的。<br />现在,我们的毛茸茸的朋友们并不像电影里演的那样真正去经历“浪漫的”爱情,但它们可以和它们的同伴以及人类建立深厚而持久的关系。[21]事实上,有证据表明,大多数狗终生都和一个伴侣在一起。实际上,狗和狗之间的爱甚至比人和人之间的关系还要亲密。当它们互动的时候,它们不会害怕去闻对方的味道,并且它们会清晰而真诚地表达自己。我再说一次,似乎有很多东西需要我们向狗狗们学习。</p>\n<div class=\"col-md-7 englishtop\">\n<p>A piece of history has been found thanks to a boy tripping on a rare, 1.2-million-year-old animal fossil. In November 2016, Jude Sparks, now 10, was on an outing with his family near their New Mexico home, [22] when he tripped over what he thought was a cow bone.<br />[23] Now, researchers at New Mexico State University are preserving this discovery, which was identified as an ancient elephant-like animal.<br />Kyle Sparks, father of Jude, said he let his son decide what to do with the fossil. So Jude reached out to Peter Houde, a professor at New Mexico State University, who had experience with the same type of fossil in the past.<br />The next day, Houde came out to see the fossil for himself. [24] Houde told ABC News that he was quite excited about the find. “It was fortunate that the family didn\'t try to dig up the fossil because that could destroy the specimen. They did the right thing by calling someone who would know what to do. It\'s great for the community, because now everybody can appreciate it,” he added.<br />Houde and his fellow faculty members dug up the fossil in late May. [25] They hope to return to the site with geologists for an additional search as there could be more fossils near the site. Jude and his family had been invited by the researchers to see the fossil being preserved at the university.</p>\n</div>\n<div class=\"col-md-5 englishtop\">\n<p>一个男孩在一块120万年的罕见动物化石上绊倒,由此揭开了一段历史。2016年11月,现年10岁的裘德·斯帕克斯和他的家人在新墨西哥州的家附近游玩,[22]突然,他被他当时认为是一块牛骨头的东西绊倒了。<br />[23]现在,新墨西哥州立大学的研究人员正在保护这一发现,他们认定那是一种类似大象的古代动物。<br />裘德的父亲凯尔·斯帕克斯说,他让儿子自己来决定如何处理这块化石。于是裘德联系了新墨西哥州立大学的教授彼得·霍德,他曾经接触过同一类型的化石。<br />第二天,霍德亲自来看这块化石。[24] 霍德告诉美国广播公司,他对这一发现感到非常兴奋。“幸运的是,这家人没有试图挖出这块化石,因为那样会破坏这一标本。他们给一个知道该怎么做的人打电话,这种做法是正确的。这对社区来说很好,因为现在每个人都能欣赏它。”他补充道。<br />霍德和他的同事们在五月底挖出了这块化石。[25]他们希望和地质学家一起回到现场做进一步的搜寻,因为在现场附近可能会有更多的化石。裘德和他的家人应研究人员之邀,到大学里参观了这块保存完好的化石。</p>\n<p> </p>\n<div class=\"col-md-7 englishtop\">\n<p>W: Hi, Emma speaking, who’s this?<br />M: Hi, Emma. I’m Paul from Hermes Delivery Service. [8]Here’s a package for you. Are you at home to collect it?<br />W: Oh, sorry, Paul. I am out at the moment. Can you put it in my mailbox?<br />M: I am afraid I can’t do that. Sorry. The package is too big and it needs a signature to confirm you have received it. So I would need to deliver it at the time when you’re in.<br />W: [9]Okay, well, I’m out all day today. But I should be in tomorrow morning before I go out for lunch. And then I’ll be at home again late in the afternoon. Will either of those times be convenient for you?<br />M: They are not, unfortunately. I’m sorry. [10]I won’t be in the area tomorrow, as I have some other deliveries to make on the other side of the town. I could come the day after, if that suits you.<br />W: Okay, yes, that should be fine. I have a friend coming round in the afternoon, but I’ll be at home, so the day after tomorrow will be great. Do I need to pay for the package?<br />M: No, you don’t. It says here that you paid for it when you ordered it online.<br />W: Oh, yes, I did. I got mixed up.<br />M: [11]So you just need to sign the form to say you’ve received it.<br />W: Okay, great. See you the day after tomorrow then.<br />M: Yes, see you then.</p>\n</div>\n<div class=\"col-md-5 englishtop\">\n<p>女:嗨,我是爱玛,您是哪位?<br />男:嗨,爱玛,我是来自爱马仕快递服务公司的保罗。[8]我这里有您的一个包裹。您现在能在家收货吗?<br />女:哦,对不起,保罗,我现在不在家。你能把它放在我的信箱里吗?<br />男:恐怕我放不了,很抱歉。包裹太大了,而且还需要您签名确认您已收到包裹。所以我需要您在家的时候给您递送包裹。<br />女:[9]好的,我今天一整天都在外面。但是明天上午出门吃午饭之前我都应该在家。然后我会在下午晚些时候回家。在这两个时间段你方便送包裹吗?<br />男:很遗憾,都不行。不好意思。[10]我明天不在这个区域,因为我在城市另一边还有其他一些包裹需要递送。如果您方便,我可以后天来。<br />女:好的,可以,后天应该没问题。后天下午我有一个朋友过来,但我会待在家里,所以后天是个不错的时间。我需要付包裹的钱吗?<br />男:不,不需要。包裹上面写着您在网上下单的时候已经付过钱了。<br />女:哦,是的,我付过钱了。我弄混了。<br />男:[11]所以您只需要在表格上签名,表示收到货了。<br />女:好的,太好了。那后天见。<br />男:好的,到时候见。</p>\n<p> </p>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>');
INSERT INTO `listening` VALUES (8, 'CET-6 2019-12 第1套', NULL, '大学英语2019年12月六级听力第一套题', '[{\"title\":\"What do we learn about the woman’s store?\",\"op1\":\"It focuses exclusively on jazz. \",\"op2\":\"It sponsors major jazz concerts.\",\"op3\":\"It has several branches in London.\",\"op4\":\"It displays albums by new music talents.\",\"answer\":\"A\"},{\"title\":\"What does the man say about Jazz music?\",\"op1\":\"It originated with cowboys.\",\"op2\":\"Its market has now shrunk. \",\"op3\":\"Its listeners are mostly young people.\",\"op4\":\"It remains as widespread as hip hop music.\",\"answer\":\"B\"},{\"title\":\"What does the woman say about Jazz?\",\"op1\":\"Its definition is varied and complicated. \",\"op2\":\"It is still going through experimentation.\",\"op3\":\"It is frequently accompanied by singing.\",\"op4\":\"Its style has remained largely unchanged.\",\"answer\":\"A\"},{\"title\":\"What should you do to appreciate different styles of Jazz according to the woman?\",\"op1\":\"Learn to play them.\",\"op2\":\"Take music lessons.\",\"op3\":\"Listen to them yourself. \",\"op4\":\"Consult jazz musicians.\",\"answer\":\"C\"},{\"title\":\"What did the woman do this morning?\",\"op1\":\"She paid her mortgage.\",\"op2\":\"She called on the man.\",\"op3\":\"She made a business plan.\",\"op4\":\"She went to the bank. \",\"answer\":\"D\"}]', 1, '2021-04-04 19:51:33', '2021-04-21 13:01:24', NULL, '1617537091552.mp3', 8, '<div class=\"col-md-7 englishtop\">\n<div class=\"col-md-7 englishtop\">\n<p>M: [5] How did it go at the bank this morning?<br />W: Not well. My proposal was rejected.<br />M: Really? But why?<br />W: [6] Bunch of reasons. For starters, they said my credit history was not good enough.<br />M: Do they say how you could improve that?<br />W: Yes. They said that after five more years of paying my mortgage, then I would become a more viable candidate for a business loan. But right now it\'s too risky for them to lend me money. They fear I will default on any business loan I\'m given.<br />M: Well, that doesn\'t sound fair. Your business idea is amazing. Did you show them your business plan? What did they say?<br />W: They didn\'t really articulate any position regarding the actual business plan. They simply looked at my credit history and determined it was not good enough. They said the bank has strict guidelines and requirements as to who they can lend money to. And I simply don\'t meet their financial threshold.<br />M: What if you asked for a smaller amount? [8] Maybe you could gather capital from other sources. Smaller loans from more lenders?<br />W: You don\'t get it. It doesn\'t matter the size of the loan I ask for, or the type of business I propose. That\'s all inconsequential. The first thing every bank will do is study how much money I have and how much debt I have before they decide whether or not to lend me any more money. [7] If I want to continue ahead with this dream of owning my own business, I have no other choice but to build up my own finances. I need around 20% more in personal savings and 50% less debt. That\'s all there is to it.<br />M: I see now. Well, it\'s a huge pity that they rejected your request, but don\'t lose hope. I still think that your idea is great and that you would turn it into a phenomenal success.</p>\n</div>\n<div class=\"col-md-5 englishtop\">\n<p>男:[5]今天上午去银行,事情进展如何?<br />女:不太好。我的申请被驳回了。<br />男:真的吗?但是为什么呢?<br />女:[6]有很多原因。首先,他们说我的信用记录不够好。<br />男:他们说你该如何改进了吗?<br />女:说了。他们说,在我还完五年的抵押贷款之后,才更可能有资格申请商业贷款。但是如果现在贷款给我,对他们来说风险太大了。他们担心我会无法偿还发放给我的商业贷款。<br />男:嗯,那听起来很不公平。你的创业想法令人赞叹。你给他们看你的商业计划书了吗?他们是怎么说的?<br />女:对于实际的商业计划,他们没有明确表达任何立场。他们只是看了看我的信用记录,认为我的信用记录不够好。他们表示,对于向谁放贷,银行有严格的准则和要求。而我连他们财务指标的初级要求都未满足。<br />男:如果你申请贷更少数额的钱呢?[8]也许你可以从其他渠道筹集资金。比如从更多的贷款机构那里获得小额贷款?<br />女:你没明白问题所在。这与我申请的贷款金额大小或提交的商业类型无关。这些都无关紧要。在他们决定是否放贷给我之前,每家银行首先要做的就是审查我有多少存款以及有多少债务。[7]如果我想继续实现自己创业的这个梦想,我别无选择,只能积累资产。我需要在个人储蓄账户上再存大约20%的存款,且债务要减少50%。这样就符合申请贷款的要求了。<br />男:我现在明白了。嗯,非常遗憾他们拒绝了你的请求,但不要失去希望。我仍然认为你的想法很棒,你能让它转化为巨大的成功。</p>\n</div>\n<p>M: Excuse me. Where\'s your rock music section?<br />W: Rock music? I\'m sorry, [1] we\'re a Jazz store. We don\'t have any rock and roll.<br />M: Oh, you only have Jazz music? Nothing else?<br />W: That\'s right. We\'re the only record store in London dedicated exclusively to Jazz. Actually, we\'re more than just a record store. We have a cafe and library upstairs and a ticket office down the hall where you can buy tickets to all the major Jazz concerts in the city. Also, we have our own studio next door, where we produce albums for up-and-coming artists. We are committed to fostering new music talent.<br />M: Wow! That\'s so cool. [2] I guess there\'s not much of a Jazz scene anymore, not like they used to be. But here you\'re trying to promote this great music genre.<br />W: Yes, indeed. Nowadays most people like to listen to pop and rock music. Hip hop music from America is also getting more and more popular. [3] So, as a result, there are fewer listeners of Jazz, which is a great shame because it\'s an incredibly rich genre. But that\'s not to say there isn\'t any good new Jazz music being made out there anymore, far from it. [2] It\'s just a much smaller market today.<br />M: So how would you define Jazz?<br />W: Well, interestingly enough, [3] there\'s no agreed-upon definition of Jazz. Indeed, there are many different styles of Jazz. Some have singing, but most don\'t. Some are electric and some aren\'t. Some contain live experimentation, but not always. While there\'s no simple definition for it, and while there are many different styles of Jazz, you simply know it when you hear it. [4] Honestly, the only way to know what Jazz is, is listen to it yourself. As a great trumpet player, Louis Armstrong said, “if you gotta ask, you\'ll never know.”</p>\n</div>\n<div class=\"col-md-5 englishtop\">\n<p>男:打扰一下。你们的摇滚乐(唱片)售卖区在哪?<br />女:摇滚乐?不好意思,[1]我们是一家爵士乐唱片店。我们店里没有摇滚乐唱片。<br />男:哦,你们这只有爵士乐唱片吗?没有其他的音乐唱片吗?<br />女:是的。我们是伦敦唯一一家爵士乐唱片专卖店。实际上,我们不仅仅是一家唱片店。我们楼上有咖啡馆和图书馆,而且在下面的大厅里有售票处,在那里你可以买到市里所有大型爵士音乐会的门票。另外,隔壁还有我们自己的工作室,我们在那里为有前途的艺术家们制作专辑。我们致力于培养新的音乐人才。<br />男:哇!这太酷了。[2]我想现在爵士乐的圈子已经不大了,不像它们过去那样。但你们还在努力推广这一重要的音乐流派。<br />女:是的,的确是这样。现在,大多数人喜欢听流行乐和摇滚乐。来自美国的嘻哈音乐也越来越受欢迎。[3]所以,结果就是,听爵士乐的人更少了,这真是太遗憾了,因为爵士乐是内容极其丰富的音乐流派。但这并不是说现在已经没有好的新爵士乐被创作出来,事实远非如此。[2]只是它现在的市场要小得多。<br />男:那么你会如何定义爵士乐?<br />女:嗯,足够有趣的是,[3]关于爵士乐,尚无大众一致认可的定义。事实上,爵士乐有很多不同的风格。有些伴随着歌唱,但大多数没有。有些有电音,有些则没有。有些包含现场实验,但也并非总是如此。虽然爵士乐没有简单的定义,并且尽管爵士乐有很多不同的风格,当你听到它的时候,就知道它是爵士乐。[4]说真的,鉴赏爵士乐的唯一方法就是亲自去听。正如伟大的小号手路易斯·阿姆斯特朗所说:“如果你只是问,你将永远不会知道。”</p>\n<p> </p>\n</div>');
INSERT INTO `listening` VALUES (9, 'CET-6 2019-12 第2套', NULL, '大学英语2019年12月六级听力第二套题', '[{\"title\":\"What is the woman’s profession?\",\"op1\":\"Magazine reporter.\",\"op2\":\"Fashion designer.\",\"op3\":\"Website designer.\",\"op4\":\"Features editor. \",\"answer\":\"D\"},{\"title\":\"What is one of the woman’s main responsibilities?\",\"op1\":\"Designing sports clothing.\",\"op2\":\"Consulting fashion experts.\",\"op3\":\"Answering daily emails. \",\"op4\":\"Interviewing job-seekers.\",\"answer\":\"C\"},{\"title\":\"What do many people think about the woman’s job?\",\"op1\":\"It is challenging.\",\"op2\":\"It is fascinatin\",\"op3\":\"It is tiresome.\",\"op4\":\"It is fashionable.\",\"answer\":\"B\"},{\"title\":\"What helped the woman to get her current position?\",\"op1\":\"Her persistence. \",\"op2\":\"Her experience.\",\"op3\":\"Her competence.\",\"op4\":\"Her confidence.\",\"answer\":\"A\"},{\"title\":\"What does the man think of the satire Frankie he recently watched?\",\"op1\":\"It is enjoyable. \",\"op2\":\"It is educational.\",\"op3\":\"It is divorced from real life. \",\"op4\":\"It is adapted from a drama.\",\"answer\":\"A\"},{\"title\":\"What does the man say is special about the satire Frankie?\",\"op1\":\"All the roles are played by famous actors and actresses.\",\"op2\":\"It is based on the real-life experiences of some celebrities.\",\"op3\":\"Its plots and events reveal a lot about Frankie’s actual life.\",\"op4\":\"It is written, directed, edited and produced by Frankie himself. \",\"answer\":\"D\"},{\"title\":\"What does the woman say she is going to do with the satire Frankie?\",\"op1\":\"Go to the theater and enjoy it.\",\"op2\":\"Recommend it to her friends.\",\"op3\":\"Watch it with the man.\",\"op4\":\"Download and watch it. \",\"answer\":\"D\"},{\"title\":\"What does the woman say about the comedy The Big Bang Theory?\",\"op1\":\"It has drawn criticisms from scientists.\",\"op2\":\"It has been showing for over a decade. \",\"op3\":\"It is a ridiculous piece of satire.\",\"op4\":\"It is against common sense.\",\"answer\":\"B\"},{\"title\":\"What does the speaker say about players of contact sports?\",\"op1\":\"They are likely to get hurt when moving too fast.\",\"op2\":\"They believe in team spirit.\",\"op3\":\"They need to keep moving to avoid getting hurt. \",\"op4\":\"They have to learn how to avoid body contact.\",\"answer\":\"C\"},{\"title\":\"What do longevity statistics reveal about the average person?\",\"op1\":\"They do not have many years to live after retirement. \",\"op2\":\"They tend to live longer with early retirement.\",\"op3\":\"They do not start enjoying life until full retirement.\",\"op4\":\"They keep themselves busy even after retirement.\",\"answer\":\"A\"}]', 1, '2021-04-04 19:53:08', '2021-05-07 17:13:43', NULL, '1617537158490.mp3', 8, '<div class=\"col-md-7 englishtop\">\n<p>M: Today our guest is Rosie Melinda, [1] who works as a features editor for a fashion magazine. Hi, Rosie. You\'re a features editor at one of the most widely-read women\'s magazines in the UK. What kind of responsibilities does that job entail?<br />W: We spend our days looking at ideas from journalists, writing copy for the magazine and website and editing. We do random things like asking people in the street questions and testing sports clothing. We also do less tangible things like understanding what our readers want. It\'s certainly varied and sometimes bizarre.<br />M: During your working day what kind of work might you typically do?<br />W: [2] My day mainly incorporates responding to emails, writing and editing stories and coming up with new feature ideas.<br />M: How does the job of features editor differ from that of fashion editor or other editorial positions?<br />W: The features team deals with articles such as careers, reports, confidence and confessions, everything except fashion and beauty.<br />M: [3] A lot of people believe that working at a magazine is a glamorous job. Is this an accurate representation of what you do?<br />W: I\'d say it\'s glamorous to an extent, but not in the way it\'s portrayed in films. We do have our moments such as interviewing celebrities and attending parties, which is a huge thrill. Ultimately though, we\'re the same as our readers, but working in a job we\'re all very lucky to have.<br />M: Did you have to overcome any difficulties to reach this point in your career? How did you manage to do this?<br />W: [4] I had to be really persistent and it was very hard work. After three years of working in a petrol station and doing unpaid work I still hadn\'t managed to get an entry level job. I was lucky that my last desperate attempt led to a job. I told myself that all experiences make you a better journalist in the long run and luckily, I was right.</p>\n</div>\n<div class=\"col-md-5 englishtop\">\n<p>男:今天我们的嘉宾是罗西·梅琳达,[1] 她是一家时尚杂志的专题编辑。你好,罗西。作为英国发行量最大的女性杂志之一的专题编辑,你做这份工作需要承担什么样的职责?<br />女:我们每天都在研究记者的想法,为杂志和网站撰写稿件,并进行编辑。我们会随机做一些事情,比如询问街上的行人一些问题,或者测试运动服装。我们也会做一些不那么明显的事情,比如了解读者的需求。需求当然是多种多样的,有时甚至很离奇。<br />男:在你的工作时间里,你通常做什么工作?<br />女:[2]我一天的工作主要是回复邮件,撰写和编辑故事,想一些新的专题构想。<br />男:专题编辑的工作与时尚编辑或其他编辑职位有什么不同呢?<br />女:我们这个专题团队负责处理职业、报告、信心和一些自白类的文章。几乎是除了时尚和美丽之外的所有类的文章。<br />男:[3]很多人认为杂志社的工作是一份富有魅力的工作。这是对你工作的准确描述吗?<br />女:我想说它在某种程度上是迷人的,但并不像电影里描绘的那样。我们确实有这样的时刻,比如采访名人和参加派对,这是令人兴奋的经历。但是最终,我们和我们的读者是一样的,不过拥有这份工作我们都觉得很幸运。<br />男:在你的职业生涯中,你必须克服一切困难才能达到目前这个阶段吗? 你是怎么做到的?<br />女:[4]我必须非常执着,这是一份非常辛苦的工作。我在加油站工作了三年,又做了一些没有报酬的工作之后,还是没有找到一份入门级的工作。我很幸运,最后一次孤注一掷的尝试终于找到了工作。我告诉自己,从长远来看,所有的经历都会让你成为一名更好的新闻工作者。幸运的是,我是对的。</p>\n<p> </p>\n<div class=\"col-md-7 englishtop\">\n<p>W: Are you watching any good shows these days?<br />M: Actually, yes. [5] I\'m watching a great satire called Frankie. I think you\'d like it.<br />W: Really? What\'s it about?<br />M: It\'s about a real guy named Frankie. He is a famous comedian in New York and the show is a mixture of comedy and drama loosely depicting his life.<br />W: I\'m sorry. Do you mean to say, it\'s a real-life series about a real person? It\'s non-fiction, is it?<br />M: No… Not really, no. It\'s fiction, as what happens in every episode is made up. However, the lead role is a comedian by the name of Frankie, and he plays himself. So Frankie in both real life and in the TV show lives in New York City, is a comic, is divorced, and has two little daughters. All those things are true, but aside from him, all his friends and family are played by actors. And the plots and the events that take place are also invented.<br />W: Oh, I think I see now. That sounds like a very original concept.<br />M: Yes, it is. In fact, [6] the whole show is written, directed, edited and produced by him, and [5] is very funny and has won many awards.<br />W: That\'s cool. [7] I will try to download it. I\'m watching a comedy called The Big Bang Theory. It\'s a huge hit around the world.<br />M: Oh, yes. I\'ve heard of it, but never actually watched it.<br />W: Well, then you should check it out. It\'s also very funny. It\'s about four male scientists and a female waitress. The men are very socially awkward but very bright. And this is contrasted by the lady\'s social skills and common sense. [8] The show has been running for over ten years, and some of the actors are practically global superstars. Now that they are such famous celebrities.</p>\n</div>\n<div class=\"col-md-5 englishtop\">\n<p>女:这些天你在看什么好节目吗?<br />男:事实上,是的。[5]我正在看一部超棒的讽刺剧,名叫《弗兰基》。我想你会喜欢的。<br />女:真的吗? 它是关于什么的?<br />男:是关于一个现实中名叫弗兰基的男人的。他是纽约一位著名的喜剧演员,这部剧是喜剧和戏剧的结合体,大致描绘了他的生活。<br />女:抱歉,你的意思是说,这是一部关于真人的真实系列剧吗? 它是非小说类的纪实片,对吧?<br />男:不,不,也不完全是。它是虚构的,因为每一集发生的事情都是虚构的。但是,主角是一位名叫弗兰基的喜剧演员,他就扮演他自己。所以呢,弗兰基在现实生活中和电视节目中都住在纽约,是一位喜剧演员,离过婚,有两个年纪尚小的女儿。所有这些事情都是真的,但除了他,他所有的朋友和家人都是由演员扮演的。所有的情节和发生的事件也都是虚构的。<br />女:哦,我想我现在明白了。听起来很有创意。<br />男:是的,确实是。事实上,[6]整部剧都是由他编写、导演、剪辑和制作的,[5]而且非常有趣,也赢得了许多奖项。<br />女:太酷了。[7]我会试着下载它。我在看喜剧片《生活大爆炸》。这部剧在全世界大受欢迎。<br />男:噢,是的。我听说过,但还没真正看过呢。<br />女:哦,那你应该去看看。这部剧也很有趣。它讲的是四个男科学家和一个女服务员的故事。这些男人很不善交际,但他们都非常聪明。这就和女士的社交技巧和常识形成了鲜明对比。[8]这部剧已经连续更新了十多年,其中一些演员实际上已经成了全球超级明星。现在他们都是名人了。</p>\n<p> </p>\n</div>\n</div>');
INSERT INTO `listening` VALUES (10, 'CET-4 2019-6 第1套', NULL, '大学英语2019年6月四级听力第一套题', '[{\"title\":\"What did the boy from central California do according to the report?\",\"op1\":\"He set a record by swimming to and from an island. \",\"op2\":\"He celebrated the ninth birthday on a small island.\",\"op3\":\"He visited a prison located on a faraway island.\",\"op4\":\"He swam around an island near San Francisco.\",\"answer\":\"A\"},{\"title\":\"What did the father do to encourage his son?\",\"op1\":\"He doubled the reward. \",\"op2\":\"He cheered him on all the way.\",\"op3\":\"He set him an example.\",\"op4\":\"He had the event covered on TV.\",\"answer\":\"A\"},{\"title\":\"What was the purpose of the annual leave bonus in China?\",\"op1\":\"To end the one-child policy.\",\"op2\":\"To encourage late marriage. \",\"op3\":\"To increase working efficiency.\",\"op4\":\"To give people more time to travel.\",\"answer\":\"B\"},{\"title\":\"What do we learn about the new regulations?\",\"op1\":\"They will not be welcomed by young people.\",\"op2\":\"They will help to popularize early marriage.\",\"op3\":\"They will boost China’s economic growth.\",\"op4\":\"They will not come into immediate effect. \",\"answer\":\"D\"},{\"title\":\"What is the news report mainly about?\",\"op1\":\"Cleaning service in great demand all over the world.\",\"op2\":\"Two ladies giving up well-paid jobs to do cleaning.\",\"op3\":\"A new company to clean up the mess after partie\",\"op4\":\"Cleaners gainfully employed at nights and weekends.\",\"answer\":\"C\"},{\"title\":\"What is a common problem with a house party?\",\"op1\":\"It takes a lot of time to prepare.\",\"op2\":\"It leaves the house in a mess\",\"op3\":\"It makes party goers exhausted.\",\"op4\":\"It creates noise and misconduct.\",\"answer\":\"B\"},{\"title\":\"What are Rebecca Foley and Catherine Arthurs planning to do?\",\"op1\":\"Hire an Australian lawyer.\",\"op2\":\"Visit the US and Canada.\",\"op3\":\"Settle a legal dispute.\",\"op4\":\"Expand their business. \",\"answer\":\"D\"},{\"title\":\"What did the man do yesterday?\",\"op1\":\"He had a driving lesson.\",\"op2\":\"He got his driver’s license.\",\"op3\":\"He took the driver’s theory exam. \",\"op4\":\"He passed the driver’s road test.\",\"answer\":\"C\"},{\"title\":\"Why did he fail the exam the first time?\",\"op1\":\"He was not well prepared. \",\"op2\":\"He did not get to the exam in time.\",\"op3\":\"He was not used to the test format.\",\"op4\":\"He did not follow the test procedure.\",\"answer\":\"A\"},{\"title\":\"What does the man say about his driving lessons?\",\"op1\":\"They are tough.\",\"op2\":\"They are costly. \",\"op3\":\"They are helpful.\",\"op4\":\"They are too short.\",\"answer\":\"B\"}]', 1, '2021-04-04 19:56:02', '2021-05-07 17:13:30', NULL, '1617537332306.mp3', 4, '<div class=\"col-md-7 englishtop\">\n<div class=\"col-md-7 englishtop\">\n<div class=\"col-md-7 englishtop\">\n<p>[1]A nine-year-old central California boy braved strong currents and cold water to swim from San Francisco to Alcatraz Island and back. A California television station in Fresno reported Tuesday that James Savage set a record as the youngest swimmer to make the journey to the former prison. The TV station reported that by completing the swim the fourth-grade student from Los Banos broke a record previously held by a ten-year-old boy. James said that waves in the San Francisco Bay hitting him in the face 30 minutes into his swim made him want to give up. His father said he had offered his son 100 dollars as a reward. [2]To encourage his struggling son he doubled it to 200 dollars. James pushed forward, making it to Alcatraz Island and back in a little more than two hours. Alcatraz is over a mile from the mainland.</p>\n</div>\n<div class=\"col-md-5 englishtop\">\n<p>[1]一位来自加利福尼亚中部地区的9岁男孩勇敢地面对湍急的水流和冰冷的海水,在旧金山和阿尔卡特拉斯岛(曾设有恶魔岛联邦监狱)之间游了一个来回。位于夫勒斯诺市的一家加州电视台周二报道,詹姆斯·萨维奇创造了一项纪录,成为游向这座曾是监狱的地方的最年轻的游泳者。据该电视台报道,这位来自洛斯巴诺斯(加州的一个城市)的四年级学生游完全程,打破了此前由一名10岁男孩保持的纪录。詹姆斯说,在他游了30分钟后,旧金山湾的海浪击打着他的脸,让他想要放弃。他父亲说,他给了儿子100美元作为奖励。[2]为了鼓励努力坚持游完全程的儿子,他把奖励提高了一倍,增加到了200美元。詹姆斯不断超越自我,在两个小时多一点的时间里,成功地游到了阿尔卡特拉斯岛,又顺利地游了回来。阿尔卡特拉斯岛距离大陆一英里多。</p>\n<p> </p>\n</div>\n<p>On the first of January, new regulations will come into effect which eliminate an annual leave bonus for people who put off marrying until the age of 23 for women and 25 for men, the South China Morning Post reports. [3]The holiday bonus was designed to encourage young people to delay getting married in line with China’s one-child policy. But with that policy now being abolished, this holiday incentive is no longer necessary, the government says. In Shanghai, a young couple at a marriage registration office told the paper that they decided to register their marriage as soon as possible to take advantage of the existing policy because an extra holiday was a big deal for them. In Beijing, one registration office had about 300 couples seeking to get married the day after the changes were announced, rather than the usual number of between 70 and 80. [4]But one lawyer tells the paper that the changes still have to be adopted by local governments and these procedures take time. So people who are rushing to register for marriage can relax.</p>\n</div>\n<div class=\"col-md-5 englishtop\">\n<p>据《南华早报》报道,一项新规定将取消女性推迟到23岁结婚、男性推迟到25岁结婚的人的年假福利,这项新规定将于明年1月1日起生效。[3]这一假期福利旨在鼓励年轻人晚婚,以契合中国的独生子女政策。但政府称,随着这项政策现在被废除,这一假期激励措施不再有必要。 在上海,婚姻登记处的一对年轻情侣向《南华早报》表示,他们决定尽快登记结婚以利用现有政策的福利,因为额外的假期对他们来说意义非凡。在北京,政策变化宣布之后第二天,大约有300对情侣到一所婚姻登记处登记结婚,而往常每天来登记的只有70到80对情侣。[4]不过,一名律师对该报表示,这一政策变化有待地方政府实施,实施过程需要时间。所以,那些急于登记结婚的人可以放松下来。</p>\n<p> </p>\n</div>\n</div>\n<div class=\"col-md-5 englishtop\">\n<div class=\"col-md-7 englishtop\">\n<p>[6]Everyone loves a good house party, but the cleaning-up the next morning isn’t as enjoyable. Now, however, a New Zealand-based startup company aims to bring messy homes—and even splitting headaches—back to normal. The properly-named startup “Morning-After Maids”, was launched about a month ago in Auckland by roommates Rebecca Foley and Catherine Arthurs. Aside from cleaning-up, the two will also cook breakfast, and even get coffee and painkillers for recovering merrymakers. Although they are both gainfully employed, they fit cleaning jobs into their nights and weekends, which is when their service is in most demand any way. Besides being flooded with requests from across the country, Foley and Arthurs have also received the requests from the U.S. and Canada to provide services there. [7]They are reportedly meeting with lawyers to see how best to take the business forward.</p>\n</div>\n<div class=\"col-md-5 englishtop\">\n<p>[6]人人都喜欢美好的家庭派对,但是第二天早上的清理工作却不那么令人愉快。不过,现有一家位于新西兰的创业公司旨在帮助人们把凌乱不堪(甚至令人抓狂)的家恢复原状。这家名字恰如其分、叫做“次日女佣”的创业公司于一个月前在奥克兰创立,创始人是瑞贝卡·弗雷和凯瑟琳·阿瑟斯,她们是室友。除了清理工作之外,她们两人还会为客户做早餐,甚至为了让在派对中纵情欢乐的人恢复精力,两人还会为他们买咖啡和头痛药。尽管她们提供服务会获得报酬,不过她们还是把清理工作安排在晚上和周末,也就是业务最集中的时间。除了接到国内的大量订单之外,弗雷和阿瑟斯还收到了去美国和加拿大提供服务的邀请。[7]据报道,她们两人正在跟律师会面,商讨如何更好地推进其业务。</p>\n</div>\n<p> </p>\n</div>');
INSERT INTO `listening` VALUES (11, '测试听力', NULL, '123', '[{\"title\":\"1\",\"op1\":\"aaa\",\"op2\":\"asdas\",\"op3\":\"bbb\",\"op4\":\"ccc\",\"answer\":\"A\"}]', 1, '2021-04-20 00:17:19', '2021-04-20 00:20:52', '2021-04-20 00:21:02', '1618849011539.mp3', 4, '<p>测试</p>');
INSERT INTO `listening` VALUES (12, '测试听力', NULL, '测试', '[{\"title\":\"1\",\"op1\":\"A\",\"op2\":\"B\",\"op3\":\"C\",\"op4\":\"D\",\"answer\":\"A\"}]', 1, '2021-04-20 16:45:03', '2021-04-20 16:45:25', '2021-04-20 16:45:48', '1618908282503.mp3', 8, '<p>ces </p>\n<p> </p>');
INSERT INTO `listening` VALUES (13, 'ceshi', '1618917192012.png', '123', '[{\"title\":\"123\",\"op1\":\"123\",\"op2\":\"123\",\"op3\":\"123\",\"op4\":\"123\",\"answer\":\"A\"}]', 1, '2021-04-20 19:13:38', '2021-04-20 19:13:38', '2021-04-20 19:16:33', '1618917207899.mp3', 4, '<p>123123</p>');
INSERT INTO `listening` VALUES (14, 'CET-4 2020-12 第1套', NULL, '大学英语2020年12月四级听力第一套题', '[{\"title\":\"What is reported in the news?\",\"op1\":\"A deadly fish has been spotted in the Mediterranean waters.\",\"op2\":\"Invasive species are driving away certain native species.\",\"op3\":\"The Mediterranean is a natural habitat of Devil Firefish.\",\"op4\":\"Many people have been attacked by Devil Firefish.\",\"answer\":\"A\"},{\"title\":\"What is the environmentalists\' concern about the spread of Devil Firefish in the Mediterranean?\",\"op1\":\"It could add to greenhouse emissions.\",\"op2\":\"It could disrupt the food chains there.\",\"op3\":\"It could pose a threat to other marine species.\",\"op4\":\"It could badly pollute the surrounding waters.\",\"answer\":\"C\"},{\"title\":\"What will happen on World Car-Free Day in Paris?\",\"op1\":\"Cars will not be allowed to enter the city.\",\"op2\":\"About half of its city center will be closed to cars.\",\"op3\":\"Buses will be the only vehicles allowed on its streets.\",\"op4\":\"Pedestrians will have free access to the city.\",\"answer\":\"B\"},{\"title\":\"What motivated the mayor of Paris to promote the first World Car-Free Day in her city?\",\"op1\":\"The rising air pollution in Paris.\",\"op2\":\"The worsening global warming.\",\"op3\":\"The ever-growing cost of petrol.\",\"op4\":\"The unbearable traffic noise.\",\"answer\":\"A\"},{\"title\":\"What happened to the Philippine fisherman one day?\",\"op1\":\"Many of his possessions were stolen.\",\"op2\":\"His house was burnt down in a fire. \",\"op3\":\"His fishing boat got wrecked on a rock.\",\"op4\":\"His good luck charm sank into the sea.\",\"answer\":\"B\"},{\"title\":\"What was the fisherman forced to do?\",\"op1\":\"Change his fishing locations.\",\"op2\":\"Find a job in a travel agency.\",\"op3\":\"Spend a few nights on a small island.\",\"op4\":\"Sell the pearl he had kept for years. \",\"answer\":\"D\"},{\"title\":\"What did the fisherman learn from the tourist agent?\",\"op1\":\"His pearl could be displayed in a museum.\",\"op2\":\"His monstrous pearl was extremely valuable. \",\"op3\":\"The largest pearl in the world weighs 14 pounds.\",\"op4\":\"A New York museum has the world\'s biggest pearl.\",\"answer\":\"B\"},{\"title\":\"What do we learn about the woman\'s company?\",\"op1\":\"It boasts a fairly long history.\",\"op2\":\"It produces construction materials.\",\"op3\":\"It has 75 offices around the world.\",\"op4\":\"It has over 50 business partners.\",\"answer\":\"A\"},{\"title\":\"What does the man say about his own company?\",\"op1\":\"It has about 50 employees.\",\"op2\":\"It was started by his father.\",\"op3\":\"It is a family business. \",\"op4\":\"It is over 100 years old.\",\"answer\":\"C\"},{\"title\":\"What is the main problem with the man\'s company?\",\"op1\":\"Shortage of raw material supply.\",\"op2\":\"Legal disputes in many countries.\",\"op3\":\"Outdated product design.\",\"op4\":\"Loss of competitive edge.\",\"answer\":\"D\"},{\"title\":\"What does the woman suggest doing to help the man\'s company?\",\"op1\":\"Conducting a financial analysis for it. \",\"op2\":\"Providing training for its staff members.\",\"op3\":\"Seeking new ways to increase its exports.\",\"op4\":\"Introducing innovative marketing strategies.\",\"answer\":\"A\"},{\"title\":\"What do we learn about the woman from the conversation?\",\"op1\":\"She is a real expert at house decorations.\",\"op2\":\"She is well informed about the design business.\",\"op3\":\"She is attracted by the color of the sitting room.\",\"op4\":\"She is really impressed by the man\'s house. \",\"answer\":\"D\"},{\"title\":\"Where did the man get his ideas for the project?\",\"op1\":\"From his younger brother Greg.\",\"op2\":\"From home design magazines. \",\"op3\":\"From a construction businessman.\",\"op4\":\"From a professional interior designer.\",\"answer\":\"B\"},{\"title\":\"What did the man say about the project he recently completed?\",\"op1\":\"The effort was worthwhile.\",\"op2\":\"The style was fashionable.\",\"op3\":\"The cost was affordable. \",\"op4\":\"The effect was unexpected.\",\"answer\":\"C\"},{\"title\":\"Why does the woman invite the man to her house next week?\",\"op1\":\"She\'d like him to talk with Jonathan about a new project.\",\"op2\":\"She wants him to share his renovation experience with her. \",\"op3\":\"She wants to discuss the house decoration budget with him.\",\"op4\":\"She\'d like to show him around her newly-renovated house.\",\"answer\":\"B\"},{\"title\":\"What does England spend an annual 3 million pounds on?\",\"op1\":\"Providing routine care for small children.\",\"op2\":\"Paying hospital bills for emergency cases.\",\"op3\":\"Doing research on ear, nose and throat diseases.\",\"op4\":\"Removing objects from patients\' noses and ears. \",\"answer\":\"D\"},{\"title\":\"What do we learn from England\'s Hospital Episode Statistics?\",\"op1\":\"Many children like to smell things they find or play with.\",\"op2\":\"Many children like to put foreign objects in their mouths.\",\"op3\":\"Five- to nine-year-olds are the most likely to put things in their ears. \",\"op4\":\"Children aged one to four are often more curious than older children.\",\"answer\":\"C\"}]', 1, '2021-04-21 10:51:47', '2021-05-07 17:12:06', NULL, '1618973418582.mp3', 4, '<div class=\"col-md-7 englishtop\">\n<p>[1] A poisonous fish which has a sting strong enough to kill a human is invading the Mediterranean, warn scientists. The International Union for the Conservation of Nature has raised concerns after the poisonous fish was spotted in the waters around Turkey, Cyprus and the eastern Mediterranean. Native to the South Pacific and Indian Ocean, the potentially deadly fish has poisonous hooks—a painful sting capable of killing people. Although fatalities are rare, the stings can cause extreme pain and stop people breathing. The fish, often known as Devil Firefish, is a highly invasive species. [2] And environmentalists fear its arrival could endanger other types of marine life. After being spotted in the Mediterranean, a marine scientist says the fish is spreading, and that\'s a cause for concern.</p>\n</div>\n<div class=\"col-md-5 englishtop\">\n<p>[1]科学家警告称,一种有毒的鱼正在入侵地中海,这种鱼带有毒刺,足以毒死一个人。在土耳其、塞浦路斯和地中海东部海域发现这种有毒鱼类后,国际自然保护联盟对此表示担忧。这种可能致命的鱼原产于南太平洋和印度洋,它有带毒的钩子——一种令人痛苦的毒刺,能杀死人。虽然这种鱼导致死亡的情况很罕见,但被毒刺蜇后会让人感到剧痛不已,并让人窒息。这种鱼,通常被称为恶魔火鱼,是一种具有高度入侵性的物种。[2]环保人士担心,它的到来会危及其他种类的海洋生物。在地中海发现这种鱼后,一位海洋科学家表示,这种鱼正在扩散,这是引起担忧的一个原因。</p>\n<p> </p>\n<div class=\"col-md-7 englishtop\">\n<p>[3] Almost half the center of Paris will be accessible only by foot or bicycle this Sunday to mark World Car-Free Day. [4] This is in response to rising air pollution that made Paris the most polluted city in the world for a brief time. Mayor Anne Hidalgo promoted the first World Car-Free Day last year.<br />Hidalgo also has supported a “Paris Breathes” day. On the first Sunday of every month, Paris clears traffic from eight lanes of the main road. About 400 miles of streets will be closed to cars. It is expected to bring significant reduction in pollution levels. Last year\'s car-free day showed a 40% drop in pollution levels in some parts of the city, according to an independent air pollution monitor, reports The Guardian, and sound levels dropped by 50% in the city\'s center.</p>\n</div>\n<div class=\"col-md-5 englishtop\">\n<p>[3]本周日,为了纪念世界无车日,巴黎市中心近一半地区将只能步行或骑自行车进入。[4]空气污染的加重曾使巴黎短暂地成为世界上污染最严重的城市,因此该举措是对这一问题做出的回应。安妮·伊达尔戈市长去年发起了首个世界无车日。<br />伊达尔戈还支持“巴黎呼吸日”。每个月的第一个周日,巴黎都会疏散主干道八个车道上的车辆。大约400英里的街道将禁止汽车通行。预计这将显著降低污染水平。《卫报》报道称,根据一家独立的空气污染监测机构的数据,去年的(世界)无车日显示,该市一些地区的污染水平下降了40%,而市中心的噪音水平下降了50%。</p>\n<p> </p>\n<div class=\"col-md-7 englishtop\">\n<p>[5] A Philippine fisherman was feeling down on his luck when a house fire forced him to clear out his possessions and change locations. Then a good luck charm that he had kept under his bed changed his life. The unidentified man had fished out a giant pearl from the ocean when his anchor got stuck on the rock while sailing off a coastal island in the Philippines ten years ago. [6] When he was forced to sell it, [7] the shocked tourist agent at Puerto Princesa told him that the 77-pound giant pearl that he had kept hidden in his rundown wooden house was the biggest pearl in the world, which was valued at £ 76 million.<br />The Pearl of Allah, which is currently on display in a New York museum, only weighs 14 pounds. That is five times smaller than the pearl that the fisherman just handed in. The monstrous pearl measured at 1 foot wide and 2.2 feet long, is going to be verified by local experts and international authorities before hopefully going on display to attract more tourists in the little town.</p>\n</div>\n<div class=\"col-md-5 englishtop\">\n<p>[5]一位菲律宾渔民时运不济,一场房屋火灾迫使他清理了自己的财物并更换了住处。后来,他藏在床下的一个幸运符改变了他的生活。10年前,当这名身份不明的男子在菲律宾一个沿海岛屿附近航行,而船锚卡在了岩石上时,他从海里捞出了一颗巨大的珍珠。[6]当他被迫出售那颗珍珠时,[7]普林塞萨港的一个旅行代理商震惊地告诉他,他藏在破旧木屋里的那颗77磅重的巨型珍珠是世界上最大的珍珠,价值7600万英镑。<br />目前在纽约一家博物馆展出的“真主之珠”只有14磅重。也就是渔民刚刚交上来的那颗珍珠的五分之一那么大。这颗大得吓人的珍珠宽1英尺,长2.2英尺,将经过当地专家和国际权威机构的验证,然后有望进行展示,以吸引更多的游客到小镇来。</p>\n<p> </p>\n<div class=\"col-md-7 englishtop\">\n<p>W: Mr. Smith, it\'s a pleasure meeting you!<br />M: Nice to meet you, too. What can I do for you?<br />W: Well, I\'m here to show you what our firm can do for you. Astro Consultants has branches in over fifty countries, offering different business services. [8] We\'re a global company with 75 years of history. And our clients include some of the world\'s largest companies.<br />M: Thank you, Mrs. Houston. I know Astro Consultants is a famous company. But you said you would show me what you could do for me. Well, what exactly can your firm do for my company?<br />W: We advise businesses on all matters, from market analysis to legal issues. Anything a business like yours could need, our firm offers expert advice. Could I ask you, Mr. Smith, to tell me a little about your company and the challenges you face? That way, I could better respond as to how we can help you.<br />M: OK, sure. [9] This is a family business started by my grandfather in 1950. We employ just over 100 people. We manufacture an export stone for buildings and other constructions. Our clients usually want a special kind of stone cut in a special design. And that\'s what we do in our factory. [10] Our main challenge is that our national currency is rising, and we\'re losing competitive advantage to stone producers in India.<br />W: I see. That\'s very interesting. [11] I will suggest that you let us first conduct a financial analysis of your company, together with the analysis of your competitors in India. That way, we could offer the best advice on different ways forward for you.</p>\n</div>\n<div class=\"col-md-5 englishtop\">\n<p>女:史密斯先生,很高兴见到您!<br />男:我也很高兴见到您。我能为您做些什么?<br />女:嗯,我来这里是向您介绍我们公司能为您提供的服务。阿斯特罗咨询公司在50多个国家设立了分公司,提供不同的业务服务。[8]我们是一家拥有75年历史的全球化公司。我们的客户包括一些世界上最大的公司。<br />男:谢谢您,休斯敦女士。我知道阿斯特罗咨询公司是一家很有名的公司。但您刚才说要向我介绍贵公司能为我提供哪些服务。那么,具体是哪些服务呢?<br />女:我们就所有问题向公司提供咨询,从市场分析到法律事务,一应俱全。像你们公司这样的企业可能需要咨询的任何事情,我们公司都可以提供专业的建议。史密斯先生,可以请您稍微介绍一下贵公司的情况以及贵公司所面临的挑战吗?这样的话,我就能更好地说明我们该如何帮助您。<br />男:好的,当然可以。[9]这家公司是我的祖父在1950年创立的家族企业。我们仅雇用了100多名员工。我们生产出口用于修建楼房和其他建筑的石材。我们的客户通常需要一种特殊的石头,并且石头需要被切割成特殊的工艺形状。这就是我们公司的业务。[10]我们的主要挑战是,国家货币正在升值,而且,对于印度的石材商我们正在失去竞争优势。<br />女:我明白了。这种情况非常令人关注。[11]我建议您让我们先对贵公司的财务进行分析,同时分析贵公司在印度的竞争对手。这样,我们就可以从不同的角度为您提供最好的建议了。</p>\n<p> </p>\n<div class=\"col-md-7 englishtop\">\n<p>W: Wow, congratulations, Simon! The place looks absolutely amazing!<br />M: Really? You think so?<br />W: Of course. I love it. It looks like you had a professional interior designer. But you didn\'t, did you?<br />M: No. I did it all by myself with a little help from my brother, Greg. He\'s actually in the construction business, which was really helpful.<br />W: [12] I, honestly, I\'m impressed! I know I can probably repaint the walls in my house over a weekend or something, but not a full renovation. Where did you get your ideas? I wouldn\'t know where to start.<br />M: [13] Well, for a while now, I\'ve been regularly buying home design magazines. Every now and then, I\'d saved the pictures I liked. Believe it or not, I had a full notebook of magazine pages. Since my overall style was quite minimal, I thought and hoped a whole renovation wouldn\'t be too difficult. And sure enough, with Greg\'s help, it was very achievable.<br />W: Was it very expensive? I have imagined a project like this could be.<br />M: [14] Actually, it was surprisingly affordable. I managed to sell a lot of my old furniture and put that extra money towards the new material. Greg was also able to get some discount materials from a recent project he was working on as well.<br />W: Great! If you don\'t mind, I\'d like to pick your brain a bit more. Jonathan and I are thinking of renovating our sitting room, not the whole house, not yet anyway. [15] And we\'d love to get some inspiration from your experience. Are you free to come over for a coffee early next week?</p>\n</div>\n<div class=\"col-md-5 englishtop\">\n<p>女:哇,祝贺你,西蒙!这地方看起来太棒了!<br />男:真的吗?你真的这样认为吗?<br />女:当然。我十分喜欢。它看起来就像是你请了专业的室内设计师设计出来的。但你没有找设计师,对吧?<br />男:没错。我亲力亲为,我弟弟格雷格也帮了点忙。实际上,他是从事建筑行业的,这可帮了大忙。<br />女:[12]说实话,我真的非常喜欢!我知道可能我可以在周末或其他时间将我家的墙也重新粉刷一遍,但不是完全翻新。你的灵感是从哪里来的?我不知道从哪儿开始。<br />男:[13]哦,有那么一段时间,我一直定期购买家居设计杂志。我有时会保存一些我喜欢的图片。信不信由你,我从杂志上剪下来的图片贴满了整整一个笔记本呢。由于我的整体设计风格非常简约,我想整个装修过程不会太困难,我同时也希望如此。果然,在格雷格的帮助下,这是很容易实现的。<br />女:装修费很贵吧?我想过这样一个工程可能会很贵。<br />男:[14]实际上,装修费非常容易承担。我设法卖掉了很多旧家具,把额外得到的钱用于购买新材料。格雷格也能从最近在做的一个项目中买一些打折的材料。<br />女:太棒了!如果你不介意的话,我想再向你请教一下。乔纳森和我正在考虑翻新我们的客厅,至少现在我们还不考虑翻新整栋房子。[15]我们希望从你的经验中得到一些启发。下周早些时候你有空过来喝杯咖啡吗?</p>\n<p> </p>\n<div class=\"col-md-7 englishtop\">\n<p>[16] Removing foreign objects from ears and noses costs England almost 3 million pounds a year, a study suggests. Children were responsible for the vast majority of cases — 95% of objects removed from noses and 85% from ears.<br />Every year, an average of 1,218 nose and 2,479 ear removals took place between 2010 and 2016. According to England\'s Hospital Episode Statistics, [17] children aged one to four were the most likely to need help from doctors for a foreign object in their nose. Five- to nine-year-olds come to the hospital with something in their ears the most.<br />Jewelry items accounted for up to 40% of cases in both the ears and noses of children. Paper and plastic toys were the items removed next most from noses. Cotton buds and pencils were also found in ears. [18] According to the study, the occurrence of foreign objects in children is generally attributed to curiosity.<br />Children have an impulse to explore their noses and ears. This results in the accidental entry of foreign objects. Any ear, nose and throat surgeon has many weird stories about wonderful objects found in the noses and ears of children and adults. Batteries can pose a particular danger. In all cases, prevention is better than cure. This is why many toys contain warnings about small parts. Recognizing problems early and seeking medical attention is important.</p>\n</div>\n<div class=\"col-md-5 englishtop\">\n<p>[16]一项研究表明,从耳朵和鼻子里移除异物每年要花费英国近300万英镑。绝大多数都是儿童病例,95%的异物是从鼻子里移除,而85%的异物是从耳朵中移除的。<br />从2010年到2016年,每年平均有1218个异物从鼻子中移除,有2479个异物从耳朵里移除。根据英国医院病例统计,[17] 1到4岁的儿童,最有可能因为鼻子里有异物而需要得到医生的帮助。5到9岁的儿童因为耳朵中有异物而来医院的情况最多。<br />在这些病例中,珠宝类物品出现在孩子的耳朵和鼻子中所占的比例高达40%。纸和塑料玩具是从鼻子里移除的异物中第二多的。棉签和铅笔也在耳朵中被发现过。[18]根据这项研究,儿童体内出现异物通常归因于好奇。<br />孩子们有探索自己鼻子和耳朵的冲动。这就导致了异物的意外进入。任何耳鼻喉外科医生都有许多关于在儿童和成年人的鼻子和耳朵里发现奇妙物品的奇怪故事。电池会造成特别的危险。在所有情况下,预防胜于治疗。这就是为什么许多玩具包装盒上面都有关于小部件的警告。及早发现问题并寻求医疗帮助很重要。 整体预测</p>\n<p> </p>\n<div class=\"col-md-7 englishtop\">\n<p>Good morning. [21] Today, I would like to talk to you about my charity ReBicycle. But before that, let me introduce someone. This is Leila Rahimi. She was so scared when she first moved to New Zealand that she struggled to leave the house and would spend days working up the courage to walk to the supermarket for basic supplies.<br />After a few months of being quite down and unhappy, she was invited to join a local bike club. [19] At this time, ReBicycle got involved and gave Leila a second-hand bicycle. Within weeks, her depression had begun to ease as she cycled. The bicycle totally changed her life, giving her hope and a true feeling of freedom.<br />To date, ReBicycle has donated more than 200 bikes to those in need. [20] And it is now expanding bike-riding lessons as demand soars. With a bike, newcomers here can travel farther, but for almost no cost. The three hours a day they used to spend walking to and from English language lessons has been reduced to just one hour.<br />[21] Our bike-riding lessons are so successful that we are urgently looking for more volunteers. Learning to ride a bike is almost always more difficult for an adult, and this can take days and weeks rather than hours. So, if any of you have some free time during the weekend, please come join us at ReBicycle and make a difference in someone\'s life.</p>\n</div>\n<div class=\"col-md-5 englishtop\">\n<p>早上好。[21]今天,我想和大家谈谈我的慈善机构ReBicycle。但在那之前,让我先介绍一个人。这位是莱拉·拉希米。刚搬到新西兰的时候,她感到非常害怕,以至于很难走出家门,会花好几天时间才鼓起勇气去超市买一些基本用品。<br />经历了几个月的消沉和不开心,她受邀加入了当地的一个自行车俱乐部。[19]这时,ReBicycle也参与进来,给了莱拉一辆二手自行车。在几周内,随着她进行骑行活动,她的抑郁情绪开始缓解。自行车彻底改变了她的生活,给了她希望和一种真正的自由感。<br />到目前为止,ReBicycle已经向那些有需要的人捐赠了200多辆自行车。[20]现在,随着需求猛增,慈善机构正在增加其骑行课程。有了自行车,新来的人可以去更远的地方,却几乎不用花钱。过去,他们每天来回要花3个小时步行去上英语课,现在(有了自行车)已经减少到只需1个小时。<br />[21]我们的自行车骑行课程非常成功,所以我们迫切需要寻找更多的志愿者。对一个成年人来说,学习骑自行车通常总是更困难一些,可能需要花费几天或几周,而不是几个小时。所以,如果你们当中的任何一个人在周末有空闲时间,请加入我们ReBicycle,让别人的生活变得不同。</p>\n<p> </p>\n<div class=\"col-md-7 englishtop\">\n<p>Thanks to the International Space Station, we know quite a bit about the effects of low gravity on the human body, but NASA scientists want to learn more. [22] To that end, they have been studying how other species deal with low gravity, specifically focusing on mice. The results are both interesting and humorous. The scientists first sent some mice in a specially designed cage to the International Space Station. The cage allowed them to study the behavior of the mice remotely from Earth via video. As you\'ll notice in the video, [23] the mice definitely seem uncomfortable at the beginning of the experiment. They move around clumsily, drifting within the small confines of the cage, and do their best to figure out which way is up, but without success.<br />However, it\'s not long before the mice begin to catch on. They adapt remarkably well to their new environment and even use the lack of gravity to their advantage as they push themselves around the cage.<br />That\'s when things really get wild. [24] The 11th day of the experiment shows the mice are not just dealing with the gravity change, but actually seem to be enjoying it. Several of the mice are observed running around the cage walls.<br />[25] The scientists wanted to see whether the mice would continue doing the same kinds of activities they were observed doing on Earth. The study showed that the mice kept much of the routines intact, including cleaning themselves and eating when hungry.</p>\n</div>\n<div class=\"col-md-5 englishtop\">\n<p>多亏了国际空间站,我们了解了很多关于低重力对人体的影响,但是美国宇航局的科学家们想要了解更多。[22]为此,他们一直在研究其他物种是如何应对低重力环境的,特别是在老鼠身上。结果既有趣,又充满幽默。科学家们首先把一些老鼠装进一个特别设计的笼子里并送到国际空间站。这个笼子使得他们能够通过视频从地球上远程研究老鼠的行为。正如你将在视频中注意到的,[23]在实验开始的时候,老鼠看起来显然很不舒服。它们在笼子狭小的空间里笨拙地移动,悬浮在空中,并且竭力想知道哪条路是向上的,却无济于事。<br />然而,老鼠很快就明白过来。它们很好地适应了新环境,甚至充分利用失重的优势推动自己在笼子里打转。<br />那才是事情真正变得疯狂的时候。[24]实验的第11天表明,老鼠们不仅在应对重力变化,而且实际上似乎很享受。科学家们观察到有几只老鼠沿着笼子的四壁跑来跑去。<br />[25]科学家们想看看这些老鼠是否会继续做人们在地球上观察到它们所做的那些活动。研究表明,老鼠的日常活动基本保持不变,包括清洁自己和饥饿时进食。</p>\n<p> </p>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>');
INSERT INTO `listening` VALUES (16, '测试', NULL, '123', '[{\"title\":\"AAAAA\",\"op1\":\"A\",\"op2\":\"B\",\"op3\":\"C\",\"op4\":\"D\",\"answer\":\"A\"}]', 0, '2021-05-07 17:56:41', '2021-05-07 17:56:47', '2021-05-07 17:56:51', '1620381387326.mp3', 4, '<p>解析</p>');
INSERT INTO `listening` VALUES (17, '测试听力', NULL, '测试', '[{\"title\":\"AAAA\",\"op1\":\"A\",\"op2\":\"B\",\"op3\":\"C\",\"op4\":\"D\",\"answer\":\"A\"}]', 1, '2021-05-08 16:21:38', '2021-05-08 16:21:38', NULL, '1620462086869.mp3', 17, '<p>测试</p>');
INSERT INTO `listening` VALUES (15, '测试', NULL, '测试', '[{\"title\":\"题目111111\",\"op1\":\"A\",\"op2\":\"B\",\"op3\":\"C\",\"op4\":\"D\",\"answer\":\"A\"}]', 0, '2021-04-21 14:27:49', '2021-04-21 14:28:33', '2021-04-21 14:28:41', '1618986449684.mp3', 4, '<p>解释</p>');
-- ----------------------------
-- Table structure for user_article_collection
-- ----------------------------
DROP TABLE IF EXISTS `user_article_collection`;
CREATE TABLE `user_article_collection` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`web_user_id` bigint(20) NOT NULL COMMENT '用户id',
`article_id` bigint(20) NOT NULL COMMENT '文章id',
`created_at` datetime(0) NULL DEFAULT NULL,
`updated_at` datetime(0) NULL DEFAULT NULL,
`deleted_at` datetime(0) NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = MyISAM AUTO_INCREMENT = 18 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Fixed;
-- ----------------------------
-- Records of user_article_collection
-- ----------------------------
INSERT INTO `user_article_collection` VALUES (1, 8, 18, '2021-03-27 23:08:33', NULL, '2021-03-27 23:23:19');
INSERT INTO `user_article_collection` VALUES (2, 8, 18, '2021-03-27 23:43:34', '2021-03-27 23:43:34', '2021-03-28 15:59:30');
INSERT INTO `user_article_collection` VALUES (3, 8, 18, '2021-03-28 16:39:40', '2021-03-28 16:39:40', '2021-03-28 16:40:01');
INSERT INTO `user_article_collection` VALUES (4, 8, 18, '2021-03-28 16:40:08', '2021-03-28 16:40:08', '2021-04-17 16:50:57');
INSERT INTO `user_article_collection` VALUES (5, 8, 20, '2021-04-10 17:29:08', '2021-04-10 17:29:08', '2021-04-17 16:50:58');
INSERT INTO `user_article_collection` VALUES (6, 8, 21, '2021-04-10 17:29:12', '2021-04-10 17:29:12', '2021-04-17 16:50:58');
INSERT INTO `user_article_collection` VALUES (7, 8, 22, '2021-04-10 17:29:16', '2021-04-10 17:29:16', '2021-04-17 16:50:58');
INSERT INTO `user_article_collection` VALUES (8, 8, 23, '2021-04-10 17:29:19', '2021-04-10 17:29:19', '2021-04-17 16:50:59');
INSERT INTO `user_article_collection` VALUES (9, 8, 26, '2021-04-10 17:29:23', '2021-04-10 17:29:23', '2021-04-17 16:50:59');
INSERT INTO `user_article_collection` VALUES (10, 8, 24, '2021-04-10 17:29:28', '2021-04-10 17:29:28', '2021-04-17 16:50:59');
INSERT INTO `user_article_collection` VALUES (11, 8, 25, '2021-04-10 17:29:39', '2021-04-10 17:29:39', '2021-04-17 16:50:59');
INSERT INTO `user_article_collection` VALUES (12, 9, 29, '2021-04-18 18:39:15', '2021-04-18 18:39:15', NULL);
INSERT INTO `user_article_collection` VALUES (13, 10, 18, '2021-04-18 19:40:13', '2021-04-18 19:40:13', NULL);
INSERT INTO `user_article_collection` VALUES (14, 8, 18, '2021-04-20 11:06:16', '2021-04-20 11:06:16', NULL);
INSERT INTO `user_article_collection` VALUES (15, 8, 23, '2021-04-21 14:18:39', '2021-04-21 14:18:39', NULL);
INSERT INTO `user_article_collection` VALUES (16, 9, 45, '2021-05-08 16:30:16', '2021-05-08 16:30:16', NULL);
INSERT INTO `user_article_collection` VALUES (17, 10, 45, '2021-05-08 16:42:32', '2021-05-08 16:42:32', NULL);
-- ----------------------------
-- Table structure for user_listening_collection
-- ----------------------------
DROP TABLE IF EXISTS `user_listening_collection`;
CREATE TABLE `user_listening_collection` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`web_user_id` bigint(20) NOT NULL COMMENT '用户id',
`listening_id` bigint(20) NOT NULL COMMENT '听力练习id',
`created_at` datetime(0) NULL DEFAULT NULL,
`updated_at` datetime(0) NULL DEFAULT NULL,
`deleted_at` datetime(0) NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = MyISAM AUTO_INCREMENT = 16 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Fixed;
-- ----------------------------
-- Records of user_listening_collection
-- ----------------------------
INSERT INTO `user_listening_collection` VALUES (1, 8, 2, '2021-03-27 23:08:44', NULL, '2021-03-27 23:23:40');
INSERT INTO `user_listening_collection` VALUES (2, 8, 2, '2021-03-27 23:43:53', '2021-03-27 23:43:53', '2021-03-28 15:53:15');
INSERT INTO `user_listening_collection` VALUES (3, 8, 3, '2021-03-27 23:43:58', '2021-03-27 23:43:58', '2021-03-28 15:52:14');
INSERT INTO `user_listening_collection` VALUES (4, 8, 4, '2021-03-27 23:47:34', '2021-03-27 23:47:34', '2021-03-28 15:51:56');
INSERT INTO `user_listening_collection` VALUES (5, 8, 3, '2021-03-28 15:56:13', '2021-03-28 15:56:15', '2021-03-28 15:59:42');
INSERT INTO `user_listening_collection` VALUES (6, 8, 4, '2021-03-28 15:56:19', '2021-03-28 15:56:22', '2021-03-28 15:59:23');
INSERT INTO `user_listening_collection` VALUES (7, 8, 2, '2021-03-31 21:02:41', '2021-03-31 21:02:41', '2021-04-10 15:38:57');
INSERT INTO `user_listening_collection` VALUES (8, 8, 3, '2021-03-31 21:03:01', '2021-03-31 21:03:01', '2021-04-04 17:54:47');
INSERT INTO `user_listening_collection` VALUES (9, 8, 6, '2021-04-10 21:41:18', '2021-04-10 21:41:18', '2021-04-17 16:51:00');
INSERT INTO `user_listening_collection` VALUES (10, 9, 6, '2021-04-18 18:39:39', '2021-04-18 18:39:39', NULL);
INSERT INTO `user_listening_collection` VALUES (11, 8, 9, '2021-04-20 11:06:09', '2021-04-20 11:06:09', NULL);
INSERT INTO `user_listening_collection` VALUES (12, 8, 14, '2021-04-21 14:19:34', '2021-04-21 14:19:34', '2021-04-21 14:21:11');
INSERT INTO `user_listening_collection` VALUES (13, 8, 15, '2021-04-21 14:28:01', '2021-04-21 14:28:01', '2021-04-21 14:28:41');
INSERT INTO `user_listening_collection` VALUES (14, 8, 14, '2021-05-07 17:07:16', '2021-05-07 17:07:16', NULL);
INSERT INTO `user_listening_collection` VALUES (15, 9, 17, '2021-05-08 16:30:56', '2021-05-08 16:30:56', '2021-05-08 16:31:41');
-- ----------------------------
-- Table structure for visit
-- ----------------------------
DROP TABLE IF EXISTS `visit`;
CREATE TABLE `visit` (
`id` int(30) NOT NULL,
`count` int(30) NOT NULL COMMENT '网站访问数',
`created_at` datetime(0) NOT NULL,
`updated_at` datetime(0) NOT NULL,
`deleted_at` datetime(0) NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = MyISAM CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Fixed;
-- ----------------------------
-- Records of visit
-- ----------------------------
INSERT INTO `visit` VALUES (1, 132, '2021-04-20 20:45:47', '2021-05-08 17:34:37', NULL);
-- ----------------------------