-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdb_xtu_sys.sql
1096 lines (1058 loc) · 427 KB
/
db_xtu_sys.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
Navicat MySQL Data Transfer
Source Server : one
Source Server Version : 50556
Source Host : localhost:3306
Source Database : db_xtu_sys
Target Server Type : MYSQL
Target Server Version : 50556
File Encoding : 65001
Date: 2020-06-10 14:48:41
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `academy`
-- ----------------------------
DROP TABLE IF EXISTS `academy`;
CREATE TABLE `academy` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`academyName` varchar(128) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of academy
-- ----------------------------
INSERT INTO `academy` VALUES ('2', '公共管理学院');
INSERT INTO `academy` VALUES ('3', '文学与新闻学院');
INSERT INTO `academy` VALUES ('4', '碧泉书院·哲学与历史文化学院');
INSERT INTO `academy` VALUES ('5', '商学院');
INSERT INTO `academy` VALUES ('6', '法学院 知识产权学院');
INSERT INTO `academy` VALUES ('7', '信用风险管理学院');
INSERT INTO `academy` VALUES ('8', '马克思主义学院');
INSERT INTO `academy` VALUES ('9', '外国语学院');
INSERT INTO `academy` VALUES ('10', '数学与计算科学学院');
INSERT INTO `academy` VALUES ('11', '物理与光电工程学院');
INSERT INTO `academy` VALUES ('12', '材料科学与工程学院');
INSERT INTO `academy` VALUES ('14', '机械工程学院');
INSERT INTO `academy` VALUES ('15', '信息工程学院');
INSERT INTO `academy` VALUES ('16', '土木工程与力学学院');
INSERT INTO `academy` VALUES ('17', '环境与资源学院');
INSERT INTO `academy` VALUES ('18', '艺术学院');
INSERT INTO `academy` VALUES ('19', '国际交流学院');
-- ----------------------------
-- Table structure for `authority`
-- ----------------------------
DROP TABLE IF EXISTS `authority`;
CREATE TABLE `authority` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`roleId` int(11) NOT NULL,
`menuId` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `roleId` (`roleId`),
KEY `menuId` (`menuId`),
CONSTRAINT `authority_ibfk_1` FOREIGN KEY (`roleId`) REFERENCES `role` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=582 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of authority
-- ----------------------------
INSERT INTO `authority` VALUES ('148', '2', '35');
INSERT INTO `authority` VALUES ('149', '2', '36');
INSERT INTO `authority` VALUES ('150', '2', '25');
INSERT INTO `authority` VALUES ('151', '2', '1');
INSERT INTO `authority` VALUES ('152', '2', '14');
INSERT INTO `authority` VALUES ('153', '2', '15');
INSERT INTO `authority` VALUES ('524', '1', '1');
INSERT INTO `authority` VALUES ('525', '1', '5');
INSERT INTO `authority` VALUES ('526', '1', '17');
INSERT INTO `authority` VALUES ('527', '1', '18');
INSERT INTO `authority` VALUES ('528', '1', '19');
INSERT INTO `authority` VALUES ('529', '1', '20');
INSERT INTO `authority` VALUES ('530', '1', '13');
INSERT INTO `authority` VALUES ('531', '1', '21');
INSERT INTO `authority` VALUES ('532', '1', '22');
INSERT INTO `authority` VALUES ('533', '1', '23');
INSERT INTO `authority` VALUES ('534', '1', '35');
INSERT INTO `authority` VALUES ('535', '1', '36');
INSERT INTO `authority` VALUES ('536', '1', '14');
INSERT INTO `authority` VALUES ('537', '1', '15');
INSERT INTO `authority` VALUES ('538', '1', '24');
INSERT INTO `authority` VALUES ('539', '1', '25');
INSERT INTO `authority` VALUES ('540', '1', '26');
INSERT INTO `authority` VALUES ('541', '1', '31');
INSERT INTO `authority` VALUES ('542', '1', '32');
INSERT INTO `authority` VALUES ('543', '1', '33');
INSERT INTO `authority` VALUES ('544', '1', '34');
INSERT INTO `authority` VALUES ('545', '1', '37');
INSERT INTO `authority` VALUES ('546', '1', '38');
INSERT INTO `authority` VALUES ('547', '1', '39');
INSERT INTO `authority` VALUES ('548', '1', '40');
INSERT INTO `authority` VALUES ('549', '1', '41');
INSERT INTO `authority` VALUES ('550', '1', '42');
INSERT INTO `authority` VALUES ('551', '1', '43');
INSERT INTO `authority` VALUES ('552', '1', '44');
INSERT INTO `authority` VALUES ('553', '1', '45');
INSERT INTO `authority` VALUES ('554', '1', '46');
INSERT INTO `authority` VALUES ('555', '1', '49');
INSERT INTO `authority` VALUES ('556', '1', '51');
INSERT INTO `authority` VALUES ('557', '1', '54');
INSERT INTO `authority` VALUES ('558', '1', '57');
INSERT INTO `authority` VALUES ('559', '1', '55');
INSERT INTO `authority` VALUES ('560', '1', '59');
INSERT INTO `authority` VALUES ('561', '1', '61');
INSERT INTO `authority` VALUES ('562', '1', '77');
INSERT INTO `authority` VALUES ('563', '1', '62');
INSERT INTO `authority` VALUES ('564', '1', '63');
INSERT INTO `authority` VALUES ('565', '1', '66');
INSERT INTO `authority` VALUES ('566', '1', '67');
INSERT INTO `authority` VALUES ('567', '1', '68');
INSERT INTO `authority` VALUES ('568', '1', '64');
INSERT INTO `authority` VALUES ('569', '1', '69');
INSERT INTO `authority` VALUES ('570', '1', '70');
INSERT INTO `authority` VALUES ('571', '1', '71');
INSERT INTO `authority` VALUES ('572', '1', '65');
INSERT INTO `authority` VALUES ('573', '1', '72');
INSERT INTO `authority` VALUES ('574', '1', '73');
INSERT INTO `authority` VALUES ('575', '1', '74');
INSERT INTO `authority` VALUES ('576', '1', '75');
INSERT INTO `authority` VALUES ('577', '1', '76');
INSERT INTO `authority` VALUES ('578', '1', '81');
INSERT INTO `authority` VALUES ('579', '1', '78');
INSERT INTO `authority` VALUES ('580', '1', '79');
INSERT INTO `authority` VALUES ('581', '1', '80');
-- ----------------------------
-- Table structure for `c3p0testtable`
-- ----------------------------
DROP TABLE IF EXISTS `c3p0testtable`;
CREATE TABLE `c3p0testtable` (
`a` char(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of c3p0testtable
-- ----------------------------
-- ----------------------------
-- Table structure for `comment`
-- ----------------------------
DROP TABLE IF EXISTS `comment`;
CREATE TABLE `comment` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`userId` int(11) NOT NULL,
`newsId` int(11) NOT NULL,
`nickname` varchar(128) NOT NULL,
`content` varchar(512) NOT NULL,
`createTime` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `newsId` (`newsId`),
KEY `comment_ibfk_2` (`nickname`),
CONSTRAINT `comment_ibfk_1` FOREIGN KEY (`newsId`) REFERENCES `news` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of comment
-- ----------------------------
INSERT INTO `comment` VALUES ('1', '17', '18', '测试用户2', '111', '2020-04-02 22:10:01');
INSERT INTO `comment` VALUES ('2', '17', '17', '测试用户2', '111', '2020-04-02 22:11:08');
INSERT INTO `comment` VALUES ('3', '21', '19', '忘尘1111111', '121', '2020-04-04 17:19:00');
INSERT INTO `comment` VALUES ('4', '21', '19', '忘尘', '111', '2020-04-15 11:19:24');
INSERT INTO `comment` VALUES ('5', '21', '19', '忘尘', '111', '2020-04-15 11:19:25');
INSERT INTO `comment` VALUES ('6', '21', '19', '忘尘', '111', '2020-04-15 11:19:26');
INSERT INTO `comment` VALUES ('7', '21', '19', '忘尘', '111', '2020-04-15 11:19:27');
INSERT INTO `comment` VALUES ('8', '21', '19', '忘尘', '111', '2020-04-15 11:19:28');
INSERT INTO `comment` VALUES ('9', '21', '19', '忘尘', '111', '2020-04-15 11:19:29');
INSERT INTO `comment` VALUES ('10', '21', '19', '忘尘', '111', '2020-04-15 11:19:31');
INSERT INTO `comment` VALUES ('11', '21', '18', '忘尘', '111', '2020-04-15 11:53:50');
INSERT INTO `comment` VALUES ('12', '21', '18', '忘尘', '111', '2020-04-15 11:53:52');
INSERT INTO `comment` VALUES ('13', '21', '18', '忘尘', '111', '2020-04-15 11:53:53');
INSERT INTO `comment` VALUES ('14', '21', '18', '忘尘', '111', '2020-04-15 11:53:54');
INSERT INTO `comment` VALUES ('15', '21', '18', '忘尘', '111', '2020-04-15 11:53:56');
INSERT INTO `comment` VALUES ('16', '21', '18', '忘尘', '111', '2020-04-15 11:53:57');
-- ----------------------------
-- Table structure for `department`
-- ----------------------------
DROP TABLE IF EXISTS `department`;
CREATE TABLE `department` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`academyId` int(11) NOT NULL,
`departmentName` varchar(128) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of department
-- ----------------------------
INSERT INTO `department` VALUES ('1', '2', '信息管理系');
INSERT INTO `department` VALUES ('4', '2', '电子政务系');
INSERT INTO `department` VALUES ('5', '2', '知识资源管理系');
INSERT INTO `department` VALUES ('6', '2', '政治学与行政管理系');
INSERT INTO `department` VALUES ('8', '5', '经济学系');
INSERT INTO `department` VALUES ('9', '5', '国际贸易系');
INSERT INTO `department` VALUES ('10', '5', '财政金融系');
INSERT INTO `department` VALUES ('11', '5', '财务管理系');
INSERT INTO `department` VALUES ('12', '5', '工商管理系');
INSERT INTO `department` VALUES ('13', '5', '会计学系');
INSERT INTO `department` VALUES ('14', '5', '管理科学与工程系');
INSERT INTO `department` VALUES ('15', '5', '旅游与酒店管理系');
INSERT INTO `department` VALUES ('16', '5', '人力资源管理系');
-- ----------------------------
-- Table structure for `log`
-- ----------------------------
DROP TABLE IF EXISTS `log`;
CREATE TABLE `log` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`content` varchar(255) NOT NULL,
`createTime` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=573 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of log
-- ----------------------------
INSERT INTO `log` VALUES ('13', '用户名为admin的用户登录时输入验证码错误!', '2018-12-16 18:17:30');
INSERT INTO `log` VALUES ('14', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2018-12-16 18:22:56');
INSERT INTO `log` VALUES ('15', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2018-12-16 18:37:15');
INSERT INTO `log` VALUES ('16', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2018-12-16 18:40:21');
INSERT INTO `log` VALUES ('17', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2018-12-16 19:11:49');
INSERT INTO `log` VALUES ('18', '用户名为{admin},的用户成功修改密码!', '2018-12-16 19:13:32');
INSERT INTO `log` VALUES ('19', '用户名为{admin},的用户成功修改密码!', '2018-12-16 19:14:01');
INSERT INTO `log` VALUES ('20', '用户名为{猿来入此},角色为{普通用户}的用户登录成功!', '2018-12-16 19:17:46');
INSERT INTO `log` VALUES ('21', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2018-12-20 21:51:57');
INSERT INTO `log` VALUES ('22', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2018-12-20 21:58:51');
INSERT INTO `log` VALUES ('23', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2018-12-21 20:14:49');
INSERT INTO `log` VALUES ('24', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2018-12-21 20:22:49');
INSERT INTO `log` VALUES ('25', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2018-12-21 20:23:43');
INSERT INTO `log` VALUES ('26', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2018-12-21 21:07:39');
INSERT INTO `log` VALUES ('27', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2018-12-21 21:18:38');
INSERT INTO `log` VALUES ('28', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2018-12-21 22:03:27');
INSERT INTO `log` VALUES ('29', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2018-12-21 22:31:49');
INSERT INTO `log` VALUES ('30', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2018-12-21 22:32:58');
INSERT INTO `log` VALUES ('31', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2018-12-21 22:38:50');
INSERT INTO `log` VALUES ('32', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2018-12-22 10:26:00');
INSERT INTO `log` VALUES ('33', '用户名为admin的用户登录时输入验证码错误!', '2018-12-22 10:36:53');
INSERT INTO `log` VALUES ('34', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2018-12-22 10:37:04');
INSERT INTO `log` VALUES ('35', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2018-12-22 11:08:04');
INSERT INTO `log` VALUES ('36', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2018-12-22 11:59:39');
INSERT INTO `log` VALUES ('37', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2018-12-22 12:06:29');
INSERT INTO `log` VALUES ('38', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2018-12-22 12:17:20');
INSERT INTO `log` VALUES ('39', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2018-12-22 12:21:20');
INSERT INTO `log` VALUES ('40', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2018-12-22 13:05:44');
INSERT INTO `log` VALUES ('41', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2018-12-22 13:07:30');
INSERT INTO `log` VALUES ('42', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2018-12-22 13:16:00');
INSERT INTO `log` VALUES ('43', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2018-12-22 14:28:56');
INSERT INTO `log` VALUES ('44', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2018-12-22 14:33:41');
INSERT INTO `log` VALUES ('45', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2018-12-22 15:31:07');
INSERT INTO `log` VALUES ('46', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2018-12-22 15:35:02');
INSERT INTO `log` VALUES ('47', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2018-12-22 15:36:32');
INSERT INTO `log` VALUES ('48', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2018-12-22 16:06:20');
INSERT INTO `log` VALUES ('49', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2018-12-22 16:09:48');
INSERT INTO `log` VALUES ('50', '用户名为admin的用户登录时输入验证码错误!', '2018-12-22 16:19:05');
INSERT INTO `log` VALUES ('51', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2018-12-22 16:19:20');
INSERT INTO `log` VALUES ('52', '用户名为admin的用户登录时输入验证码错误!', '2018-12-22 16:20:47');
INSERT INTO `log` VALUES ('53', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2018-12-22 16:20:59');
INSERT INTO `log` VALUES ('54', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2018-12-23 11:10:10');
INSERT INTO `log` VALUES ('55', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2018-12-23 12:38:51');
INSERT INTO `log` VALUES ('56', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2018-12-23 14:39:48');
INSERT INTO `log` VALUES ('57', '用户名为admin的用户登录时输入验证码错误!', '2018-12-23 21:29:13');
INSERT INTO `log` VALUES ('58', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2018-12-23 21:29:23');
INSERT INTO `log` VALUES ('59', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2018-12-23 21:39:25');
INSERT INTO `log` VALUES ('60', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-02-28 21:08:26');
INSERT INTO `log` VALUES ('61', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-02-28 21:11:45');
INSERT INTO `log` VALUES ('62', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-02-28 21:36:24');
INSERT INTO `log` VALUES ('63', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-02-28 22:06:14');
INSERT INTO `log` VALUES ('64', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-02-28 22:14:26');
INSERT INTO `log` VALUES ('65', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-02-28 22:31:03');
INSERT INTO `log` VALUES ('66', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-02-28 22:54:36');
INSERT INTO `log` VALUES ('67', '用户名为admin的用户登录时输入验证码错误!', '2020-02-28 23:08:08');
INSERT INTO `log` VALUES ('68', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-02-28 23:08:14');
INSERT INTO `log` VALUES ('69', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-02-29 08:45:46');
INSERT INTO `log` VALUES ('70', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-02-29 09:00:50');
INSERT INTO `log` VALUES ('71', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-02-29 09:10:55');
INSERT INTO `log` VALUES ('72', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-02-29 09:46:52');
INSERT INTO `log` VALUES ('73', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-02-29 09:50:23');
INSERT INTO `log` VALUES ('74', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-02-29 09:51:48');
INSERT INTO `log` VALUES ('75', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-02-29 10:11:57');
INSERT INTO `log` VALUES ('76', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-02-29 10:16:42');
INSERT INTO `log` VALUES ('77', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-02-29 13:29:44');
INSERT INTO `log` VALUES ('78', '用户名为{347165450}的用户注册成功!', '2020-02-29 13:55:54');
INSERT INTO `log` VALUES ('79', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-02-29 14:16:14');
INSERT INTO `log` VALUES ('80', '用户名为{347165450},角色为{普通用户}的用户登录成功!', '2020-03-01 17:07:09');
INSERT INTO `log` VALUES ('81', '用户名为{347165450},角色为{普通用户}的用户登录成功!', '2020-03-01 17:40:10');
INSERT INTO `log` VALUES ('82', '用户名为{347165450},角色为{普通用户}的用户登录成功!', '2020-03-01 17:41:25');
INSERT INTO `log` VALUES ('83', '用户名为{347165450},角色为{普通用户}的用户登录成功!', '2020-03-01 18:06:36');
INSERT INTO `log` VALUES ('84', '用户名为{347165450},角色为{普通用户}的用户登录成功!', '2020-03-01 18:09:47');
INSERT INTO `log` VALUES ('85', '用户名为{347165450},角色为{普通用户}的用户登录成功!', '2020-03-01 18:15:42');
INSERT INTO `log` VALUES ('86', '用户名为{347165450},角色为{普通用户}的用户登录成功!', '2020-03-01 18:16:49');
INSERT INTO `log` VALUES ('87', '用户名为{347165450},角色为{普通用户}的用户登录成功!', '2020-03-01 18:19:46');
INSERT INTO `log` VALUES ('88', '用户名为{user}的用户注册成功!', '2020-03-01 18:21:42');
INSERT INTO `log` VALUES ('89', '用户名为{user}的用户注册成功!', '2020-03-01 18:25:16');
INSERT INTO `log` VALUES ('90', '用户名为{user},角色为{普通用户}的用户登录成功!', '2020-03-01 18:25:24');
INSERT INTO `log` VALUES ('91', '用户名为{user},角色为{普通用户}的用户登录成功!', '2020-03-01 18:29:17');
INSERT INTO `log` VALUES ('92', '用户名为{user1}的用户注册成功!', '2020-03-01 19:11:49');
INSERT INTO `log` VALUES ('93', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-01 19:11:58');
INSERT INTO `log` VALUES ('94', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-01 19:16:14');
INSERT INTO `log` VALUES ('95', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-01 19:22:42');
INSERT INTO `log` VALUES ('96', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-01 19:25:25');
INSERT INTO `log` VALUES ('97', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-01 19:30:22');
INSERT INTO `log` VALUES ('98', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-01 19:57:48');
INSERT INTO `log` VALUES ('99', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-01 20:04:22');
INSERT INTO `log` VALUES ('100', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-01 20:06:57');
INSERT INTO `log` VALUES ('101', '用户名为admin的用户登录时输入验证码错误!', '2020-03-01 20:57:24');
INSERT INTO `log` VALUES ('102', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-01 20:57:32');
INSERT INTO `log` VALUES ('103', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-01 21:45:30');
INSERT INTO `log` VALUES ('104', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-01 21:46:12');
INSERT INTO `log` VALUES ('105', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-01 21:54:46');
INSERT INTO `log` VALUES ('106', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-01 21:56:48');
INSERT INTO `log` VALUES ('107', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-01 22:02:10');
INSERT INTO `log` VALUES ('108', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-01 22:07:32');
INSERT INTO `log` VALUES ('109', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-01 22:13:53');
INSERT INTO `log` VALUES ('110', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-01 22:19:32');
INSERT INTO `log` VALUES ('111', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-01 22:22:17');
INSERT INTO `log` VALUES ('112', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-01 22:27:32');
INSERT INTO `log` VALUES ('113', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-01 22:31:19');
INSERT INTO `log` VALUES ('114', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-01 22:32:03');
INSERT INTO `log` VALUES ('115', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-02 10:38:05');
INSERT INTO `log` VALUES ('116', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-03 11:16:00');
INSERT INTO `log` VALUES ('117', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-03 11:18:51');
INSERT INTO `log` VALUES ('118', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-03 11:32:30');
INSERT INTO `log` VALUES ('119', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-03 11:40:49');
INSERT INTO `log` VALUES ('120', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-03 11:43:33');
INSERT INTO `log` VALUES ('121', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-03 18:51:43');
INSERT INTO `log` VALUES ('122', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-03 19:17:44');
INSERT INTO `log` VALUES ('123', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-03 19:51:28');
INSERT INTO `log` VALUES ('124', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-05 21:24:53');
INSERT INTO `log` VALUES ('125', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-05 21:26:50');
INSERT INTO `log` VALUES ('126', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-05 21:30:54');
INSERT INTO `log` VALUES ('127', '用户名为user1的用户登录时输入验证码错误!', '2020-03-05 22:05:28');
INSERT INTO `log` VALUES ('128', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-05 22:05:34');
INSERT INTO `log` VALUES ('129', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-05 22:11:51');
INSERT INTO `log` VALUES ('130', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-05 22:25:58');
INSERT INTO `log` VALUES ('131', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-05 22:31:46');
INSERT INTO `log` VALUES ('132', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-05 22:41:51');
INSERT INTO `log` VALUES ('133', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-05 22:44:47');
INSERT INTO `log` VALUES ('134', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-05 22:51:43');
INSERT INTO `log` VALUES ('135', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-05 22:54:07');
INSERT INTO `log` VALUES ('136', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-05 23:03:26');
INSERT INTO `log` VALUES ('137', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-05 23:10:22');
INSERT INTO `log` VALUES ('138', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-06 17:37:43');
INSERT INTO `log` VALUES ('139', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-06 17:46:45');
INSERT INTO `log` VALUES ('140', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-06 18:06:18');
INSERT INTO `log` VALUES ('141', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-06 18:11:25');
INSERT INTO `log` VALUES ('142', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-06 18:24:39');
INSERT INTO `log` VALUES ('143', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-06 18:27:05');
INSERT INTO `log` VALUES ('144', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-06 18:29:55');
INSERT INTO `log` VALUES ('145', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-06 18:31:55');
INSERT INTO `log` VALUES ('146', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-06 18:33:24');
INSERT INTO `log` VALUES ('147', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-06 18:34:18');
INSERT INTO `log` VALUES ('148', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-06 18:39:11');
INSERT INTO `log` VALUES ('149', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-06 18:45:51');
INSERT INTO `log` VALUES ('150', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-06 19:18:46');
INSERT INTO `log` VALUES ('151', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-06 19:20:41');
INSERT INTO `log` VALUES ('152', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-06 19:23:28');
INSERT INTO `log` VALUES ('153', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-06 19:27:23');
INSERT INTO `log` VALUES ('154', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-06 19:28:58');
INSERT INTO `log` VALUES ('155', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-06 19:31:17');
INSERT INTO `log` VALUES ('156', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-06 19:32:46');
INSERT INTO `log` VALUES ('157', '用户名为user1的用户登录时输入验证码错误!', '2020-03-06 19:34:15');
INSERT INTO `log` VALUES ('158', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-06 19:34:22');
INSERT INTO `log` VALUES ('159', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-06 19:35:19');
INSERT INTO `log` VALUES ('160', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-06 19:40:55');
INSERT INTO `log` VALUES ('161', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-06 19:43:27');
INSERT INTO `log` VALUES ('162', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-06 19:44:54');
INSERT INTO `log` VALUES ('163', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-06 19:46:00');
INSERT INTO `log` VALUES ('164', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-06 19:54:12');
INSERT INTO `log` VALUES ('165', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-06 19:56:16');
INSERT INTO `log` VALUES ('166', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-06 19:58:51');
INSERT INTO `log` VALUES ('167', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-06 20:01:00');
INSERT INTO `log` VALUES ('168', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-06 20:02:57');
INSERT INTO `log` VALUES ('169', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-06 20:04:37');
INSERT INTO `log` VALUES ('170', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-06 20:13:07');
INSERT INTO `log` VALUES ('171', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-06 20:14:59');
INSERT INTO `log` VALUES ('172', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-09 22:04:39');
INSERT INTO `log` VALUES ('173', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-09 22:22:40');
INSERT INTO `log` VALUES ('174', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-09 22:24:41');
INSERT INTO `log` VALUES ('175', '用户名为admin的用户登录时输入验证码错误!', '2020-03-09 22:26:35');
INSERT INTO `log` VALUES ('176', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-09 22:26:43');
INSERT INTO `log` VALUES ('177', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-11 20:52:02');
INSERT INTO `log` VALUES ('178', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-11 21:07:49');
INSERT INTO `log` VALUES ('179', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-11 21:23:32');
INSERT INTO `log` VALUES ('180', '用户名为admin的用户登录时输入验证码错误!', '2020-03-11 21:31:24');
INSERT INTO `log` VALUES ('181', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-11 21:31:30');
INSERT INTO `log` VALUES ('182', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-11 21:48:09');
INSERT INTO `log` VALUES ('183', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-11 22:35:49');
INSERT INTO `log` VALUES ('184', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-11 22:37:47');
INSERT INTO `log` VALUES ('185', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-11 22:42:11');
INSERT INTO `log` VALUES ('186', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-11 22:45:46');
INSERT INTO `log` VALUES ('187', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-11 22:48:26');
INSERT INTO `log` VALUES ('188', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-11 22:50:16');
INSERT INTO `log` VALUES ('189', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-11 22:58:45');
INSERT INTO `log` VALUES ('190', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-11 23:10:12');
INSERT INTO `log` VALUES ('191', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-11 23:17:14');
INSERT INTO `log` VALUES ('192', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-12 17:19:43');
INSERT INTO `log` VALUES ('193', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-12 17:46:17');
INSERT INTO `log` VALUES ('194', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-12 17:48:25');
INSERT INTO `log` VALUES ('195', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-12 17:54:18');
INSERT INTO `log` VALUES ('196', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-12 17:58:13');
INSERT INTO `log` VALUES ('197', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-12 18:00:17');
INSERT INTO `log` VALUES ('198', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-12 18:01:58');
INSERT INTO `log` VALUES ('199', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-12 19:04:38');
INSERT INTO `log` VALUES ('200', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-12 19:34:28');
INSERT INTO `log` VALUES ('201', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-12 19:35:40');
INSERT INTO `log` VALUES ('202', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-12 20:38:07');
INSERT INTO `log` VALUES ('203', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-12 20:53:00');
INSERT INTO `log` VALUES ('204', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-12 20:59:29');
INSERT INTO `log` VALUES ('205', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-12 21:10:26');
INSERT INTO `log` VALUES ('206', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-12 21:14:52');
INSERT INTO `log` VALUES ('207', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-12 21:16:11');
INSERT INTO `log` VALUES ('208', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-12 21:22:19');
INSERT INTO `log` VALUES ('209', '用户名为admin的用户登录时输入验证码错误!', '2020-03-12 21:24:47');
INSERT INTO `log` VALUES ('210', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-12 21:24:53');
INSERT INTO `log` VALUES ('211', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-12 21:27:08');
INSERT INTO `log` VALUES ('212', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-12 21:30:42');
INSERT INTO `log` VALUES ('213', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-12 21:32:43');
INSERT INTO `log` VALUES ('214', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-12 21:42:47');
INSERT INTO `log` VALUES ('215', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-12 21:46:52');
INSERT INTO `log` VALUES ('216', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-12 21:49:26');
INSERT INTO `log` VALUES ('217', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-12 21:57:47');
INSERT INTO `log` VALUES ('218', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-12 22:00:29');
INSERT INTO `log` VALUES ('219', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-12 22:10:01');
INSERT INTO `log` VALUES ('220', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-12 22:16:36');
INSERT INTO `log` VALUES ('221', '用户名为admin的用户登录时输入验证码错误!', '2020-03-12 22:21:11');
INSERT INTO `log` VALUES ('222', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-12 22:21:18');
INSERT INTO `log` VALUES ('223', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-12 22:29:50');
INSERT INTO `log` VALUES ('224', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-13 17:50:29');
INSERT INTO `log` VALUES ('225', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-13 17:53:41');
INSERT INTO `log` VALUES ('226', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-13 17:56:36');
INSERT INTO `log` VALUES ('227', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-13 17:58:29');
INSERT INTO `log` VALUES ('228', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-13 18:03:31');
INSERT INTO `log` VALUES ('229', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-13 18:04:37');
INSERT INTO `log` VALUES ('230', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-13 18:12:45');
INSERT INTO `log` VALUES ('231', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-13 18:16:46');
INSERT INTO `log` VALUES ('232', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-13 18:29:06');
INSERT INTO `log` VALUES ('233', '用户名为admin的用户登录时输入验证码错误!', '2020-03-13 18:53:30');
INSERT INTO `log` VALUES ('234', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-13 18:53:36');
INSERT INTO `log` VALUES ('235', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-13 18:58:20');
INSERT INTO `log` VALUES ('236', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-13 19:10:22');
INSERT INTO `log` VALUES ('237', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-13 19:20:59');
INSERT INTO `log` VALUES ('238', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-13 19:31:08');
INSERT INTO `log` VALUES ('239', '用户名为admin的用户登录时输入验证码错误!', '2020-03-13 19:32:44');
INSERT INTO `log` VALUES ('240', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-13 19:32:51');
INSERT INTO `log` VALUES ('241', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-13 19:37:02');
INSERT INTO `log` VALUES ('242', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-13 19:44:10');
INSERT INTO `log` VALUES ('243', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-13 19:46:13');
INSERT INTO `log` VALUES ('244', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-13 19:57:03');
INSERT INTO `log` VALUES ('245', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-13 19:59:54');
INSERT INTO `log` VALUES ('246', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-13 20:16:58');
INSERT INTO `log` VALUES ('247', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-13 20:22:04');
INSERT INTO `log` VALUES ('248', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-13 20:24:04');
INSERT INTO `log` VALUES ('249', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-13 20:34:44');
INSERT INTO `log` VALUES ('250', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-13 20:35:58');
INSERT INTO `log` VALUES ('251', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-13 20:38:12');
INSERT INTO `log` VALUES ('252', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-13 20:41:04');
INSERT INTO `log` VALUES ('253', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-13 20:48:33');
INSERT INTO `log` VALUES ('254', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-13 20:57:40');
INSERT INTO `log` VALUES ('255', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-14 09:38:47');
INSERT INTO `log` VALUES ('256', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-14 09:42:48');
INSERT INTO `log` VALUES ('257', '用户名为admin的用户登录时输入验证码错误!', '2020-03-14 09:44:58');
INSERT INTO `log` VALUES ('258', '用户名为admin的用户登录时输入验证码错误!', '2020-03-14 09:45:06');
INSERT INTO `log` VALUES ('259', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-14 09:45:16');
INSERT INTO `log` VALUES ('260', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-14 10:11:58');
INSERT INTO `log` VALUES ('261', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-14 10:18:34');
INSERT INTO `log` VALUES ('262', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-14 10:27:00');
INSERT INTO `log` VALUES ('263', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-14 10:32:55');
INSERT INTO `log` VALUES ('264', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-14 10:41:50');
INSERT INTO `log` VALUES ('265', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-14 10:43:23');
INSERT INTO `log` VALUES ('266', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-14 10:46:14');
INSERT INTO `log` VALUES ('267', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-14 16:20:33');
INSERT INTO `log` VALUES ('268', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-14 18:32:33');
INSERT INTO `log` VALUES ('269', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-14 21:01:53');
INSERT INTO `log` VALUES ('270', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-14 21:21:13');
INSERT INTO `log` VALUES ('271', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-14 21:27:47');
INSERT INTO `log` VALUES ('272', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-14 21:33:16');
INSERT INTO `log` VALUES ('273', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-15 10:19:29');
INSERT INTO `log` VALUES ('274', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-15 10:21:31');
INSERT INTO `log` VALUES ('275', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-15 10:23:33');
INSERT INTO `log` VALUES ('276', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-15 10:25:12');
INSERT INTO `log` VALUES ('277', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-15 10:29:15');
INSERT INTO `log` VALUES ('278', '用户名为admin的用户登录时输入密码错误!', '2020-03-15 10:34:46');
INSERT INTO `log` VALUES ('279', '用户名为admin的用户登录时输入密码错误!', '2020-03-15 10:34:58');
INSERT INTO `log` VALUES ('280', '用户名为user1的用户登录时输入密码错误!', '2020-03-15 10:35:15');
INSERT INTO `log` VALUES ('281', '用户名为user1的用户登录时输入密码错误!', '2020-03-15 10:35:24');
INSERT INTO `log` VALUES ('282', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-15 10:35:39');
INSERT INTO `log` VALUES ('283', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-15 11:37:18');
INSERT INTO `log` VALUES ('284', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-15 11:50:28');
INSERT INTO `log` VALUES ('285', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-15 12:09:24');
INSERT INTO `log` VALUES ('286', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-15 12:10:59');
INSERT INTO `log` VALUES ('287', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-15 12:13:39');
INSERT INTO `log` VALUES ('288', '用户名为admin的用户登录时输入验证码错误!', '2020-03-15 12:16:06');
INSERT INTO `log` VALUES ('289', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-15 12:16:13');
INSERT INTO `log` VALUES ('290', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-15 12:19:42');
INSERT INTO `log` VALUES ('291', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-15 12:23:26');
INSERT INTO `log` VALUES ('292', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-15 12:24:59');
INSERT INTO `log` VALUES ('293', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-15 12:56:40');
INSERT INTO `log` VALUES ('294', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-15 13:05:14');
INSERT INTO `log` VALUES ('295', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-15 13:08:35');
INSERT INTO `log` VALUES ('296', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-15 13:09:46');
INSERT INTO `log` VALUES ('297', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-15 13:12:29');
INSERT INTO `log` VALUES ('298', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-15 13:16:05');
INSERT INTO `log` VALUES ('299', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-15 13:18:39');
INSERT INTO `log` VALUES ('300', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-15 13:19:37');
INSERT INTO `log` VALUES ('301', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-15 13:20:46');
INSERT INTO `log` VALUES ('302', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-15 13:27:29');
INSERT INTO `log` VALUES ('303', '用户名为admin的用户登录时输入验证码错误!', '2020-03-15 13:48:47');
INSERT INTO `log` VALUES ('304', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-15 13:48:54');
INSERT INTO `log` VALUES ('305', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-15 13:51:43');
INSERT INTO `log` VALUES ('306', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-15 13:59:10');
INSERT INTO `log` VALUES ('307', '用户名为{user2}的用户注册成功!', '2020-03-15 14:09:01');
INSERT INTO `log` VALUES ('308', '用户名为{user2},角色为{普通用户}的用户登录成功!', '2020-03-15 14:09:12');
INSERT INTO `log` VALUES ('309', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-15 14:36:54');
INSERT INTO `log` VALUES ('310', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-15 14:47:14');
INSERT INTO `log` VALUES ('311', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-15 14:52:01');
INSERT INTO `log` VALUES ('312', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-15 14:53:57');
INSERT INTO `log` VALUES ('313', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-15 14:55:09');
INSERT INTO `log` VALUES ('314', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-15 14:56:35');
INSERT INTO `log` VALUES ('315', '用户名为user1的用户登录时输入验证码错误!', '2020-03-15 15:38:52');
INSERT INTO `log` VALUES ('316', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-15 15:38:59');
INSERT INTO `log` VALUES ('317', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-15 15:43:15');
INSERT INTO `log` VALUES ('318', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-15 15:46:55');
INSERT INTO `log` VALUES ('319', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-15 16:08:55');
INSERT INTO `log` VALUES ('320', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-15 16:12:30');
INSERT INTO `log` VALUES ('321', '用户名为{user2},角色为{普通用户}的用户登录成功!', '2020-03-15 16:13:57');
INSERT INTO `log` VALUES ('322', '用户名为user1的用户登录时输入验证码错误!', '2020-03-16 16:27:19');
INSERT INTO `log` VALUES ('323', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-16 16:27:26');
INSERT INTO `log` VALUES ('324', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-16 16:28:58');
INSERT INTO `log` VALUES ('325', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-16 16:42:25');
INSERT INTO `log` VALUES ('326', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-16 17:06:14');
INSERT INTO `log` VALUES ('327', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-16 17:11:19');
INSERT INTO `log` VALUES ('328', '用户名为user1的用户登录时输入验证码错误!', '2020-03-16 17:14:24');
INSERT INTO `log` VALUES ('329', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-16 17:14:31');
INSERT INTO `log` VALUES ('330', '用户名为user1的用户登录时输入密码错误!', '2020-03-16 17:15:06');
INSERT INTO `log` VALUES ('331', '用户名为user1的用户登录时输入密码错误!', '2020-03-16 17:15:18');
INSERT INTO `log` VALUES ('332', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-16 17:15:27');
INSERT INTO `log` VALUES ('333', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-16 17:16:39');
INSERT INTO `log` VALUES ('334', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-16 17:23:53');
INSERT INTO `log` VALUES ('335', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-16 17:26:17');
INSERT INTO `log` VALUES ('336', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-16 17:29:43');
INSERT INTO `log` VALUES ('337', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-16 17:32:54');
INSERT INTO `log` VALUES ('338', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-16 17:33:40');
INSERT INTO `log` VALUES ('339', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-16 18:05:12');
INSERT INTO `log` VALUES ('340', '用户名为user1的用户登录时输入密码错误!', '2020-03-16 18:06:54');
INSERT INTO `log` VALUES ('341', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-16 18:07:03');
INSERT INTO `log` VALUES ('342', '用户名为user1的用户登录时输入验证码错误!', '2020-03-16 18:10:49');
INSERT INTO `log` VALUES ('343', '用户名为{user1},角色为{普通用户}的用户登录成功!', '2020-03-16 18:10:54');
INSERT INTO `log` VALUES ('344', '用户名为user2的用户登录时输入验证码错误!', '2020-03-16 18:12:09');
INSERT INTO `log` VALUES ('345', '用户名为user2的用户登录时输入验证码错误!', '2020-03-16 18:12:15');
INSERT INTO `log` VALUES ('346', '用户名为{user2},角色为{普通用户}的用户登录成功!', '2020-03-16 18:12:22');
INSERT INTO `log` VALUES ('347', '用户名为{user2},角色为{普通用户}的用户登录成功!', '2020-03-16 18:16:20');
INSERT INTO `log` VALUES ('348', '用户名为{user2},角色为{普通用户}的用户登录成功!', '2020-03-16 18:18:58');
INSERT INTO `log` VALUES ('349', '用户名为{user2},角色为{普通用户}的用户登录成功!', '2020-03-16 18:20:00');
INSERT INTO `log` VALUES ('350', '用户名为{user2},角色为{普通用户}的用户登录成功!', '2020-03-16 18:59:08');
INSERT INTO `log` VALUES ('351', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-16 19:01:17');
INSERT INTO `log` VALUES ('352', '用户名为{user2},角色为{普通用户}的用户登录成功!', '2020-03-16 19:13:42');
INSERT INTO `log` VALUES ('353', '用户名为{user2},角色为{普通用户}的用户登录成功!', '2020-03-16 19:16:38');
INSERT INTO `log` VALUES ('354', '用户名为{user2},角色为{普通用户}的用户登录成功!', '2020-03-16 19:46:42');
INSERT INTO `log` VALUES ('355', '用户名为{user2},角色为{普通用户}的用户登录成功!', '2020-03-16 19:50:25');
INSERT INTO `log` VALUES ('356', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-18 08:26:20');
INSERT INTO `log` VALUES ('357', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-18 08:41:09');
INSERT INTO `log` VALUES ('358', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-18 08:48:33');
INSERT INTO `log` VALUES ('359', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-18 09:01:51');
INSERT INTO `log` VALUES ('360', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-03-18 09:04:01');
INSERT INTO `log` VALUES ('361', '用户名为{user2},角色为{普通用户}的用户登录成功!', '2020-03-18 10:31:39');
INSERT INTO `log` VALUES ('362', '用户名为{user2},角色为{普通用户}的用户登录成功!', '2020-04-02 21:41:15');
INSERT INTO `log` VALUES ('363', '用户名为{user2},角色为{普通用户}的用户登录成功!', '2020-04-02 22:08:34');
INSERT INTO `log` VALUES ('364', '用户名为{user2},角色为{普通用户}的用户登录成功!', '2020-04-02 22:42:54');
INSERT INTO `log` VALUES ('365', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-04-02 22:43:24');
INSERT INTO `log` VALUES ('366', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-04-02 22:47:38');
INSERT INTO `log` VALUES ('367', '用户名为{wangchen}的用户注册成功!', '2020-04-03 21:30:07');
INSERT INTO `log` VALUES ('368', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-03 21:30:24');
INSERT INTO `log` VALUES ('369', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-04 09:48:54');
INSERT INTO `log` VALUES ('370', '登录时,用户名为[email protected]的用户不存在!', '2020-04-04 09:51:44');
INSERT INTO `log` VALUES ('371', '登录时,用户名为[email protected]的用户不存在!', '2020-04-04 09:51:51');
INSERT INTO `log` VALUES ('372', '登录时,用户名为[email protected]的用户不存在!', '2020-04-04 09:51:51');
INSERT INTO `log` VALUES ('373', '登录时,用户名为[email protected]的用户不存在!', '2020-04-04 09:51:51');
INSERT INTO `log` VALUES ('374', '用户名为wangchen的用户登录时输入密码错误!', '2020-04-04 09:53:22');
INSERT INTO `log` VALUES ('375', '用户名为wangchen的用户登录时输入密码错误!', '2020-04-04 09:53:28');
INSERT INTO `log` VALUES ('376', '用户名为wangchen的用户登录时输入密码错误!', '2020-04-04 09:56:33');
INSERT INTO `log` VALUES ('377', '用户名为wangchen的用户登录时输入密码错误!', '2020-04-04 09:57:09');
INSERT INTO `log` VALUES ('378', '用户名为wangchen1的用户登录时输入验证码错误!', '2020-04-04 09:57:14');
INSERT INTO `log` VALUES ('379', '登录时,用户名为wangchen1的用户不存在!', '2020-04-04 09:57:30');
INSERT INTO `log` VALUES ('380', '用户名为{wangchen}的用户重置密码成功!', '2020-04-04 10:35:30');
INSERT INTO `log` VALUES ('381', '用户名为wangchen的用户登录时输入密码错误!', '2020-04-04 10:35:46');
INSERT INTO `log` VALUES ('382', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-04 10:36:23');
INSERT INTO `log` VALUES ('383', '用户名为{wangchen}的用户重置密码成功!', '2020-04-04 10:42:39');
INSERT INTO `log` VALUES ('384', '用户名为wangchen的用户登录时输入密码错误!', '2020-04-04 10:42:53');
INSERT INTO `log` VALUES ('385', '用户名为{wangchen}的用户注册成功!', '2020-04-04 10:55:14');
INSERT INTO `log` VALUES ('386', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-04 10:55:28');
INSERT INTO `log` VALUES ('387', '用户名为{wangchen}的用户重置密码成功!', '2020-04-04 10:55:54');
INSERT INTO `log` VALUES ('388', '用户名为{wangchen}的用户重置密码成功!', '2020-04-04 10:56:02');
INSERT INTO `log` VALUES ('389', '用户名为wangchen的用户登录时输入验证码错误!', '2020-04-04 10:56:13');
INSERT INTO `log` VALUES ('390', '用户名为wangchen的用户登录时输入密码错误!', '2020-04-04 10:56:20');
INSERT INTO `log` VALUES ('391', '用户名为{wangchen}的用户重置密码成功!', '2020-04-04 11:02:46');
INSERT INTO `log` VALUES ('392', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-04 11:03:02');
INSERT INTO `log` VALUES ('393', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-04 11:04:50');
INSERT INTO `log` VALUES ('394', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-04 11:06:24');
INSERT INTO `log` VALUES ('395', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-04 11:08:54');
INSERT INTO `log` VALUES ('396', '用户名为{2016190301}的用户注册成功!', '2020-04-04 11:41:52');
INSERT INTO `log` VALUES ('397', '用户名为{2016190301},角色为{普通用户}的用户登录成功!', '2020-04-04 11:46:30');
INSERT INTO `log` VALUES ('398', '用户名为{null}的用户重置密码成功!', '2020-04-04 13:00:16');
INSERT INTO `log` VALUES ('399', '用户名为{2016190301},角色为{普通用户}的用户登录成功!', '2020-04-04 13:00:47');
INSERT INTO `log` VALUES ('400', '用户名为{wangchen}的用户注册成功!', '2020-04-04 13:17:30');
INSERT INTO `log` VALUES ('401', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-04 13:33:00');
INSERT INTO `log` VALUES ('402', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-04-04 14:26:10');
INSERT INTO `log` VALUES ('403', '用户名为admin的用户登录时输入验证码错误!', '2020-04-04 14:32:41');
INSERT INTO `log` VALUES ('404', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-04-04 14:32:47');
INSERT INTO `log` VALUES ('405', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-04-04 14:35:25');
INSERT INTO `log` VALUES ('406', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-04-04 14:41:41');
INSERT INTO `log` VALUES ('407', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-04-04 14:47:03');
INSERT INTO `log` VALUES ('408', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-04 14:52:38');
INSERT INTO `log` VALUES ('409', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-04 17:18:47');
INSERT INTO `log` VALUES ('410', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-04 17:22:50');
INSERT INTO `log` VALUES ('411', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-04 17:27:12');
INSERT INTO `log` VALUES ('412', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-04 17:31:21');
INSERT INTO `log` VALUES ('413', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-04 17:35:11');
INSERT INTO `log` VALUES ('414', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-04 17:44:25');
INSERT INTO `log` VALUES ('415', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-04 17:51:41');
INSERT INTO `log` VALUES ('416', '用户名为wangchen的用户登录时输入密码错误!', '2020-04-04 17:52:37');
INSERT INTO `log` VALUES ('417', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-04 17:52:46');
INSERT INTO `log` VALUES ('418', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-04 18:13:27');
INSERT INTO `log` VALUES ('419', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-04 18:17:04');
INSERT INTO `log` VALUES ('420', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-04 18:18:11');
INSERT INTO `log` VALUES ('421', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-04 18:19:21');
INSERT INTO `log` VALUES ('422', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-04 18:19:51');
INSERT INTO `log` VALUES ('423', '用户名为wangchen的用户登录时输入密码错误!', '2020-04-04 18:58:54');
INSERT INTO `log` VALUES ('424', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-04 18:59:05');
INSERT INTO `log` VALUES ('425', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-04 19:03:59');
INSERT INTO `log` VALUES ('426', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-04 19:25:53');
INSERT INTO `log` VALUES ('427', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-04 19:53:05');
INSERT INTO `log` VALUES ('428', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-04 20:00:09');
INSERT INTO `log` VALUES ('429', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-04 20:02:32');
INSERT INTO `log` VALUES ('430', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-04 20:07:13');
INSERT INTO `log` VALUES ('431', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-04 20:08:26');
INSERT INTO `log` VALUES ('432', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-04 20:35:42');
INSERT INTO `log` VALUES ('433', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-12 22:00:08');
INSERT INTO `log` VALUES ('434', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-04-12 22:12:42');
INSERT INTO `log` VALUES ('435', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-15 11:15:48');
INSERT INTO `log` VALUES ('436', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-15 11:27:05');
INSERT INTO `log` VALUES ('437', '用户名为wangchen的用户登录时输入验证码错误!', '2020-04-15 11:29:13');
INSERT INTO `log` VALUES ('438', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-15 11:29:17');
INSERT INTO `log` VALUES ('439', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-15 11:52:15');
INSERT INTO `log` VALUES ('440', '用户名为wangchen的用户登录时输入验证码错误!', '2020-04-15 12:04:40');
INSERT INTO `log` VALUES ('441', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-15 12:04:46');
INSERT INTO `log` VALUES ('442', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-15 12:07:33');
INSERT INTO `log` VALUES ('443', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-15 12:09:37');
INSERT INTO `log` VALUES ('444', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-15 12:28:47');
INSERT INTO `log` VALUES ('445', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-15 15:04:08');
INSERT INTO `log` VALUES ('446', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-15 16:50:43');
INSERT INTO `log` VALUES ('447', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-15 17:01:02');
INSERT INTO `log` VALUES ('448', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-15 17:12:57');
INSERT INTO `log` VALUES ('449', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-15 17:28:59');
INSERT INTO `log` VALUES ('450', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-15 18:00:33');
INSERT INTO `log` VALUES ('451', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-04-15 18:31:15');
INSERT INTO `log` VALUES ('452', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-04-15 18:33:07');
INSERT INTO `log` VALUES ('453', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-04-15 18:47:06');
INSERT INTO `log` VALUES ('454', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-04-15 19:00:06');
INSERT INTO `log` VALUES ('455', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-04-15 19:03:20');
INSERT INTO `log` VALUES ('456', '用户名为wangchen的用户登录时输入验证码错误!', '2020-04-15 19:04:31');
INSERT INTO `log` VALUES ('457', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-15 19:04:39');
INSERT INTO `log` VALUES ('458', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-04-15 19:22:24');
INSERT INTO `log` VALUES ('459', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-04-15 19:32:18');
INSERT INTO `log` VALUES ('460', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-15 19:33:52');
INSERT INTO `log` VALUES ('461', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-04-15 19:45:46');
INSERT INTO `log` VALUES ('462', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-16 22:20:15');
INSERT INTO `log` VALUES ('463', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-21 17:08:01');
INSERT INTO `log` VALUES ('464', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-21 17:18:15');
INSERT INTO `log` VALUES ('465', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-21 17:23:43');
INSERT INTO `log` VALUES ('466', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-21 17:31:29');
INSERT INTO `log` VALUES ('467', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-04-22 12:16:43');
INSERT INTO `log` VALUES ('468', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-04-22 12:20:06');
INSERT INTO `log` VALUES ('469', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-04-22 12:23:03');
INSERT INTO `log` VALUES ('470', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-04-22 12:24:13');
INSERT INTO `log` VALUES ('471', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-04-22 12:28:03');
INSERT INTO `log` VALUES ('472', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-04-22 12:45:54');
INSERT INTO `log` VALUES ('473', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-04-22 12:50:17');
INSERT INTO `log` VALUES ('474', '用户名为admin的用户登录时输入验证码错误!', '2020-04-22 12:54:00');
INSERT INTO `log` VALUES ('475', '用户名为admin的用户登录时输入验证码错误!', '2020-04-22 12:54:05');
INSERT INTO `log` VALUES ('476', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-04-22 12:54:12');
INSERT INTO `log` VALUES ('477', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-04-22 13:06:57');
INSERT INTO `log` VALUES ('478', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-04-22 14:12:28');
INSERT INTO `log` VALUES ('479', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-04-22 14:15:03');
INSERT INTO `log` VALUES ('480', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-04-22 14:15:58');
INSERT INTO `log` VALUES ('481', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-04-22 14:25:02');
INSERT INTO `log` VALUES ('482', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-04-22 14:26:59');
INSERT INTO `log` VALUES ('483', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-04-22 14:32:08');
INSERT INTO `log` VALUES ('484', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-23 18:25:32');
INSERT INTO `log` VALUES ('485', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-23 18:45:13');
INSERT INTO `log` VALUES ('486', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-23 19:09:36');
INSERT INTO `log` VALUES ('487', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-23 19:16:03');
INSERT INTO `log` VALUES ('488', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-04-23 19:21:34');
INSERT INTO `log` VALUES ('489', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-23 19:42:26');
INSERT INTO `log` VALUES ('490', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-23 19:45:38');
INSERT INTO `log` VALUES ('491', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-23 20:14:18');
INSERT INTO `log` VALUES ('492', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-23 20:16:45');
INSERT INTO `log` VALUES ('493', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-23 21:07:48');
INSERT INTO `log` VALUES ('494', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-23 21:09:32');
INSERT INTO `log` VALUES ('495', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-23 21:15:06');
INSERT INTO `log` VALUES ('496', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-23 21:22:37');
INSERT INTO `log` VALUES ('497', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-23 21:32:19');
INSERT INTO `log` VALUES ('498', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-23 21:36:00');
INSERT INTO `log` VALUES ('499', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-23 21:37:59');
INSERT INTO `log` VALUES ('500', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-23 21:43:16');
INSERT INTO `log` VALUES ('501', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-23 21:49:49');
INSERT INTO `log` VALUES ('502', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-23 21:55:00');
INSERT INTO `log` VALUES ('503', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-23 21:57:34');
INSERT INTO `log` VALUES ('504', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-23 21:59:02');
INSERT INTO `log` VALUES ('505', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-23 22:06:09');
INSERT INTO `log` VALUES ('506', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-04-23 22:20:25');
INSERT INTO `log` VALUES ('507', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-04-24 15:03:17');
INSERT INTO `log` VALUES ('508', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-04-27 22:16:03');
INSERT INTO `log` VALUES ('509', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-04-30 20:53:53');
INSERT INTO `log` VALUES ('510', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-04-30 21:02:11');
INSERT INTO `log` VALUES ('511', '用户名为admin的用户登录时输入验证码错误!', '2020-04-30 21:16:51');
INSERT INTO `log` VALUES ('512', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-04-30 21:16:58');
INSERT INTO `log` VALUES ('513', '用户名为admin的用户登录时输入验证码错误!', '2020-04-30 21:21:34');
INSERT INTO `log` VALUES ('514', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-04-30 21:21:40');
INSERT INTO `log` VALUES ('515', '用户名为wangchen的用户登录时输入验证码错误!', '2020-05-01 20:26:26');
INSERT INTO `log` VALUES ('516', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-05-01 20:26:30');
INSERT INTO `log` VALUES ('517', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-05-01 20:32:32');
INSERT INTO `log` VALUES ('518', '用户名为wangchen的用户登录时输入验证码错误!', '2020-05-01 20:37:36');
INSERT INTO `log` VALUES ('519', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-05-01 20:37:41');
INSERT INTO `log` VALUES ('520', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-05-01 20:40:43');
INSERT INTO `log` VALUES ('521', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-05-01 20:45:24');
INSERT INTO `log` VALUES ('522', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-05-01 20:49:14');
INSERT INTO `log` VALUES ('523', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-05-01 20:51:11');
INSERT INTO `log` VALUES ('524', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-05-01 20:52:35');
INSERT INTO `log` VALUES ('525', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-05-01 20:58:08');
INSERT INTO `log` VALUES ('526', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-05-01 21:07:26');
INSERT INTO `log` VALUES ('527', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-05-01 21:13:26');
INSERT INTO `log` VALUES ('528', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-05-01 21:17:05');
INSERT INTO `log` VALUES ('529', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-05-01 21:17:21');
INSERT INTO `log` VALUES ('530', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-05-02 13:25:53');
INSERT INTO `log` VALUES ('531', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-05-02 13:42:59');
INSERT INTO `log` VALUES ('532', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-05-04 19:44:19');
INSERT INTO `log` VALUES ('533', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-05-04 19:45:38');
INSERT INTO `log` VALUES ('534', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-05-04 19:49:12');
INSERT INTO `log` VALUES ('535', '用户名为wangchen的用户登录时输入验证码错误!', '2020-05-04 19:52:38');
INSERT INTO `log` VALUES ('536', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-05-04 19:52:42');
INSERT INTO `log` VALUES ('537', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-05-04 19:54:09');
INSERT INTO `log` VALUES ('538', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-05-04 20:02:46');
INSERT INTO `log` VALUES ('539', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-05-04 20:12:59');
INSERT INTO `log` VALUES ('540', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-05-04 20:36:24');
INSERT INTO `log` VALUES ('541', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-05-07 07:22:43');
INSERT INTO `log` VALUES ('542', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-05-07 07:32:58');
INSERT INTO `log` VALUES ('543', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-05-07 07:37:09');
INSERT INTO `log` VALUES ('544', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-05-07 07:53:02');
INSERT INTO `log` VALUES ('545', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-05-07 08:04:45');
INSERT INTO `log` VALUES ('546', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-05-07 08:10:42');
INSERT INTO `log` VALUES ('547', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-05-07 08:13:11');
INSERT INTO `log` VALUES ('548', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-05-07 22:52:58');
INSERT INTO `log` VALUES ('549', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-05-07 23:20:32');
INSERT INTO `log` VALUES ('550', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-05-09 17:42:07');
INSERT INTO `log` VALUES ('551', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-05-09 18:08:39');
INSERT INTO `log` VALUES ('552', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-05-09 18:10:37');
INSERT INTO `log` VALUES ('553', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-05-09 18:19:38');
INSERT INTO `log` VALUES ('554', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-05-10 14:35:21');
INSERT INTO `log` VALUES ('555', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-05-11 17:50:39');
INSERT INTO `log` VALUES ('556', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-05-11 17:51:18');
INSERT INTO `log` VALUES ('557', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-05-19 17:12:52');
INSERT INTO `log` VALUES ('558', '用户名为{222111111}的用户注册成功!', '2020-05-19 17:14:27');
INSERT INTO `log` VALUES ('559', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-05-19 20:35:51');
INSERT INTO `log` VALUES ('560', '用户名为admin的用户登录时输入验证码错误!', '2020-05-19 20:36:38');
INSERT INTO `log` VALUES ('561', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-05-19 20:36:45');
INSERT INTO `log` VALUES ('562', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-05-20 12:29:10');
INSERT INTO `log` VALUES ('563', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-05-20 12:43:49');
INSERT INTO `log` VALUES ('564', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-05-20 12:52:15');
INSERT INTO `log` VALUES ('565', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-05-22 10:57:16');
INSERT INTO `log` VALUES ('566', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-05-22 11:09:09');
INSERT INTO `log` VALUES ('567', '用户名为admin的用户登录时输入验证码错误!', '2020-06-04 17:07:15');
INSERT INTO `log` VALUES ('568', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-06-04 17:07:21');
INSERT INTO `log` VALUES ('569', '用户名为admin的用户登录时输入验证码错误!', '2020-06-04 17:07:39');
INSERT INTO `log` VALUES ('570', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-06-04 17:07:44');
INSERT INTO `log` VALUES ('571', '用户名为{wangchen},角色为{普通用户}的用户登录成功!', '2020-06-05 08:04:17');
INSERT INTO `log` VALUES ('572', '用户名为{admin},角色为{超级管理员}的用户登录成功!', '2020-06-05 08:06:25');
-- ----------------------------
-- Table structure for `menu`
-- ----------------------------
DROP TABLE IF EXISTS `menu`;
CREATE TABLE `menu` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`parentId` int(11) NOT NULL DEFAULT '-1',
`name` varchar(32) NOT NULL,
`url` varchar(128) DEFAULT NULL,
`icon` varchar(32) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=82 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of menu
-- ----------------------------
INSERT INTO `menu` VALUES ('1', '0', '系统设置', '', 'icon-advancedsettings');
INSERT INTO `menu` VALUES ('5', '1', '菜单管理', '../admin/menu/list', 'icon-chart-organisation');
INSERT INTO `menu` VALUES ('13', '1', '角色管理', '../admin/role/list', 'icon-group-key');
INSERT INTO `menu` VALUES ('14', '0', '用户管理', '', 'icon-group-gear');
INSERT INTO `menu` VALUES ('15', '14', '用户列表', '../admin/user/list', 'icon-group');
INSERT INTO `menu` VALUES ('17', '5', '添加', 'openAdd()', 'icon-add');
INSERT INTO `menu` VALUES ('18', '5', '编辑', 'openEdit()', 'icon-bullet-edit');
INSERT INTO `menu` VALUES ('19', '5', '删除', 'remove()', 'icon-cross');
INSERT INTO `menu` VALUES ('20', '5', '添加按钮', 'openAddMenu()', 'icon-add');
INSERT INTO `menu` VALUES ('21', '13', '添加', 'openAdd()', 'icon-add');
INSERT INTO `menu` VALUES ('22', '13', '编辑', 'openEdit()', 'icon-bullet-edit');
INSERT INTO `menu` VALUES ('23', '13', '删除', 'remove()', 'icon-cross');
INSERT INTO `menu` VALUES ('24', '15', '添加', 'openAdd()', 'icon-add');
INSERT INTO `menu` VALUES ('25', '15', '编辑', 'openEdit()', 'icon-bullet-edit');
INSERT INTO `menu` VALUES ('26', '15', '删除', 'remove()', 'icon-cross');
INSERT INTO `menu` VALUES ('31', '0', '系统日志', '', 'icon-table-cell');
INSERT INTO `menu` VALUES ('32', '31', '日志列表', '../admin/log/list', 'icon-page-white-text');
INSERT INTO `menu` VALUES ('33', '32', '添加日志', 'openAdd()', 'icon-add1');
INSERT INTO `menu` VALUES ('34', '32', '删除', 'remove()', 'icon-cancel');
INSERT INTO `menu` VALUES ('35', '1', '修改密码', 'edit_password', 'icon-lock-edit');
INSERT INTO `menu` VALUES ('36', '35', '修改密码', 'openAdd()', 'icon-lock-edit');
INSERT INTO `menu` VALUES ('37', '0', '资讯管理', '', 'icon-feed');
INSERT INTO `menu` VALUES ('38', '37', '分类管理', '../admin/news_category/list', 'icon-feed-star');
INSERT INTO `menu` VALUES ('39', '38', '添加', 'openAdd()', 'icon-add');
INSERT INTO `menu` VALUES ('40', '38', '编辑', 'openEdit()', 'icon-bullet-edit');
INSERT INTO `menu` VALUES ('41', '38', '删除', 'remove()', 'icon-cross');
INSERT INTO `menu` VALUES ('42', '37', '资讯内容', '../admin/news/list', 'icon-feed-edit');
INSERT INTO `menu` VALUES ('43', '42', '添加', 'openAdd()', 'icon-add');
INSERT INTO `menu` VALUES ('44', '42', '编辑', 'openEdit()', 'icon-bullet-edit');
INSERT INTO `menu` VALUES ('45', '42', '删除', 'remove()', 'icon-cross');
INSERT INTO `menu` VALUES ('46', '37', '评论管理', '../admin/comment/list', 'icon-comment');
INSERT INTO `menu` VALUES ('49', '46', '删除', 'remove()', 'icon-cross');
INSERT INTO `menu` VALUES ('51', '0', '论坛管理', '', 'icon-table-edit');
INSERT INTO `menu` VALUES ('54', '51', '帖子管理', '../admin/topic/list', 'icon-application-view-icons');
INSERT INTO `menu` VALUES ('55', '51', '板块管理', '../admin/tab/list', 'icon-application-view-icons');
INSERT INTO `menu` VALUES ('57', '54', '删除', 'remove()', 'icon-cross');
INSERT INTO `menu` VALUES ('59', '55', '添加', 'openAdd()', 'icon-add');
INSERT INTO `menu` VALUES ('61', '55', '编辑', 'openEdit()', 'icon-bullet-edit');
INSERT INTO `menu` VALUES ('62', '0', '导师管理', '', 'icon-user-business-boss');
INSERT INTO `menu` VALUES ('63', '62', '学院管理', '../admin/academy/list', 'icon-application-form-edit');
INSERT INTO `menu` VALUES ('64', '62', '专业管理', '../admin/department/list', 'icon-application-form-edit');
INSERT INTO `menu` VALUES ('65', '62', '导师信息', '../admin/teacher/list', 'icon-user-business-boss');
INSERT INTO `menu` VALUES ('66', '63', '添加', 'openAdd()', 'icon-add');
INSERT INTO `menu` VALUES ('67', '63', '编辑', 'openEdit()', 'icon-bullet-edit');
INSERT INTO `menu` VALUES ('68', '63', '删除', 'remove()', 'icon-cross');
INSERT INTO `menu` VALUES ('69', '64', '添加', 'openAdd()', 'icon-add');
INSERT INTO `menu` VALUES ('70', '64', '编辑', 'openEdit()', 'icon-bullet-edit');
INSERT INTO `menu` VALUES ('71', '64', '删除', 'remove()', 'icon-cross');
INSERT INTO `menu` VALUES ('72', '65', '添加', 'openAdd()', 'icon-add');
INSERT INTO `menu` VALUES ('73', '65', '编辑', 'openEdit()', 'icon-bullet-edit');
INSERT INTO `menu` VALUES ('74', '65', '删除', 'remove()', 'icon-cross');
INSERT INTO `menu` VALUES ('75', '62', '评价管理', '../admin/teacherComment/list', 'icon-comment');
INSERT INTO `menu` VALUES ('76', '75', '删除', 'remove()', 'icon-cross');
INSERT INTO `menu` VALUES ('77', '55', '删除', 'remove()', 'icon-cross');
INSERT INTO `menu` VALUES ('78', '0', '留言管理', '', 'icon-email-magnify');
INSERT INTO `menu` VALUES ('79', '78', '留言列表', '../admin/message/list', 'icon-user-comment');
INSERT INTO `menu` VALUES ('80', '79', '查看留言', 'openDetail()', 'icon-search');
INSERT INTO `menu` VALUES ('81', '75', '查看评价', 'openDetail()', 'icon-search');
-- ----------------------------
-- Table structure for `message`
-- ----------------------------
DROP TABLE IF EXISTS `message`;
CREATE TABLE `message` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`content` longtext NOT NULL,
`userId` int(11) NOT NULL,
`email` varchar(30) NOT NULL,
`createTime` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of message
-- ----------------------------
INSERT INTO `message` VALUES ('1', '222222222222222222222222222222222222222222222222222222222222', '17', '', '2020-04-02 22:43:12');
INSERT INTO `message` VALUES ('2', '111', '21', '[email protected]', '2020-05-20 12:31:43');
INSERT INTO `message` VALUES ('3', '222', '21', '[email protected]', '2020-05-20 12:33:41');
-- ----------------------------
-- Table structure for `news`
-- ----------------------------
DROP TABLE IF EXISTS `news`;
CREATE TABLE `news` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`categoryId` int(11) NOT NULL,
`title` varchar(128) NOT NULL,
`author` varchar(32) NOT NULL,
`content` longtext NOT NULL,
`viewNumber` int(8) NOT NULL DEFAULT '0',
`commentNumber` int(5) NOT NULL DEFAULT '0',
`createTime` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `categoryId` (`categoryId`),
CONSTRAINT `news_ibfk_1` FOREIGN KEY (`categoryId`) REFERENCES `news_category` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of news
-- ----------------------------
INSERT INTO `news` VALUES ('14', '5', '2020年上学期研究生相关管理工作整体安排', '湘潭大学研究生院', '<p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 24px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; vertical-align: baseline;\">根据湖南省《关于做好疫情防控期间研究生教学及有关工作的通知》以及学校关于疫情防控工作的相关要求,为确保教育教学与相关管理工作的有序开展,现就防控期间的研究生相关管理工作做如下具体安排:</span></span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 24px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; vertical-align: baseline;\">一、开学时间</span></span></strong></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 24px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; vertical-align: baseline;\">严格执行延迟开学决定,按照上级工作部署,学校</span>2020年春季学期开学时间不早于3月2日,具体开学时间以湖南省教育厅向社会公布的为准,所有学生不得提前返校。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 24px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; vertical-align: baseline;\">二、</span>2020年研究生招生工作安排</span></strong></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 24px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; vertical-align: baseline;\">(一)</span>2020年硕士研究生招生</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 24px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">1.初试成绩公布:2月20日上午10点(以</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; vertical-align: baseline;\">湖南省</span></span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; vertical-align: baseline;\">教育</span></span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; vertical-align: baseline;\">考试院公告为准</span>)</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 24px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; vertical-align: baseline;\">报考在湘招生单位的考生查询本人成绩方式</span>:</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 24px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; vertical-align: baseline;\">一是关注湖南省教育考试院官微</span>“湘微招考”(ID:hunan-zhaokao)微信公众号进行查询;</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 24px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; vertical-align: baseline;\">二是登录湖南省教育考试院服务网</span>“湖南招生考试信息港”(https://www.hneeb.cn)查询;</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 24px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; vertical-align: baseline;\">三是湖南移动用户通过发送</span>“CJYK#”加“考生编号”(如:CJYK#105203040506078)到1065899261进行查询,湖南联通用户通过发送“CJYK#”加“考生编号”(如:CJYK#105203040506078)到1062899271查询。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 24px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">2. 初试成绩复核:复核申请的程序和时间,将按照教育部和湖南省教育主管部门要求,根据疫情防控情况另行通知。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 24px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">3.复试与调剂:复试具体时间、形式、要求、调剂等相关事宜,将按照教育部和湖南省教育主管部门要求,根据疫情防控情况另行通知。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 24px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; vertical-align: baseline;\">(二)</span>2020年博士研究生招生</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 24px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">1. 硕博连读、申请考核制</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 24px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; vertical-align: baseline;\">(</span>1)网上报名:拟定于3月9日-31日进行。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 24px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; vertical-align: baseline;\">(</span>2)现场审核:拟定于4月初进行(具体时间与安排视疫情防控情况另行通知)。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 24px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; vertical-align: baseline;\">(</span>3)复试:4月底前完成,具体工作安排根据疫情防控情况另行通知。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 24px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">2.普通招考</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 24px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; vertical-align: baseline;\">(</span>1)网上报名:拟定于3月9日-31日进行。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 24px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; vertical-align: baseline;\">(</span>2)现场审核:拟定于4月初进行(具体时间与安排视疫情防控情况另行通知)。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 24px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; vertical-align: baseline;\">(</span>3)初试:拟定于4月中下旬进行(具体时间与安排视疫情防控情况另行通知)。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 24px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; vertical-align: baseline;\">(</span>4)复试:5月15日前完成,具体工作安排根据疫情防控情况另行通知。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 24px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; vertical-align: baseline;\">三、培养工作安排及时间表</span></span></strong></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 24px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">1、研究生管理信息系统是研究生培养管理的重要工具,为确保研究生能正常使用系统,请各学院通知本学院研究生于2月24日前在研究生管理信息系统内完成学期注册,并督促上学期未按时录入成绩的任课老师及时录入成绩,以免因成绩未录入学生无法在系统内进行培养材料提交和毕业申请。如因特殊情况提交确实有困难的,请在学校正式开学后一周内完成。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 24px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">2、各类研究生课程教学安排:公共课开课时间</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; vertical-align: baseline;\">顺延,具体时间视疫情情况见研究院通知</span></span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; vertical-align: baseline;\">;专业课</span>2月24日开始开展网络教学(视疫情进展,</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; vertical-align: baseline;\">学校正式上课后</span></span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; vertical-align: baseline;\">恢复课堂教学),部分专业课也可以顺延</span></span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; vertical-align: baseline;\">,</span></span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; vertical-align: baseline;\">在学校正式开学后再进行课堂教学,但教学进度可以顺延学时数不能减量。</span></span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 24px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; vertical-align: baseline;\">各学院应根据原</span>2019-2020春学期研究生课程教学计划统计上课情况和选择的教学形式(统计表见附件),于2月24日前报研究生院备案(将电子版发送至邮箱[email protected])。对于开展网络教学课程的任课老师,要及时做好相关教学准备,同时学院对网上授课研究生课程的学时和时间等进行合理安排,确保线上线下教学同质等效;对于教学进度顺延的课程,各学院要在</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; vertical-align: baseline;\">研究院培养办备案并</span></span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; vertical-align: baseline;\">为其后续的教学保证必要的场地。</span></span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 24px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">3、研究生实践实习:根据上级规定,疫情未解除前,不得组织研究生参加任何形式的实践实习。待疫情解除后,学院再根据实际情况进行下一步的安排。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 24px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">4、毕业研究生培养材料准备工作:请学院通知各类型拟申请于</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; vertical-align: baseline;\">今年上半年</span></span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; vertical-align: baseline;\">毕业的研究生按要求在研究生系统提交相关培养材料,研究生教务干事必须对毕业研究生在系统里提交的培养材料进行审核,并对缺少培养材料或未按要求提交材料的学生要及时提醒,督促其及时在系统中完成相关培养材料,等疫情解除学生返校后再提交纸质培养材料。如因特殊情况无法在开学前提交的,应在学校正式开学后一周内补齐。</span></span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 24px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">5、学籍异动工作:学期初的休学、复学、退学等工作的办理,学生可以通过线上方式报所在学院的研究生教务干事,学院汇总和审核后报研究生院审批。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 24px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; vertical-align: baseline;\">四、论文答辩与学位授予</span></span></strong></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 24px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">1、延迟开学期间,导师</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; vertical-align: baseline;\">要</span></span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; vertical-align: baseline;\">安排好所指导学生的学位论文,提出任务要求,利用信息技术开展远程指导。学校根据疫情防控情况,今年将适当增开学位评定委员会会议的次数,以确保学位授予工作的顺利开展,尽可能避免和减少对学生深造和就业的影响。同时将整体推迟学位论文答辩的相关工作,但具体流程和要求仍须按照《湘潭大学博士硕士学位授予细则》进行,确保学位论文质量不打折,学位授予质量不降低。</span></span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 24px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">2、学校</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; vertical-align: baseline;\">原定于</span></span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">6月中旬召开的学位评定委员会将照常进行,论文查重检测工作推迟到4月中旬,具体安排将另行通知。论文评阅和论文答辩由各学院自主安排,但延迟开学期间,原则上不组织论文答辩(含预答辩)和论文集中评审。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 24px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">3、需推迟参加学位论文查重检测的,由研究生导师向学院提交申请,学院统一向研究生院学位办报备后,学位论文可推迟至5月中旬提交,届时参加论文查重检测,在完成论文评阅和论文答辩及</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; vertical-align: baseline;\">全部材料提交后</span></span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; vertical-align: baseline;\">,学校</span></span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; vertical-align: baseline;\">将于</span></span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">7月</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; vertical-align: baseline;\">中旬</span></span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; vertical-align: baseline;\">增开校学位评定委员会讨论学位</span></span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; vertical-align: baseline;\">授予</span></span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; vertical-align: baseline;\">。</span></span></p><p><br/></p>', '0', '0', '2020-02-28 21:53:01');
INSERT INTO `news` VALUES ('15', '5', '关于开放硕士研究生招生调剂系统的通知', '湘潭大学研究生院', '<p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">根据《</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: inherit; vertical-align: baseline;\">2019</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">年全国硕士研究生招生工作管理规定》(教学〔</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: inherit; vertical-align: baseline;\">2018</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">〕</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: inherit; vertical-align: baseline;\">5</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">号)、《教育部办公厅关于进一步规范和加强研究生考试招生工作的通知》(教学厅</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">〔</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: inherit; vertical-align: baseline;\">2019</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">〕</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: inherit; vertical-align: baseline;\">2</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">号)、《教育部关于加强硕士研究生招生复试工作的指导意见》</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: inherit; vertical-align: baseline;\">(</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">教学〔</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: inherit; vertical-align: baseline;\">2006</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">〕</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: inherit; vertical-align: baseline;\">4</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">号</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: inherit; vertical-align: baseline;\">)</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">要求,按照我校研究生招生工作的统一部署,我校拟于</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: inherit; vertical-align: baseline;\">2019</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">年</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: inherit; vertical-align: baseline;\">3</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">月</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: inherit; vertical-align: baseline;\">25</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">日</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: inherit; vertical-align: baseline;\">18:00</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">至</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: inherit; vertical-align: baseline;\">3</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">月</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: inherit; vertical-align: baseline;\">26</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">日</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: inherit; vertical-align: baseline;\">8:00</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">之间(部分学院根据实际情况会有延长)</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">统一</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">开放硕士研究生招生调剂系统。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: inherit; vertical-align: baseline;\">特此通知</span></span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: inherit; vertical-align: baseline;\"> </span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline; text-align: right;\"><br/></span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: inherit; vertical-align: baseline; text-align: right;\"> </span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline; text-align: right;\">湘潭大学研究生院</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: inherit; font-family: inherit; vertical-align: baseline; text-align: right;\"> </span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 24px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 2em; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: 28.5px; font-family: "Times New Roman", serif; vertical-align: baseline;\"> 2019</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: 28.5px; font-family: 仿宋_GB2312; vertical-align: baseline;\">年</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: 28.5px; font-family: "Times New Roman", serif; vertical-align: baseline;\">3</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: 28.5px; font-family: 仿宋_GB2312; vertical-align: baseline;\">月</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: 28.5px; font-family: "Times New Roman", serif; vertical-align: baseline;\">25</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: 28.5px; font-family: 仿宋_GB2312; vertical-align: baseline;\">日</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: 28.5px; font-family: "Times New Roman", serif; vertical-align: baseline;\"> </span></p><p><br/></p>', '5', '24', '2020-02-28 21:54:12');
INSERT INTO `news` VALUES ('16', '5', '湘潭大学2020年硕士研究生招生相关事项说明', '湘潭大学研究生院', '<p style=\"box-sizing: border-box; margin-top: 1em; margin-bottom: 1em; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 24px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">各位</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline;\">2020</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">年考研同学:</span></p><p style=\"box-sizing: border-box; margin-top: 1em; margin-bottom: 1em; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 24px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">目前,新型冠状病毒肺炎疫情蔓延势头得到初步遏制,防控工作取得阶段性成效,但是全国疫情发展拐点尚未到来,防控形势依然严峻复杂,防控工作仍旧不能放松。根据教育部《关于做好研究生考试招生近期有关工作的通知》、《关于做好</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline;\">2020</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">年硕士研究生招生考试成绩公布等工作的通知》等文件精神和湖南省教育主管部门相关要求,结合我校疫情防控实际,现将</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline;\">2020</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">年硕士研究生</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">招生</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">有关事宜</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">说明</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">如下:</span></p><p style=\"box-sizing: border-box; margin-top: 1em; margin-bottom: 1em; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 24px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline;\">1.</span> <span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">尽管研究生初试成绩已经公布,但</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline;\">2020</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">年</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">硕士研究生招生</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">国家分数线</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">尚</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">未公布,</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">国家对复试调剂录取工作尚未启动,</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">请各位考生保持良好心态,</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">静候国家分数线公布,</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">安心做好复试准备,并遵守国家</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">有关</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">规定,切勿来校访师和咨询,可通过邮件、电话、微信、</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline;\">QQ</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">等途径与相关学院联系</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">咨询</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">。</span></p><p style=\"box-sizing: border-box; margin-top: 1em; margin-bottom: 1em; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 24px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline;\">2. </span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">我校</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">属于一区招生单位,执行全国硕士研究生</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline;\">A</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">类考生进入复试的初试成绩分数线(部分学科专业的分数线</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">将视招生计划情况及</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">一志愿上线</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">情况在国家线基础上</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">自主划定)。</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">学校</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">严格按照教育部和湖南省教育主管部门</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">规定</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">的复试</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">政策、复试</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">时间,在确保考生健康安全的前提下,公平、公开、公正开展复试工作。具体复试方案在国家及省复试政策公布后另行通知,请同学们密切关注我校研究生院网页(</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline;\">http://yjsc.xtu.edu.cn/</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">)、</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline;\">“</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">湘大研招</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline;\">”</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">微信公众号。</span></p><p style=\"box-sizing: border-box; margin-top: 1em; margin-bottom: 1em; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 24px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline;\">3.</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">根据</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">对报考我校的考生考试情况进行分析</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">,</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">预计</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">今年</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">我校部分学</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">院部分学位点有</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">调剂</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">空间,具体数量要在教育部公布了分数线和下达了招生计划后才能确定,考生可向</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">相关学院联系</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">咨询</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">(联系方式请见附件)。</span></p><p style=\"box-sizing: border-box; margin-top: 1em; margin-bottom: 1em; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 21px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background: white;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline;\"> </span></p><p style=\"box-sizing: border-box; margin-top: 1em; margin-bottom: 1em; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 24px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">祝各位平安健康、心想事成!</span></p><p style=\"box-sizing: border-box; margin-top: 1em; margin-bottom: 1em; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 24px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline;\"> </span></p><p style=\"box-sizing: border-box; margin-top: 1em; margin-bottom: 1em; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 24px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline;\"> <span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\">湘潭大学研究生院</span></span></span></p><p style=\"box-sizing: border-box; margin-top: 1em; margin-bottom: 1em; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 24px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 仿宋_GB2312; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline;\"> 2020</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; vertical-align: baseline;\">年</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline;\">2</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; vertical-align: baseline;\">月</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline;\">25</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; vertical-align: baseline;\">日</span></span></span></p>', '2', '0', '2020-02-28 21:55:19');
INSERT INTO `news` VALUES ('17', '5', '湖南省教育考试院《关于我省2020年硕士生招生考试初试成绩公布的公告》', '湘潭大学研究生院', '<p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: medium; line-height: 24px; font-family: -apple-system-font, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif; vertical-align: baseline; text-indent: 43px; color: rgb(40, 40, 40); white-space: normal; max-width: 100%; clear: both; min-height: 1em; letter-spacing: 0.544px; background-color: rgb(255, 255, 255); box-sizing: border-box !important; overflow-wrap: break-word !important;\"><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 21px; line-height: inherit; font-family: 宋体; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\">为贯彻落实国家和我省对新冠病毒肺炎疫情防控工作的精神,有效减少人员流动和聚集带来的疫情风险,切实保障广大考生和招生考试工作人员的生命安全和身体健康,经研究决定,我省2020年硕士生招生考试初试成绩定于2月20日上午10点向社会公布。</span><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 21px; line-height: inherit; font-family: 宋体; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\"></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: medium; line-height: 24px; font-family: -apple-system-font, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif; vertical-align: baseline; text-indent: 40px; color: rgb(40, 40, 40); white-space: normal; max-width: 100%; clear: both; min-height: 1em; letter-spacing: 0.544px; background-color: rgb(255, 255, 255); box-sizing: border-box !important; overflow-wrap: break-word !important;\"><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 20px; line-height: inherit; font-family: 宋体; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\"><br/></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: medium; line-height: 24px; font-family: -apple-system-font, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif; vertical-align: baseline; text-indent: 40px; color: rgb(40, 40, 40); white-space: normal; max-width: 100%; clear: both; min-height: 1em; letter-spacing: 0.544px; background-color: rgb(255, 255, 255); box-sizing: border-box !important; overflow-wrap: break-word !important;\"><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 20px; line-height: inherit; font-family: 宋体; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\">报考在湘招生单位的考生可通过以下三种方式查询本人成绩</span><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 20px; line-height: inherit; font-family: inherit; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\">:<span class=\"Apple-converted-space\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline;\"> </span></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: medium; line-height: 24px; font-family: -apple-system-font, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif; vertical-align: baseline; text-indent: 40px; color: rgb(40, 40, 40); white-space: normal; max-width: 100%; clear: both; min-height: 1em; letter-spacing: 0.544px; background-color: rgb(255, 255, 255); box-sizing: border-box !important; overflow-wrap: break-word !important;\"><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 20px; line-height: inherit; font-family: inherit; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\"><span class=\"Apple-converted-space\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline;\"><br/></span></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: medium; line-height: 24px; font-family: -apple-system-font, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif; vertical-align: baseline; text-indent: 40px; color: rgb(40, 40, 40); white-space: normal; max-width: 100%; clear: both; min-height: 1em; letter-spacing: 0.544px; background-color: rgb(255, 255, 255); box-sizing: border-box !important; overflow-wrap: break-word !important;\"><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 20px; line-height: inherit; font-family: 宋体; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\">一是关注湖南省教育考试院官微</span><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 20px; line-height: inherit; font-family: inherit; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\">“</span><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 20px; line-height: inherit; font-family: 宋体; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\">湘微招考</span><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 20px; line-height: inherit; font-family: inherit; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\">”</span><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 20px; line-height: inherit; font-family: 宋体; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\">(</span><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 20px; line-height: inherit; font-family: inherit; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\">ID:hunan-zhaokao</span><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 20px; line-height: inherit; font-family: 宋体; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\">)微信公众号进行查询;</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: medium; line-height: 24px; font-family: -apple-system-font, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif; vertical-align: baseline; text-indent: 40px; color: rgb(40, 40, 40); white-space: normal; max-width: 100%; clear: both; min-height: 1em; letter-spacing: 0.544px; background-color: rgb(255, 255, 255); box-sizing: border-box !important; overflow-wrap: break-word !important;\"><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 20px; line-height: inherit; font-family: 宋体; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\"><br/></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: medium; line-height: 24px; font-family: -apple-system-font, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif; vertical-align: baseline; text-indent: 40px; color: rgb(40, 40, 40); white-space: normal; max-width: 100%; clear: both; min-height: 1em; letter-spacing: 0.544px; background-color: rgb(255, 255, 255); box-sizing: border-box !important; overflow-wrap: break-word !important;\"><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 20px; line-height: inherit; font-family: 宋体; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\">二是登录湖南省教育考试院服务网</span><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 20px; line-height: inherit; font-family: inherit; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\">“</span><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 20px; line-height: inherit; font-family: 宋体; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\">湖南招生考试信息港</span><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 20px; line-height: inherit; font-family: inherit; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\">”</span><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 20px; line-height: inherit; font-family: 宋体; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\">(</span><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 20px; line-height: inherit; font-family: inherit; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\">https://www.hneeb.cn</span><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 20px; line-height: inherit; font-family: 宋体; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\">)查询</span><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 20px; line-height: inherit; font-family: inherit; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\">;</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: medium; line-height: 24px; font-family: -apple-system-font, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif; vertical-align: baseline; text-indent: 40px; color: rgb(40, 40, 40); white-space: normal; max-width: 100%; clear: both; min-height: 1em; letter-spacing: 0.544px; background-color: rgb(255, 255, 255); box-sizing: border-box !important; overflow-wrap: break-word !important;\"><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 20px; line-height: inherit; font-family: inherit; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\"><br/></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: medium; line-height: 24px; font-family: -apple-system-font, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif; vertical-align: baseline; text-indent: 40px; color: rgb(40, 40, 40); white-space: normal; max-width: 100%; clear: both; min-height: 1em; letter-spacing: 0.544px; background-color: rgb(255, 255, 255); box-sizing: border-box !important; overflow-wrap: break-word !important;\"><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 20px; line-height: inherit; font-family: 宋体; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\">三是湖南移动用户通过发送</span><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 20px; line-height: inherit; font-family: inherit; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\">“CJYK#”</span><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 20px; line-height: inherit; font-family: 宋体; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\">加</span><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 20px; line-height: inherit; font-family: inherit; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\">“</span><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 20px; line-height: inherit; font-family: 宋体; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\">考生编号</span><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 20px; line-height: inherit; font-family: inherit; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\">”</span><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 20px; line-height: inherit; font-family: 宋体; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\">(如:</span><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 20px; line-height: inherit; font-family: inherit; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\">CJYK#105203040506078</span><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 20px; line-height: inherit; font-family: 宋体; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\">)到</span><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 20px; line-height: inherit; font-family: inherit; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\">1065899261</span><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 20px; line-height: inherit; font-family: 宋体; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\">进行查询,湖南联通用户通过发送“</span><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 20px; line-height: inherit; font-family: inherit; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\">CJYK#</span><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 20px; line-height: inherit; font-family: 宋体; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\">”加“考生编号”(如:</span><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 20px; line-height: inherit; font-family: inherit; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\">CJYK#105203040506078</span><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 20px; line-height: inherit; font-family: 宋体; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\">)到</span><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 20px; line-height: inherit; font-family: inherit; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\">1062899271</span><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 20px; line-height: inherit; font-family: 宋体; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\">查询。</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: medium; line-height: 24px; font-family: -apple-system-font, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif; vertical-align: baseline; text-indent: 44px; color: rgb(40, 40, 40); white-space: normal; max-width: 100%; clear: both; min-height: 1em; letter-spacing: 0.544px; background-color: rgb(255, 255, 255); box-sizing: border-box !important; overflow-wrap: break-word !important;\"><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 21px; line-height: inherit; font-family: 宋体; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\"><br/></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: medium; line-height: 24px; font-family: -apple-system-font, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif; vertical-align: baseline; text-indent: 44px; color: rgb(40, 40, 40); white-space: normal; max-width: 100%; clear: both; min-height: 1em; letter-spacing: 0.544px; background-color: rgb(255, 255, 255); box-sizing: border-box !important; overflow-wrap: break-word !important;\"><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 21px; line-height: inherit; font-family: 宋体; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\">考生如对成绩有异议,其成绩申请复核的程序和时间,将视疫情防控进展情况另行通知。</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: medium; line-height: 24px; font-family: -apple-system-font, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif; vertical-align: baseline; text-indent: 44px; color: rgb(40, 40, 40); white-space: normal; max-width: 100%; clear: both; min-height: 1em; letter-spacing: 0.544px; background-color: rgb(255, 255, 255); box-sizing: border-box !important; overflow-wrap: break-word !important;\"><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 21px; line-height: inherit; font-family: 宋体; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\"> </span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: medium; line-height: 24px; font-family: -apple-system-font, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif; vertical-align: baseline; text-indent: 44px; color: rgb(40, 40, 40); white-space: normal; max-width: 100%; clear: both; min-height: 1em; letter-spacing: 0.544px; background-color: rgb(255, 255, 255); box-sizing: border-box !important; overflow-wrap: break-word !important;\"><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 21px; line-height: inherit; font-family: 宋体; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\"> </span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: medium; line-height: 24px; font-family: -apple-system-font, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif; vertical-align: baseline; text-indent: 44px; color: rgb(40, 40, 40); white-space: normal; max-width: 100%; clear: both; min-height: 1em; letter-spacing: 0.544px; background-color: rgb(255, 255, 255); box-sizing: border-box !important; overflow-wrap: break-word !important;\"><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 21px; line-height: inherit; font-family: 宋体; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\"> <span class=\"Apple-converted-space\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline;\"> </span></span><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 21px; line-height: inherit; font-family: 宋体; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\">湖南省教育考试院</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: medium; line-height: 24px; font-family: -apple-system-font, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif; vertical-align: baseline; text-indent: 44px; color: rgb(40, 40, 40); white-space: normal; max-width: 100%; clear: both; min-height: 1em; letter-spacing: 0.544px; background-color: rgb(255, 255, 255); box-sizing: border-box !important; overflow-wrap: break-word !important;\"><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 21px; line-height: inherit; font-family: 宋体; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\"> 2020</span><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 21px; line-height: inherit; font-family: 宋体; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word !important;\">年2月11日</span></p><p><br/></p>', '1', '1', '2020-02-28 21:56:12');
INSERT INTO `news` VALUES ('18', '5', '2020年全国硕士研究生招生考试湘潭大学考点(4302)现场确认公告', '湘潭大学研究生院', '<p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 21px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 2em; color: rgb(40, 40, 40); white-space: normal; text-align: center; background: white;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: 28.5px; font-family: 方正小标宋简体; vertical-align: baseline; color: rgb(68, 68, 68);\">2020</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: 28.5px; font-family: 方正小标宋简体; vertical-align: baseline; color: rgb(68, 68, 68);\">年全国硕士研究生招生考试湘潭大学考点(4302)</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 21px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 2em; color: rgb(40, 40, 40); white-space: normal; text-align: center; background: white;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 19px; line-height: 28.5px; font-family: 方正小标宋简体; vertical-align: baseline; color: rgb(68, 68, 68);\">现场确认公告</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 21px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; color: rgb(51, 51, 51);\">2020</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; color: rgb(51, 51, 51);\">年全国硕士研究生招生考试现场确认工作将于2019年11月4日至11月7日进行。湘潭大学报考点(4302)采用网上确认方式,考生使用手机登录网上确认系统(网址:<a href=\"https://yz.chsi.com.cn/wsqr/stu/\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; background: transparent; color: rgb(0, 77, 161); text-decoration-line: none; cursor: pointer;\">https://yz.chsi.com.cn/wsqr/stu/</a>)。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 21px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; color: rgb(51, 51, 51);\">考生进入登录页面后,输入学信网账号、密码,完成本人网报信息核对、相关材料上传等操作后提交考点审核。<span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; text-decoration-line: underline;\">网上审核通过的考生不需再到现场审核。网上审核未通过的考生需在2019年</span></span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; text-decoration-line: underline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; color: red;\">11</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; color: red;\">月7日</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; color: rgb(51, 51, 51);\">到湘潭大学进行现场审核。</span></span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 21px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 黑体; vertical-align: baseline; color: rgb(51, 51, 51);\">一、网上确认的考生范围</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 21px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; color: rgb(51, 51, 51);\">所有符合教育部、湖南省关于</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: Calibri, sans-serif; vertical-align: baseline; color: rgb(51, 51, 51);\">2020</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; color: rgb(51, 51, 51);\">年全国硕士研究生招生考试各项要求,选择湘潭大学(4302)为报考点且在规定时间完成网上报名并缴费成功的</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: Calibri, sans-serif; vertical-align: baseline; color: rgb(51, 51, 51);\">2020</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; color: rgb(51, 51, 51);\">年全国硕士研究生考生。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 21px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 黑体; vertical-align: baseline; color: rgb(51, 51, 51);\">二、网上确认时间</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 21px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><strong style=\"box-sizing: border-box;\">2019年<span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: Calibri, sans-serif; vertical-align: baseline;\">11</span>月<span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: Calibri, sans-serif; vertical-align: baseline;\">4</span>日14:00至11月6日16:00。</strong></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 21px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; color: red;\">已经上传材料但审核未通过的考生,补充材料截止时间为11月</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: Calibri, sans-serif; vertical-align: baseline; color: red;\">7</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; color: red;\">日</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: Calibri, sans-serif; vertical-align: baseline; color: red;\">11:00</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; color: red;\">。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 21px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; color: rgb(51, 51, 51);\">考生须于规定时间内通过网上确认系统,按照要求完成本人的网报信息核对、相关材料上传等操作,逾期不再进行确认。建议考生不要等到确认的最后一天才提交审核材料,以免因审核不通过没有足够的时间准备补充材料而错过现场确认。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 21px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 黑体; vertical-align: baseline; color: rgb(51, 51, 51);\">三、咨询电话及现场审核地址</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 21px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; color: rgb(51, 51, 51);\">咨询电话:0731-58292051</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 21px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; color: rgb(51, 51, 51);\">网上审核未通过者,需前往湘潭大学进行现场审核,现场审核地址:湖南省湘潭市雨湖区湘潭大学研究生院招生办(校办公楼A313)。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 21px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 黑体; vertical-align: baseline; color: rgb(51, 51, 51);\">四、网上确认所需提交材料及标准</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 21px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; color: rgb(51, 51, 51);\">网上确认所需提交材料及标准请见《湘潭大学报考点网上确认需上传材料及标准》(附件)。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 21px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 黑体; vertical-align: baseline; color: rgb(51, 51, 51);\">五、结果反馈</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 21px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; color: rgb(51, 51, 51);\">审核结果通过网上确认系统反馈,请考生及时登录网上确认系统查询审核结果!<span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; text-decoration-line: underline;\">审核通过的考生,表示其现场确认环节已完成。未通过审核的考生,请根据系统提示和要求重新提交相关材料或到现场审核地提供原始材料现场审核。</span></span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 21px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 黑体; vertical-align: baseline; color: rgb(51, 51, 51);\">六、注意事项</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 21px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; color: rgb(51, 51, 51);\">1.</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; color: rgb(51, 51, 51);\">考生须在网上报名时完成报名费支付,未交费考生信息为无效信息,不能参加网上信息确认。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 21px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; color: rgb(51, 51, 51);\">2.</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; color: rgb(51, 51, 51);\">考生仅能确认一个有效的网上报名信息。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 21px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; color: rgb(51, 51, 51);\">3.</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; color: rgb(51, 51, 51);\">考生需对本人的网报信息进行认真仔细地核对,并在规定时间<span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; text-decoration-line: underline;\">提交相关材料</span>完成网上确认。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 21px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; color: rgb(51, 51, 51);\">4.</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; color: rgb(51, 51, 51);\">根据教育部文件规定,所有考生均应当对本人网上报名信息进行认真核对并确认。报名信息经考生确认后一律不作修改,因考生填写错误引起的一切后果由考生自行承担。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 21px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; color: rgb(51, 51, 51);\">5.</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; color: rgb(51, 51, 51);\">推免生不需要进行网上确认。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 21px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; color: rgb(51, 51, 51);\"> </span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 21px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 37px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; color: rgb(51, 51, 51);\"> </span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 21px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 2em; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255); text-align: right;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; color: rgb(51, 51, 51);\">湘潭大学研究生院</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 21px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 2em; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255); text-align: right;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; color: rgb(51, 51, 51);\"> 2019</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; color: rgb(51, 51, 51);\">年10月26日</span></p><p><br/></p>', '3', '7', '2020-02-28 21:56:54');
INSERT INTO `news` VALUES ('19', '5', '湘潭大学2020年硕士研究生招生简章', '湘潭大学研究生院', '<p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 30px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline; letter-spacing: 0px;\">湘潭大学2020年计划招收全日制学术型硕士研究生1300人,全日制专业学位硕士研究生1000人,非全日制硕士研究生150人(最终招生人数以教育部实际下达的招生计划为准)。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">第一条 培养目标</span></strong></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">招收硕士研究生是为了培养热爱祖国,拥护中国共产党的领导,拥护社会主义制度,遵纪守法,品德良好,具有服务国家、服务人民的社会责任感,掌握本学科坚实的基础理论和系统的专业知识,具有创新精神、创新能力和从事科学研究、教学、管理等工作能力的高层次学术型专门人才以及具有较强解决实际问题的能力、能够承担专业技术或管理工作、具有良好职业素养的高层次应用型专门人才。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">第二条 报名参加全国硕士研究生招生考试的人员,须符合下列条件:</span></strong></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">(一)中华人民共和国公民。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">(二)拥护中国共产党的领导,愿为社会主义现代化建设服务,品德良好,遵纪守法。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">(三)身体健康状况符合国家和招生单位规定的体检要求。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 35px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">(四)考生学业水平必须符合下列条件之一:</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">1.</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">国家承认学历的应届本科毕业生(含普通高校、成人高校、普通高校举办的成人高等学历教育应届本科毕业生)及自学考试和网络教育届时可毕业本科生,录取当年入学前(具体以当年学校确定的研究生新生报到日期为准,下同)须取得国家承认的本科毕业证书,否则录取资格无效。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">2.</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">自学考试的考生要求注册学籍在2018年12月以前,录取当年入学前(具体日期同上)须取得国家承认的本科毕业证书。凡报考我校的未毕业自考生,须在网报信息的备用信息1中填写考生本人的考籍号。在湖南省报考的未毕业自考生在现场确认时,需持本人身份证和本人考籍证确认。请尚未毕业的自考生网报时认真查看我校的报考条件,凡不符合报考条件的考生,一律不得报考。否则,由此造成后续不能现场确认、考试的,后果由考生本人承担。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">3.</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">具有国家承认的大学本科毕业学历的人员。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">4.</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">获得国家承认的高职高专毕业学历后满2年(从毕业后到录取当年入学之日,下同)或2年以上的人员,以及国家承认学历的本科结业生,符合我校对考生提出的具体学业要求的,按本科毕业生同等学力身份报考。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">5.</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">已获硕士、博士学位的人员。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">我校不接受在校研究生报考。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">6. </span></strong><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">以下专业报考考生必须选择湘潭大学报考点(4302):</span></strong></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">(1)报考机械(085500)专业考试科目为:①政治理论(101)、②英语二(204)、③工业设计工程(337)、④产品快题设计(833)的考生</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">(2)报考美术(135107)专业考试科目为:①政治理论(101)、②英语二(204)、③艺术概论(718)、④命题创作(842)的考生。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">(3)报考艺术设计(135108)专业考试科目为:①政治理论(101)、②英语二(204)、③艺术概论(718)、④命题创作(842)的考生。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\"> (</span></strong><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">五)我校关于学生个人档案的重要注意事项</span></strong></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">1. </span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">全日制硕士研究生的个人档案必须在录取当年入学前(具体日期同上)到校。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">2.</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">个人档案一经调入学校,毕业前不允许提前调出学校。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">3.</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">凡未按规定办理档案手续的,开学后将不予以注册。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">第三条 报名参加以下专业学位全国硕士研究生招生考试的,按下列规定执行。</span></strong></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 31px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">(一)报名参加法律(非法学)专业学位硕士研究生招生考试的人员,须符合下列条件:</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 31px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">1.</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">符合第二条中的各项要求。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 31px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">2.</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">报考前所学专业为非法学专业(普通高等学校本科专业目录法学门类中的法学类专业[代码为0301]毕业生、专科层次法学类毕业生和自学考试形式的法学类毕业生等不得报考)。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 29px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline; letter-spacing: 0px;\">(二)报名参加法律(法学)专业学位硕士研究生招生考试的人员,须符合下列条件:</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 31px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">1.</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">符合第二条中的各项要求。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 31px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">2.</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">报考前所学专业为<strong style=\"box-sizing: border-box;\">法学专业</strong>(仅普通高等学校本科专业目录法学门类中的法学类专业[代码为0301]毕业生、专科层次法学类毕业生和自学考试形式的法学类毕业生等可以报考)。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 31px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">(三)报名参加工商管理、公共管理、旅游管理专业学位研究生招生考试的人员,须符合下列条件:</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 31px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">1.</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">符合第二条中第(一)、(二)、(三)各项的要求。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 31px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">2.</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">大学本科毕业后有3年以上工作经验的人员;或获得国家承认的高职高专毕业学历或大学本科结业后,达到大学本科毕业同等学力并有5年以上工作经验的人员;或获得硕士学位或博士学位后有2年以上工作经验的人员。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 31px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">工商管理硕士专业学位研究生相关考试招生政策同时按照《教育部关于进一步规范工商管理硕士专业学位研究生教育的意见》(教研〔2016〕2号)有关规定执行。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">第四条 接收推荐免试生</span></strong></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">欢迎获得考生所在学校推荐免试资格的优秀应届本科毕业生报考我校,详情请浏览我校研究生院主页的推免生接收通知(网址:http://yjsc.xtu.edu.cn/home02/89919.jhtml)。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">已被招生单位接收的推免生,不得再报名参加当年硕士研究生考试招生,否则取消其推免录取资格。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">第五条 “退役大学生士兵”专项硕士研究生招生计划</span></strong></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">我校2020年“退役大学生士兵”专项硕士研究生招生计划指标8个,面向工商管理、公共管理专业学位两个专业招生。报考“退役大学生士兵”专项硕士研究生招生计划的考生需符合以下条件:</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">考生应为高校学生应征入伍退出现役,且符合硕士研究生报考条件者(高校学生指全日制普通本专科(含高职)、研究生、第二学士学位的应(往)届毕业生、在校生和入学新生,以及成人高校招收的普通本专科(高职)应(往)届毕业生、在校生和入学新生,下同)。考生报名时应选择填报退役大学生士兵专项计划,并按要求填报本人入伍前的入学信息以及入伍、退役等相关信息。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">第六条 非全日制研究生招生</span></strong></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">非全日制研究生指符合国家研究生招生规定,通过研究生入学考试或者国家承认的其他入学方式,被具有实施研究生教育资格的高等学校或其他高等教育机构录取,在基本修业年限或者学校规定的修业年限(一般应适当延长基本修业年限)内,在从事其他职业或者社会实践的同时,采取多种方式和灵活时间安排进行非脱产学习的研究生。<strong style=\"box-sizing: border-box;\">原则上非全日制硕士研究生招收在职定向就业人员。</strong></span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">全日制和非全日制研究生毕业时,所在高等学校根据其修业年限、学业成绩等,按照国家有关规定发给相应的、注明学习方式的毕业证书;其学业水平达到国家规定的学位标准,可以申请授予相应的学位证书。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">非全日制和全日制研究生执行相同的考试招生政策和培养标准,</span></strong><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">其学历学位证书具有同等法律地位和相同效力。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">我校2020年共有8个专业学位招收非全日制硕士研究生,其中工商管理(40人)、公共管理(55人)、法律(法学)(10人)、法律(非法学)(20人)、旅游管理(10人)、机械(5人)、电子信息(5人)、土木水利(5人)。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">湘潭大学非全日制研究生学制3年(一般应适当延长基本修业年限),具体学费标准请参见湖南省物价局最新文件。非全日制学习地点为湘潭大学。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">第七条 报名</span></strong></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">报名包括网上报名和现场确认两个阶段。所有考生均须进行网上报名,并按报考点要求进行现场确认网报信息和采集本人图像等相关信息,同时按规定缴纳报考费。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">(一)网上报名</span></strong></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">1.</span></strong><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">网上报名时间</span></strong><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">:2019年10月10日至10月31日(9:00-22:00), 网上预报名时间为9月24日至9月27日为(9:00—22:00)。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">2.</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">考生在规定时间内登录中国研究生招生信息网(以下简称“研招网”)浏览报考须知,并按网站的提示和要求如实填写本人报名信息(预报名信息有效,无需重复报名)。<strong style=\"box-sizing: border-box;\">报名期间,考生可自行修改网上报名信息或重新填报报名信息,但一位考生只能保留一条有效报名信息。逾期不再补报,也不得修改报名信息。逾期不再补报,也不得修改报名信息(请注意,绝对没有补报名,一定不要错过报名时间)。</strong></span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">3.</span></strong><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">考生请按照各省规定通过网上缴纳或现场确认时缴纳报考费,未缴纳报考费的考生不予现场确认和准考。选择湖南省内考点的考生必须在网上缴费,缴纳报考费的时间为10月10至10月31日(每天9:00-22:00),其他时间无法网上支付。9月份已经预报名的考生,在此期间须登录网报系统支付报考费。</span></strong></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 31px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">4.</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">报名期间将对考生学历(学籍)信息进行网上校验,考生可上网查看学历(学籍)校验结果。考生也可在报名前或报名期间自行登录“中国高等教育学生信息网(网址:</span><a href=\"http://www.chsi.com.cn/\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; background: transparent; color: rgb(0, 77, 161); text-decoration-line: none; cursor: pointer;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; text-decoration-line: underline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: "Times New Roman", serif; vertical-align: baseline; color: black;\">h</span></span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; text-decoration-line: underline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: "Times New Roman", serif; vertical-align: baseline; color: black;\">tt</span></span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; text-decoration-line: underline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: "Times New Roman", serif; vertical-align: baseline; color: black;\">p</span></span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; text-decoration-line: underline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: "Times New Roman", serif; vertical-align: baseline; color: black;\">:</span></span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; text-decoration-line: underline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: "Times New Roman", serif; vertical-align: baseline; color: black;\">www</span></span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; text-decoration-line: underline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: "Times New Roman", serif; vertical-align: baseline; color: black;\">.</span></span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; text-decoration-line: underline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: "Times New Roman", serif; vertical-align: baseline; color: black;\">c</span></span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; text-decoration-line: underline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: "Times New Roman", serif; vertical-align: baseline; color: black;\">h</span></span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; text-decoration-line: underline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: "Times New Roman", serif; vertical-align: baseline; color: black;\">s</span></span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; text-decoration-line: underline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: "Times New Roman", serif; vertical-align: baseline; color: black;\">i</span></span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; text-decoration-line: underline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: "Times New Roman", serif; vertical-align: baseline; color: black;\">.</span></span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; text-decoration-line: underline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: "Times New Roman", serif; vertical-align: baseline; color: black;\">c</span></span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; text-decoration-line: underline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: "Times New Roman", serif; vertical-align: baseline; color: black;\">o</span></span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; text-decoration-line: underline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: "Times New Roman", serif; vertical-align: baseline; color: black;\">m</span></span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; text-decoration-line: underline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: "Times New Roman", serif; vertical-align: baseline; color: black;\">.</span></span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; text-decoration-line: underline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: "Times New Roman", serif; vertical-align: baseline; color: black;\">c</span></span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; text-decoration-line: underline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: "Times New Roman", serif; vertical-align: baseline; color: black;\">n</span></span></a><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">)查询本人学历(学籍)信息。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 31px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">凡报名系统中未通过学历(学籍)校验的,</span></strong><a href=\"mailto:%E5%BF%85%E9%A1%BB%E5%9C%A82019%E5%B9%B411%E6%9C%8815%E6%97%A5%E5%89%8D%E5%B0%86%E4%B8%AA%E4%BA%BA%E5%AD%A6%E5%8E%86%E8%AE%A4%E8%AF%81%E6%8A%A5%E5%91%8A%E7%AD%89%E8%AF%81%E6%98%8E%E6%9D%90%E6%96%99%E5%8F%91%E8%87%B3%E6%88%91%E6%A0%A1%E6%8B%9B%E7%94%9F%E5%8A%9E%E9%82%AE%E7%AE%B1%EF%BC%[email protected]\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; background: transparent; color: rgb(0, 77, 161); text-decoration-line: none; cursor: pointer;\"><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline; color: black;\">必须在2019</span></strong><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline; color: black;\">年11</span></strong><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline; color: black;\">月15</span></strong><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline; color: black;\">日前将个人学历认证报告等证明材料发至我校招生办邮箱([email protected]</span></strong></a><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">),否则我校将取消其考试资格。</span></strong></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">5.</span></strong><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">考生应认真了解并严格按照报考条件及相关政策要求选择填报志愿。因不符合报考条件及相关政策要求,造成后续不能现场确认、考试、复试或录取的,后果由考生本人承担。</span></strong></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">6.</span></strong><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">考生应按要求准确填写个人网上报名信息并提供真实材料。考生因网报信息填写错误、填报虚假信息而造成不能考试、复试或录取的,后果由考生本人承担。</span></strong></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 31px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">(二)现场确认</span></strong></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 31px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">1.</span></strong><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">现场确认时间:</span></strong><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">具体时间见各报考点的确认公告,一般为11月上旬。</span></strong></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 31px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">2.</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">所有考生(不含推免生)持本人有效居民身份证、学历学位证书(应届本科毕业生持学生证、未毕业自考生提供学籍卡(证)),到网报时选定的报考点凭报名编号缴费(湖南省内考点现场确认不进行缴费)、采集本人图像。报考“退役大学生士兵”专项硕士研究生招生计划的考生还应提交本人《入伍批准书》和《退出现役证》。未在规定时间内完成缴费和图像采集者,报考无效。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 31px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">3.<strong style=\"box-sizing: border-box;\"> </strong></span><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline; letter-spacing: 0px;\">所有考生均要对本人网上报名信息进行认真核对并确认。经考生确认的报名信息在考试、复试及录取阶段一律不作修改,因考生填写错误引起的一切后果由其自行承担。</span></strong></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 31px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">4.</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">考生报名时不需档案单位介绍信,报考材料也不需加盖公章,但拟录取后需出具考生现实表现等材料,所以请考生务必征得单位同意;若因上述问题使学校无法调取考生档案,造成考生不能复试或无法录取的,后果由考生本人承担。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 31px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline; letter-spacing: 0px;\">5. </span></strong><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">考生所填各种信息及所有报考材料必须真实,对弄虚作假者(含推免生),一经查实,即按有关规定严肃处理。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">第八条 入学考试</span></strong></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">入学考试分初试和复试。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">(一)初试</span></strong></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">1.</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">初试时间:2019年12月21至12月22日(上午8:30—11:30,下午14:00—17:00)。超过3小时的考试科目在12月23日进行(起始时间8:30,截止时间由招生单位确定,不超过14:30)。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">2.</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">初试科目:根据教育部有关规定,工商管理(专业学位)、公共管理(专业学位)、会计(专业学位)、旅游管理(专业学位)、图书情报(专业学位)、法律(法学)、法律(非法学)均为全国统考。其中,101-政治理论、199-管理类联考综合能力、201-英语一、202-俄语、203-日语、204-英语二、301-数学一、302-数学二、303-数学三、397-法硕联考专业基础(法学)、398-法硕联考专业基础(非法学)、497-法硕联考综合(法学)、498-法硕联考综合(非法学)均为全国统考或联考科目,有关考试内容请参照教育部统一编制的考试大纲。其他科目均由我校自行命题,各科考试时间均为3小时。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">3.</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">初试地点:考生在报名点指定的地点参加考试,详见考生准考证。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">(二)复试</span></strong></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">1.</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">复试时间、地点、内容及方式由我校自定,相关通知会及时在我校研究生院网站上进行公布。复试内容包括专业课笔试、外语听力与口语、专业综合面试。复试成绩和<span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; letter-spacing: 0px;\">初试成绩按权重相加,得出入学考试总成绩</span>。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">2.</span></strong><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">资格审查</span></strong></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">复试阶段将再次对参加复试考生进行资格审查,届时考生须出示下列材料:</span></strong></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">(1)本人有效身份证原件及复印件;</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">(2) 学历证书、学位证书原件及复印件(应届本科毕业生持学生证原件及复印件);</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">(3)考生所在单位出具的现实表现材料(需由考生本人档案或工作所在单位的人事、政工部门加盖印章);</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">(4)未通过网上学历(学籍)校验的考生,<strong style=\"box-sizing: border-box;\">资格审查</strong>时还需持教育部学信网下载的《教育部学历证书电子注册备案表》或《中国高等教育学历认证报告》原件和复印件进行现场确认;</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">(5)持国外学历报名考生,<strong style=\"box-sizing: border-box;\">资格审查</strong>时还需出具教育部留学服务中心出具的留学认证材料原件和复印件。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">(6)凡未毕业自考生,考生需持本人身份证和本人考籍卡(证)确认。</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">自学考试的考生要求注册学籍在2018年12月以前,录取当年入学前(具体日期同上)须取得国家承认的本科毕业证书。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">3. </span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">同等学力或本科专业跨一级学科报考的考生,在复试中须加试至少两门与报考专业相关的本科主干课程。加试科目不得与初试科目相同。加试方式为笔试。(具体科目见复试方案)</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">第九条 体格检查</span></strong></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">体检时间:考生在拟录取后须参加体检,具体时间、要求由我校在复试前通知。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">体检要求:按照《普通高等学校招生体检工作指导意见》(教学〔2003〕3号)、《教育部办公厅 卫生部办公厅关于普通高等学校招生学生入学身体检查取消乙肝项目检测有关问题的通知》(教学厅〔2010〕2号)执行。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">第十条 录取</span></strong></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">我校根据国家下达的招生计划、复试录取办法以及考生入学考试(包括初试、复试)成绩,结合考生平时学习成绩和思想政治表现、业务素质、身心健康状况以及档案(工作)单位现实表现材料等择优确定拟录取名单。</span><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 宋体; vertical-align: baseline;\"> </span></strong></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">第十一条 学习年限</span></strong></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">研究生教育实行弹性学制。全日制硕士研究生学制3年,学习年限2-4年。非全日制硕士研究生学制3年,学习年限3-5年。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">第十二条 住宿及收费</span></strong></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">全日制学生由学校统一安排住宿。具体学费及住宿费标准请参见湖南省物价局最新文件。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">第十三条 违规处理</span></strong></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">对于填报虚假信息、提交虚假材料、考试作弊及其他违反考试管理规定和考场纪律的考生,我校将通知考生所在单位(学校),并按照《国家教育考试违纪处理办法》(教育部令第33号)进行严肃处理。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">第十四条 </span></strong><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">其他注意事项</span></strong></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">1.</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">请密切关注我校研究生院网站上的招生信息及通知。招生信息如有变动,请以报名期间研究生院网站公布的招生简章、专业目录、复试内容及相关信息为准。有关业务课考试问题咨询,请直接与报考学院联系。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">2.</span></strong><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">湘潭大学应届毕业生的档案和学习单位统一填写为“湘潭大学XX学院”,通讯地址为“湘潭大学XX学院XX班”。</span></strong></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">3.</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">请考生报名后不要随意变更联系电话,以免影响现场确认、复试、录取通知书发放等后续工作。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">4.</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">监督电话:纪委0731-58298628 </span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">5.</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">学校基本信息</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">单位代码:10530</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">通信地址:湖南湘潭市湘潭大学研究生院招生办(411105)</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">联系电话:(0731)58292051(研招办) 传 真:(0731)58292695</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">网 址:</span><a href=\"http://yjsc.xtu.edu.cn/\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; background: transparent; color: rgb(0, 77, 161); text-decoration-line: none; cursor: pointer;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">http://yjsc.xtu.edu.cn/</span></a><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: 宋体; vertical-align: baseline;\"> </span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">E-Mail </span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">:</span><a href=\"mailto:[email protected]\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; background: transparent; color: rgb(0, 77, 161); text-decoration-line: none; cursor: pointer;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; text-decoration-line: underline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: "Times New Roman", serif; vertical-align: baseline; color: black;\">y</span></span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; text-decoration-line: underline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: "Times New Roman", serif; vertical-align: baseline; color: black;\">z</span></span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; text-decoration-line: underline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: "Times New Roman", serif; vertical-align: baseline; color: black;\">b</span></span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; text-decoration-line: underline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: "Times New Roman", serif; vertical-align: baseline; color: black;\">@</span></span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; text-decoration-line: underline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: "Times New Roman", serif; vertical-align: baseline; color: black;\">x</span></span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; text-decoration-line: underline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: "Times New Roman", serif; vertical-align: baseline; color: black;\">t</span></span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; text-decoration-line: underline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: "Times New Roman", serif; vertical-align: baseline; color: black;\">u</span></span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; text-decoration-line: underline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: "Times New Roman", serif; vertical-align: baseline; color: black;\">.</span></span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; text-decoration-line: underline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: "Times New Roman", serif; vertical-align: baseline; color: black;\">e</span></span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; text-decoration-line: underline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: "Times New Roman", serif; vertical-align: baseline; color: black;\">d</span></span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; text-decoration-line: underline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: "Times New Roman", serif; vertical-align: baseline; color: black;\">u</span></span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; text-decoration-line: underline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: "Times New Roman", serif; vertical-align: baseline; color: black;\">.</span></span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; text-decoration-line: underline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: "Times New Roman", serif; vertical-align: baseline; color: black;\">c</span></span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; text-decoration-line: underline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: "Times New Roman", serif; vertical-align: baseline; color: black;\">n</span></span></a></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">联系人 :杨老师 黄老师</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 15px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 14px; line-height: 32px; font-family: "Times New Roman", Times, serif; vertical-align: baseline; text-indent: 32px; color: rgb(40, 40, 40); white-space: normal; background-color: rgb(255, 255, 255);\"><strong style=\"box-sizing: border-box;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: 宋体; vertical-align: baseline;\">热忱欢迎高等学校应届本科毕业生和在职人员报考我校硕士研究生。</span></strong></p><p><br/></p>', '16', '10', '2020-02-28 21:57:54');
-- ----------------------------
-- Table structure for `news_category`
-- ----------------------------
DROP TABLE IF EXISTS `news_category`;
CREATE TABLE `news_category` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(32) NOT NULL,
`sort` int(3) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of news_category
-- ----------------------------
INSERT INTO `news_category` VALUES ('5', '招生信息', '0');
INSERT INTO `news_category` VALUES ('10', '专业目录', '1');
INSERT INTO `news_category` VALUES ('15', '参考书目', '3');
INSERT INTO `news_category` VALUES ('17', '考研大纲', '5');
-- ----------------------------
-- Table structure for `reply`
-- ----------------------------
DROP TABLE IF EXISTS `reply`;
CREATE TABLE `reply` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '回复id',
`topic_id` int(11) NOT NULL COMMENT '主题id',
`reply_user_id` int(11) NOT NULL COMMENT '用户id',
`content` text CHARACTER SET utf8mb4 NOT NULL COMMENT '回复内容',
`create_time` timestamp NULL DEFAULT NULL COMMENT '创建时间',
`update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间',
`device` varchar(20) CHARACTER SET utf8mb4 DEFAULT NULL COMMENT '设备',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=64 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- ----------------------------
-- Records of reply
-- ----------------------------
INSERT INTO `reply` VALUES ('56', '26', '17', '1111', '2020-04-02 21:42:02', '2020-04-02 21:42:02', null);
INSERT INTO `reply` VALUES ('57', '25', '17', '111', '2020-04-02 22:08:41', '2020-04-02 22:08:41', null);
INSERT INTO `reply` VALUES ('58', '20', '17', '222', '2020-04-02 22:08:52', '2020-04-02 22:08:52', null);
INSERT INTO `reply` VALUES ('59', '18', '17', '2222', '2020-04-02 22:09:05', '2020-04-02 22:09:05', null);
INSERT INTO `reply` VALUES ('60', '19', '17', '3333', '2020-04-02 22:09:16', '2020-04-02 22:09:16', null);
INSERT INTO `reply` VALUES ('61', '21', '17', '3333', '2020-04-02 22:09:24', '2020-04-02 22:09:24', null);
INSERT INTO `reply` VALUES ('62', '21', '17', '3333', '2020-04-02 22:09:36', '2020-04-02 22:09:36', null);
-- ----------------------------
-- Table structure for `role`
-- ----------------------------
DROP TABLE IF EXISTS `role`;
CREATE TABLE `role` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(32) NOT NULL,
`remark` varchar(128) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of role
-- ----------------------------
INSERT INTO `role` VALUES ('1', '超级管理员', '超级管理员拥有一切权限!');
INSERT INTO `role` VALUES ('2', '普通用户', '普通用户,请自由授权!');
-- ----------------------------
-- Table structure for `tab`
-- ----------------------------
DROP TABLE IF EXISTS `tab`;
CREATE TABLE `tab` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '板块id',
`tabName` varchar(50) NOT NULL COMMENT '板块名',
`tabNameEn` varchar(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4;
-- ----------------------------
-- Records of tab
-- ----------------------------
INSERT INTO `tab` VALUES ('9', '攻略', 'stratrgy');
INSERT INTO `tab` VALUES ('8', '资料', 'data');
INSERT INTO `tab` VALUES ('6', '讨论', 'discuss');
-- ----------------------------
-- Table structure for `teacher`
-- ----------------------------
DROP TABLE IF EXISTS `teacher`;
CREATE TABLE `teacher` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`teacherName` varchar(128) NOT NULL,
`academyId` int(11) NOT NULL,
`departmentId` int(11) NOT NULL,
`photo` varchar(128) DEFAULT NULL,
`tel` varchar(30) DEFAULT NULL,
`email` varchar(30) DEFAULT NULL,
`content` longtext NOT NULL,
`commentNumber` int(5) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)