liepin.sql
424.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
/*
Navicat MySQL Data Transfer
Source Server : bro2
Source Server Version : 50720
Source Host : rm-m5eblhc9o3515i25n.mysql.rds.aliyuncs.com:3306
Source Database : liepin
Target Server Type : MYSQL
Target Server Version : 50720
File Encoding : 65001
Date: 2019-04-22 11:24:32
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for fa_admin
-- ----------------------------
DROP TABLE IF EXISTS `fa_admin`;
CREATE TABLE `fa_admin` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
`username` varchar(20) NOT NULL DEFAULT '' COMMENT '用户名',
`nickname` varchar(50) NOT NULL DEFAULT '' COMMENT '昵称',
`password` varchar(32) NOT NULL DEFAULT '' COMMENT '密码',
`salt` varchar(30) NOT NULL DEFAULT '' COMMENT '密码盐',
`avatar` varchar(100) NOT NULL DEFAULT '' COMMENT '头像',
`email` varchar(100) NOT NULL DEFAULT '' COMMENT '电子邮箱',
`loginfailure` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '失败次数',
`logintime` int(10) DEFAULT NULL COMMENT '登录时间',
`createtime` int(10) DEFAULT NULL COMMENT '创建时间',
`updatetime` int(10) DEFAULT NULL COMMENT '更新时间',
`token` varchar(59) NOT NULL DEFAULT '' COMMENT 'Session标识',
`status` varchar(30) NOT NULL DEFAULT 'normal' COMMENT '状态',
PRIMARY KEY (`id`),
UNIQUE KEY `username` (`username`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='管理员表';
-- ----------------------------
-- Records of fa_admin
-- ----------------------------
INSERT INTO `fa_admin` VALUES ('1', 'admin', 'Admin', 'd85c9b877fc63e9e13b0c514a6da3e63', '6e67d0', '/assets/img/avatar.png', 'admin@admin.com', '0', '1555898952', '1492186163', '1555898952', '4f33bb61-8fc1-417d-812e-279b1c00a61b', 'normal');
INSERT INTO `fa_admin` VALUES ('2', 'user', 'user', '7787915055d865bc624bfd93fca75dab', 'EAC5LJ', '/assets/img/avatar.png', '1309572580@qq.com', '0', '1555901277', '1555899697', '1555901277', 'fb6f806f-a601-4464-b108-db49bb6fd3b6', 'normal');
-- ----------------------------
-- Table structure for fa_admin_log
-- ----------------------------
DROP TABLE IF EXISTS `fa_admin_log`;
CREATE TABLE `fa_admin_log` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
`admin_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '管理员ID',
`username` varchar(30) NOT NULL DEFAULT '' COMMENT '管理员名字',
`url` varchar(1500) NOT NULL DEFAULT '' COMMENT '操作页面',
`title` varchar(100) NOT NULL DEFAULT '' COMMENT '日志标题',
`content` text NOT NULL COMMENT '内容',
`ip` varchar(50) NOT NULL DEFAULT '' COMMENT 'IP',
`useragent` varchar(255) NOT NULL DEFAULT '' COMMENT 'User-Agent',
`createtime` int(10) DEFAULT NULL COMMENT '操作时间',
PRIMARY KEY (`id`),
KEY `name` (`username`)
) ENGINE=InnoDB AUTO_INCREMENT=64 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='管理员日志表';
-- ----------------------------
-- Records of fa_admin_log
-- ----------------------------
INSERT INTO `fa_admin_log` VALUES ('1', '0', 'Unknown', '/phwadmin.php/index/login?url=%2Fphwadmin.php', '登录', '{\"url\":\"\\/phwadmin.php\",\"__token__\":\"28639fd4a8c685bda68d995cf13d6cdd\",\"username\":\"admin\",\"captcha\":\"f2en\"}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1555898285');
INSERT INTO `fa_admin_log` VALUES ('2', '0', 'Unknown', '/phwadmin.php/index/login?url=%2Fphwadmin.php', '登录', '{\"url\":\"\\/phwadmin.php\",\"__token__\":\"041edfe646a07dc981778804193c8979\",\"username\":\"admin\",\"captcha\":\"nuab\"}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1555898316');
INSERT INTO `fa_admin_log` VALUES ('3', '0', 'Unknown', '/phwadmin.php/index/login?url=%2Fphwadmin.php', '登录', '{\"url\":\"\\/phwadmin.php\",\"__token__\":\"bcf297f282d399b887f886bff8840325\",\"username\":\"user\",\"captcha\":\"fdpk\"}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1555898342');
INSERT INTO `fa_admin_log` VALUES ('4', '0', 'Unknown', '/phwadmin.php/index/login?url=%2Fphwadmin.php', '登录', '{\"url\":\"\\/phwadmin.php\",\"__token__\":\"a54fc65d9b222bd90e4a1db334336749\",\"username\":\"admin\",\"captcha\":\"inc7\"}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1555898507');
INSERT INTO `fa_admin_log` VALUES ('5', '0', 'Unknown', '/phwadmin.php/index/login?url=%2Fphwadmin.php%2Findex%2Flogout', '登录', '{\"url\":\"\\/phwadmin.php\\/index\\/logout\",\"__token__\":\"9a411d93c03b8c6b49929b566caa1bb7\",\"username\":\"user\",\"captcha\":\"j7rr\"}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1555898542');
INSERT INTO `fa_admin_log` VALUES ('6', '0', 'Unknown', '/phwadmin.php/index/login?url=%2Fphwadmin.php%2Findex%2Flogout', '', '{\"url\":\"\\/phwadmin.php\\/index\\/logout\",\"__token__\":\"b4367dc867d0ec127bd179124300c670\",\"username\":\"user\",\"captcha\":\"j7rr\"}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1555898555');
INSERT INTO `fa_admin_log` VALUES ('7', '0', 'Unknown', '/phwadmin.php/index/login?url=%2Fphwadmin.php%2Findex%2Flogout', '登录', '{\"url\":\"\\/phwadmin.php\\/index\\/logout\",\"__token__\":\"e62dcb86561098a7253dd95a9272f058\",\"username\":\"user\",\"captcha\":\"twdu\"}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1555898582');
INSERT INTO `fa_admin_log` VALUES ('8', '0', 'Unknown', '/phwadmin.php/index/login?url=%2Fphwadmin.php%2Findex%2Flogout', '登录', '{\"url\":\"\\/phwadmin.php\\/index\\/logout\",\"__token__\":\"86facb8418a3ac8ce2fc80787fc68c2b\",\"username\":\"username\",\"captcha\":\"iik7\"}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1555898606');
INSERT INTO `fa_admin_log` VALUES ('9', '0', 'Unknown', '/phwadmin.php/index/login?url=%2Fphwadmin.php%2Findex%2Flogout', '登录', '{\"url\":\"\\/phwadmin.php\\/index\\/logout\",\"__token__\":\"7800221e62f8479e72e0aba4c0ce51d9\",\"username\":\"user\",\"captcha\":\"tagn\"}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1555898620');
INSERT INTO `fa_admin_log` VALUES ('10', '0', 'Unknown', '/phwadmin.php/index/login?url=%2Fphwadmin.php', '', '{\"url\":\"\\/phwadmin.php\",\"__token__\":\"5c773900f0169a54dc7960b0af2f4176\",\"username\":\"admin\",\"captcha\":\"zq54\"}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1555898663');
INSERT INTO `fa_admin_log` VALUES ('11', '1', 'admin', '/phwadmin.php/index/login?url=%2Fphwadmin.php', '登录', '{\"url\":\"\\/phwadmin.php\",\"__token__\":\"efe8da760a53c3b44f8a3b92060709aa\",\"username\":\"admin\",\"captcha\":\"cimf\"}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1555898670');
INSERT INTO `fa_admin_log` VALUES ('12', '1', 'admin', '/phwadmin.php/index/login?url=%2Fphwadmin.php%2Fdashboard%3Fref%3Daddtabs', '登录', '{\"url\":\"\\/phwadmin.php\\/dashboard?ref=addtabs\",\"__token__\":\"c44a0a751507a0717b534bbeee7f12ba\",\"username\":\"admin\",\"captcha\":\"rkax\"}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1555898952');
INSERT INTO `fa_admin_log` VALUES ('13', '1', 'admin', '/phwadmin.php/auth/rule/edit/ids/73?dialog=1', '权限管理 菜单规则 编辑', '{\"dialog\":\"1\",\"row\":{\"ismenu\":\"1\",\"pid\":\"66\",\"name\":\"user\\/group\",\"title\":\"\\u4f1a\\u5458\\u5206\\u7ec4\",\"icon\":\"fa fa-users\",\"weigh\":\"0\",\"condition\":\"\",\"remark\":\"\",\"status\":\"normal\"},\"ids\":\"73\"}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1555899011');
INSERT INTO `fa_admin_log` VALUES ('14', '1', 'admin', '/phwadmin.php/index/index', '', '{\"action\":\"refreshmenu\"}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1555899011');
INSERT INTO `fa_admin_log` VALUES ('15', '1', 'admin', '/phwadmin.php/auth/rule/edit/ids/6?dialog=1', '权限管理 菜单规则 编辑', '{\"dialog\":\"1\",\"row\":{\"ismenu\":\"1\",\"pid\":\"2\",\"name\":\"general\\/config\",\"title\":\"SEO\\u8bbe\\u7f6e\",\"icon\":\"fa fa-cog\",\"weigh\":\"60\",\"condition\":\"\",\"remark\":\"Config tips\",\"status\":\"normal\"},\"ids\":\"6\"}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1555899121');
INSERT INTO `fa_admin_log` VALUES ('16', '1', 'admin', '/phwadmin.php/index/index', '', '{\"action\":\"refreshmenu\"}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1555899121');
INSERT INTO `fa_admin_log` VALUES ('17', '1', 'admin', '/phwadmin.php/auth/rule/add?dialog=1', '权限管理 菜单规则 添加', '{\"dialog\":\"1\",\"row\":{\"ismenu\":\"1\",\"pid\":\"0\",\"name\":\"news\\/index\",\"title\":\"\\u65b0\\u95fb\\u8d44\\u8baf\\u7ba1\\u7406\",\"icon\":\"fa fa-circle-o\",\"weigh\":\"0\",\"condition\":\"\",\"remark\":\"\",\"status\":\"normal\"}}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1555899330');
INSERT INTO `fa_admin_log` VALUES ('18', '1', 'admin', '/phwadmin.php/index/index', '', '{\"action\":\"refreshmenu\"}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1555899331');
INSERT INTO `fa_admin_log` VALUES ('19', '1', 'admin', '/phwadmin.php/auth/rule/add?dialog=1', '权限管理 菜单规则 添加', '{\"dialog\":\"1\",\"row\":{\"ismenu\":\"1\",\"pid\":\"0\",\"name\":\"custom\\/index\",\"title\":\"\\u5408\\u4f5c\\u5ba2\\u6237\\u7ba1\\u7406\",\"icon\":\"fa fa-dedent\",\"weigh\":\"0\",\"condition\":\"\",\"remark\":\"\",\"status\":\"normal\"}}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1555899410');
INSERT INTO `fa_admin_log` VALUES ('20', '1', 'admin', '/phwadmin.php/index/index', '', '{\"action\":\"refreshmenu\"}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1555899410');
INSERT INTO `fa_admin_log` VALUES ('21', '1', 'admin', '/phwadmin.php/auth/rule/edit/ids/85?dialog=1', '权限管理 菜单规则 编辑', '{\"dialog\":\"1\",\"row\":{\"ismenu\":\"1\",\"pid\":\"0\",\"name\":\"news\\/index\",\"title\":\"\\u65b0\\u95fb\\u8d44\\u8baf\\u7ba1\\u7406\",\"icon\":\"fa fa-list\",\"weigh\":\"0\",\"condition\":\"\",\"remark\":\"\",\"status\":\"normal\"},\"ids\":\"85\"}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1555899464');
INSERT INTO `fa_admin_log` VALUES ('22', '1', 'admin', '/phwadmin.php/index/index', '', '{\"action\":\"refreshmenu\"}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1555899464');
INSERT INTO `fa_admin_log` VALUES ('23', '1', 'admin', '/phwadmin.php/auth/group/roletree', '', '{\"id\":\"4\",\"pid\":\"1\"}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1555899522');
INSERT INTO `fa_admin_log` VALUES ('24', '1', 'admin', '/phwadmin.php/auth/group/edit/ids/4?dialog=1', '权限管理 角色组 编辑', '{\"dialog\":\"1\",\"row\":{\"rules\":\"1,6,8,13,14,15,16,17,18,19,20,21,22,29,30,31,32,33,34,85,86,2\",\"pid\":\"1\",\"name\":\"\\u4e8c\\u7ea7\\u7ba1\\u7406\\u7ec42\",\"status\":\"normal\"},\"ids\":\"4\"}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1555899563');
INSERT INTO `fa_admin_log` VALUES ('25', '1', 'admin', '/phwadmin.php/auth/admin/add?dialog=1', '权限管理 管理员管理 添加', '{\"dialog\":\"1\",\"group\":[\"4\"],\"row\":{\"username\":\"user\",\"email\":\"1309572580@qq.com\",\"nickname\":\"user\",\"password\":\"user111111\",\"status\":\"normal\"}}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1555899697');
INSERT INTO `fa_admin_log` VALUES ('26', '1', 'admin', '/phwadmin.php/auth/rule/add?dialog=1', '权限管理 菜单规则 添加', '{\"dialog\":\"1\",\"row\":{\"ismenu\":\"0\",\"pid\":\"85\",\"name\":\"news\\/add\",\"title\":\"\\u6dfb\\u52a0\",\"icon\":\"fa fa-circle-o\",\"weigh\":\"0\",\"condition\":\"\",\"remark\":\"\",\"status\":\"normal\"}}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1555899785');
INSERT INTO `fa_admin_log` VALUES ('27', '1', 'admin', '/phwadmin.php/index/index', '', '{\"action\":\"refreshmenu\"}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1555899785');
INSERT INTO `fa_admin_log` VALUES ('28', '1', 'admin', '/phwadmin.php/auth/rule/add?dialog=1', '权限管理 菜单规则 添加', '{\"dialog\":\"1\",\"row\":{\"ismenu\":\"0\",\"pid\":\"85\",\"name\":\"news\\/edit\",\"title\":\"\\u7f16\\u8f91\",\"icon\":\"fa fa-circle-o\",\"weigh\":\"0\",\"condition\":\"\",\"remark\":\"\",\"status\":\"normal\"}}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1555899820');
INSERT INTO `fa_admin_log` VALUES ('29', '1', 'admin', '/phwadmin.php/index/index', '', '{\"action\":\"refreshmenu\"}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1555899820');
INSERT INTO `fa_admin_log` VALUES ('30', '1', 'admin', '/phwadmin.php/auth/rule/add?dialog=1', '权限管理 菜单规则 添加', '{\"dialog\":\"1\",\"row\":{\"ismenu\":\"0\",\"pid\":\"85\",\"name\":\"news\\/del\",\"title\":\"\\u5220\\u9664\",\"icon\":\"fa fa-circle-o\",\"weigh\":\"0\",\"condition\":\"\",\"remark\":\"\",\"status\":\"normal\"}}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1555899840');
INSERT INTO `fa_admin_log` VALUES ('31', '1', 'admin', '/phwadmin.php/index/index', '', '{\"action\":\"refreshmenu\"}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1555899840');
INSERT INTO `fa_admin_log` VALUES ('32', '1', 'admin', '/phwadmin.php/auth/rule/add?dialog=1', '权限管理 菜单规则 添加', '{\"dialog\":\"1\",\"row\":{\"ismenu\":\"0\",\"pid\":\"86\",\"name\":\"custom\\/add\",\"title\":\"\\u65b0\\u589e\",\"icon\":\"fa fa-circle-o\",\"weigh\":\"0\",\"condition\":\"\",\"remark\":\"\",\"status\":\"normal\"}}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1555899868');
INSERT INTO `fa_admin_log` VALUES ('33', '1', 'admin', '/phwadmin.php/index/index', '', '{\"action\":\"refreshmenu\"}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1555899868');
INSERT INTO `fa_admin_log` VALUES ('34', '1', 'admin', '/phwadmin.php/auth/rule/add?dialog=1', '权限管理 菜单规则 添加', '{\"dialog\":\"1\",\"row\":{\"ismenu\":\"0\",\"pid\":\"86\",\"name\":\"custom\\/edit\",\"title\":\"\\u7f16\\u8f91\",\"icon\":\"fa fa-circle-o\",\"weigh\":\"0\",\"condition\":\"\",\"remark\":\"\",\"status\":\"normal\"}}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1555899889');
INSERT INTO `fa_admin_log` VALUES ('35', '1', 'admin', '/phwadmin.php/index/index', '', '{\"action\":\"refreshmenu\"}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1555899889');
INSERT INTO `fa_admin_log` VALUES ('36', '1', 'admin', '/phwadmin.php/auth/rule/add?dialog=1', '权限管理 菜单规则 添加', '{\"dialog\":\"1\",\"row\":{\"ismenu\":\"0\",\"pid\":\"86\",\"name\":\"custom\\/del\",\"title\":\"\\u5220\\u9664\",\"icon\":\"fa fa-circle-o\",\"weigh\":\"0\",\"condition\":\"\",\"remark\":\"\",\"status\":\"normal\"}}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1555899912');
INSERT INTO `fa_admin_log` VALUES ('37', '1', 'admin', '/phwadmin.php/index/index', '', '{\"action\":\"refreshmenu\"}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1555899913');
INSERT INTO `fa_admin_log` VALUES ('38', '1', 'admin', '/phwadmin.php/auth/group/roletree', '', '{\"id\":\"4\",\"pid\":\"1\"}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1555899930');
INSERT INTO `fa_admin_log` VALUES ('39', '1', 'admin', '/phwadmin.php/auth/rule/add?dialog=1', '权限管理 菜单规则 添加', '{\"dialog\":\"1\",\"row\":{\"ismenu\":\"0\",\"pid\":\"85\",\"name\":\"news\\/index\",\"title\":\"\\u67e5\\u770b\",\"icon\":\"fa fa-circle-o\",\"weigh\":\"0\",\"condition\":\"\",\"remark\":\"\",\"status\":\"normal\"}}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1555899969');
INSERT INTO `fa_admin_log` VALUES ('40', '1', 'admin', '/phwadmin.php/auth/group/roletree', '', '{\"id\":\"4\",\"pid\":\"1\"}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1555900032');
INSERT INTO `fa_admin_log` VALUES ('41', '1', 'admin', '/phwadmin.php/auth/group/edit/ids/4?dialog=1', '权限管理 角色组 编辑', '{\"dialog\":\"1\",\"row\":{\"rules\":\"6,8,18,19,20,21,22,29,30,31,32,33,34,85,86,87,88,89,90,91,92,2\",\"pid\":\"1\",\"name\":\"\\u4e8c\\u7ea7\\u7ba1\\u7406\\u7ec42\",\"status\":\"normal\"},\"ids\":\"4\"}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1555900067');
INSERT INTO `fa_admin_log` VALUES ('42', '1', 'admin', '/phwadmin.php/general.config/edit', '常规管理 SEO设置 编辑', '{\"row\":{\"name\":\"FastAdmin\"}}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1555900078');
INSERT INTO `fa_admin_log` VALUES ('43', '1', 'admin', '/phwadmin.php/general.config/edit', '常规管理 SEO设置 编辑', '{\"row\":{\"name\":\"FastAdmin\"}}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1555900119');
INSERT INTO `fa_admin_log` VALUES ('44', '1', 'admin', '/phwadmin.php/general.config/edit', '常规管理 SEO设置 编辑', '{\"row\":{\"name\":\"\\u4e5d\\u5dde\\u7eb5\\u6a2a\"}}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1555900133');
INSERT INTO `fa_admin_log` VALUES ('45', '1', 'admin', '/phwadmin.php/general.config/edit', '常规管理 SEO设置 编辑', '{\"row\":{\"name\":\"\\u4e5d\\u5dde\\u7eb5\\u6a2a\",\"keys\":\"\\u5173\\u952e\\u5b57|\\u5173\\u952e\\u5b57\",\"description\":\"\\u63cf\\u8ff0\\u63cf\\u8ff0\"}}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1555901235');
INSERT INTO `fa_admin_log` VALUES ('46', '2', 'user', '/phwadmin.php/index/login?url=%2Fphwadmin.php%2Fcustom%2Findex%3Fref%3Daddtabs', '登录', '{\"url\":\"\\/phwadmin.php\\/custom\\/index?ref=addtabs\",\"__token__\":\"af90994e13a4ecd82c618f9bfb52dd65\",\"username\":\"user\",\"captcha\":\"jfr6\"}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '1555901277');
INSERT INTO `fa_admin_log` VALUES ('47', '2', 'user', '/phwadmin.php/news/edit/ids/15?dialog=1', '新闻资讯管理 编辑', '{\"dialog\":\"1\",\"row\":{\"name\":\"\\u4e5d\\u5dde\\u7eb5\\u6a2a\\uff1a\\u5f00\\u4f1a\\u53d1\\u8a00\\u6392\\u6700\\u540e\\uff0c4\\u79cd\\u65b9\\u6cd5\\u8ba9\\u4f60\\u7eb5\\u6a2a\\u804c\\u573a\\uff01\",\"flag\":\"hot\",\"image\":\"\\/uploads\\/20190421\\/2cbbf39f1a0770d1ccf2acc67d8f06ec.png\",\"description\":\"\\u516c\\u53f8\\u5f00\\u4f1a\\u6ce8\\u5b9a\\u4e0d\\u662f\\u9886\\u5bfc\\u4e00\\u4e2a\\u4eba\\u7684\\u4e8b\\uff0c\\u8981\\u53d1\\u8a00\\u8981\\u9644\\u548c\\u3002\\u4e16\\u754c\\u4e0a\\u6700\\u60b2\\u50ac\\u7684\\u4e8b\\u83ab\\u8fc7\\u4e8e\\u5f00\\u4f1a\\u53d1\\u8a00\\u987a\\u5e8f\\u6392\\u5728\\u6700\\u540e\\uff0c\\u5f85\\u5230\\u53d1\\u8a00\\u65f6\\uff0c\\u6155\\u7136\\u53d1\\u73b0\\u81ea\\u5df1\\u51c6\\u5907\\u7684\\u8bdd\\u9898\\u90fd\\u88ab\\u524d\\u9762\\u7684\\u540c\\u4e8b\\u8bb2\\u5b8c\\u4e86\\uff01\\u4e5d\\u5dde\\u7eb5\\u6a2a\\u603b\\u7ecf\\u7406\\u51af\\u96f7\\u5c31\\u66fe\\u591a\\u6b21\\u9047\\u5230\\u8fd9\\u79cd\\u56e7\\u4e8b\\uff0c\\u540e\\u6765\\u4ed6\\u603b\\u7ed3\\u4e86\\u5982\\u4e0b\\u5957\\u8def\\uff0c\\u987a\\u5229\\u8fc7\\u5173\\u3002\",\"weigh\":\"15\",\"content\":\"<p style=\\\"margin-top: 0.14rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\\\">\\u516c\\u53f8\\u5f00\\u4f1a\\u6ce8\\u5b9a\\u4e0d\\u662f\\u9886\\u5bfc\\u4e00\\u4e2a\\u4eba\\u7684\\u4e8b\\uff0c\\u8981\\u53d1\\u8a00\\u8981\\u9644\\u548c\\u3002\\u4e16\\u754c\\u4e0a\\u6700\\u60b2\\u50ac\\u7684\\u4e8b\\u83ab\\u8fc7\\u4e8e\\u5f00\\u4f1a\\u53d1\\u8a00\\u987a\\u5e8f\\u6392\\u5728\\u6700\\u540e\\uff0c\\u5f85\\u5230\\u53d1\\u8a00\\u65f6\\uff0c\\u6155\\u7136\\u53d1\\u73b0\\u81ea\\u5df1\\u51c6\\u5907\\u7684\\u8bdd\\u9898\\u90fd\\u88ab\\u524d\\u9762\\u7684\\u540c\\u4e8b\\u8bb2\\u5b8c\\u4e86\\uff01\\u4e5d\\u5dde\\u7eb5\\u6a2a\\u603b\\u7ecf\\u7406\\u51af\\u96f7\\u5c31\\u66fe\\u591a\\u6b21\\u9047\\u5230\\u8fd9\\u79cd\\u56e7\\u4e8b\\uff0c\\u540e\\u6765\\u4ed6\\u603b\\u7ed3\\u4e86\\u5982\\u4e0b\\u5957\\u8def\\uff0c\\u987a\\u5229\\u8fc7\\u5173\\u3002<\\/span><\\/p><p style=\\\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px 0px 0px 0.11rem; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; position: relative; font-weight: 700;\\\">\\u7edd\\u62db\\u4e00\\uff1a\\u603b\\u7ed3+\\u8865\\u5145+\\u63a8\\u5e7f<\\/span><\\/p><p style=\\\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; font-weight: 700; color: rgb(51, 51, 51);\\\">\\u8bdd\\u672f\\u6a21\\u578b\\uff1a<\\/span><\\/span><\\/p><p style=\\\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\\\">\\u201c\\u5173\\u4e8eXXX\\u95ee\\u9898\\uff0c\\u6211\\u521a\\u624d\\u542c\\u4e86\\u4e00\\u4e0b\\u5927\\u5bb6\\u7684\\u53d1\\u8a00\\uff0c\\u53d1\\u73b0\\u6211\\u8981\\u8bf4\\u7684\\u548cXXX\\u90fd\\u5dee\\u4e0d\\u591a\\uff0c\\u91cd\\u590d\\u7684\\u8bdd\\u6211\\u90fd\\u4e0d\\u8bf4\\u4e86\\uff0c\\u6211\\u5c31\\u5728\\u4ed6\\u7684\\u57fa\\u7840\\u4e0a\\u8865\\u5145\\uff08\\u6216\\u8005\\u5ef6\\u4f38\\uff09\\u4e00\\u70b9\\u2026\\u53e6\\u5916\\u6211\\u8fd8\\u6709\\u4e2a\\u60f3\\u6cd5\\uff0c\\u8fd9\\u4e2a\\u65b9\\u6848\\u80fd\\u4e0d\\u80fd\\u63a8\\u5e7f\\u5230XXX\\u3002\\u201d<\\/span><\\/p><p style=\\\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\">\\u00a0<wbr><\\/p><p style=\\\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; font-weight: 700; color: rgb(51, 51, 51);\\\">\\u6a21\\u62df\\u6848\\u4f8b\\uff1a<\\/span><\\/span><\\/p><p style=\\\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\\\">\\u201c\\u5173\\u4e8e\\u8bf7\\u4e5d\\u5dde\\u7eb5\\u6a2a\\u7684\\u51af\\u96f7\\u8001\\u5e08\\u7ed9\\u6211\\u4eec\\u516c\\u53f8\\u8bbe\\u8ba1\\u80a1\\u6743\\u6fc0\\u52b1\\u65b9\\u6848\\u8fd9\\u4ef6\\u4e8b\\uff0c\\u6211\\u521a\\u624d\\u542c\\u4e86\\u5927\\u5bb6\\u7684\\u53d1\\u8a00\\uff0c\\u53d1\\u73b0\\u6211\\u7684\\u89c2\\u70b9\\u548c\\u5f20\\u603b\\uff0c\\u738b\\u603b\\u8bf4\\u7684\\u90fd\\u5dee\\u4e0d\\u591a\\uff0c\\u91cd\\u590d\\u7684\\u8bdd\\u6211\\u5c31\\u4e0d\\u8bf4\\u4e86\\uff0c\\u6211\\u5c31\\u5728\\u4e24\\u4f4d\\u9886\\u5bfc\\u7684\\u57fa\\u7840\\u4e0a\\u5ef6\\u4f38\\u4e00\\u70b9\\u6211\\u7684\\u4e2a\\u4eba\\u770b\\u6cd5\\uff0c\\u9488\\u5bf9\\u5177\\u4f53\\u95ee\\u9898\\u6709\\u9488\\u5bf9\\u6027\\u7684\\u8fdb\\u884c\\u89e3\\u51b3\\u5e76\\u4e14\\u80fd\\u5728\\u89e3\\u51b3\\u95ee\\u9898\\u7684\\u8fc7\\u7a0b\\u4e2d\\u7cfb\\u7edf\\u7684\\u5b66\\u4e60\\u89e3\\u51b3\\u95ee\\u9898\\u7684\\u65b9\\u5f0f\\u65b9\\u6cd5\\uff0c\\u5bf9\\u4e8e\\u6211\\u4eec\\u516c\\u53f8\\u4eba\\u5458\\u7684\\u6574\\u4f53\\u7d20\\u8d28\\u63d0\\u5347\\u5e2e\\u52a9\\u5f88\\u5927\\uff0c\\u6b63\\u597d\\u548c\\u54b1\\u4eec\\u516c\\u53f8\\u7684\\u4eba\\u624d\\u53d1\\u5c55\\u8ba1\\u5212\\u7ed3\\u5408\\u5230\\u4e00\\u8d77\\u3002\\u53e6\\u5916\\u6211\\u8fd8\\u6709\\u4e2a\\u60f3\\u6cd5\\u4e0d\\u77e5\\u9053\\u59a5\\u4e0d\\u59a5\\uff0c\\u8fd9\\u79cd\\u4e00\\u8fb9\\u89e3\\u51b3\\u95ee\\u9898\\u4e00\\u8fb9\\u5b66\\u4e60\\u7684\\u54a8\\u8be2\\u5f0f\\u57f9\\u8bad\\u65b9\\u5f0f\\u80fd\\u4e0d\\u80fd\\u63a8\\u5e7f\\u5230\\u4e1a\\u52a1\\u90e8\\u95e8\\uff0c\\u52a0\\u901f\\u4e1a\\u52a1\\u4eba\\u5458\\u7684\\u6210\\u719f\\u5ea6\\u3002\\u201d<\\/span><\\/p><p style=\\\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\">\\u00a0<wbr><\\/p><p style=\\\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; font-weight: 700; color: rgb(51, 51, 51);\\\">\\u6848\\u4f8b\\u70b9\\u8bc4\\uff1a<\\/span><\\/span><\\/p><p style=\\\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\\\">\\uff081\\uff09 \\u4f7f\\u7528\\u201c\\u603b\\u7ed3\\u201d\\u6216\\u662f\\u201c\\u5ef6\\u4f38\\u201d\\u4e00\\u8bcd\\u8981\\u6839\\u636e\\u5177\\u4f53\\u60c5\\u51b5\\u8fdb\\u884c\\u4f7f\\u7528\\u3002\\u6848\\u4f8b\\u4e2d\\u53d1\\u8a00\\u4eba\\u7684\\u804c\\u7ea7\\u6bd4\\u5f20\\u603b\\u548c\\u738b\\u603b\\u4f4e\\uff0c\\u4f7f\\u7528\\u201c\\u5ef6\\u4f38\\u201d\\u610f\\u5728\\u5f97\\u5230\\u4e86\\u9886\\u5bfc\\u542f\\u53d1\\uff0c\\u907f\\u514d\\u4e0b\\u7ea7\\u603b\\u7ed3\\u4e0a\\u7ea7\\u53d1\\u8a00\\u7684\\u5c34\\u5c2c\\u3002<\\/span><\\/p><p style=\\\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\\\">\\uff082\\uff09 \\u53d1\\u8a00\\u987a\\u5e8f\\u6392\\u5230\\u6700\\u540e\\uff0c\\u8865\\u5145\\u6216\\u8005\\u5ef6\\u4f38\\u8bba\\u70b9\\u65f6\\u5c31\\u8981\\u8d8a\\u805a\\u7126\\u8d8a\\u597d\\uff0c\\u8d8a\\u63a5\\u5730\\u6c14\\u8d8a\\u597d\\uff0c\\u8d8a\\u4ece\\u81ea\\u5df1\\u7684\\u672c\\u804c\\u5de5\\u4f5c\\u51fa\\u53d1\\u8d8a\\u597d\\uff0c\\u8fd9\\u6837\\u624d\\u5bb9\\u6613\\u627e\\u5230\\u8bdd\\u9898\\u3002\\u5982\\u679c\\u5b9e\\u5728\\u627e\\u4e0d\\u5230\\u8bdd\\u9898\\uff0c\\u5c31\\u76f4\\u63a5\\u4e0a\\u201c\\u63a8\\u5e7f\\u201d\\u3002<span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; font-weight: 700; color: rgb(51, 51, 51);\\\">\\u5982<\\/span>\\uff1a<span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; font-weight: 700; color: rgb(51, 51, 51);\\\">\\u201c\\u5173\\u4e8e\\u8bf7\\u4e5d\\u5dde\\u7eb5\\u6a2a\\u7684\\u51af\\u96f7\\u8001\\u5e08\\u7ed9\\u6211\\u4eec\\u516c\\u53f8\\u8bbe\\u8ba1\\u80a1\\u6743\\u6fc0\\u52b1\\u65b9\\u6848\\u8fd9\\u4ef6\\u4e8b\\uff0c\\u6211\\u521a\\u624d\\u542c\\u4e86\\u5927\\u5bb6\\u7684\\u53d1\\u8a00\\uff0c\\u53d1\\u73b0\\u6211\\u7684\\u89c2\\u70b9\\u548c\\u5f20\\u603b\\uff0c\\u738b\\u603b\\u8bf4\\u7684\\u90fd\\u5dee\\u4e0d\\u591a\\uff0c\\u91cd\\u590d\\u7684\\u8bdd\\u6211\\u5c31\\u4e0d\\u8bf4\\u4e86\\uff0c\\u4f46\\u662f\\u6211\\u6709\\u4e2a\\u5efa\\u8bae\\u4e0d\\u77e5\\u9053\\u59a5\\u4e0d\\u59a5\\uff0c\\u8fd9\\u79cd\\u4e00\\u8fb9\\u89e3\\u51b3\\u95ee\\u96be\\u9898\\u4e00\\u8fb9\\u5b66\\u4e60\\u7684\\u54a8\\u8be2\\u5f0f\\u57f9\\u8bad\\u80fd\\u4e0d\\u80fd\\u63a8\\u5e7f\\u5230\\u4e1a\\u52a1\\u90e8\\u95e8\\uff0c\\u52a0\\u901f\\u4e1a\\u52a1\\u4eba\\u5458\\u7684\\u6210\\u719f\\u5ea6\\u3002<\\/span>\\u201d<\\/span><\\/p><p style=\\\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); font-family: \\\"Microsoft YaHei\\\", \\\"Helvetica Neue\\\", SimSun; font-size: 14px; outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; text-align: justify;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; font-family: Arial, Helvetica, sans-serif; font-size: 0.19rem; letter-spacing: 0.2px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\\\">\\uff083\\uff09 \\u8fd9\\u5957\\u8bdd\\u675f\\u6700\\u725bB\\u7684\\u5730\\u65b9\\u5728\\u6700\\u540e\\u7684\\u201c\\u63a8\\u5e7f\\u201d\\u73af\\u8282\\u3002\\u8bf4\\u51fa\\u8fd9\\u90e8\\u5206\\u5185\\u5bb9\\u53ef\\u4ee5\\u663e\\u5f97\\u9ad8\\u77bb\\u8fdc\\u77a9\\u6709\\u6728\\u6709?\\u800c\\u4e14\\u53ef\\u4ee5\\u63a8\\u5e7f\\u7684\\u5185\\u5bb9\\u7b80\\u76f4\\u662f\\u65e0\\u7a77\\u65e0\\u5c3d\\uff0c\\u65b9\\u6cd5\\u53ef\\u4ee5\\u63a8\\u5e7f\\uff0c\\u6280\\u672f\\u53ef\\u4ee5\\u63a8\\u5e7f\\uff0c\\u4f1a\\u8bae\\u7cbe\\u795e\\u53ef\\u4ee5\\u63a8\\u5e7f\\uff0c\\u6587\\u4ef6\\u53ef\\u4ee5\\u63a8\\u5e7f\\uff0c\\u6709\\u5f62\\u65e0\\u5f62\\u7684\\u90fd\\u80fd\\u63a8\\u5e7f\\u3002\\u800c\\u4e14\\u88ab\\u63a8\\u5e7f\\u7684\\u5bf9\\u8c61\\u4e5f\\u5f88\\u591a\\uff0c\\u53ef\\u4ee5\\u5728\\u67d0\\u4e2a\\u90e8\\u95e8\\u63a8\\u5e7f\\uff0c\\u53ef\\u4ee5\\u5728\\u90e8\\u5206\\u90e8\\u95e8\\u63a8\\u5e7f\\uff0c\\u53ef\\u4ee5\\u5728\\u5168\\u516c\\u53f8\\u63a8\\u5e7f\\uff0c\\u8fd8\\u53ef\\u4ee5\\u5728\\u516c\\u53f8\\u5916\\u90e8\\u8fdb\\u884c\\u63a8\\u5e7f\\u3002<\\/span><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; font-family: Arial, Helvetica, sans-serif; font-size: 0.19rem; letter-spacing: 0.2px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\\\"><br><\\/span><span style=\\\"word-wrap: normal; word-break: normal; line-height: 21px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\\\"><a href=\\\"http:\\/\\/album.sina.com.cn\\/pic\\/006mfo63zy7sX5EPQ295d\\\" target=\\\"_blank\\\" style=\\\"color: rgb(62, 115, 160);\\\"><img src=\\\"http:\\/\\/s14.sinaimg.cn\\/mw690\\/006mfo63zy7sX5EPQ295d&690\\\" real_src=\\\"http:\\/\\/s14.sinaimg.cn\\/mw690\\/006mfo63zy7sX5EPQ295d&690\\\" width=\\\"612\\\" height=\\\"270\\\" name=\\\"image_operate_58761554815849509\\\" alt=\\\"\\u4e5d\\u5dde\\u7eb5\\u6a2a\\uff1a\\u5f00\\u4f1a\\u53d1\\u8a00\\u6392\\u6700\\u540e\\uff0c4\\u79cd\\u65b9\\u6cd5\\u8ba9\\u4f60\\u6709\\u8bdd\\u53ef\\u8bf4\\uff01\\\" title=\\\"\\u4e5d\\u5dde\\u7eb5\\u6a2a\\uff1a\\u5f00\\u4f1a\\u53d1\\u8a00\\u6392\\u6700\\u540e\\uff0c4\\u79cd\\u65b9\\u6cd5\\u8ba9\\u4f60\\u6709\\u8bdd\\u53ef\\u8bf4\\uff01\\\" style=\\\"margin: 0px; padding: 0px; list-style: none;\\\"><\\/a><br><\\/span><\\/p><div style=\\\"color: rgb(70, 70, 70); font-family: \\\"Microsoft YaHei\\\", \\\"Helvetica Neue\\\", SimSun; font-size: 14px; background-color: rgb(188, 211, 229); text-align: center;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 21px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; font-size: 12px; letter-spacing: 0.2px;\\\"><br><\\/span><\\/span><\\/div><p style=\\\"margin-top: 0.14rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\">\\u00a0<wbr><\\/p><p style=\\\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px 0px 0px 0.11rem; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; position: relative; font-weight: 700;\\\">\\u7edd\\u62db\\u4e8c\\uff1a\\u603b\\u7ed3+\\u7ad9\\u961f+\\u884c\\u52a8+\\u63a8\\u5e7f<\\/span><\\/p><p style=\\\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\">\\u00a0<wbr><\\/p><p style=\\\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; font-weight: 700; color: rgb(51, 51, 51);\\\">\\u8bdd\\u672f\\u6a21\\u578b\\uff1a<\\/span><\\/span><\\/p><p style=\\\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\\\">\\u201c\\u5173\\u4e8eXXX\\u95ee\\u9898\\uff0c\\u521a\\u624d\\u5404\\u4f4d\\u540c\\u4e8b\\u7684\\u53d1\\u8a00\\u90fd\\u7279\\u522b\\u7684\\u7cbe\\u5f69\\uff0c\\u8ba9\\u6211\\u6df1\\u53d7\\u542f\\u53d1\\uff0c\\u53d7\\u76ca\\u532a\\u6d45\\uff0c\\u603b\\u7ed3\\u4e00\\u4e0b\\u6211\\u7b80\\u5355\\u603b\\u7ed3\\u4e00\\u4e0b\\uff1a\\u7b2c\\u4e00\\uff0c\\u5218\\u603b\\u7684\\u5efa\\u8bae\\u975e\\u5e38\\u597d\\uff0c\\u6211\\u89c9\\u5f97XXX\\u3002\\u7b2c\\u4e8c\\uff0c\\u5f20\\u603b\\u7684\\u610f\\u89c1\\u6211\\u8ba4\\u4e3a\\u5f88\\u6709\\u9053\\u7406\\uff0c\\u4f1a\\u540e\\u6211\\u4f1aXXX\\u201d\\u3002<\\/span><\\/p><p style=\\\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\">\\u00a0<wbr><\\/p><p style=\\\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; font-weight: 700; color: rgb(51, 51, 51);\\\">\\u6a21\\u62df\\u6848\\u4f8b\\uff1a<\\/span><\\/span><\\/p><p style=\\\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\\\">\\u201c\\u521a\\u624d\\u540c\\u4e8b\\u4eec\\u9488\\u5bf9\\u5982\\u4f55\\u63a8\\u8fdb\\u6211\\u4eec\\u516c\\u53f8\\u80a1\\u6743\\u6fc0\\u52b1\\u5236\\u5ea6\\u5efa\\u8bbe\\u7684\\u53d1\\u8a00\\u90fd\\u7279\\u522b\\u7cbe\\u5f69\\uff0c\\u8ba9\\u6211\\u6df1\\u53d7\\u542f\\u53d1\\uff0c\\u53d7\\u76ca\\u532a\\u6d45\\u3002\\u6211\\u7684\\u603b\\u7ed3\\u4e3b\\u8981\\u6709\\u4e24\\u70b9\\uff1a\\u7b2c\\u4e00\\u3001\\u5218\\u603b\\u63d0\\u51fa\\u7684\\u5148\\u4eceA\\u90e8\\u95e8\\u8fdb\\u884c\\u8bd5\\u70b9\\u7684\\u5efa\\u8bae\\u975e\\u5e38\\u597d\\uff0c\\u6211\\u89c9\\u5f97\\u5218\\u603b\\u662f\\u7ad9\\u5728\\u7ecf\\u8425\\u4f01\\u4e1a\\u7684\\u89d2\\u5ea6\\u770b\\u5f85\\u7684\\u8fd9\\u4e2a\\u95ee\\u9898\\uff0c\\u5728\\u90e8\\u95e8\\u8bd5\\u70b9\\u80a1\\u6743\\u6fc0\\u52b1\\u4e0d\\u4f46\\u53ef\\u4ee5\\u603b\\u7ed3\\u9002\\u5408\\u6211\\u4eec\\u81ea\\u5df1\\u516c\\u53f8\\u7684\\u6210\\u529f\\u7ecf\\u9a8c\\uff0c\\u4fbf\\u4e8e\\u8fdb\\u4e00\\u6b65\\u590d\\u5236\\uff0c\\u5373\\u4f7f\\u51fa\\u73b0\\u98ce\\u9669\\u4e5f\\u53ef\\u4ee5\\u5f97\\u5230\\u6709\\u6548\\u63a7\\u5236\\u3002\\u7b2c\\u4e8c\\u3001\\u5f20\\u603b\\u63d0\\u51fa\\u7684\\u518d\\u6b21\\u548c\\u51af\\u96f7\\u8001\\u5e08\\u8fdb\\u884c\\u8fdb\\u4e00\\u6b65\\u6c9f\\u901a\\u7684\\u610f\\u89c1\\u6211\\u8ba4\\u4e3a\\u5f88\\u6709\\u9053\\u7406\\uff0c\\u8fd9\\u6837\\u53ef\\u4ee5\\u5c06\\u6211\\u4eec\\u516c\\u53f8\\u7684\\u5177\\u4f53\\u60c5\\u51b5\\u544a\\u77e5\\u51af\\u96f7\\u8001\\u5e08\\uff0c\\u8ba9\\u4ed6\\u80fd\\u591f\\u66f4\\u52a0\\u8be6\\u7ec6\\u7684\\u77e5\\u6653\\u6211\\u53f8\\u505a\\u80a1\\u6743\\u6fc0\\u52b1\\u7684\\u76ee\\u7684\\u548c\\u96be\\u70b9\\u7b49\\u4fe1\\u606f\\uff0c\\u53c8\\u53ef\\u4ee5\\u8fdb\\u4e00\\u6b65\\u8003\\u91cf\\u51af\\u96f7\\u8001\\u5e08\\u5bf9\\u80a1\\u6743\\u6fc0\\u52b1\\u7684\\u7406\\u89e3\\u3002\\u4f1a\\u540e\\u6211\\u4f1a\\u5c3d\\u5feb\\u5b89\\u6392\\u548c\\u51af\\u8001\\u5e08\\u518d\\u505a\\u4e00\\u6b21\\u6df1\\u5165\\u6c9f\\u901a\\uff0c\\u5e76\\u8c03\\u7814\\u4e00\\u4e0b\\u770b\\u54ea\\u4e2a\\u90e8\\u95e8\\u5bf9\\u80a1\\u6743\\u6fc0\\u52b1\\u6bd4\\u8f83\\u611f\\u5174\\u8da3\\uff0c\\u65b9\\u4fbf\\u6211\\u4eec\\u8fdb\\u4e00\\u6b65\\u5f00\\u5c55\\u5de5\\u4f5c\\u3002\\u201d<\\/span><\\/p><p style=\\\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\">\\u00a0<wbr><\\/p><p style=\\\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; font-weight: 700; color: rgb(51, 51, 51);\\\">\\u6848\\u4f8b\\u70b9\\u8bc4\\uff1a<\\/span><\\/span><\\/p><p style=\\\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\\\">\\uff081\\uff09\\u4f1a\\u8bae\\u4e2d\\u4f1a\\u51fa\\u73b0\\u4e24\\u79cd\\u751a\\u81f3\\u66f4\\u591a\\u7684\\u58f0\\u97f3\\uff0c\\u4e3b\\u8981\\u662f\\u56e0\\u4e3a\\u53d1\\u8a00\\u8005\\u770b\\u5f85\\u95ee\\u9898\\u7684\\u89d2\\u5ea6\\u4e0d\\u540c\\u9020\\u6210\\u7684\\u3002\\u6b64\\u65f6\\u6700\\u7b80\\u5355\\u7684\\u5957\\u8def\\u5c31\\u662f\\u8868\\u660e\\u81ea\\u5df1\\u7684\\u7acb\\u573a\\u3002<\\/span><\\/p><p style=\\\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\\\">\\uff082\\uff09\\u8868\\u660e\\u7acb\\u573a\\u4e0d\\u80fd\\u7b80\\u5355\\u8bf4\\u8d5e\\u540cXX\\u7684\\u610f\\u89c1\\u5c31\\u7ed3\\u675f\\uff0c\\u8fd9\\u6837\\u5c31low\\u5230\\u5bb6\\u4e86\\u3002\\u6240\\u4ee5\\uff0c\\u4e0d\\u4f46\\u8981\\u8868\\u660e\\u7acb\\u573a\\uff0c\\u8fd8\\u8981\\u7ed9\\u51fa\\u8868\\u660e\\u7acb\\u573a\\u7684\\u7406\\u7531\\u3002<\\/span><\\/p><p style=\\\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\\\">\\uff083\\uff09<span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; font-weight: 700; color: rgb(51, 51, 51);\\\">\\u201c\\u884c\\u52a8\\u201d\\u548c\\u201c\\u63a8\\u5e7f\\u201d\\u662f\\u5173\\u952e<\\/span>\\u3002\\u5728\\u8868\\u660e\\u7acb\\u573a\\u540e\\uff0c\\u518d\\u9648\\u8ff0\\u4e00\\u4e0b\\uff0c\\u6211\\u672a\\u6765\\u4f1a\\u91c7\\u53d6\\u7684\\u4e0b\\u4e00\\u6b65\\u884c\\u52a8\\uff0c\\u8fd9\\u4e2a\\u884c\\u52a8\\u6700\\u597d\\u57fa\\u4e8e\\u81ea\\u5df1\\u90e8\\u95e8\\u6216\\u8005\\u81ea\\u5df1\\u7684\\u672c\\u804c\\u5de5\\u4f5c\\u4ea7\\u751f\\uff0c\\u6240\\u4ee5\\u4e0d\\u4f1a\\u548c\\u522b\\u4eba\\u91cd\\u590d\\uff0c\\u8fd8\\u4f1a\\u5411\\u6240\\u6709\\u53c2\\u4f1a\\u8005\\u5c55\\u793a\\u4f60\\u5df2\\u7ecf\\u9488\\u5bf9\\u67d0\\u4e2a\\u95ee\\u9898\\u60f3\\u597d\\u4e86\\u884c\\u52a8\\u65b9\\u6848\\u548c\\u7b56\\u7565\\u3002\\u5982\\u679c\\u673a\\u4f1a\\u5408\\u9002\\u5728\\u63d0\\u51fa\\u63a8\\u5e7f\\u5efa\\u8bae\\uff0c\\u90a3\\u5c31\\u662f\\u518d\\u597d\\u4e0d\\u8fc7\\u4e86\\u3002<\\/span><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\\\"><br><\\/span><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\\\"><a href=\\\"http:\\/\\/album.sina.com.cn\\/pic\\/006mfo63zy7sX5HIZtUa2\\\" target=\\\"_blank\\\" style=\\\"color: rgb(62, 115, 160);\\\"><img src=\\\"http:\\/\\/s3.sinaimg.cn\\/mw690\\/006mfo63zy7sX5HIZtUa2&690\\\" real_src=\\\"http:\\/\\/s3.sinaimg.cn\\/mw690\\/006mfo63zy7sX5HIZtUa2&690\\\" width=\\\"608\\\" height=\\\"282\\\" name=\\\"image_operate_30741554815874028\\\" alt=\\\"\\u4e5d\\u5dde\\u7eb5\\u6a2a\\uff1a\\u5f00\\u4f1a\\u53d1\\u8a00\\u6392\\u6700\\u540e\\uff0c4\\u79cd\\u65b9\\u6cd5\\u8ba9\\u4f60\\u6709\\u8bdd\\u53ef\\u8bf4\\uff01\\\" title=\\\"\\u4e5d\\u5dde\\u7eb5\\u6a2a\\uff1a\\u5f00\\u4f1a\\u53d1\\u8a00\\u6392\\u6700\\u540e\\uff0c4\\u79cd\\u65b9\\u6cd5\\u8ba9\\u4f60\\u6709\\u8bdd\\u53ef\\u8bf4\\uff01\\\" style=\\\"margin: 0px; padding: 0px; list-style: none;\\\"><\\/a><br><br><\\/span><\\/p><p style=\\\"margin-top: 0.14rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\">\\u00a0<wbr><\\/p><p style=\\\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px 0px 0px 0.11rem; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; position: relative; font-weight: 700;\\\">\\u7edd\\u62db\\u4e09\\uff1a\\u603b\\u7ed3+\\u6536\\u83b7+\\u884c\\u52a8+\\u63a8\\u5e7f<\\/span><\\/p><p style=\\\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\">\\u00a0<wbr><\\/p><p style=\\\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; font-weight: 700; color: rgb(51, 51, 51);\\\">\\u8bdd\\u672f\\u6a21\\u578b\\uff1a<\\/span><\\/span><\\/p><p style=\\\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\\\">\\u201c\\u5173\\u4e8eXXX\\u95ee\\u9898\\uff0c\\u521a\\u624d\\u5404\\u4f4d\\u540c\\u4e8b\\u7684\\u53d1\\u8a00\\u90fd\\u7279\\u522b\\u7684\\u7cbe\\u5f69\\uff0c\\u8ba9\\u6211\\u6df1\\u53d7\\u542f\\u53d1\\uff0c\\u53d7\\u76ca\\u532a\\u6d45\\uff0c\\u4ece\\u5927\\u5bb6\\u7684\\u53d1\\u8a00\\u4e2d\\u6211\\u6709\\u5982\\u4e0b\\u6536\\u83b7\\uff1a\\u7b2c\\u4e00\\uff0c\\u6211\\u5b66\\u5230\\u4e86XXX\\u3002\\u7b2c\\u4e8c\\uff0c\\u6211\\u5b66\\u5230\\u4e86XXX\\uff0c\\u63a5\\u4e0b\\u6765\\u6211\\u4f1aXXX\\u201d\\u3002<\\/span><\\/p><p style=\\\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\">\\u00a0<wbr><\\/p><p style=\\\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; font-weight: 700; color: rgb(51, 51, 51);\\\">\\u6a21\\u62df\\u6848\\u4f8b\\uff1a<\\/span><\\/span><\\/p><p style=\\\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\\\">\\u201c\\u521a\\u624d\\u540c\\u4e8b\\u4eec\\u9488\\u5bf9\\u5982\\u4f55\\u63a8\\u8fdb\\u6211\\u4eec\\u516c\\u53f8\\u80a1\\u6743\\u6fc0\\u52b1\\u5236\\u5ea6\\u5efa\\u8bbe\\u7684\\u53d1\\u8a00\\u90fd\\u7279\\u522b\\u7cbe\\u5f69\\uff0c\\u8ba9\\u6211\\u6df1\\u53d7\\u542f\\u53d1\\uff0c\\u53d7\\u76ca\\u532a\\u6d45\\u3002\\u4ece\\u5927\\u5bb6\\u7684\\u53d1\\u8a00\\u4e2d\\u6211\\u5b66\\u5230\\u4e86\\u5f88\\u591a\\u4e1c\\u897f\\uff0c\\u505a\\u4e2a\\u7b80\\u5355\\u7684\\u603b\\u7ed3\\u3002\\u7b2c\\u4e00\\uff0c\\u5f20\\u603b\\u63d0\\u5230\\u80a1\\u6743\\u6fc0\\u52b1\\u53ef\\u4ee5\\u89e3\\u51b3\\u4f01\\u4e1a\\u7684\\u5b9e\\u9645\\u7ba1\\u7406\\u95ee\\u9898\\uff0c\\u6bd4\\u5982\\u53ef\\u4ee5\\u89e3\\u653e\\u4eba\\u6027\\uff0c\\u7559\\u4f4f\\u540e\\u5907\\u529b\\u91cf\\u7b49\\uff0c\\u8ba9\\u6211\\u5bf9\\u80a1\\u6743\\u6fc0\\u52b1\\u7684\\u4f5c\\u7528\\u6709\\u4e86\\u65b0\\u7684\\u8ba4\\u8bc6\\u3002\\u7b2c\\u4e8c\\uff0c\\u738b\\u603b\\u63d0\\u5230\\u534e\\u4e3a\\u80a1\\u6743\\u6fc0\\u52b1\\u7684\\u6848\\u4f8b\\uff0c\\u8ba9\\u6211\\u8ba4\\u8bc6\\u5230\\u4e86\\u534e\\u4e3a\\u6210\\u529f\\u7684\\u672c\\u8d28\\uff0c\\u4e0d\\u662f\\u5e8a\\u57ab\\u6587\\u5316\\uff0c\\u800c\\u662f\\u4e3a\\u4ec0\\u4e48\\u534e\\u4e3a\\u7684\\u5458\\u5de5\\u613f\\u610f\\u63a5\\u53d7\\u5e8a\\u57ab\\u6587\\u5316\\u3001\\u7b2c\\u4e09\\u3002\\u51af\\u96f7\\u8001\\u5e08\\u63d0\\u5230\\uff0c\\u4f01\\u4e1a\\u5bfc\\u5165\\u80a1\\u6743\\u6fc0\\u52b1\\u4e0d\\u662f\\u4e00\\u4efd\\u5408\\u540c\\u5c31\\u80fd\\u89e3\\u51b3\\uff0c\\u56e0\\u4e3a\\u6bcf\\u4e2a\\u4f01\\u4e1a\\u4e0d\\u540c\\uff0c\\u8981\\u89e3\\u51b3\\u7684\\u95ee\\u9898\\u4e5f\\u5404\\u4e0d\\u76f8\\u540c\\uff0c\\u9700\\u8981\\u660e\\u786e\\u6211\\u4eec\\u4f01\\u4e1a\\u505a\\u80a1\\u6743\\u6fc0\\u52b1\\u7684\\u672c\\u8d28\\u76ee\\u7684\\u5230\\u5e95\\u662f\\u4ec0\\u4e48\\uff0c\\u624d\\u80fd\\u6839\\u636e\\u76ee\\u7684\\u91c7\\u7528\\u76f8\\u5e94\\u7684\\u65b9\\u6cd5\\uff0c\\u8ba9\\u6211\\u4f53\\u4f1a\\u5230\\u4ee5\\u524d\\u770b\\u5230\\u8fc7\\u7684\\u4e00\\u53e5\\u8bdd\\u53eb\\u505a\\uff1a\\u76ee\\u7684\\u51b3\\u5b9a\\u65b9\\u6cd5\\u7684\\u542b\\u4e49\\u3002\\u4f1a\\u540e\\uff0c\\u6211\\u4f1a\\u641c\\u96c6\\u5173\\u4e8e\\u80a1\\u6743\\u6fc0\\u52b1\\u76f8\\u5173\\u4e66\\u7c4d\\u548c\\u8d44\\u6599\\uff0c\\u5982\\u6709\\u6761\\u4ef6\\u5141\\u8bb8\\u6211\\u4f1a\\u53bb\\u542c\\u4e00\\u4e9b\\u76f8\\u5173\\u7684\\u8bfe\\u7a0b\\uff0c\\u5c3d\\u5feb\\u7684\\u5c06\\u81ea\\u5df1\\u5728\\u8fd9\\u65b9\\u9762\\u7684\\u4e0d\\u8db3\\u8865\\u4e0a\\uff0c\\u4e3a\\u54b1\\u4eec\\u516c\\u53f8\\u63a8\\u8350\\u80a1\\u6743\\u6fc0\\u52b1\\u8d21\\u732e\\u70b9\\u529b\\u91cf\\uff0c\\u5b9e\\u5728\\u4e0d\\u884c\\u4e0d\\u62d6\\u540e\\u817f\\u4e5f\\u884c\\u554a\\uff01\\u201d<\\/span><\\/p><p style=\\\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\">\\u00a0<wbr><\\/p><p style=\\\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; font-weight: 700; color: rgb(51, 51, 51);\\\">\\u6848\\u4f8b\\u70b9\\u8bc4\\uff1a<\\/span><\\/span><\\/p><p style=\\\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\\\">\\uff081\\uff09\\u6b64\\u65b9\\u6cd5\\u4e0d\\u5b9c\\u5e38\\u7528\\uff0c\\u5076\\u5c14\\u4f7f\\u7528\\u6548\\u679c\\u4e0d\\u4fd7\\u3002\\u957f\\u671f\\u4f7f\\u7528\\u5219\\u4f1a\\u4e3b\\u52a8\\u66b4\\u9732\\u81ea\\u5df1\\u7684\\u4e0d\\u8db3\\u4e4b\\u5904\\u3002<\\/span><\\/p><p style=\\\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\\\">\\uff082\\uff09\\u8fd9\\u662f\\u4e00\\u4e2a\\u53d6\\u5de7\\u7684\\u505a\\u6cd5\\uff0c\\u56e0\\u4e3a\\u8c01\\u4e5f\\u4e0d\\u4f1a\\u602a\\u4e00\\u4e2a\\u5728\\u4f1a\\u4e0a\\u8d5e\\u7f8e\\u522b\\u4eba\\uff0c\\u865a\\u5fc3\\u627f\\u8ba4\\u4e14\\u52aa\\u529b\\u4e0a\\u8fdb\\u4e0d\\u8db3\\u7684\\u4eba\\u3002<\\/span><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\\\"><br><\\/span><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\\\"><a href=\\\"http:\\/\\/album.sina.com.cn\\/pic\\/006mfo63zy7sX5Kpua21e\\\" target=\\\"_blank\\\" style=\\\"color: rgb(62, 115, 160);\\\"><img src=\\\"http:\\/\\/s15.sinaimg.cn\\/mw690\\/006mfo63zy7sX5Kpua21e&690\\\" real_src=\\\"http:\\/\\/s15.sinaimg.cn\\/mw690\\/006mfo63zy7sX5Kpua21e&690\\\" width=\\\"591\\\" height=\\\"292\\\" name=\\\"image_operate_14091554815991325\\\" alt=\\\"\\u4e5d\\u5dde\\u7eb5\\u6a2a\\uff1a\\u5f00\\u4f1a\\u53d1\\u8a00\\u6392\\u6700\\u540e\\uff0c4\\u79cd\\u65b9\\u6cd5\\u8ba9\\u4f60\\u6709\\u8bdd\\u53ef\\u8bf4\\uff01\\\" title=\\\"\\u4e5d\\u5dde\\u7eb5\\u6a2a\\uff1a\\u5f00\\u4f1a\\u53d1\\u8a00\\u6392\\u6700\\u540e\\uff0c4\\u79cd\\u65b9\\u6cd5\\u8ba9\\u4f60\\u6709\\u8bdd\\u53ef\\u8bf4\\uff01\\\" style=\\\"margin: 0px; padding: 0px; list-style: none;\\\"><\\/a><br><br><\\/span><\\/p><p style=\\\"margin-top: 0.14rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\">\\u00a0<wbr><\\/p><p style=\\\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px 0px 0px 0.11rem; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; position: relative; font-weight: 700;\\\">\\u7edd\\u62db\\u56db\\uff1a\\u603b\\u7ed3+\\u53cd\\u9988+\\u884c\\u52a8+\\u63a8\\u5e7f<\\/span><\\/p><p style=\\\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\">\\u00a0<wbr><\\/p><p style=\\\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; font-weight: 700; color: rgb(51, 51, 51);\\\">\\u8bdd\\u672f\\u6a21\\u578b\\uff1a<\\/span><\\/span><\\/p><p style=\\\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\\\">\\u201c\\u5173\\u4e8eXXX\\u95ee\\u9898\\uff0c\\u521a\\u624d\\u5404\\u4f4d\\u540c\\u4e8b\\u7684\\u53d1\\u8a00\\u90fd\\u7279\\u522b\\u7684\\u7cbe\\u5f69\\uff0c\\u8ba9\\u6211\\u6df1\\u53d7\\u542f\\u53d1\\uff0c\\u53d7\\u76ca\\u532a\\u6d45\\uff0c\\u4e0b\\u9762\\u6211\\u4ece\\u6700\\u8fd1\\u6b63\\u5728\\u63a8\\u52a8\\u7684XX\\u9879\\u76ee\\u8c08\\u8c08\\u81ea\\u5df1\\u7684\\u4e00\\u4e9b\\u4f53\\u4f1a\\uff1a\\u7b2c\\u4e00\\uff0cXXX\\u3002\\u7b2c\\u4e8c\\uff0cXXX\\uff0c\\u63a5\\u4e0b\\u6765\\u6211\\u4f1aXXX\\u201d\\u3002<\\/span><\\/p><p style=\\\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\">\\u00a0<wbr><\\/p><p style=\\\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; font-weight: 700; color: rgb(51, 51, 51);\\\">\\u6a21\\u62df\\u6848\\u4f8b\\uff1a<\\/span><\\/span><\\/p><p style=\\\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\\\">\\u201c\\u521a\\u624d\\u540c\\u4e8b\\u4eec\\u9488\\u5bf9\\u5982\\u4f55\\u63a8\\u8fdb\\u6211\\u4eec\\u516c\\u53f8\\u80a1\\u6743\\u6fc0\\u52b1\\u5236\\u5ea6\\u5efa\\u8bbe\\u7684\\u53d1\\u8a00\\u90fd\\u7279\\u522b\\u7cbe\\u5f69\\uff0c\\u8ba9\\u6211\\u6df1\\u53d7\\u542f\\u53d1\\uff0c\\u53d7\\u76ca\\u532a\\u6d45\\u3002\\u4f5c\\u4e3a\\u8fd9\\u4e2a\\u9879\\u76ee\\u7684\\u4e3b\\u8981\\u63a8\\u52a8\\u8005\\uff0c\\u6211\\u8c08\\u8c08\\u81ea\\u5df1\\u6700\\u8fd1\\u7684\\u4e00\\u4e9b\\u4f53\\u4f1a\\u548c\\u53cd\\u9988\\u3002\\u7b2c\\u4e00\\u3001\\u901a\\u8fc7\\u6700\\u8fd1\\u548c\\u540c\\u4e8b\\u4eec\\u8c03\\u7814\\uff0c\\u6211\\u53d1\\u73b0\\u4e2a\\u522b\\u7684\\u540c\\u4e8b\\u5bf9\\u4e8e\\u516c\\u53f8\\u505a\\u80a1\\u6743\\u6fc0\\u52b1\\u8fd9\\u4ef6\\u4e8b\\uff0c\\u4e0d\\u662f\\u5f88\\u76f8\\u4fe1\\uff0c\\u8ba4\\u4e3a\\u516c\\u53f8\\u641e\\u80a1\\u6743\\u6fc0\\u52b1\\u7684\\u80cc\\u540e\\u5b58\\u5728\\u4e00\\u5b9a\\u7684\\u9634\\u8c0b\\uff0c\\u8fd9\\u79cd\\u73b0\\u8c61\\u53ef\\u80fd\\u5bf9\\u6211\\u4eec\\u505a\\u80a1\\u6743\\u6fc0\\u52b1\\u9879\\u76ee\\u843d\\u5730\\u5f71\\u54cd\\u5f88\\u5927\\u3002\\u7b2c\\u4e8c\\u3001\\u6709\\u4e9b\\u5458\\u5de5\\u8ddf\\u6211\\u53cd\\u5e94\\uff0c\\u516c\\u53f8\\u641e\\u80a1\\u6743\\u6fc0\\u52b1\\u662f\\u4e00\\u4ef6\\u597d\\u4e8b\\uff0c\\u4f46\\u662f\\u4ed6\\u4eec\\u53ef\\u80fd\\u62ff\\u4e0d\\u51fa\\u90a3\\u4e48\\u591a\\u94b1\\u8d2d\\u4e70\\u516c\\u53f8\\u80a1\\u4efd\\u3002\\u4e3a\\u4e86\\u89e3\\u51b3\\u8fd9\\u4e9b\\u95ee\\u9898\\uff0c\\u6211\\u60f3\\u662f\\u4e0d\\u662f\\u53ef\\u4ee5\\u8bf7\\u4e5d\\u5dde\\u7eb5\\u6a2a\\u51af\\u8001\\u5e08\\u518d\\u6765\\u505a\\u4e00\\u6b21\\u57f9\\u8bad\\uff0c\\u4e3b\\u8981\\u8bf4\\u8bf4\\u80a1\\u6743\\u6fc0\\u52b1\\u7684\\u4f5c\\u7528\\u3001\\u76ee\\u7684\\u548c\\u5bf9\\u5458\\u5de5\\u7684\\u597d\\u5904\\uff0c\\u5148\\u628a\\u5458\\u5de5\\u5bf9\\u8fd9\\u4ef6\\u4e8b\\u7684\\u601d\\u60f3\\u6253\\u901a\\uff0c\\u540e\\u9762\\u7684\\u4e8b\\u60c5\\u5c31\\u597d\\u529e\\u591a\\u4e86\\u3002\\u53e6\\u5916\\u501f\\u6b64\\u673a\\u4f1a\\u518d\\u548c\\u51af\\u8001\\u5e08\\u534f\\u5546\\u4e00\\u4e0b\\u7b2c\\u4e8c\\u79cd\\u60c5\\u51b5\\u5982\\u4f55\\u89e3\\u51b3\\u3002\\u201d<\\/span><\\/p><p style=\\\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\">\\u00a0<wbr><\\/p><p style=\\\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; font-weight: 700; color: rgb(51, 51, 51);\\\">\\u6848\\u4f8b\\u70b9\\u8bc4\\uff1a<\\/span><\\/span><\\/p><p style=\\\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\\\">\\uff081\\uff09\\u201c\\u53cd\\u9988\\u201d\\u8fd9\\u4e2a\\u73af\\u8282\\u53ef\\u4ee5\\u9488\\u5bf9\\u4f1a\\u8bae\\u4e3b\\u9898\\u53cd\\u9988\\u6700\\u8fd1\\u5de5\\u4f5c\\u9047\\u5230\\u7684\\u95ee\\u9898\\uff0c\\u4e5f\\u53ef\\u4ee5\\u8c08\\u611f\\u53d7\\u6216\\u4f53\\u4f1a\\u3002<\\/span><\\/p><p style=\\\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\\\"><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\\\">\\uff082\\uff09\\u53cd\\u9988\\u60c5\\u51b5\\u4e00\\u5b9a\\u8981\\u60f3\\u597d\\u89e3\\u51b3\\u65b9\\u6848\\uff0c\\u5426\\u5219\\u5bb9\\u6613\\u8ba9\\u5176\\u4ed6\\u4eba\\u8ba4\\u4e3a\\u4f60\\u5728\\u5410\\u69fd\\u3002<\\/span><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\\\"><br><\\/span><span style=\\\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\\\">ps\\uff1a\\u672c\\u6587\\u539f\\u521b\\u4f5c\\u8005\\uff1a\\u4e5d\\u5dde\\u7eb5\\u6a2a\\u51af\\u96f7\\uff0c\\u8f6c\\u8f7d\\u8bf7\\u6ce8\\u660e\\u51fa\\u5904\\uff01<\\/span><\\/p>\"},\"ids\":\"15\"}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '1555901322');
INSERT INTO `fa_admin_log` VALUES ('48', '2', 'user', '/phwadmin.php/news/edit/ids/14?dialog=1', '新闻资讯管理 编辑', '{\"dialog\":\"1\",\"row\":{\"name\":\"\\u522b\\u8ba9\\u201c\\u5783\\u573e\\u5feb\\u4e50\\u201d\\u6bc1\\u4e86\\u4f60\\u7684\\u751f\\u6d3b\",\"flag\":\"recommend\",\"image\":\"\\/uploads\\/20190419\\/5809c4e7ee9d0372a0521ffcc3785f7e.png\",\"description\":\"\\u957f\\u671f\\u6c89\\u8ff7\\u4e8e\\u5783\\u573e\\u5feb\\u4e50\\u4e2d\\uff0c\\u4e0d\\u4ec5\\u4f24\\u5bb3\\u8eab\\u4f53\\u5065\\u5eb7\\uff0c\\u8fd8\\u6d88\\u78e8\\u610f\\u5fd7\\u529b\\uff0c\\u8fd8\\u4f1a\\u8ba9\\u4e00\\u4e2a\\u4eba\\u8d70\\u4e0a\\u4eba\\u751f\\u7684\\u4e0b\\u5761\\u8def\\u3002\",\"weigh\":\"14\",\"content\":\"<p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u5f88\\u591a\\u4eba\\u90fd\\u6709\\u8fc7\\u8fd9\\u6837\\u7684\\u65f6\\u523b\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u672c\\u60f3\\u5237\\u4e00\\u4f1a\\u624b\\u673a\\uff0c\\u5c31\\u53bb\\u7761\\u89c9\\u6216\\u8005\\u8bfb\\u4e66\\u3002\\u7ed3\\u679c\\u624b\\u6307\\u4e00\\u52a8\\uff0c\\u6ed1\\u5f00\\u624b\\u673a\\uff0c\\u5c31\\u518d\\u4e5f\\u505c\\u4e0d\\u4e0b\\u6765\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u770b\\u770b\\u670b\\u53cb\\u5708\\u7684\\u6d88\\u606f\\uff0c\\u770b\\u770b\\u5fae\\u535a\\u4e0a\\u7684\\u70ed\\u641c\\uff0c\\u73a9\\u73a9\\u5c0f\\u6e38\\u620f\\uff0c\\u5237\\u5237\\u77ed\\u89c6\\u9891\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u7ed3\\u679c\\u8f6c\\u773c\\u4e0d\\u77e5\\u4e0d\\u89c9\\u4e2d\\uff0c\\u65f6\\u95f4\\u5df2\\u7ecf\\u8fc7\\u53bb\\u5927\\u534a\\uff0c\\u61ca\\u6094\\u3001\\u5fc3\\u75db\\u77ac\\u95f4\\u6d8c\\u4e0a\\u5fc3\\u5934\\uff0c\\u53ef\\u518d\\u8ffd\\u6094\\uff0c\\u4e5f\\u5df2\\u4e8e\\u4e8b\\u65e0\\u8865\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u5176\\u5b9e\\u5237\\u624b\\u673a\\u3001\\u7535\\u5b50\\u6e38\\u620f\\u3001\\u6253\\u9ebb\\u5c06\\u7b49\\u7b49\\u5e26\\u6765\\u7684\\u90fd\\u662f\\u201c\\u5783\\u573e\\u5feb\\u4e50\\u201d\\u3002\\u5b83\\u867d\\u7136\\u77ed\\u6682\\u5730\\u5e26\\u6765\\u4e86\\u5feb\\u611f\\uff0c\\u4f46\\u662f\\u6781\\u6613\\u8ba9\\u4eba\\u4e27\\u5931\\u81ea\\u63a7\\u529b\\uff0c\\u800c\\u6c89\\u8ff7\\u5176\\u4e2d\\u3002<\\/p><ul style=\\\"border: 0px; margin: 0.63em 0px 1.8em; padding: 0px; font-size: 16px; list-style: none; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\"><li style=\\\"border: 0px; margin: 0px; padding: 0px 0px 0px 1.5em; list-style-type: none;\\\"><span style=\\\"font-weight: 700; border: 0px; margin: 0px; padding: 0px;\\\">\\u957f\\u671f\\u6c89\\u8ff7\\u4e8e\\u5783\\u573e\\u5feb\\u4e50\\u4e2d\\uff0c\\u4e0d\\u4ec5\\u4f24\\u5bb3\\u8eab\\u4f53\\u5065\\u5eb7\\uff0c\\u8fd8\\u6d88\\u78e8\\u610f\\u5fd7\\u529b\\uff0c\\u8fd8\\u4f1a\\u8ba9\\u4e00\\u4e2a\\u4eba\\u8d70\\u4e0a\\u4eba\\u751f\\u7684\\u4e0b\\u5761\\u8def\\u3002<\\/span><\\/li><\\/ul><p class=\\\"ql-align-justify\\\" style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; text-align: justify; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\"><span style=\\\"font-weight: 700; border: 0px; margin: 0px; padding: 0px;\\\">01 \\u201c\\u5783\\u573e\\u5feb\\u4e50\\u201d\\u5bb9\\u6613\\u8ba9\\u4eba\\u4e0a\\u763e<\\/span><\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u6240\\u8c13\\u7684\\u5783\\u573e\\u5feb\\u4e50\\uff0c\\u5c31\\u662f\\u80fd\\u5e26\\u6765\\u77ed\\u6682\\u7684\\u7cbe\\u795e\\u5feb\\u611f\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u6bd4\\u5982\\u641e\\u7b11\\u7684\\u77ed\\u89c6\\u9891\\u3001\\u597d\\u73a9\\u7684\\u7efc\\u827a\\u3001\\u80a5\\u7682\\u5267\\uff0c\\u770b\\u7740\\u975e\\u5e38\\u8fc7\\u763e\\uff0c\\u8ba9\\u4eba\\u4e0d\\u7981\\u6c89\\u6d78\\u4e8e\\u201c\\u54c8\\u54c8\\u5927\\u7b11\\u201d\\u7684\\u559c\\u6b22\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u8bf4\\u5230\\u201c\\u5783\\u573e\\u5feb\\u4e50\\u201d\\uff0c\\u4e0d\\u5f97\\u4e0d\\u63d0\\u63d0\\u6211\\u7684\\u540c\\u4e8b\\u5c0fk\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u5c0fk\\u4ee5\\u524d\\u7684\\u751f\\u6d3b\\u662f\\uff0c\\u4e0b\\u73ed\\u540e\\u7684\\u65f6\\u95f4\\uff0c\\u5c31\\u7ea6\\u4e0a\\u51e0\\u4e2a\\u597d\\u670b\\u53cb\\u5403\\u4e2a\\u996d\\uff0c\\u770b\\u4e2a\\u7535\\u5f71\\uff0c\\u6bcf\\u5929\\u665a\\u4e0a\\u7761\\u524d\\u770b\\u4e00\\u4f1a\\u4e66\\uff0c\\u57fa\\u672c\\u4e0a\\u4e24\\u4e09\\u5929\\u5c31\\u80fd\\u770b\\u5b8c\\u4e00\\u672c\\u4e66\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u65e9\\u4e0a\\u521a\\u6765\\u95f2\\u804a\\u90a3\\u4f1a\\uff0c\\u5979\\u559c\\u6b22\\u548c\\u6211\\u4eec\\u5206\\u4eab\\u5979\\u6628\\u5929\\u770b\\u7684\\u4e66\\uff0c\\u4f83\\u4f83\\u800c\\u8c08\\u6628\\u65e5\\u53c8\\u770b\\u5230\\u8ba9\\u5979\\u9887\\u6709\\u611f\\u53d7\\u7684\\u89c2\\u70b9\\uff0c\\u773c\\u795e\\u90fd\\u662f\\u5728\\u53d1\\u7740\\u5149\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u4f46\\u8fd1\\u671f\\uff0c\\u5c0fk\\u6e10\\u6e10\\u53d8\\u5f97\\u6709\\u4e9b\\u4e0d\\u4e00\\u6837\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u4e0d\\u518d\\u548c\\u5927\\u5bb6\\u5206\\u4eab\\u770b\\u5230\\u7684\\u597d\\u4e66\\u597d\\u7535\\u5f71\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u4e0a\\u73ed\\u7ecf\\u5e38\\u8fdf\\u5230\\uff0c\\u8d76\\u5230\\u529e\\u516c\\u5ba4\\u7684\\u65f6\\u5019\\u6ee1\\u5934\\u5927\\u6c57\\uff0c\\u6c14\\u5598\\u5401\\u5401\\uff0c\\u6574\\u4e2a\\u4eba\\u5df2\\u7ecf\\u6ca1\\u6709\\u4e86\\u4ee5\\u524d\\u7684\\u597d\\u6c14\\u8272\\u548c\\u7cbe\\u529b\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u53d6\\u800c\\u4ee3\\u4e4b\\u7684\\u662f\\uff0c\\u773c\\u775b\\u4e0b\\u6325\\u4e4b\\u4e0d\\u53bb\\u7684\\u4e4c\\u9752\\uff0c\\u6563\\u4e71\\u7684\\u5934\\u53d1\\uff0c\\u660f\\u660f\\u6b32\\u7761\\u7684\\u72b6\\u6001\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u5c0fk\\u6700\\u8fd1\\u8ff7\\u604b\\u4e0a\\u4e00\\u6b3e\\u5c0f\\u6e38\\u620f\\uff0c\\u539f\\u672c\\u53ea\\u60f3\\u73a9\\u73a9\\u6253\\u53d1\\u65f6\\u95f4\\uff0c\\u5374\\u6ca1\\u60f3\\u5230\\u5f00\\u59cb\\u4e86\\u5c31\\u505c\\u4e0d\\u4e0b\\u6765\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u73a9\\u5230\\u901a\\u5bb5\\uff0c\\u7b2c\\u4e8c\\u5929\\u7761\\u5f97\\u8d77\\u4e0d\\u6765\\uff0c\\u8fdf\\u5230\\u4e86\\u5927\\u534a\\u5929\\u2026\\u2026\\u5348\\u4f11\\u65f6\\u95f4\\uff0c\\u5403\\u996d\\u7684\\u7b49\\u9910\\u65f6\\u95f4\\uff0c\\u90fd\\u5728\\u73a9\\uff0c\\u751a\\u81f3\\u4e3a\\u8fd9\\u4e2a\\u6e38\\u620f\\u5145\\u4e86\\u4e0d\\u5c11\\u94b1\\u4e70\\u4e86\\u4e00\\u5806\\u6ca1\\u4ec0\\u4e48\\u7528\\u7684\\u76ae\\u80a4\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u6211\\u4eec\\u529d\\u8fc7\\u5c0fk\\uff0c\\u522b\\u592a\\u6c89\\u8ff7\\u4e8e\\u6e38\\u620f\\u4e2d\\uff0c\\u5979\\u603b\\u662f\\u7b11\\u7b11\\u4e0d\\u4ee5\\u4e3a\\u7136\\u5730\\u8bf4\\uff1a\\u201c\\u751f\\u6d3b\\u8fd9\\u4e48\\u82e6\\uff0c\\u603b\\u8981\\u627e\\u70b9\\u4e50\\u5b50\\uff0c\\u7f13\\u89e3\\u4e0b\\u538b\\u529b\\u3002\\u201d<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u76f4\\u5230\\u6628\\u5929\\uff0c\\u5c0fk\\u53c8\\u4e00\\u6b21\\u8fdf\\u5230\\uff0c\\u8fde\\u7eed\\u7684\\u8fdf\\u5230\\u8ba9\\u4e3b\\u7ba1\\u6c14\\u5230\\u6263\\u4e86\\u5979\\u8fd9\\u4e2a\\u5b63\\u5ea6\\u7684\\u5956\\u91d1\\u3002\\u5979\\u624d\\u610f\\u8bc6\\u5230\\uff0c\\u81ea\\u5df1\\u7684\\u751f\\u6d3b\\u5df2\\u7ecf\\u88ab\\u8fd9\\u6240\\u8c13\\u7684\\u201c\\u4e50\\u5b50\\u201d\\u641e\\u5f97\\u4e00\\u56e2\\u7cdf\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u4e4b\\u524d\\u770b\\u5230\\u8fc7\\u4e00\\u7bc7\\u6587\\u7ae0\\uff0c\\u8bf4\\u5230\\uff1a<span style=\\\"font-weight: 700; border: 0px; margin: 0px; padding: 0px;\\\">\\u5783\\u573e\\u5feb\\u4e50\\u6210\\u763e\\uff0c\\u6bd4\\u6bd2\\u54c1\\u6210\\u763e\\u66f4\\u53ef\\u6015\\u3002<\\/span><\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u6bd2\\u54c1\\u6210\\u763e\\uff0c\\u6bcf\\u4e2a\\u4eba\\u90fd\\u77e5\\u9053\\u662f\\u4ef6\\u5fc5\\u987b\\u62d2\\u7edd\\u548c\\u8fdc\\u79bb\\u7684\\u4e8b\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u800c\\u5783\\u573e\\u5feb\\u4e50\\uff0c\\u4e00\\u65e6\\u5c1d\\u5230\\u4e86\\u751c\\u5934\\uff0c\\u5c31\\u4f1a\\u5fcd\\u4e0d\\u4f4f\\u5730\\u60f3\\u8981\\u66f4\\u591a\\uff0c\\u8ba9\\u4f60\\u7684\\u610f\\u5fd7\\u8ff7\\u5931\\uff0c\\u5ffd\\u7565\\u5230\\u672c\\u6765\\u5e94\\u8be5\\u505a\\u7684\\u4e8b\\u60c5\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u5b83\\u9ed8\\u4e0d\\u4f5c\\u58f0\\u5730\\uff0c\\u8ba9\\u4f60\\u6162\\u6162\\u6210\\u763e\\uff0c\\u4e00\\u5c42\\u201c\\u5feb\\u4e50\\u201d\\u7684\\u7cd6\\u8863\\u4e4b\\u4e0b\\uff0c\\u4e5f\\u8bb8\\u4f1a\\u6709\\u5239\\u90a3\\u751c\\u871c\\u7684\\u9519\\u89c9\\uff0c\\u4f46\\u4e45\\u800c\\u4e45\\u4e4b\\uff0c\\u4f60\\u5c31\\u4f1a\\u5c1d\\u5230\\u5b83\\u5e26\\u6765\\u7684\\u82e6\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\"><img src=\\\"http:\\/\\/5b0988e595225.cdn.sohucs.com\\/images\\/20190413\\/11c324fad2e0401b8f0e114e32b93fd4.png\\\" max-width=\\\"600\\\" style=\\\"margin: 10px auto 0px; padding: 0px; display: block; max-width: 100%; height: auto;\\\"><\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u56fe\\u7247\\u6765\\u6e90\\/\\u56fe\\u866b\\u521b\\u610f<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\"><span style=\\\"font-weight: 700; border: 0px; margin: 0px; padding: 0px;\\\">02 \\u8d70\\u5f97\\u592a\\u8212\\u670d\\u7684\\u8def\\uff0c\\u90fd\\u662f\\u4e0b\\u5761\\u8def<\\/span><\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u4e3a\\u4ec0\\u4e48\\u4eba\\u4f1a\\u6c89\\u6d78\\u4e8e\\u201c\\u5783\\u573e\\u5feb\\u4e50\\u201d\\u4e2d\\u5462\\uff1f<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u5fc3\\u7406\\u5b66\\u7684\\u89d2\\u5ea6\\u4e0a\\uff0c\\u6709\\u8fd9\\u6837\\u7684\\u8bf4\\u6cd5\\uff1a\\u53cd\\u9988\\u8d8a\\u77ed\\u7684\\u65f6\\u95f4\\u8d8a\\u5bb9\\u6613\\u83b7\\u5f97\\u5feb\\u611f\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u4f60\\u73a9\\u4e00\\u4f1a\\u6e38\\u620f\\uff0c\\u9a6c\\u4e0a\\u5c31\\u80fd\\u83b7\\u5f97\\u723d\\u611f\\uff0c\\u770b\\u4e00\\u4e2a\\u641e\\u7b11\\u77ed\\u89c6\\u9891\\uff0c\\u9a6c\\u4e0a\\u5c31\\u80fd\\u54c8\\u54c8\\u5927\\u7b11\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u60c5\\u7eea\\u5e26\\u6765\\u7684\\u5feb\\u611f\\uff0c\\u8ba9\\u4eba\\u5fcd\\u4e0d\\u4f4f\\u4e0a\\u763e\\uff0c\\u8fd9\\u4e48\\u8212\\u670d\\u7684\\u4e8b\\u60c5\\uff0c\\u8c01\\u613f\\u610f\\u820d\\u5f03\\u5462\\uff1f<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u53cd\\u4e4b\\uff0c\\u5bf9\\u4e8e\\u90a3\\u4e9b\\u53cd\\u9988\\u6a21\\u5f0f\\u6bd4\\u8f83\\u957f\\uff0c\\u83b7\\u53d6\\u5feb\\u611f\\u7684\\u65f6\\u95f4\\u6bd4\\u8f83\\u6162\\u7684\\u4e8b\\u60c5\\uff0c\\u6211\\u4eec\\u901a\\u5e38\\u4f1a\\u89c9\\u5f97\\u538c\\u70e6\\uff0c\\u96be\\u4ee5\\u575a\\u6301\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u6bd4\\u5982\\uff0c\\u60f3\\u8981\\u6536\\u83b7\\u597d\\u8eab\\u6750\\uff0c\\u5fc5\\u987b\\u514b\\u670d\\u9ad8\\u70ed\\u91cf\\u7f8e\\u98df\\u7684\\u8bf1\\u60d1\\uff0c\\u518d\\u52a0\\u4e4b\\u4e00\\u6b21\\u6b21\\u6325\\u6c57\\u5982\\u96e8\\u7684\\u8fd0\\u52a8\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u5b66\\u4e60\\u8bfb\\u4e66\\u4ea6\\u662f\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u4e00\\u4e24\\u4e2a\\u5c0f\\u65f6\\u7684\\u5b66\\u4e60\\u5e76\\u4e0d\\u4f1a\\u8ba9\\u4eba\\u76f4\\u63a5\\u6210\\u4e3a\\u5b66\\u8bc6\\u6e0a\\u535a\\u7684\\u4eba\\uff0c\\u5b83\\u662f\\u901a\\u8fc7\\u65e5\\u590d\\u4e00\\u65e5\\u7684\\u79ef\\u7d2f\\uff0c\\u5728\\u4e0d\\u77e5\\u4e0d\\u89c9\\u4e2d\\u6c89\\u6dc0\\u5728\\u770b\\u4e0d\\u89c1\\u7684\\u6c14\\u8d28\\u3001\\u8c08\\u5410\\u4e4b\\u4e2d\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u7f57\\u9a6c\\u4e0d\\u662f\\u4e00\\u5929\\u5efa\\u6210\\u7684\\uff0c\\u90a3\\u4e9b\\u6211\\u4eec\\u6240\\u8ffd\\u6c42\\u7684\\u7f8e\\u597d\\uff0c\\u4ea6\\u4e0d\\u662f\\u553e\\u624b\\u53ef\\u5f97\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u6211\\u4e00\\u76f4\\u76f8\\u4fe1\\uff0c\\u8d70\\u5f97\\u592a\\u8212\\u670d\\u7684\\u8def\\uff0c\\u90fd\\u662f\\u4e0b\\u5761\\u8def\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u6240\\u8c13\\u7684\\u81ea\\u7531\\uff0c\\u4e0d\\u662f\\u60f3\\u8981\\u4ec0\\u4e48\\u5c31\\u8981\\u4ec0\\u4e48\\uff0c\\u81ea\\u7531\\u5c31\\u50cf\\u5362\\u68ad\\u6240\\u8bf4\\u7684\\uff1a\\u201c\\u65e0\\u5f80\\u4e0d\\u5728\\u67b7\\u9501\\u4e2d\\u3002\\u201d<\\/p><ul style=\\\"border: 0px; margin: 0.63em 0px 1.8em; padding: 0px; font-size: 16px; list-style: none; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\"><li style=\\\"border: 0px; margin: 0px; padding: 0px 0px 0px 1.5em; list-style-type: none;\\\"><span style=\\\"font-weight: 700; border: 0px; margin: 0px; padding: 0px;\\\">\\u4f60\\u60f3\\u8981\\u5f97\\u5230\\u4ec0\\u4e48\\uff0c\\u5c31\\u8981\\u4ed8\\u51fa\\u4ec0\\u4e48\\u3002<\\/span><\\/li><\\/ul><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u4f60\\u6240\\u70ed\\u7231\\u7684\\u4e1c\\u897f\\uff0c\\u6240\\u6c89\\u6ca6\\u7684\\u5feb\\u4e50\\uff0c\\u6700\\u7ec8\\u6709\\u53ef\\u80fd\\u4f1a\\u6bc1\\u6389\\u4f60\\u81ea\\u5df1\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u201c\\u751f\\u4e8e\\u5fe7\\u60a3\\uff0c\\u6b7b\\u4e8e\\u5b89\\u4e50\\u201d\\uff0c\\u5728\\u5145\\u6ee1\\u6311\\u6218\\uff0c\\u56f0\\u96be\\u7684\\u73af\\u5883\\u4e0b\\uff0c\\u624d\\u80fd\\u8ba9\\u4eba\\u53d8\\u5f97\\u66f4\\u52a0\\u5f3a\\u5927\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\"><img src=\\\"http:\\/\\/5b0988e595225.cdn.sohucs.com\\/images\\/20190413\\/cfefc100533640ccbb594d9213ade1da.png\\\" max-width=\\\"600\\\" style=\\\"margin: 10px auto 0px; padding: 0px; display: block; max-width: 100%; height: auto;\\\"><\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u56fe\\u7247\\u6765\\u6e90\\/\\u56fe\\u866b\\u521b\\u610f<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\"><span style=\\\"font-weight: 700; border: 0px; margin: 0px; padding: 0px;\\\">03 \\u6bcf\\u5929\\u505a\\u4e24\\u4ef6\\u4e0d\\u559c\\u6b22\\u7684\\u4e8b<\\/span><\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u6bdb\\u59c6\\u8bf4\\u8fc7\\u8fd9\\u6837\\u4e00\\u53e5\\u8bdd\\uff1a<\\/p><blockquote style=\\\"border-width: 0px 0px 0px 4px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: rgb(204, 204, 204); border-image: initial; margin-top: 0.63em; margin-bottom: 0px; padding: 0px 0px 0px 16px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u201c\\u4e3a\\u4e86\\u4f7f\\u7075\\u9b42\\u5b81\\u9759\\uff0c\\u4e00\\u4e2a\\u4eba\\u6bcf\\u5929\\u8981\\u505a\\u4e24\\u4ef6\\u4e0d\\u559c\\u6b22\\u7684\\u4e8b\\u3002\\u201d<\\/blockquote><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u60f3\\u8981\\u53d8\\u5f97\\u66f4\\u52a0\\u81ea\\u5f8b\\uff0c\\u5728\\u4eba\\u751f\\u8def\\u4e0a\\uff0c\\u8d70\\u5f97\\u66f4\\u957f\\u66f4\\u8fdc\\uff0c\\u4f60\\u5c31\\u5fc5\\u987b\\u4e00\\u6b21\\u6b21\\u5730\\u53bb\\u7a81\\u7834\\u81ea\\u5df1\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u5728\\u4e4b\\u524d\\u300a\\u58f0\\u4e34\\u5176\\u5883\\u300b\\u7684\\u8282\\u76ee\\u4e2d\\uff0c\\u97e9\\u96ea\\u7684\\u8868\\u73b0\\u8ba9\\u6211\\u5370\\u8c61\\u5f88\\u6df1\\u523b\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u5e74\\u523035\\u5c81\\u7684\\u5979\\uff0c\\u4fdd\\u6301\\u7740\\u826f\\u597d\\u7684\\u8eab\\u6750\\uff0c\\u4e00\\u8eab\\u201c\\u4ed9\\u6c14\\u201d\\uff0c\\u5b9b\\u82e5\\u5c11\\u5973\\u822c\\uff0c\\u66f4\\u53ef\\u8d35\\u7684\\u662f\\u5979\\u8bf4\\u5f97\\u4e00\\u53e3\\u6d41\\u5229\\u7684\\u82f1\\u8bed\\uff0c\\u914d\\u7684\\u97f3\\u4ea6\\u662f\\u5ab2\\u7f8e\\u4e13\\u4e1a\\u6c34\\u5e73\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u97e9\\u96ea\\u7684\\u81ea\\u5f8b\\u5728\\u5708\\u5185\\u662f\\u51fa\\u4e86\\u540d\\u7684\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u636e\\u8bf4\\u6709\\u6b21\\u6536\\u4e86\\u5de5\\uff0c\\u4f55\\u7085\\u7ea6\\u5979\\u4e00\\u540c\\u5403\\u996d\\uff0c\\u97e9\\u96ea\\u4e00\\u53e3\\u56de\\u7edd\\uff1a\\u201c\\u4f55\\u8001\\u5e08\\uff0c\\u6211\\u8981\\u56de\\u5bb6\\u5199\\u4f5c\\u4e1a\\u3002\\u201d<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u4f55\\u8001\\u5e08\\u5fc3\\u4e0b\\u4e00\\u60ca\\uff0c\\u4ed6\\u4e5f\\u662f\\u7b2c\\u4e00\\u6b21\\u9047\\u5230\\u8fd9\\u6837\\u7684\\u63a8\\u8131\\u7406\\u7531\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u800c\\u97e9\\u96ea\\u7684\\u7684\\u786e\\u786e\\u662f\\u56de\\u5bb6\\u5199\\u4f5c\\u4e1a\\u7684\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u5979\\u6bcf\\u5929\\u201c\\u4e03\\u70b9\\u534a\\u8d77\\u5e8a\\uff0c\\u4e09\\u5206\\u949f\\u6d17\\u6f31\\uff0c\\u4e94\\u5206\\u949f\\u4e0a\\u5986\\uff1b\\u4e00\\u5929\\u53ea\\u5403\\u4e24\\u987f\\u996d\\uff0c\\u665a\\u4e0a\\u516d\\u70b9\\u534a\\u4ee5\\u540e\\u4e0d\\u5403\\u4e1c\\u897f\\uff1b\\u7761\\u524d\\u4e00\\u5c0f\\u65f6\\u5145\\u7535\\u65f6\\u95f4\\u2026\\u2026\\u201d<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u8fd9\\u6837\\u7684\\u4f5c\\u606f\\u4e60\\u60ef\\uff0c\\u9700\\u8981\\u4e0e\\u7f8e\\u98df\\u3001\\u60f0\\u6027\\u5bf9\\u6297\\uff0c\\u5f88\\u591a\\u4eba\\u575a\\u6301\\u51e0\\u5929\\u5927\\u6982\\u5c31\\u5d29\\u6e83\\u4e86\\uff0c\\u97e9\\u96ea\\u5374\\u575a\\u6301\\u4e86\\u5341\\u51e0\\u5e74\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u4e0d\\u4ec5\\u5982\\u6b64\\uff0c\\u5979\\u6bcf\\u5929\\u8fd8\\u4f1a\\u82b12-4\\u5c0f\\u65f6\\u5b66\\u4e60\\u82f1\\u8bed\\u3002\\u624b\\u673a\\u91cc1000\\u5206\\u949f\\u7684\\u624b\\u673a\\u901a\\u8bdd\\u65f6\\u95f4\\uff0c\\u6709900\\u5206\\u949f\\u662f\\u6253\\u7ed9\\u82f1\\u8bed\\u8001\\u5e08\\u7684\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u5728\\u7247\\u573a\\uff0c\\u62cd\\u620f\\u4f11\\u606f\\u7684\\u95f4\\u9699\\uff0c\\u5176\\u4ed6\\u6f14\\u5458\\u591a\\u534a\\u4f1a\\u73a9\\u624b\\u673a\\u6253\\u53d1\\u65f6\\u95f4\\uff0c\\u97e9\\u96ea\\u5374\\u662f\\u6367\\u7740\\u7535\\u5b50\\u4e66\\u5728\\u5b89\\u9759\\u5730\\u54c1\\u8bfb\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u5b66\\u82f1\\u8bed\\u3001\\u4fdd\\u6301\\u5341\\u51e0\\u5e74\\u5982\\u4e00\\u65e5\\u7684\\u81ea\\u5f8b\\uff0c\\u90fd\\u4e0d\\u662f\\u7b80\\u5355\\u7684\\u4e8b\\u60c5\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u4f46\\u5f53\\u5b83\\u4e00\\u65e6\\u6210\\u4e3a\\u4e60\\u60ef\\uff0c\\u5c31\\u53d8\\u6210\\u4e86\\u8ba9\\u4eba\\u6ee1\\u8db3\\u548c\\u5feb\\u4e50\\u7684\\u4e8b\\u60c5\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u5f53\\u4f60\\u4f53\\u4f1a\\u5230\\u77e5\\u8bc6\\u6d78\\u5165\\u7075\\u9b42\\uff0c\\u5145\\u5b9e\\u7684\\u559c\\u60a6\\uff0c\\u5c31\\u4e0d\\u518d\\u4f1a\\u6c89\\u8ff7\\u4e8e\\u90a3\\u4e9b\\u65e0\\u76ca\\u7684\\u5783\\u573e\\u5feb\\u4e50\\u4e2d\\u4e86\\u3002<\\/p><ul style=\\\"border: 0px; margin: 0.63em 0px 1.8em; padding: 0px; font-size: 16px; list-style: none; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\"><li style=\\\"border: 0px; margin: 0px; padding: 0px 0px 0px 1.5em; list-style-type: none;\\\"><span style=\\\"font-weight: 700; border: 0px; margin: 0px; padding: 0px;\\\">\\u5b66\\u4f1a\\u53bb\\u505a\\u81ea\\u5df1\\u4e0d\\u559c\\u6b22\\u7684\\u4e8b\\uff0c\\u53bb\\u611f\\u53d7\\u90a3\\u4e9b\\u53ef\\u80fd\\u5e76\\u4e0d\\u201c\\u8f7b\\u677e\\u201d\\u7684\\u4e8b\\u60c5\\uff0c\\u5e76\\u575a\\u6301\\u3002<\\/span><\\/li><\\/ul><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u4f60\\u4f1a\\u53d1\\u73b0\\uff0c\\u539f\\u6765\\u771f\\u6b63\\u7684\\u5feb\\u4e50\\uff0c\\u4e0d\\u662f\\u7b80\\u7b80\\u5355\\u5355\\u7684\\u54c8\\u54c8\\u5927\\u7b11\\u7684\\u5feb\\u611f\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u771f\\u6b63\\u7684\\u5feb\\u4e50\\uff0c\\u662f\\u4f60\\u7ffb\\u8fc7\\u4e00\\u5ea7\\u5ea7\\u9ad8\\u5c71\\uff0c\\u6c14\\u5598\\u5401\\u5401\\u8fc7\\uff0c\\u6c57\\u6d41\\u6d43\\u80cc\\u8fc7\\uff0c\\u6700\\u540e\\uff0c\\u7075\\u9b42\\u548c\\u7cbe\\u795e\\u88ab\\u77e5\\u8bc6\\u548c\\u7cbe\\u529b\\u586b\\u6ee1\\uff0c\\u5b83\\u5e26\\u6765\\u5145\\u5b9e\\u611f\\u548c\\u6ee1\\u8db3\\u611f\\uff0c\\u4e5f\\u6c89\\u6dc0\\u4e8e\\u4f60\\u7684\\u6c14\\u8d28\\u91cc\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\"><img src=\\\"http:\\/\\/5b0988e595225.cdn.sohucs.com\\/images\\/20190413\\/2e420c40f72c4006b9d39fa9ab21c6b2.png\\\" max-width=\\\"600\\\" style=\\\"margin: 10px auto 0px; padding: 0px; display: block; max-width: 100%; height: auto;\\\"><\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u56fe\\u7247\\u6765\\u6e90\\/\\u56fe\\u866b\\u521b\\u610f<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\"><span style=\\\"font-weight: 700; border: 0px; margin: 0px; padding: 0px;\\\">04 \\u4e8c\\u5341\\u5c81\\u7684\\u751f\\u6d3b\\u65b9\\u5f0f\\uff0c\\u51b3\\u5b9a\\u4f60\\u4e09\\u5341\\u5c81\\u7684\\u6253\\u5f00\\u65b9\\u5f0f<\\/span><\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u4e0d\\u53ef\\u5426\\u8ba4\\uff0c\\u751f\\u6d3b\\u6709\\u65f6\\u5019\\u5f88\\u82e6\\uff0c\\u6211\\u4eec\\u9700\\u8981\\u4e00\\u4e9b\\u7b80\\u5355\\u7684\\u5feb\\u4e50\\u6765\\u6cbb\\u6108\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u5076\\u5c14\\u770b\\u4e2a\\u8f7b\\u677e\\u641e\\u7b11\\u7684\\u89c6\\u9891\\uff0c\\u5237\\u5237\\u60c5\\u8282\\u8fc7\\u763e\\u3001\\u4e0d\\u7528\\u52a8\\u8111\\u7684\\u7535\\u89c6\\u5267\\uff0c\\u8fd9\\u90fd\\u6ca1\\u4ec0\\u4e48\\u95ee\\u9898\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u4f46\\u5207\\u5fcc\\u6210\\u763e\\uff0c\\u5207\\u5fcc\\u5728\\u4e0a\\u9762\\u6d6a\\u8d39\\u5927\\u628a\\u5927\\u628a\\u7684\\u65f6\\u95f4\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u6709\\u7684\\u4eba\\u7684\\u5feb\\u4e50\\uff0c\\u6765\\u81ea\\u4e8e\\u8bfb\\u4e66\\u3001\\u65c5\\u884c\\u3001\\u5065\\u8eab\\uff0c\\u4e00\\u6b65\\u6b65\\u5145\\u5b9e\\u81ea\\u5df1\\uff0c\\u63d0\\u5347\\u7075\\u9b42\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u6709\\u7684\\u4eba\\u7684\\u5feb\\u4e50\\uff0c\\u662f\\u6765\\u81ea\\u4e8e\\u8eba\\u5728\\u5e8a\\u4e0a\\u4e0d\\u52a8\\uff0c\\u5403\\u5403\\u70b8\\u9e21\\u559d\\u559d\\u5976\\u8336\\uff0c\\u770b\\u770b\\u624b\\u673a\\uff0c\\u5237\\u5237\\u641e\\u7b11\\u77ed\\u89c6\\u9891\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u4f60\\u7684\\u65f6\\u95f4\\u82b1\\u5728\\u54ea\\uff0c\\u4f60\\u5c31\\u4f1a\\u6210\\u4e3a\\u4ec0\\u4e48\\u6837\\u7684\\u4eba\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u79cd\\u4ec0\\u4e48\\u6837\\u7684\\u56e0\\uff0c\\u5c31\\u6709\\u4ec0\\u4e48\\u6837\\u7684\\u679c\\u3002<\\/p><ul style=\\\"border: 0px; margin: 0.63em 0px 1.8em; padding: 0px; font-size: 16px; list-style: none; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\"><li style=\\\"border: 0px; margin: 0px; padding: 0px 0px 0px 1.5em; list-style-type: none;\\\"><span style=\\\"font-weight: 700; border: 0px; margin: 0px; padding: 0px;\\\">\\u62c9\\u5f00\\u4eba\\u548c\\u4eba\\u4e4b\\u95f4\\u7684\\u5dee\\u8ddd\\uff0c\\u662f\\u5728\\u95f2\\u6687\\u65f6\\u95f4\\u7684\\u5229\\u7528\\u4e0a\\u3002<\\/span><\\/li><\\/ul><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u4e5f\\u8bb8\\uff0c\\u6c89\\u8ff7\\u4e00\\u5c0f\\u65f6\\u6e38\\u620f\\u3001\\u624b\\u673a\\u548c\\u770b\\u4e00\\u5c0f\\u65f6\\u7684\\u4e66\\uff0c\\u4e8c\\u8005\\u7ed9\\u4eba\\u5e26\\u6765\\u7684\\u53d8\\u5316\\u76f8\\u5dee\\u5e76\\u4e0d\\u5927\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u4f46\\u662f\\u4e00\\u4e2a\\u6708\\u3001\\u4e00\\u5e74\\u3001\\u751a\\u81f3\\u5341\\u5e74\\u4ee5\\u540e\\u5462\\uff1f<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u4f60\\u7ed9\\u5c81\\u6708\\u4ec0\\u4e48\\uff0c\\u5c81\\u6708\\u81ea\\u7136\\u5c31\\u4f1a\\u56de\\u9988\\u4f60\\u4ec0\\u4e48\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u4e8c\\u5341\\u5c81\\u7684\\u751f\\u6d3b\\u65b9\\u5f0f\\uff0c\\u51b3\\u5b9a\\u4f60\\u4e09\\u5341\\u5c81\\u7684\\u6253\\u5f00\\u65b9\\u5f0f\\uff0c\\u4e09\\u5341\\u5c81\\u7684\\u751f\\u6d3b\\u65b9\\u5f0f\\uff0c\\u540c\\u6837\\u4e5f\\u51b3\\u5b9a\\u4f60\\u56db\\u5341\\u5c81\\u7684\\u6253\\u5f00\\u65b9\\u5f0f\\u2026\\u2026<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u6240\\u4ee5\\uff0c<span style=\\\"font-weight: 700; border: 0px; margin: 0px; padding: 0px;\\\">\\u5343\\u4e07\\u522b\\u4ec5\\u4ec5\\u53ea\\u662f\\u6ee1\\u8db3\\u6619\\u82b1\\u4e00\\u73b0\\u7684\\u5feb\\u4e50\\uff0c\\u522b\\u8ba9\\u201c\\u5783\\u573e\\u5feb\\u4e50\\u201d\\u6bc1\\u4e86\\u4f60\\u7684\\u751f\\u6d3b\\u3002<\\/span><\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u597d\\u597d\\u8bfb\\u4e66\\u3001\\u597d\\u597d\\u5065\\u8eab\\u3001\\u8ba4\\u771f\\u62a4\\u80a4\\u2026\\u2026\\u591a\\u9009\\u62e9\\u4e00\\u4e9b\\u6709\\u4ef7\\u503c\\u610f\\u4e49\\u7684\\u4e8b\\u60c5\\u3002<\\/p><p style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u5f53\\u6709\\u4e00\\u5929\\u56de\\u9996\\u8fc7\\u53bb\\u65f6\\uff0c\\u5bf9\\u751f\\u547d\\u4e0d\\u8f9c\\u8d1f\\uff0c\\u5bf9\\u81ea\\u5df1\\u4e0d\\u9057\\u61be\\u3002<\\/p><p class=\\\"ql-align-justify\\\" style=\\\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; text-align: justify; color: rgb(25, 25, 25); font-family: \\\"PingFang SC\\\", Arial, \\u5fae\\u8f6f\\u96c5\\u9ed1, \\u5b8b\\u4f53, simsun, sans-serif;\\\">\\u6587\\u7ae0\\u4f5c\\u8005\\uff1a\\u6a58\\u5b50\\u5473\\u4e5f<\\/p>\"},\"ids\":\"14\"}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '1555901327');
INSERT INTO `fa_admin_log` VALUES ('49', '2', 'user', '/phwadmin.php/ajax/upload', '', '{\"name\":\"left1.jpg\"}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '1555901824');
INSERT INTO `fa_admin_log` VALUES ('50', '2', 'user', '/phwadmin.php/news/add?dialog=1', '新闻资讯管理 添加', '{\"dialog\":\"1\",\"row\":{\"name\":\"\\u4e5d\\u5dde\\u6d4b\\u8bd5\\u6587\\u7ae0\",\"flag\":\"recommend\",\"image\":\"\\/uploads\\/20190422\\/fb0912045771693d0e966b37e03da22c.jpg\",\"description\":\"\\u4e5d\\u5dde\\u6d4b\\u8bd5\\u6587\\u7ae0\\u4e5d\\u5dde\\u6d4b\\u8bd5\\u6587\\u7ae0\\u4e5d\\u5dde\\u6d4b\\u8bd5\\u6587\\u7ae0\",\"weigh\":\"0\",\"content\":\"<p>\\u4e5d\\u5dde\\u6d4b\\u8bd5\\u6587\\u7ae0\\u4e5d\\u5dde\\u6d4b\\u8bd5\\u6587\\u7ae0\\u4e5d\\u5dde\\u6d4b\\u8bd5\\u6587\\u7ae0\\u4e5d\\u5dde\\u6d4b\\u8bd5\\u6587\\u7ae0<br><\\/p>\"}}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '1555901844');
INSERT INTO `fa_admin_log` VALUES ('51', '2', 'user', '/phwadmin.php/news/edit/ids/16?dialog=1', '新闻资讯管理 编辑', '{\"dialog\":\"1\",\"row\":{\"name\":\"\\u4e5d\\u5dde\\u6d4b\\u8bd5\\u6587\\u7ae0\",\"flag\":\"recommend\",\"image\":\"\\/uploads\\/20190422\\/fb0912045771693d0e966b37e03da22c.jpg\",\"description\":\"\\u4e5d\\u5dde\\u6d4b\\u8bd5\\u6587\\u7ae0\\u4e5d\\u5dde\\u6d4b\\u8bd5\\u6587\\u7ae0\\u4e5d\\u5dde\\u6d4b\\u8bd5\\u6587\\u7ae0\",\"weigh\":\"16\",\"content\":\"<p>\\u4e5d\\u5dde\\u6d4b\\u8bd5\\u6587\\u7ae0\\u4e5d\\u5dde\\u6d4b\\u8bd5\\u6587\\u7ae0\\u4e5d\\u5dde\\u6d4b\\u8bd5\\u6587\\u7ae0\\u4e5d\\u5dde\\u6d4b\\u8bd5\\u6587\\u7ae0111<br><\\/p>\"},\"ids\":\"16\"}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '1555901859');
INSERT INTO `fa_admin_log` VALUES ('52', '2', 'user', '/phwadmin.php/ajax/upload', '', '{\"name\":\"c_banner.png\"}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '1555901935');
INSERT INTO `fa_admin_log` VALUES ('53', '2', 'user', '/phwadmin.php/custom/edit/ids/5?dialog=1', '合作客户管理 编辑', '{\"dialog\":\"1\",\"row\":{\"title\":\"\\u5ba2\\u62374\",\"image\":\"\\/uploads\\/20190422\\/820b01717356656d848f8ed015ff8214.png\",\"url\":\"https:\\/\\/www.baidu.com\",\"description\":\"\\u5ba2\\u62374\\u63cf\\u8ff0\"},\"ids\":\"5\"}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '1555901941');
INSERT INTO `fa_admin_log` VALUES ('54', '2', 'user', '/phwadmin.php/custom/edit/ids/8?dialog=1', '合作客户管理 编辑', '{\"dialog\":\"1\",\"row\":{\"title\":\"\\u4fdd\\u5229\\u5730\\u4ea7\",\"image\":\"\\/uploads\\/20190421\\/e2260eb96dc74d4f4ea9b67324c8ad59.png\",\"url\":\"http:\\/\\/chinacrossing.cn\",\"description\":\"\\u4e5d\\u5dde\\u7eb5\\u6a2a\"},\"ids\":\"8\"}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '1555901957');
INSERT INTO `fa_admin_log` VALUES ('55', '2', 'user', '/phwadmin.php/ajax/upload', '', '{\"name\":\"c_banner.png\"}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '1555901983');
INSERT INTO `fa_admin_log` VALUES ('56', '2', 'user', '/phwadmin.php/custom/add?dialog=1', '合作客户管理 新增', '{\"dialog\":\"1\",\"row\":{\"title\":\"\\u5ba2\\u62371\",\"image\":\"\\/uploads\\/20190422\\/820b01717356656d848f8ed015ff8214.png\",\"url\":\"https:\\/\\/www.baidu.com\",\"description\":\"\\u5ba2\\u62371\\u63cf\\u8ff0\"}}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '1555902002');
INSERT INTO `fa_admin_log` VALUES ('57', '2', 'user', '/phwadmin.php/custom/edit/ids/9?dialog=1', '合作客户管理 编辑', '{\"dialog\":\"1\",\"row\":{\"title\":\"\\u5ba2\\u62371\",\"image\":\"\\/uploads\\/20190422\\/820b01717356656d848f8ed015ff8214.png\",\"url\":\"https:\\/\\/www.baidu.com\",\"description\":\"\\u5ba2\\u62371\\u63cf\\u8ff0\"},\"ids\":\"9\"}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '1555902011');
INSERT INTO `fa_admin_log` VALUES ('58', '2', 'user', '/phwadmin.php/general.config/edit', '常规管理 SEO设置 编辑', '{\"row\":{\"name\":\"\\u4e5d\\u5dde\\u7eb5\\u6a2a\",\"keys\":\"\\u5173\\u952e\\u5b57|\\u5173\\u952e\\u5b57\",\"description\":\"\\u63cf\\u8ff0\\u63cf\\u8ff011\"}}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '1555902152');
INSERT INTO `fa_admin_log` VALUES ('59', '2', 'user', '/phwadmin.php/general.config/edit', '常规管理 SEO设置 编辑', '{\"row\":{\"name\":\"\\u4e5d\\u5dde\\u7eb5\\u6a2a\",\"keys\":\"\\u5173\\u952e\\u5b57|\\u5173\\u952e\\u5b57\",\"description\":\"\\u63cf\\u8ff0\\u63cf\\u8ff011\"}}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '1555902255');
INSERT INTO `fa_admin_log` VALUES ('60', '2', 'user', '/phwadmin.php/news/edit/ids/16?dialog=1', '新闻资讯管理 编辑', '{\"dialog\":\"1\",\"row\":{\"name\":\"\\u4e5d\\u5dde\\u6d4b\\u8bd5\\u6587\\u7ae0\",\"flag\":\"hot\",\"image\":\"\\/uploads\\/20190422\\/fb0912045771693d0e966b37e03da22c.jpg\",\"description\":\"\\u4e5d\\u5dde\\u6d4b\\u8bd5\\u6587\\u7ae0\\u4e5d\\u5dde\\u6d4b\\u8bd5\\u6587\\u7ae0\\u4e5d\\u5dde\\u6d4b\\u8bd5\\u6587\\u7ae0\",\"weigh\":\"16\",\"content\":\"<p>\\u4e5d\\u5dde\\u6d4b\\u8bd5\\u6587\\u7ae0\\u4e5d\\u5dde\\u6d4b\\u8bd5\\u6587\\u7ae0\\u4e5d\\u5dde\\u6d4b\\u8bd5\\u6587\\u7ae0\\u4e5d\\u5dde\\u6d4b\\u8bd5\\u6587\\u7ae0111<br><\\/p>\"},\"ids\":\"16\"}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '1555902653');
INSERT INTO `fa_admin_log` VALUES ('61', '2', 'user', '/phwadmin.php/news/edit/ids/16?dialog=1', '新闻资讯管理 编辑', '{\"dialog\":\"1\",\"row\":{\"name\":\"\\u4e5d\\u5dde\\u6d4b\\u8bd5\\u6587\\u7ae0\",\"flag\":\"index\",\"image\":\"\\/uploads\\/20190422\\/fb0912045771693d0e966b37e03da22c.jpg\",\"description\":\"\\u4e5d\\u5dde\\u6d4b\\u8bd5\\u6587\\u7ae0\\u4e5d\\u5dde\\u6d4b\\u8bd5\\u6587\\u7ae0\\u4e5d\\u5dde\\u6d4b\\u8bd5\\u6587\\u7ae0\",\"weigh\":\"16\",\"content\":\"<p>\\u4e5d\\u5dde\\u6d4b\\u8bd5\\u6587\\u7ae0\\u4e5d\\u5dde\\u6d4b\\u8bd5\\u6587\\u7ae0\\u4e5d\\u5dde\\u6d4b\\u8bd5\\u6587\\u7ae0\\u4e5d\\u5dde\\u6d4b\\u8bd5\\u6587\\u7ae0111<br><\\/p>\"},\"ids\":\"16\"}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '1555902674');
INSERT INTO `fa_admin_log` VALUES ('62', '2', 'user', '/phwadmin.php/news/edit/ids/16?dialog=1', '新闻资讯管理 编辑', '{\"dialog\":\"1\",\"row\":{\"name\":\"\\u4e5d\\u5dde\\u6d4b\\u8bd5\\u6587\\u7ae0\",\"flag\":\"recommend\",\"image\":\"\\/uploads\\/20190422\\/fb0912045771693d0e966b37e03da22c.jpg\",\"description\":\"\\u4e5d\\u5dde\\u6d4b\\u8bd5\\u6587\\u7ae0\\u4e5d\\u5dde\\u6d4b\\u8bd5\\u6587\\u7ae0\\u4e5d\\u5dde\\u6d4b\\u8bd5\\u6587\\u7ae0\",\"weigh\":\"16\",\"content\":\"<p>\\u4e5d\\u5dde\\u6d4b\\u8bd5\\u6587\\u7ae0\\u4e5d\\u5dde\\u6d4b\\u8bd5\\u6587\\u7ae0\\u4e5d\\u5dde\\u6d4b\\u8bd5\\u6587\\u7ae0\\u4e5d\\u5dde\\u6d4b\\u8bd5\\u6587\\u7ae0111<br><\\/p>\"},\"ids\":\"16\"}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '1555902692');
INSERT INTO `fa_admin_log` VALUES ('63', '2', 'user', '/phwadmin.php/custom/edit/ids/8?dialog=1', '合作客户管理 编辑', '{\"dialog\":\"1\",\"row\":{\"title\":\"\\u4fdd\\u5229\\u5730\\u4ea7\",\"image\":\"\\/uploads\\/20190421\\/e2260eb96dc74d4f4ea9b67324c8ad59.png\",\"url\":\"http:\\/\\/www.chinacrossing.cn\",\"description\":\"\\u4e5d\\u5dde\\u7eb5\\u6a2a\"},\"ids\":\"8\"}', '111.164.177.192', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '1555902862');
-- ----------------------------
-- Table structure for fa_attachment
-- ----------------------------
DROP TABLE IF EXISTS `fa_attachment`;
CREATE TABLE `fa_attachment` (
`id` int(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
`admin_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '管理员ID',
`user_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '会员ID',
`url` varchar(255) NOT NULL DEFAULT '' COMMENT '物理路径',
`imagewidth` varchar(30) NOT NULL DEFAULT '' COMMENT '宽度',
`imageheight` varchar(30) NOT NULL DEFAULT '' COMMENT '高度',
`imagetype` varchar(30) NOT NULL DEFAULT '' COMMENT '图片类型',
`imageframes` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '图片帧数',
`filesize` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '文件大小',
`mimetype` varchar(100) NOT NULL DEFAULT '' COMMENT 'mime类型',
`extparam` varchar(255) NOT NULL DEFAULT '' COMMENT '透传数据',
`createtime` int(10) DEFAULT NULL COMMENT '创建日期',
`updatetime` int(10) DEFAULT NULL COMMENT '更新时间',
`uploadtime` int(10) DEFAULT NULL COMMENT '上传时间',
`storage` varchar(100) NOT NULL DEFAULT 'local' COMMENT '存储位置',
`sha1` varchar(40) NOT NULL DEFAULT '' COMMENT '文件 sha1编码',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='附件表';
-- ----------------------------
-- Records of fa_attachment
-- ----------------------------
INSERT INTO `fa_attachment` VALUES ('1', '1', '0', '/assets/img/qrcode.png', '150', '150', 'png', '0', '21859', 'image/png', '', '1499681848', '1499681848', '1499681848', 'local', '17163603d0263e4838b9387ff2cd4877e8b018f6');
INSERT INTO `fa_attachment` VALUES ('2', '2', '0', '/uploads/20190422/fb0912045771693d0e966b37e03da22c.jpg', '229', '77', 'jpg', '0', '40014', 'image/jpeg', '{\"name\":\"left1.jpg\"}', '1555901824', '1555901824', '1555901824', 'local', 'bb56aaf6bafe1bef7dc723eef1a37ca4fd7b9cc5');
INSERT INTO `fa_attachment` VALUES ('3', '2', '0', '/uploads/20190422/820b01717356656d848f8ed015ff8214.png', '3840', '1172', 'png', '0', '556235', 'image/png', '{\"name\":\"c_banner.png\"}', '1555901935', '1555901935', '1555901935', 'local', '84377dc0bae7565ea1cc4aa8f097a2b2557fcb09');
-- ----------------------------
-- Table structure for fa_auth_group
-- ----------------------------
DROP TABLE IF EXISTS `fa_auth_group`;
CREATE TABLE `fa_auth_group` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '父组别',
`name` varchar(100) NOT NULL DEFAULT '' COMMENT '组名',
`rules` text NOT NULL COMMENT '规则ID',
`createtime` int(10) DEFAULT NULL COMMENT '创建时间',
`updatetime` int(10) DEFAULT NULL COMMENT '更新时间',
`status` varchar(30) NOT NULL DEFAULT '' COMMENT '状态',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='分组表';
-- ----------------------------
-- Records of fa_auth_group
-- ----------------------------
INSERT INTO `fa_auth_group` VALUES ('1', '0', 'Admin group', '*', '1490883540', '149088354', 'normal');
INSERT INTO `fa_auth_group` VALUES ('2', '1', 'Second group', '13,14,16,15,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,40,41,42,43,44,45,46,47,48,49,50,55,56,57,58,59,60,61,62,63,64,65,1,9,10,11,7,6,8,2,4,5', '1490883540', '1505465692', 'normal');
INSERT INTO `fa_auth_group` VALUES ('3', '2', 'Third group', '1,4,9,10,11,13,14,15,16,17,40,41,42,43,44,45,46,47,48,49,50,55,56,57,58,59,60,61,62,63,64,65,5', '1490883540', '1502205322', 'normal');
INSERT INTO `fa_auth_group` VALUES ('4', '1', '二级管理组2', '6,8,18,19,20,21,22,29,30,31,32,33,34,85,86,87,88,89,90,91,92,2', '1490883540', '1555900067', 'normal');
INSERT INTO `fa_auth_group` VALUES ('5', '2', 'Third group 2', '1,2,6,7,8,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34', '1490883540', '1502205344', 'normal');
-- ----------------------------
-- Table structure for fa_auth_group_access
-- ----------------------------
DROP TABLE IF EXISTS `fa_auth_group_access`;
CREATE TABLE `fa_auth_group_access` (
`uid` int(10) unsigned NOT NULL COMMENT '会员ID',
`group_id` int(10) unsigned NOT NULL COMMENT '级别ID',
UNIQUE KEY `uid_group_id` (`uid`,`group_id`),
KEY `uid` (`uid`),
KEY `group_id` (`group_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='权限分组表';
-- ----------------------------
-- Records of fa_auth_group_access
-- ----------------------------
INSERT INTO `fa_auth_group_access` VALUES ('1', '1');
INSERT INTO `fa_auth_group_access` VALUES ('2', '4');
-- ----------------------------
-- Table structure for fa_auth_rule
-- ----------------------------
DROP TABLE IF EXISTS `fa_auth_rule`;
CREATE TABLE `fa_auth_rule` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`type` enum('menu','file') NOT NULL DEFAULT 'file' COMMENT 'menu为菜单,file为权限节点',
`pid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '父ID',
`name` varchar(100) NOT NULL DEFAULT '' COMMENT '规则名称',
`title` varchar(50) NOT NULL DEFAULT '' COMMENT '规则名称',
`icon` varchar(50) NOT NULL DEFAULT '' COMMENT '图标',
`condition` varchar(255) NOT NULL DEFAULT '' COMMENT '条件',
`remark` varchar(255) NOT NULL DEFAULT '' COMMENT '备注',
`ismenu` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否为菜单',
`createtime` int(10) DEFAULT NULL COMMENT '创建时间',
`updatetime` int(10) DEFAULT NULL COMMENT '更新时间',
`weigh` int(10) NOT NULL DEFAULT '0' COMMENT '权重',
`status` varchar(30) NOT NULL DEFAULT '' COMMENT '状态',
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`) USING BTREE,
KEY `pid` (`pid`),
KEY `weigh` (`weigh`)
) ENGINE=InnoDB AUTO_INCREMENT=93 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='节点表';
-- ----------------------------
-- Records of fa_auth_rule
-- ----------------------------
INSERT INTO `fa_auth_rule` VALUES ('1', 'file', '0', 'dashboard', 'Dashboard', 'fa fa-dashboard', '', 'Dashboard tips', '1', '1497429920', '1497429920', '143', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('2', 'file', '0', 'general', 'General', 'fa fa-cogs', '', '', '1', '1497429920', '1497430169', '137', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('3', 'file', '0', 'category', 'Category', 'fa fa-list', '', 'Category tips', '1', '1497429920', '1497429920', '119', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('4', 'file', '0', 'addon', 'Addon', 'fa fa-rocket', '', 'Addon tips', '1', '1502035509', '1502035509', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('5', 'file', '0', 'auth', 'Auth', 'fa fa-group', '', '', '1', '1497429920', '1497430092', '99', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('6', 'file', '2', 'general/config', 'SEO设置', 'fa fa-cog', '', 'Config tips', '1', '1497429920', '1555899121', '60', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('7', 'file', '2', 'general/attachment', 'Attachment', 'fa fa-file-image-o', '', 'Attachment tips', '1', '1497429920', '1497430699', '53', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('8', 'file', '2', 'general/profile', 'Profile', 'fa fa-user', '', '', '1', '1497429920', '1497429920', '34', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('9', 'file', '5', 'auth/admin', 'Admin', 'fa fa-user', '', 'Admin tips', '1', '1497429920', '1497430320', '118', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('10', 'file', '5', 'auth/adminlog', 'Admin log', 'fa fa-list-alt', '', 'Admin log tips', '1', '1497429920', '1497430307', '113', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('11', 'file', '5', 'auth/group', 'Group', 'fa fa-group', '', 'Group tips', '1', '1497429920', '1497429920', '109', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('12', 'file', '5', 'auth/rule', 'Rule', 'fa fa-bars', '', 'Rule tips', '1', '1497429920', '1497430581', '104', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('13', 'file', '1', 'dashboard/index', 'View', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '136', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('14', 'file', '1', 'dashboard/add', 'Add', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '135', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('15', 'file', '1', 'dashboard/del', 'Delete', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '133', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('16', 'file', '1', 'dashboard/edit', 'Edit', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '134', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('17', 'file', '1', 'dashboard/multi', 'Multi', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '132', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('18', 'file', '6', 'general/config/index', 'View', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '52', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('19', 'file', '6', 'general/config/add', 'Add', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '51', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('20', 'file', '6', 'general/config/edit', 'Edit', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '50', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('21', 'file', '6', 'general/config/del', 'Delete', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '49', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('22', 'file', '6', 'general/config/multi', 'Multi', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '48', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('23', 'file', '7', 'general/attachment/index', 'View', 'fa fa-circle-o', '', 'Attachment tips', '0', '1497429920', '1497429920', '59', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('24', 'file', '7', 'general/attachment/select', 'Select attachment', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '58', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('25', 'file', '7', 'general/attachment/add', 'Add', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '57', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('26', 'file', '7', 'general/attachment/edit', 'Edit', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '56', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('27', 'file', '7', 'general/attachment/del', 'Delete', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '55', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('28', 'file', '7', 'general/attachment/multi', 'Multi', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '54', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('29', 'file', '8', 'general/profile/index', 'View', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '33', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('30', 'file', '8', 'general/profile/update', 'Update profile', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '32', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('31', 'file', '8', 'general/profile/add', 'Add', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '31', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('32', 'file', '8', 'general/profile/edit', 'Edit', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '30', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('33', 'file', '8', 'general/profile/del', 'Delete', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '29', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('34', 'file', '8', 'general/profile/multi', 'Multi', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '28', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('35', 'file', '3', 'category/index', 'View', 'fa fa-circle-o', '', 'Category tips', '0', '1497429920', '1497429920', '142', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('36', 'file', '3', 'category/add', 'Add', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '141', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('37', 'file', '3', 'category/edit', 'Edit', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '140', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('38', 'file', '3', 'category/del', 'Delete', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '139', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('39', 'file', '3', 'category/multi', 'Multi', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '138', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('40', 'file', '9', 'auth/admin/index', 'View', 'fa fa-circle-o', '', 'Admin tips', '0', '1497429920', '1497429920', '117', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('41', 'file', '9', 'auth/admin/add', 'Add', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '116', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('42', 'file', '9', 'auth/admin/edit', 'Edit', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '115', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('43', 'file', '9', 'auth/admin/del', 'Delete', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '114', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('44', 'file', '10', 'auth/adminlog/index', 'View', 'fa fa-circle-o', '', 'Admin log tips', '0', '1497429920', '1497429920', '112', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('45', 'file', '10', 'auth/adminlog/detail', 'Detail', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '111', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('46', 'file', '10', 'auth/adminlog/del', 'Delete', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '110', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('47', 'file', '11', 'auth/group/index', 'View', 'fa fa-circle-o', '', 'Group tips', '0', '1497429920', '1497429920', '108', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('48', 'file', '11', 'auth/group/add', 'Add', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '107', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('49', 'file', '11', 'auth/group/edit', 'Edit', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '106', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('50', 'file', '11', 'auth/group/del', 'Delete', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '105', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('51', 'file', '12', 'auth/rule/index', 'View', 'fa fa-circle-o', '', 'Rule tips', '0', '1497429920', '1497429920', '103', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('52', 'file', '12', 'auth/rule/add', 'Add', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '102', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('53', 'file', '12', 'auth/rule/edit', 'Edit', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '101', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('54', 'file', '12', 'auth/rule/del', 'Delete', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '100', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('55', 'file', '4', 'addon/index', 'View', 'fa fa-circle-o', '', 'Addon tips', '0', '1502035509', '1502035509', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('56', 'file', '4', 'addon/add', 'Add', 'fa fa-circle-o', '', '', '0', '1502035509', '1502035509', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('57', 'file', '4', 'addon/edit', 'Edit', 'fa fa-circle-o', '', '', '0', '1502035509', '1502035509', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('58', 'file', '4', 'addon/del', 'Delete', 'fa fa-circle-o', '', '', '0', '1502035509', '1502035509', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('59', 'file', '4', 'addon/local', 'Local install', 'fa fa-circle-o', '', '', '0', '1502035509', '1502035509', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('60', 'file', '4', 'addon/state', 'Update state', 'fa fa-circle-o', '', '', '0', '1502035509', '1502035509', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('61', 'file', '4', 'addon/install', 'Install', 'fa fa-circle-o', '', '', '0', '1502035509', '1502035509', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('62', 'file', '4', 'addon/uninstall', 'Uninstall', 'fa fa-circle-o', '', '', '0', '1502035509', '1502035509', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('63', 'file', '4', 'addon/config', 'Setting', 'fa fa-circle-o', '', '', '0', '1502035509', '1502035509', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('64', 'file', '4', 'addon/refresh', 'Refresh', 'fa fa-circle-o', '', '', '0', '1502035509', '1502035509', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('65', 'file', '4', 'addon/multi', 'Multi', 'fa fa-circle-o', '', '', '0', '1502035509', '1502035509', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('66', 'file', '0', 'user', 'User', 'fa fa-list', '', '', '1', '1516374729', '1516374729', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('67', 'file', '66', 'user/user', 'User', 'fa fa-user', '', '', '1', '1516374729', '1516374729', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('68', 'file', '67', 'user/user/index', 'View', 'fa fa-circle-o', '', '', '0', '1516374729', '1516374729', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('69', 'file', '67', 'user/user/edit', 'Edit', 'fa fa-circle-o', '', '', '0', '1516374729', '1516374729', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('70', 'file', '67', 'user/user/add', 'Add', 'fa fa-circle-o', '', '', '0', '1516374729', '1516374729', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('71', 'file', '67', 'user/user/del', 'Del', 'fa fa-circle-o', '', '', '0', '1516374729', '1516374729', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('72', 'file', '67', 'user/user/multi', 'Multi', 'fa fa-circle-o', '', '', '0', '1516374729', '1516374729', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('73', 'file', '66', 'user/group', '会员分组', 'fa fa-users', '', '', '1', '1516374729', '1555899011', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('74', 'file', '73', 'user/group/add', 'Add', 'fa fa-circle-o', '', '', '0', '1516374729', '1516374729', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('75', 'file', '73', 'user/group/edit', 'Edit', 'fa fa-circle-o', '', '', '0', '1516374729', '1516374729', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('76', 'file', '73', 'user/group/index', 'View', 'fa fa-circle-o', '', '', '0', '1516374729', '1516374729', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('77', 'file', '73', 'user/group/del', 'Del', 'fa fa-circle-o', '', '', '0', '1516374729', '1516374729', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('78', 'file', '73', 'user/group/multi', 'Multi', 'fa fa-circle-o', '', '', '0', '1516374729', '1516374729', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('79', 'file', '66', 'user/rule', 'User rule', 'fa fa-circle-o', '', '', '1', '1516374729', '1516374729', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('80', 'file', '79', 'user/rule/index', 'View', 'fa fa-circle-o', '', '', '0', '1516374729', '1516374729', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('81', 'file', '79', 'user/rule/del', 'Del', 'fa fa-circle-o', '', '', '0', '1516374729', '1516374729', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('82', 'file', '79', 'user/rule/add', 'Add', 'fa fa-circle-o', '', '', '0', '1516374729', '1516374729', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('83', 'file', '79', 'user/rule/edit', 'Edit', 'fa fa-circle-o', '', '', '0', '1516374729', '1516374729', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('84', 'file', '79', 'user/rule/multi', 'Multi', 'fa fa-circle-o', '', '', '0', '1516374729', '1516374729', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('85', 'file', '0', 'news/index', '新闻资讯管理', 'fa fa-list', '', '', '1', '1555899330', '1555899464', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('86', 'file', '0', 'custom/index', '合作客户管理', 'fa fa-dedent', '', '', '1', '1555899410', '1555899410', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('87', 'file', '85', 'news/add', '添加', 'fa fa-circle-o', '', '', '0', '1555899785', '1555899785', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('88', 'file', '85', 'news/edit', '编辑', 'fa fa-circle-o', '', '', '0', '1555899820', '1555899820', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('89', 'file', '85', 'news/del', '删除', 'fa fa-circle-o', '', '', '0', '1555899840', '1555899840', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('90', 'file', '86', 'custom/add', '新增', 'fa fa-circle-o', '', '', '0', '1555899868', '1555899868', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('91', 'file', '86', 'custom/edit', '编辑', 'fa fa-circle-o', '', '', '0', '1555899889', '1555899889', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('92', 'file', '86', 'custom/del', '删除', 'fa fa-circle-o', '', '', '0', '1555899912', '1555899912', '0', 'normal');
-- ----------------------------
-- Table structure for fa_category
-- ----------------------------
DROP TABLE IF EXISTS `fa_category`;
CREATE TABLE `fa_category` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '父ID',
`type` varchar(30) NOT NULL DEFAULT '' COMMENT '栏目类型',
`name` varchar(30) NOT NULL DEFAULT '',
`nickname` varchar(50) NOT NULL DEFAULT '',
`flag` set('hot','index','recommend') NOT NULL DEFAULT '',
`image` varchar(100) NOT NULL DEFAULT '' COMMENT '图片',
`keywords` varchar(255) NOT NULL DEFAULT '' COMMENT '关键字',
`description` varchar(255) NOT NULL DEFAULT '' COMMENT '描述',
`diyname` varchar(30) NOT NULL DEFAULT '' COMMENT '自定义名称',
`createtime` int(10) DEFAULT NULL COMMENT '创建时间',
`updatetime` int(10) DEFAULT NULL COMMENT '更新时间',
`weigh` int(10) NOT NULL DEFAULT '0' COMMENT '权重',
`status` varchar(30) NOT NULL DEFAULT '' COMMENT '状态',
PRIMARY KEY (`id`),
KEY `weigh` (`weigh`,`id`),
KEY `pid` (`pid`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='分类表';
-- ----------------------------
-- Records of fa_category
-- ----------------------------
INSERT INTO `fa_category` VALUES ('1', '0', 'page', '官方新闻', 'news', 'recommend', '/assets/img/qrcode.png', '', '', 'news', '1495262190', '1495262190', '1', 'normal');
INSERT INTO `fa_category` VALUES ('2', '0', 'page', '移动应用', 'mobileapp', 'hot', '/assets/img/qrcode.png', '', '', 'mobileapp', '1495262244', '1495262244', '2', 'normal');
INSERT INTO `fa_category` VALUES ('3', '2', 'page', '微信公众号', 'wechatpublic', 'index', '/assets/img/qrcode.png', '', '', 'wechatpublic', '1495262288', '1495262288', '3', 'normal');
INSERT INTO `fa_category` VALUES ('4', '2', 'page', 'Android开发', 'android', 'recommend', '/assets/img/qrcode.png', '', '', 'android', '1495262317', '1495262317', '4', 'normal');
INSERT INTO `fa_category` VALUES ('5', '0', 'page', '软件产品', 'software', 'recommend', '/assets/img/qrcode.png', '', '', 'software', '1495262336', '1499681850', '5', 'normal');
INSERT INTO `fa_category` VALUES ('6', '5', 'page', '网站建站', 'website', 'recommend', '/assets/img/qrcode.png', '', '', 'website', '1495262357', '1495262357', '6', 'normal');
INSERT INTO `fa_category` VALUES ('7', '5', 'page', '企业管理软件', 'company', 'index', '/assets/img/qrcode.png', '', '', 'company', '1495262391', '1495262391', '7', 'normal');
INSERT INTO `fa_category` VALUES ('8', '6', 'page', 'PC端', 'website-pc', 'recommend', '/assets/img/qrcode.png', '', '', 'website-pc', '1495262424', '1495262424', '8', 'normal');
INSERT INTO `fa_category` VALUES ('9', '6', 'page', '移动端', 'website-mobile', 'recommend', '/assets/img/qrcode.png', '', '', 'website-mobile', '1495262456', '1495262456', '9', 'normal');
INSERT INTO `fa_category` VALUES ('10', '7', 'page', 'CRM系统 ', 'company-crm', 'recommend', '/assets/img/qrcode.png', '', '', 'company-crm', '1495262487', '1495262487', '10', 'normal');
INSERT INTO `fa_category` VALUES ('11', '7', 'page', 'SASS平台软件', 'company-sass', 'recommend', '/assets/img/qrcode.png', '', '', 'company-sass', '1495262515', '1495262515', '11', 'normal');
INSERT INTO `fa_category` VALUES ('12', '0', 'test', '测试1', 'test1', 'recommend', '/assets/img/qrcode.png', '', '', 'test1', '1497015727', '1497015727', '12', 'normal');
INSERT INTO `fa_category` VALUES ('13', '0', 'test', '测试2', 'test2', 'recommend', '/assets/img/qrcode.png', '', '', 'test2', '1497015738', '1497015738', '13', 'normal');
-- ----------------------------
-- Table structure for fa_cms_addonnews
-- ----------------------------
DROP TABLE IF EXISTS `fa_cms_addonnews`;
CREATE TABLE `fa_cms_addonnews` (
`id` int(10) NOT NULL,
`content` longtext NOT NULL,
`author` varchar(255) DEFAULT '' COMMENT '作者',
`area` enum('domestic','overseas','local') DEFAULT 'domestic' COMMENT '地区',
`device` enum('vr','ar') DEFAULT 'vr' COMMENT '设备',
`price` double(10,2) DEFAULT '0.00' COMMENT '价格',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='新闻';
-- ----------------------------
-- Records of fa_cms_addonnews
-- ----------------------------
INSERT INTO `fa_cms_addonnews` VALUES ('1', '<div class=\"o-article_block pb-15 pb-5@m- o-subtle_divider\">\r\n<div class=\"grid@tl+\">\r\n<div class=\"grid@tl+__cell col-8-of-12@tl+\">\r\n<div class=\"article-text c-gray-1\">\r\n<p>据悉,驰为 HiGame 迷你 PC 配备了英特尔八代酷睿 i5-8305G 处理器,集成了移动版 Radeon Vega M 显卡和 4GB HMB 显存,性能不弱于 Nvidia GTX 1050 。</p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad4412814b010.jpg\" /></p>\r\n<p>存储方面,入门机型从 8GB DDR4 RAM + 128GB M.2 SSD 起跳,消费者可根据实际需要后续升级,此外厂家宣称该机支持 VR 与 AR 系统。</p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad441284dbe71.jpg\" /></p>\r\n<p>扩展性方面,该机提供了 1×雷电 3、5×USB 3.0、2×HDMI 2.0、2×DisplayPort 1.3、以及耳机 / 麦克风插孔。</p>\r\n<p>驰为将于 5 月中旬发起 Indiegogo 众筹,感兴趣的朋友可以拿出 999 美元支持下,且可享受早鸟特惠。</p>\r\n<p>[编译自:<a href=\"https://www.slashgear.com/chuwi-higame-steps-up-from-tablets-laptops-to-mini-pc-market-13527274/\" target=\"_self\">SlashGear</a>]</p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"js-notMobileReferredByFbTw\"><footer class=\"o-article_block\">\r\n<div class=\"grid@tl+ mt-n40\">\r\n<div class=\"grid@tl+__cell col-8-of-12@tl+ pb-80@tp+ pb-120@d \">\r\n<div class=\"pb-35 border-top mt-20 mt-35@s pt-35 pt-30@m pt-25@s pb-25@s break-out@s\"> </div>\r\n</div>\r\n</div>\r\n</footer></div>', '', 'overseas', 'vr', '0.00');
INSERT INTO `fa_cms_addonnews` VALUES ('2', '<p>Chromebox CXI3 价钱实惠,很适合在课堂上使用。但在教育市场之外,它也有着一番用武之地。</p>\r\n<p>宏碁为该系列机型提供了多种配置,入门款搭载的是英特尔赛扬 3865U 处理器,顶配版则是英特尔八代酷睿 i7-8550U 。</p>\r\n<p>存储方面,其提供了 4~16GB RAM + 32~64GB ROM 的组合。扩展方面,则有 2×USB 2.1、3×USB 3.0、1× USB-C 端口,以及 HDMI 输出、以太网、音频复合插孔。</p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad44127cc3810.jpg\" /></p>\r\n<p>Chromebox CXI3 支持 VESA 壁挂、垂直摆放、还有一根无线天线。</p>\r\n<p>CXI3 最先由 Chrome Unboxed 在 TigerDirect 上发现,网页给出的发货时间为 4 月 19 号起。赛扬版本售价 279 美元,酷睿 i3 / i5 / i7 版本则是 279 / 469 / 511 / 744 美元。</p>\r\n<p>[编译自:<a href=\"https://www.slashgear.com/acer-chromebox-cxi3-mini-chrome-os-desktops-go-up-for-preorder-12527240/\" target=\"_self\">SlashGear</a> , 来源:<a href=\"https://chromeunboxed.com/acer-chromebox-cxi3-available-shipping-april-19\" target=\"_self\">Chrome Unboxed</a>]</p>', '', 'overseas', 'vr', '0.00');
INSERT INTO `fa_cms_addonnews` VALUES ('3', '<p>您可以跟踪您的步数,睡眠,消耗的卡路里以及全天行走的距离,并将所有数据同步到Misfit的移动应用程序。它的防水深度可达50米,可以使用可更换的纽扣电池,使用寿命长达六个月。</p>\r\n<p>混合手表变得越来越流行,因为它们看起来比传统智能手表更时尚。对于那些觉得自己不能持续充电的人来说,它们也特别方便。当然,你必须放弃一些功能,以便照顾它们圆滑的外观,比如阅读和回复邮件或电子邮件的能力。</p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad44125f364e0.png\" /></p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad44126723cd1.png\" /></p>\r\n<p><img title=\"\" src=\"https://cdn.fastadmin.net/uploads/20180416/5ad4412731d5f2.jpg\" alt=\"\" /><img title=\"\" src=\"https://cdn.fastadmin.net/uploads/20180416/5ad441278753c3.jpg\" /></p>', '', 'overseas', 'vr', '0.00');
INSERT INTO `fa_cms_addonnews` VALUES ('4', '<p>大多数消费者可能熟悉UE推出的色彩鲜艳的蓝牙音箱,<strong>但该公司也有一系列定制入耳式耳机,UE刚刚推出了一款新的顶级旗舰机型:2,200美元的UE Live。</strong>UE Live耳机是该公司以前的旗舰UE18 Pro型号的进化版本,将每个耳机的扬声器数量从6个增加到8个,共计6个平衡电枢,一个True Tone Plus驱动器和一个6mm钕制动态扬声器,以提供更好的声音。</p>\r\n<p>但是,这些改进需要付出代价:UE Live耳机的起价为2,199美元,自定义选项价格可能会更高。</p>\r\n<p>Ultimate Ears的定制入耳式耳机倾向于专业音乐家在工作室或舞台上使用,而UE Live也不例外。 Ultimate Ears表示,新款耳机专为在音乐节,舞台和体育场举办音乐会的音乐家而设计 - 尽管如果您只是在家里听音乐,他们听起来也会非常出色。</p>\r\n<p>与UE Live一起,Ultimate Ears还宣布推出Ultimate Ears 6 PRO,这是一款价格为699美元的入耳式监听音箱,该监听音箱专为鼓手,贝斯手,DJ和嘻哈音乐家设计,并配有两个动态驱动程序中音和低音。</p>\r\n<p>这两款耳返将于2018年5月开始发货。</p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad441258ab510.png\" alt=\"QQ图片20180413011632.png\" /></p>', '', 'overseas', 'vr', '0.00');
INSERT INTO `fa_cms_addonnews` VALUES ('5', '<p>想必大家都遇到过这样尴尬的事情:家里有很多电池,用的时候也分不清哪个有电、哪个没电,扔了又怕浪费。于是旧的不丢掉,新的买来用,这样家里的电池越积攒越多,造成恶性循环。而现在,南孚带来了一款全新产品——南孚测电器装电池,包含南孚测电器和南孚碱性电池,轻轻松松测一测,电池电量一目了然。</p>\r\n<p>而且测电器5号电池和7号电池均可以测量,一器双用。</p>\r\n<p>这款南孚测电器体积非常小巧,仅有<a href=\"http://aos.prf.hn/click/camref:100lcC/creativeref:305226\" target=\"_blank\" rel=\"noopener\" data-link=\"1\">iPhone</a> 8手机的四分之一大小(长60mm、宽36mm、厚12mm)。测电器通体白色,侧边有纹路处理,方便持握。</p>\r\n<p>正面有“南孚聚能环”字样、电池放置正负极标志、电池剩余电量指示灯;背面有测试结果说明——3灯全亮表示电量充足,2灯为还能用,1灯为建议更换,不亮则代表没电,显示结果简单易懂,学习成本几乎为0。</p>\r\n<p>对于正在使用的电池,我们也可以用南孚测电器去测试它的剩余电量,以达到心中有数的目的。比如家里孩子玩的玩具车,对于电池电量要求比较高,我们可以在玩具使用一段时间后,测试电池剩余电量,若指示为“2灯亮”及以下时,将该电池换到那些功率小的玩具上继续使用,让电池不至于浪费,物尽其用。</p>\r\n<p>最关键的是,这个测电器是南孚免费赠送的。从18年开始,南孚将狂送150万个测电器。只要在线下商超或者线上旗舰店购买南孚大包装,就能免费获得测电器。</p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad441222f2370.jpg\" /></p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad441229f34b1.jpg\" /></p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad44123130772.jpg\" /></p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad44123724f83.jpg\" /></p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad44123d13154.jpg\" /></p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad441242fa2e5.jpg\" /></p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad44124821496.jpg\" /></p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad44124d91187.jpg\" /></p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad4412530fd08.jpg\" /></p>', '', 'domestic', 'vr', '0.00');
INSERT INTO `fa_cms_addonnews` VALUES ('6', '<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad44121af36d0.jpeg\" alt=\"acuvue-oasys-tinting-contacts-1.jpeg\" /></p>\r\n<p>据了解,这款叫做Acuvue Oasys With Ttransitions的隐形镜片由强生和Transitions Potical合作研发。除了像普通隐形眼镜一样能够帮助佩戴者看清东西而且还能在光线条件发生变化时做出快速、无缝的调整,它能过滤掉蓝光并阻断紫外线的进入。</p>\r\n<p>不过强生强调,这款隐形眼镜并不是为取代太阳镜而开发,毕竟它们不能覆盖住整个眼睛。</p>\r\n<p>据悉,Acuvue Oasys With Transitions隐形眼镜已经获得美国食品与药物管理局批准,其佩戴周期为2周,预计会在今年上半年进入市场。</p>', '', 'domestic', 'vr', '0.00');
INSERT INTO `fa_cms_addonnews` VALUES ('7', '<p>据 Variety 报道,FCC 辐射实验室刚刚证实了一副来自 Snap 的新眼镜。<strong>今日曝光的这款穿戴设备的文档称,这是一款由 Snap Inc. 制作的穿戴式视频拍摄装置。从印刷标签来看,其品牌名称为 Spectacles,型号为 Model 002 。</strong>尽管文件中所附的大部分内容都以保密为由被遮掩,但还是可以知道它支持低功耗蓝牙 4.2 和 802.11ac Wi-Fi 。</p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad44121495860.jpg\" alt=\"DSC_2124_2040b.0.jpg\" /></p>\r\n<p>2016 年发布的初代 Spectacles 眼镜</p>\r\n<p>上个月的时候,Cheddar 爆料了两款即将到来的 Spectacles 眼镜。其中一款是计划在 2018 年发布的二代产品,改进了性能并修复了 bug 。</p>\r\n<p>另外还有一款计划在 2019 年发布的第三代产品,据说它配备了 2 个摄像头、支持 GPS、售价 300 美元。</p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad4412189f8c1.jpg\" alt=\"screenshot_2018_04_11_08.31.06_1024.png.jpg\" /></p>\r\n<p>2016 年发布的初代 Spectacles 在营销上一度相当成功,很多人排着长队、甚至愿意出高价购买一副。即便炒作的热度很快就消散,但至少为该公司赚到了 4000 万美元。</p>\r\n<p>从 FCC 文件来看,Spectacles 二代产品的发布应该无需等待太久。当然,通过 FCC 认证也不见得产品会真的上市。</p>\r\n<p>[编译自:<a href=\"https://www.theverge.com/circuitbreaker/2018/4/11/17223426/snapchat-spectacles-second-generation-model-002\" target=\"_self\">TheVerge</a>]</p>', '', 'overseas', 'vr', '0.00');
INSERT INTO `fa_cms_addonnews` VALUES ('8', '<p>云存储服务商Dropbox今日宣布,由于投资者需求强劲,现将IPO(数次公开招股)发行价区间调高2美元。上周一,Dropbox宣布将IPO发行价区间定为每股16美元至18美元,最高融资6.48亿美元,公司市值将达到约71亿美元。</p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad44120f16870.jpg\" /></p>\r\n<p>但Dropbox今日宣布,由于投资者需求强劲,现将发行价区间调高2美元,至每股18美元至20美元。这意味着Dropbox此次IPO最多将融资7.2亿美元,公司市值将达到约78.5亿美元。</p>\r\n<p>业内专家杰伊·瑞特(Jay Ritter)称,与Box等竞争对手相比,Dropbox最初给出的IPO发行价区间确实有些保守。</p>\r\n<p>虽然调高了发行价区间,但Dropbox当前估值仍低于2014年100亿美元的估值。</p>\r\n<p>昨日就有报道称,Dropbox IPO股票已被超额认购,表明今年市场对第一大科技股的需求十分旺盛。</p>\r\n<p>Dropbox成立于2007年,上个月提交了IPO招股书。Dropbox计划在纳斯达克上市,证券代码为“DBX”。</p>', '', 'overseas', 'ar', '0.00');
INSERT INTO `fa_cms_addonnews` VALUES ('9', '<p>著名云存储服务提供商Dropbox在上市交易首日股价大涨36%,开盘定价为21美元每股,在当日最高时达到31.6美元每股,最终以28.48美元每股的价格收盘,现在市值超过120亿美元。可以明显看出公开市场投资者十分看好Dropbox这家主营业务为云存储服务和内容协作平台的公司。Dropbox最先对自己股价的预期是16到18美元每股,后来提升到18到20美元每股。而由于上市交易首日表现出色,超过了2014年私募时100亿美元的估值。</p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad44120cd28e0.jpg\" /></p>\r\n<p>在2017年,Dropbox实现营收11亿美元。较2016年的8.45亿美元和2015年的6.04亿美元的年度总营收增长不少。不过,Dropbox至今尚未实现盈利,去年净亏损为1.12亿美元。该数字在2016年和2015年分别是2.1亿美元和3.26亿美元,可以看出其净亏损在逐年减少。其从每个付费用户获得的平均收入为111.91美元。</p>\r\n<div id=\"cbhahaha\" class=\"otherContent_01\"> </div>\r\n<p>由于Dropbox采用的是免费+付费模式,既有面向消费者的业务也有面向企业的业务。Dropbox曾表示其所有5亿注册用户中只有1100万为其产品付费。</p>\r\n<p>著名风投公司红杉资本合伙人、Dropbox董事会成员布莱恩·施莱尔(Bryan Schreier)称:“Dropbox结合了一家消费者公司该有的规模和影响力和一家软件公司该有的长期收益的优势。”他表示现在正是Dropbox上市的最佳时机,因为“其业务规模和现金流都已经达到一定程度,足以支撑其上市计划”。</p>\r\n<p>作为Dropbox的早期投资机构,红杉资本如今持有Dropbox 23.2%的股份。另一家风投公司Accel是第二大机构股东,持有5%的股份。Dropbox创始人兼首席执行官德鲁·休斯敦(Drew Houston)持有公司25.3%的股份。</p>\r\n<p>投资机构Greylock Partners也拥有少量Dropbox股份,其合伙人约翰·里利(John Lilly)说:“之所以投资Dropbox,是因为德鲁和他的团队对未来的工作模式有着清晰的认识,并打造了一个满足现代生产力需求的产品。”</p>\r\n<p>不过,目前市场上有大量与Dropbox相似的产品。Dropbox称:“内容协作平台市场竞争激烈且变化很快。在云存储业务方面,我们面临来自<a href=\"http://t.cn/R61I7ap\" target=\"_blank\" rel=\"noopener\" data-link=\"1\">亚马逊</a>、苹果、谷歌、和<a href=\"http://clkde.tradedoubler.com/click?p=235167&a=2355305&g=21862034\" target=\"_blank\" rel=\"noopener\" data-link=\"1\">微软</a>公司同类产品的竞争。而在内容协作市场则有来自Atlassian、谷歌、和微软公司的竞争。我们与Box的竞争则主要局限在面向大型企业用户的云存储服务领域。”</p>\r\n<p>Box是一家从事与Dropbox类似业务的公司,经常与Dropbox一起被提到。不过Box商业模式与Dropbox不同,其更专注于企业用户。在Dropbox上市首日,Box股价下跌了8.2%。</p>', '', 'overseas', 'ar', '0.00');
INSERT INTO `fa_cms_addonnews` VALUES ('10', '<p><strong>云存储公司Dropbox周五向美国证券交易委员会(SEC)提交了IPO(首次公开招股)申请文件,寻求筹集5亿美元资金。</strong>Dropbox的IPO交易长期以来备受市场期待,该公司四年前在私募投资市场上的估值就已高达100亿美元。</p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad44120825a50.jpg\" /></p>\r\n<p>这家硅谷创业公司成立于2007年。在IPO申请文件中,该公司披露信息称其过去三年的营收分别为6.038亿美元、8.448亿美元和11.1亿美元,而亏损则从3.259亿美元渐次收窄到了2.102亿美元和1.117亿美元。</p>\r\n<p>据《华尔街日报》报道,Dropbox此前通过私募融资回合已经筹集到6亿美元资金。在2014年1月进行的最后一个融资回合中,该公司估值达100亿美元。</p>\r\n<div id=\"cbhahaha\" class=\"otherContent_01\"> </div>\r\n<p>Dropbox计划在纳斯达克挂牌上市,股票代码为“DBX”。共有12家银行将担任该公司IPO交易的承销商,其中主承销商是高盛集团和摩根大通。</p>\r\n<p>文件还披露信息称,Dropbox去年每付费用户平均收入为11.91美元,高于2016年,但低于2015年;注册用户总数达5亿人,自2017年初以来的新注册用户人数为1亿人;付费用户总数达1100万人以上;毛利率为67%。</p>\r\n<p>Dropbox此前就已秘密向美国证券交易委员会提交了IPO申请文件,后者在周五对外公布了该文件。文件显示,Dropbox联合创始人及CEO德鲁·休斯顿(Drew Houston)持有24.4%具备投票权的股票,风投公司红杉资本(Sequoia Capital)持有24.8%股权。</p>\r\n<p>受研发预算扩大的影响,Dropbox的支出有所增长,但该公司已在2016年实现了正向的自由现金流。很多云公司都依靠企业销售团队来获取收入,但Dropbox则与众不同,该公司90%以上营收都来自购买自己的订阅服务的用户。不过,这家仍未摆脱亏损的公司仍面临约17亿美元的合同义务,如租约和未偿还债务等。</p>\r\n<p>另外,Dropbox还面临着严峻的竞争压力,其各方面业务与<a href=\"http://t.cn/R61I7ap\" target=\"_blank\" rel=\"noopener\" data-link=\"1\">亚马逊</a>、苹果公司、谷歌和<a href=\"http://clkde.tradedoubler.com/click?p=235167&a=2355305&g=21862034\" target=\"_blank\" rel=\"noopener\" data-link=\"1\">微软</a>等科技巨头之间存在竞争关系。</p>\r\n<p>来自于IPO交易的收入将被用于融资一项扩张计划,内容包括将更多用户升级至订阅用户,以及扩大与第三方软件之间的整合等。</p>\r\n<p>在Dropbox的IPO申请文件公布以后,其竞争对手Box的股价上涨2.8%。Dropbox曾五次入选“CNBC Disruptor 50”榜单,该榜单每年公布一次,评选出50家最有影响力、最具有开拓精神的创业公司。</p>', '', 'overseas', 'ar', '0.00');
INSERT INTO `fa_cms_addonnews` VALUES ('11', '<p>通用电气(GE)为推广Predix云平台的应用开发,在国内推出首期\"Predix星火计划\",以奖励基于该平台的工业互联网开发者。首期有4家企业获奖,将进驻GE孵化器并获得技术支持和潜在投资机会。</p>\r\n<p><img title=\"\" src=\"https://cdn.fastadmin.net/uploads/20180416/5ad441204c1c20.png\" /></p>\r\n<p>参与该计划的团队需基于GE Predix平台,开发适合工业领域的资产绩效管理(APM)应用,用于工业企业实时、安全地收集和分析数据,增加正常运行时间、降低成本、减少运营风险。</p>\r\n<p>GE Predix是一个基于Cloud Foundry(CF)的云平台,专攻制造业。跟Azure,AWS的PaaS服务相比,Predix的优势在于对于工业数据的导入做了专门优化。</p>\r\n<p>2017年\"Predix星火计划\"采用提名邀请,共有16家GE合作伙伴及创业公司提交了内容涵盖包括能源、医疗、设备制造等领域的工业应用项目方案。</p>\r\n<p>获奖企业中,广采科技由思科参与投资,提供货物与集装箱的全球跟踪服务。实视科技面向汽车、装备制造等客户开发用于智能眼镜的AR应用。华瑞特信息主要开发企业业务管理流程整合应用。华中思能主要针对电力企业开发节能减排、运营优化、故障诊断应用。</p>\r\n<p>四家获奖企业将获得的资源支持包括,进驻位于上海的GE数字创新坊孵化1个月、期间将有GE技术团队支持和GE创投部门考察进一步投资机会。</p>', '', 'local', 'ar', '0.00');
INSERT INTO `fa_cms_addonnews` VALUES ('12', '<p><strong>据外媒报道,Cloudflare 公司正将其业务拓展到网站和云应用之外的互联网安全领域。</strong>此前,Cloudflare 帮助过企业屏蔽恶意流量,并且让它们的线上内容加载得更加迅速。而根据今日披露的内容,这项新服务旨在保护那些在公共网络背景下运行的联网基础设施,涵盖了从企业内部电子邮件服务器、到领域内部署的联网设备等各个方面。</p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad4411fb836c0.png\" alt=\"cloudflare.png\" /></p>\r\n<p>尽管其中有一些是在孤立的网络中运行,但又许多这样的系统是通过开放的 Web 进行通讯的。如此一来,它们就和网站一样,很容易受到分布式拒绝服务攻击的影响。</p>\r\n<p>Cloudflare 表示,Spectrum 允许企业通过相同的 DDoS 缓解功能(其一直为在线服务提供的那种),来应付这些威胁。</p>\r\n<p><strong>对于这些攻击的抵御,Cloudflare 的解决方案其实很简单:</strong></p>\r\n<blockquote>\r\n<p>当流量突然激增的时候,系统会猜测事件可能由 DDoS 引发,然后将请求转发到自家的 150 个数据中心网络。</p>\r\n<p>Cloudflare 的基础设施相当强大,能够承受住巨量的攻击而不被斩断。</p>\r\n</blockquote>\r\n<p>当然,这么做还有另一个好处 —— 即便企业没有一个内置的连接保护机制,Spectrum 服务也允许企业对系统传输的数据进行加密。</p>\r\n<blockquote>\r\n<p>对企业来说,Cloudflare 提供的这项服务极具吸引力。作为附加措施,Spectrum 还提供了 Cloudflare 防火墙工具的集成。</p>\r\n</blockquote>\r\n<p>后者可以自动阻止某些 IP 地址的流量,比如那些被网络安全机构标记的恶意来源。</p>\r\n<p>Cloudflare 早就声称担负了 10% 的全 Web 流量,此前该公司还推出了一项免费的系统服务,承诺让人们浏览的互联网更具隐私。</p>\r\n<p>[编译自:<a href=\"https://siliconangle.com/blog/2018/04/12/cloudflare-moves-beyond-web-services-new-spectrum-security-service/\" target=\"_self\">SiliconAngle</a>]</p>', '', 'overseas', 'ar', '0.00');
INSERT INTO `fa_cms_addonnews` VALUES ('13', '<p>当英特尔上周推出更多更多 Coffee Lake CPU 和配套主板时,传说中的 Z390 芯片组却意外缺席了。<strong>不过有眼尖的人们发现,主板厂商映泰(Biostar)在自家 B360 Racing GT5 手册中,竟然清楚地列明了另一款名叫“Z390GT5”主板的存在。</strong>作为一个二线品牌,映泰的产品主打平价而不是古怪的设计。不过它与现有的 Z370 系列没有太大差别,而且最高支持的 CPU TDP 也仅为 95W,刚好够酷睿 i7-8700K 使用而已。</p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad4411ecab1c0.jpg\" alt=\"Biostar-Z390-Racing-GT3-1000x658.jpg\" /></p>\r\n<p>此前有传闻称,某款八核 Coffee Lake 芯片的 TDP 可能超过这个数值。若真如此,Z390 芯片组存在的意义,可能就是比 H370 系列多一些 PCIe 通道、内建 USB 3.1 Gen 2、以及 CNVi Wi-Fi 支持。</p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad4411f2854d1.png\" alt=\"z390gt5.png\" /></p>\r\n<p>映泰的公告中并未详细给出这些特性,所以仍有待证实。去年的泄露似乎表明,该公司的 Z390 芯片组会包含自家的音频硬件,但这块板子仍然采用了老旧的瑞昱(Realtek)编解码器。</p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad4411f72b3d2.png\" alt=\"Biostar-Z390-GT5-layout.png\" /></p>\r\n<p>[编译自:<a href=\"https://techreport.com/news/33492/rumor-biostar-manual-tips-off-the-existence-of-a-z390-chipset\" target=\"_self\">TechReport</a> , 来源:<a href=\"https://videocardz.com/75858/biostar-confirms-z390-racing-gt3-gt5-motherboards\" target=\"_self\">VideoCardz</a>]</p>', '', 'overseas', 'ar', '0.00');
INSERT INTO `fa_cms_addonnews` VALUES ('14', '<p>4 月 11 日,Valve 宣布旗下著名的 PC 游戏发行平台 Steam 会推出新的用户数据隐私安全措施。今后玩家们可以选择隐藏你的游戏库内容,也可以隐藏你的活动细节,具体到最近收藏什么游戏,买了什么游戏,玩了什么游戏以及在某游戏上花了多少小时等等。</p>\r\n<p>此前,这些信息全部是公开的,不仅你的好友可以看到,发表评论的时候社区用户可以看到,而且第三方可以采用 Steam API 轻而易举的获得,那些 PC 游戏数据提供商(Steam Spy 之类)就是依靠这些用户数据提供服务的。</p>\r\n<p>新的隐私措施实行后,不管是其他用户还是第三方,将无法轻易获取这些数据。也就是说,如果你想要隐藏,那就永远不会有第三者知道你在某成人视觉小说游戏上面花了多少时间。</p>\r\n<div id=\"cbhahaha\" class=\"otherContent_01\"> </div>\r\n<p>这对 Steam 用户当然是个不错的消息,而受影响最大的是 Steam Spy 这种收集并分析数据的第三方。Steam Spy 说起来大家都不会太陌生,很多相关新闻也会引用 Steam Spy 的数据报告。他们根据过滤器筛选数据,然后将 Steam 上的游戏统计呈现给更多人浏览,但随着 Valve 关闭 Steam 可用库数据,包括 Steam Spy 在内的第三方可能都要面临倒闭。</p>\r\n<p>目前还未清楚 Valve 有没有其他替代方案,用以让第三方继续提供数据服务,或者单独推出面向开发者的数据统计工具。</p>\r\n<p>Steam Spy 的创始人 Sergey Galyonkin 在接受外媒采访时说,“如果他们真的想遵守法律,应该隐藏所有的个人资料信息。目前他们有默认情况下暴露的敏感信息,只有游戏库被隐藏。这并不合理。”默认情况下,你的 Steam 个人资料仍会向所有人显示识别信息,例如你的社交媒体帐户。</p>\r\n<p>Steam Spy 创始人提到的“法律”,其实是 5 月 25 日生效的欧盟“GPDR”,全称“通用数据保护条例”,欧盟的新规定要求公司加密所有“非公开信息”。</p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad4411e749b30.jpg\" /></p>\r\n<p>所以我们可以认为 Valve 做出这一决定并不绝对与近期爆发的 Facebook 数据泄露事件有关,但是这一事件肯定推动了 G 胖尽快落实自己的隐私安全措施。在这个时期,恰到好处地透露给用户“我们是一家坚定保护用户信息安全的公司”这样的信息,就是一颗很好的定心丸了。</p>\r\n<p>可以想见 Facebook 数据泄露以及后来的 Cambridge Analytica 丑闻给各大科技公司带来了怎样的压力。尽管 Steam 光是卖游戏就能保证自己足够赚钱,看起来完全没有出卖数据的必要,Steam Spy 上收集的游戏数据和用户游戏行为,于操弄政治的 Cambridge Analytica(剑桥分析公司)之流也产生不了什么价值,但谁敢说有朝一日不会因金钱诱惑发生与 Facebook 丑闻类似的事情呢?</p>\r\n<p>Valve 宁愿让一家第三方数据服务商去死,也不会冒着 G 胖走进国会接受听证的风险,无数玩家还在苦苦等待《半条命3》呢。放整个业界来讲,不管是哪家公司,都不敢再承担一次这样的“风暴潮”。</p>\r\n<p><strong>Facebook的教训</strong></p>\r\n<p>Facebook 身处争议漩涡,人们的抗议达到了顶峰。有人怀疑它的用处,有人直接否认它的用处,在当前的信任危机下,一切情绪都持续放大,公司和公司的使命被极端质疑。Facebook的市值自从指控以来已经减少超过500亿美元,情况简直糟糕。</p>\r\n<p>上个月,根据纽约时报、卫报曝光 Facebook 发生了严重的数据泄露,波及用户有 5000 万人之多,外泄信息被商业公司利用建立成性格模型,用来操纵了 2016 年的美国大选。</p>\r\n<p>Facebook 日前承诺 ,对于受 Cambridge Analytica 数据丑闻影响的用户,该公司会专门进行通知。毫无疑问,自 Facebook 泄密丑闻曝光以来,许多人都在等待这样的消息。随着马克·扎克伯格(Mark Zuckerberg)在美国参议院听证会上作证,更多关于数据丑闻的细节浮出水面。</p>\r\n<p>在过去一年的动荡中,Facebook 广告的基本理念,即基于用户隐藏性格特征来投放广告,已被证明是一种恶意利用用户信息,且容易遭到滥用的做法。Facebook 对此的回应与其他科技行业巨头的态度类似:感到震惊,向用户保证这绝对不是有意的行为,以及承诺采取行动。</p>\r\n<p>扎克伯格面对数不清的镜头提出的观点也颇有意思,他说经过此事希望美国数据处理和隐私规则能发生演化,其中包括直接呼吁放松监管来避免美国公司落后于中国竞争对手——在西方人的脑子里,中国好像是毫无个人信息隐私而言的地方。</p>\r\n<p>他谈到了“让人们完全控制”自己所分享内容的概念,声称这是“Facebook 最重要的原则”。</p>\r\n<p>“你在 Facebook 上分享的所有内容都归你自己所有,而且你完全控制着谁能看到它以及如何进行分享。此外,你还可以随时删除它。”扎克伯格说道,并未提及该公司在其发展早期阶段距离这样的原则有多遥远。</p>\r\n<p>国外媒体纷纷认为扎克伯格的辩解不太含蓄,因为其他平台泄漏数据的规模都比不上 Facebook,而用户是否会买扎克伯格这个账还有待观察。</p>\r\n<p><strong>怼怼苹果 更开心</strong></p>\r\n<p>一般大公司的 CEO 都充当了企业发言人的角色,经常在各种访谈、社交媒体上发表自己的言论,甚至是向竞争对手开炮。</p>\r\n<p>Facebook 因为用户隐私泄露被网友围攻的时候,苹果 CEO 库克自然也被媒体围着追问对这件事情的看法,库克的回答十分尖锐:</p>\r\n<p>“对我们来说用户隐私等同于用户的权利和公民自由,但是 Facebook 是一个免费服务,所以用户在这个服务中反而成了卖给广告商的商品,如果苹果这么做,我们将能赚到很多钱,但苹果最好不、也永远不会这么做。”</p>\r\n<p>在隐私方面,苹果一直奉行着严格的标准,而且它自己也一直以这种严格为傲,苹果的隐私方案多次承诺“我们不会根据你的电子邮件内容或网页浏览习惯来建立档案,然后出售给广告商。我们不会用你存放在 <a href=\"http://aos.prf.hn/click/camref:100lcC/creativeref:305226\" target=\"_blank\" rel=\"noopener\" data-link=\"1\">iPhone</a> 或 iCloud 上的信息来赚钱。”</p>\r\n<p>他们有时甚至把美国政府搞得灰头土脸。在对发生在加利福尼亚州圣贝纳迪诺的大规模枪击案调查期间,苹果拒绝帮助美国联邦调查局解锁一名嫌犯的 iPhone,甚至不惜为此与政府对簿公堂。解锁嫌犯的 iPhone 要求开发专门软件,苹果认为影响所有用户手机的安全功能。美国司法部随后在没有苹果帮助的情况下自己找到解锁嫌犯手机的方法。</p>\r\n<p>直到现在,FBI 还在想方设法的要破解 iPhone。库克的态度肯定是——抗争到底。</p>\r\n<p>当然,苹果对用户隐私的严格保护也是经过惨痛教训的,2014 年好莱坞女星照片泄露事件波及众多大腕,在全球引起了极大的注意,让苹果和 iCloud 都摊上了大事。虽然那一次隐私泄露是由于黑客行为,和今天说的用户数据泄露、滥用态度有所区别,但那一次事件让所有人开始思考应该如何给个人信息添加更严实的门锁,更谨慎细致地保护云端安全。</p>\r\n<p>所以,记住这些教训,可以让苹果和 Facebook 们以后不再那么惨痛。这次也一样。</p>', '', 'local', 'vr', '0.00');
INSERT INTO `fa_cms_addonnews` VALUES ('15', '<p>今天,W3C和FIDO联盟标准机构宣布,Web浏览器正在构建一种新的登录方式。这款名为WebAuthn所呈现的新开放标准将在最新版本的Firefox中得到支持,并将在未来几个月发布的Chrome和Edge的版本中得到支持。<strong>这是多年来的最新举措,目的是让用户远离密码,转向更安全的登录方式,如生物识别和USB令牌。</strong></p>\r\n<p>该系统已经在谷歌和Facebook等主要服务上就位,在那里你可以使用符合FIDO标准的Yubikey设备登录。</p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad4411e3a7db0.png\" alt=\"Security-Key-by-Yubico.png\" /></p>\r\n<p>WebAuthn将无疑将加速安全登录的实现,无论是将这些技术作为备用登陆方式,还是完全取代密码。随着更多的开源代码为新标准而编写出来,开发者将更容易实现新的登录方式。</p>\r\n<p>“以前,USB令牌登陆的模式只运用于谷歌、<a href=\"http://clkde.tradedoubler.com/click?p=235167&a=2355305&g=21862034\" target=\"_blank\" rel=\"noopener\" data-link=\"1\">微软</a>和Facebook等大公司,”参与Firefox工作的Selena Deckelmann说。“现在,通过WebAuthn,更多的用户将能够体验安全登录。”</p>\r\n<p>因为FIDO标准是建立在零知识的基础上的,所以没有一串字符可以保证对一个账户的访问,这使得传统的钓鱼攻击变得更加困难。它为有安全意识的用户和企业提供了保护自己的重要途径。随着越来越多的服务转向支持更安全的登录方式,FIDO-ready用户的数量会越来越多。</p>\r\n<p>Deckelmann说:“它能真正的规避安全隐患,但现在我们还没到那一步,这将是我们的美好未来。”</p>', '', 'overseas', 'vr', '0.00');
INSERT INTO `fa_cms_addonnews` VALUES ('16', '<p>Github 去年推出的<a href=\"https://www.oschina.net/news/90737/security-alerts-on-github\">安全警告</a>,极大减少了开发人员消除 Ruby 和 JavaScript 项目漏洞的时间。<strong>GitHub 安全警告服务,可以搜索依赖寻找已知漏洞然后通过开发者,以便帮助开发者尽可能快的打上补丁修复漏洞,消除有漏洞的依赖或者转到安全版本。</strong></p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad4411db71750.png\" alt=\"36836206-97565a64-1ced-11e8-990f-d12cb4b003e5.png\" /></p>\r\n<p>根据 Github 的说法,目前安全警告已经报告了 50 多万个库中的 400 多万个漏洞。在所有显示的警告中,有将近一半的在一周之内得到了响应,前7天的漏洞解决率大约为30%。实际上,情况可能更好,因为当把统计限制在最近有贡献的库时,也就是说过去90天中有贡献的库,98%的库在7天之内打上了补丁。</p>\r\n<p>这个安全警报服务会扫描所有公共库,对于私有库,只扫描依赖图。每当发现有漏洞,库管理员都可以收到消息提示,其中还有漏洞级别及解决步骤提供。</p>\r\n<p>安全警告服务现在只支持 Ruby 和 JavaScript,不过 Github 表示 2018 年计划支持 Python。</p>', '', 'domestic', 'ar', '0.00');
INSERT INTO `fa_cms_addonnews` VALUES ('17', '<p>AV-TEST公布了2018年1~2月杀毒软件的最新测试情况,稍稍有点不接地气的是,基于Windows 10企业版平台。排名第一的依然是铁打的卡巴斯基,3个满分总计18分无悬念。不过,这次Symantec和Trend Micro也是18满分,令人刮目相看。</p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad4411cec01d0.jpg\" /></p>\r\n<p><a href=\"http://img1.mydrivers.com/img/20180329/989bd28efaea4c2f831fe5f2405b4b8b.jpg\" target=\"_blank\" rel=\"noopener\" data-index=\"1\" data-lightbox-gallery=\"cbc-gallery\"><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad4411d587af1.jpg\" /></a></p>\r\n<p>Bitdefender稍稍遗憾,以0.5分的差距(易用性非满分)排名第二,第三名17分也有3名,分别是你Avast、McAfee和<a href=\"http://clkde.tradedoubler.com/click?p=235167&a=2355305&g=21862034\" target=\"_blank\" rel=\"noopener\" data-link=\"1\">微软</a>。</p>\r\n<p><strong>是的,你没有看错,微软自带的Defender居然防护力满分和性能/易用性两个5.5分并列第三名。</strong></p>\r\n<p>这次排名最后的是F-Seecure,仅拿到14.5分。</p>', '', 'domestic', 'ar', '1.00');
INSERT INTO `fa_cms_addonnews` VALUES ('19', '<p>今日,谷歌分享了 Semantic Experiences,在博客中展示了两大关于自然语言理解的互动工具。Talk to Books 是一个可以从书中的句子层面搜索书籍的全新检索模式;另一个互动内容则是 Semantris,一个由机器学习驱动的单词联想游戏。</p>\r\n<p>地址:</p>\r\n<div id=\"cbhahaha\" class=\"otherContent_01\"> </div>\r\n<p><a href=\"https://research.google.com/semanticexperiences/\" target=\"_blank\" rel=\"noopener\">https://research.google.com/semanticexperiences/</a></p>\r\n<p>谷歌还发布了「通用语句编码器」(Universal Sentence Encoder),更加详细地呈现了上述示例所使用的模型;当然,谷歌还为开源社区提供了一个预训练的 TensorFlow 模型,开发者可以测试自己的句子及短语编码。</p>\r\n<p>地址:</p>\r\n<p><a href=\"https://tfhub.dev/google/universal-sentence-encoder/\" target=\"_blank\" rel=\"noopener\">https://tfhub.dev/google/universal-sentence-encoder/</a></p>\r\n<p>自然语言理解在近年已经有了极大进步,这得益于词向量(word vectors)的发展,这一技术使算法能根据实际语言使用的例子来学习单词之间的关系。这些向量模型根据概念和语言的等价性、相似性或关联性,将语义相似的词或短语投影到临近点。</p>\r\n<p><strong>建模方法</strong></p>\r\n<p>谷歌拓展了在向量空间中表征语言(language)的构想,这一想法通过为像完整句子或段落为代表的较大语言块创建向量来实现。语言是由具有概念的层次结构组成的,因此团队采用模块的层次结构来构建向量,每一模块都要考虑与不同时间尺度序列所对应的特征。各种类型的关系,如关联、同/反义、部分/整体等都可以用向量空间语言表示。团队在论文《Efficient Natural Language Response for Smart Reply》有更多介绍。</p>\r\n<p>论文地址:</p>\r\n<p><a href=\"https://arxiv.org/abs/1803.11175\" target=\"_blank\" rel=\"noopener\">https://arxiv.org/abs/1803.11175</a></p>\r\n<p>Talk to Books</p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad4411b4c3960.jpg\" /></p>\r\n<p>以往我们在检索书籍时,通常会从书名、作者、主题等表面标签入手。而谷歌发布的「Talk to Books」可以为用户提供一种检索书籍的全新方法。用户只需要做一段相关描述,或是提一个相关的问题,那么 Talk to Books 可以在不依赖关键词匹配的情况下,从超过 10 万本书籍中检索所有句子,并根据句子层面的语义,找到能匹配用户陈述或问题的句子。从某种意义上来说,Talk to Books 是一种用户与书「交谈」的新模式,系统给出的回答也能帮助用户确定自己是否对相关主题感兴趣。</p>\r\n<p>模型在正式发布前经历了超十亿次的对话训练,以打磨更好的用户体验——对用户的提问或陈述给出更加合适的回答。这一方式相比起普通的谷歌检索,可能会帮助用户找到一些更有趣的书籍,特别是在关键字搜索中并不会显示的一些结果。</p>\r\n<p>不过,这一模型还有更多的改进空间,比如搜索范围局限在句子层面上,而不是段落,因此可能会产生「断章取义」的情况。另外,因为只看某一句子的匹配程度,这也可能导致某些众所周知的、「符合口味」的书并不会出现在检索结果的前列。谷歌团队此举,更多的是希望帮助人们以一种新的探索方式,发现不曾料想过的作者和书名,竟然会有读者感兴趣的内容。</p>\r\n<p>地址:<a href=\"https://books.google.com/talktobooks\" target=\"_blank\" rel=\"noopener\">https://books.google.com/talktobooks</a></p>\r\n<p>Semantris</p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad4411c8b9211.gif\" /></p>\r\n<p>Semantris 是一个由相同技术驱动的单词联想游戏。屏幕上会呈现所有单词,用户可以输入某个单词,随即系统会根据屏幕上单词与用户输入单词的关联程度进行重新排序。不论是近义词、反义词还是相近概念,系统都能找到对应的排序模式。</p>\r\n<p>如图所示,用户输入「Photo」时,最顶部的「Camara」因为与输入单词的关联最为紧密,因此会更替排序调整到第一位「消掉」。这确实是一个锻炼联想能力的好机会,此外还有限时模式和不限时模式供用户体验。</p>\r\n<p>地址:<a href=\"https://research.google.com/semantris\" target=\"_blank\" rel=\"noopener\">https://research.google.com/semantris</a></p>\r\n<p>相信在这两个工具的驱动下,人工智能能够与用户更好地进行交互学习,并且帮助人类在现实生活中更好地理解科技,使用科技,并受惠于科技。</p>', '', 'domestic', 'ar', '1.00');
INSERT INTO `fa_cms_addonnews` VALUES ('20', '<p><strong>针对新兴市场,Google希望通过Google Go轻量级应用帮助身处网络速度慢、流量资费高昂地区的用户获得更流畅的网络搜索体验</strong>。现在谷歌正向在26个撒哈拉以南非洲国家/地区推广,Google Go轻量级应用可以让搜索数据用流量减少40%,并且支持对以往搜索记录的脱机访问。</p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad4411b10d540.png\" alt=\"TIM截图20180413142756.png\" /></p>\r\n<p>Google Go 应用本身只有 5MB 大小,对于低存储空间设备很友好,这款应用也是不意外地有离线模式,主要针对的是网络条件不好地区的用户。除了应用本身的性能优化以外,Google Go 还能显示搜索结果的主题摘要信息,同时也会向用户推荐更多可能会感兴趣的内容,也拥有当前流行趋势主题推荐和语音搜索功能。</p>\r\n<p>Google Go 还可配合 YouTube Go 和文件管理应用 Files Go 使用,该应用将在 Android Oreo( Go Edition )设备中预装进行分发,让非洲等新兴市场的消费者得到更流畅、更便捷的 Android 系统体验。</p>', '', 'domestic', 'ar', '9.99');
INSERT INTO `fa_cms_addonnews` VALUES ('21', '<p>尽管已经研发两年多时间,但对于Fuchsia系统Google始终缄口不言。不过今天,公司发表了名为“<a href=\"https://fuchsia.googlesource.com/docs/+/master/the-book/\" target=\"_blank\" rel=\"noopener\">The Book</a>”的深度解析文档,详细介绍了这款计划取代Android和Chrome OS的操作系统。 目前Android和Chrome OS都是使用Linux内核,不过在最新发布的文档中谷歌明确Fuchsia并非基于Linux内核。</p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad4411ab103e0.jpg\" alt=\"google-says-its-upcoming-fuchsia-os-is-not-linux-uses-zircon-kernel-520641-2.jpg\" /></p>\r\n<p>根据公布的文档,Fuchsia是基于功能的模块化系统,使用名为“Zircon”(锆石)的内核,该微内核为Fuchsia系统提供核心驱动以及C Library(libc)实例。</p>\r\n<p>虽然文档仍未完成,但是我们也注意到Google正在打造的Fuchsia OS非常独特,极具创新且前途无限。这款系统从头构建自己的库和组件,通过POSIX向后兼容性和使用基于Vulkan的驱动打造出类UNIX系统。</p>\r\n<p>Fuchsia系统使用名为“Escher”的物理渲染器,提供物体的Soft Shadows,镜头特效、光影扩散和色彩外溢等功能。此外Fuchsia的文件系统完全在用户空间之间进行操作,并没有链接或者加载到内核中。</p>\r\n<p>在文档中写道:“Fuchsia的文件系统本身可以很容易的进行更改--修改不需要重新编译内核。事实上,对Fuchsia的文件系统更新可以不需要重启。”</p>', '', 'domestic', 'vr', '9.99');
INSERT INTO `fa_cms_addonnews` VALUES ('22', '<p>谷歌手机应用程序在2月份收到了主要更新,为快速通话控件添加了便捷的聊天功能。<strong>在接下来的几周里,Pixel,Nexus和Android One设备的默认拨号程序正在添加垃圾邮件过滤功能,并附带一个新的测试版程序,现在就可以试用该功能。</strong></p>\r\n<p>2016年,该应用程序开始通过将来电屏幕以鲜红色闪烁,并通过电话号码下方的另一个“怀疑垃圾邮件来电者”警报来提醒用户潜在的垃圾邮件来电者。现在,测试中新的垃圾邮件过滤功能更进一步增强,不再打扰用户。当检测到潜在的垃圾邮件呼叫时,将直接把它发送到语音邮件。因此,手机不会响铃,用户也不会被打搅。</p>\r\n<p>同时,用户不会收到未接电话或语音邮件通知,但已过滤的电话将出现在通话记录中,并且任何留下的语音邮件仍将显示在相应的选项卡中。此功能将在未来几周内在全球范围内推出,但加入新版测试户可以率先使用该功能。和其他程序一样,Google指出允许用户在发布之前使用这种实验性功能。</p>\r\n<p>谷歌警告说,功能仍然在开发中,可能不稳定,并且存在“一些问题”。同时,用户将需要有能力在整个过程中提交应用内反馈。想要参与测试的用户可以前往电话应用的Google Play列表,然后向下滚动到“成为测试人员”以加入。</p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad4411a368920.jpg\" /></p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad4411a76c4f1.jpg\" /></p>', '', 'domestic', 'ar', '9.99');
INSERT INTO `fa_cms_addonnews` VALUES ('24', '<p>谷歌正在与美国医学协会(美国的一个医师游说团体)进行合作,双方达成一项挑战计划,其内容是让初创企业能够想出“促进健康监测设备数据共享的最佳新思路”。美国医学协会于周一表示,最终的挑战成果将会是一款手机应用或可穿戴设备。</p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad44119d944a0.png\" /></p>\r\n<p>这两者可以让慢性病患者更轻松地与医生分享数据。</p>\r\n<div id=\"cbhahaha\" class=\"otherContent_01\"> </div>\r\n<p>该声明称:“获奖作品将展示申请人是如何通过病人的健康数据,借助有效的方式,改善医生工作流程临床效果、降低医疗保健系统成本的。”</p>\r\n<p>为了在3万亿美元的医疗保健市场中分得一杯羹,一些科技巨头对于医疗保健该行业的公司展开跨界合作显示出越来越强烈的意向,以促进创新。</p>\r\n<p> </p>\r\n<p>去年,亚马逊公司与默克公司共同发起了一项创新挑战计划,以鼓励Alexa的开发人员们提出新的“技能”,以帮助在家中接受治疗以及医院中接受治疗的糖尿病患者。</p>\r\n<p>亚马逊并没有过多透露其意图,但CNBC在3月份报道了该公司下一步的宏伟目标:针对老龄人口发展其技术。与年轻人相比,老年人在不同程度上更容易罹患糖尿病等慢性病。</p>\r\n<p>Alphabet选择将本次挑战计划集中在医疗数据的互操作性问题上。这样做的目的,是让患者和提供者能够更容易以计算机可读的格式(而不是PDF格式)共享实验室结果或医学成像这样的数据。从历史角度看,许多医院和他们的技术供应商都倾向于选择将病人“锁定”到他们独家的设备上,而不是为病人提供便捷的数据访问服务。</p>\r\n<p>值得一提的是,苹果公司也正在通过其医疗记录产品来解决这个问题。</p>\r\n<p>本次“谷歌——美国医疗协会”挑战赛最终将会产生出3个最佳创意,来共同分享5万美元的谷歌云奖金。</p>', '', 'domestic', 'ar', '9.99');
INSERT INTO `fa_cms_addonnews` VALUES ('25', '<p>最近 Google 在帮助开发者提升 App 可用性上可谓是动作频频,不只发布了无障碍技术指导方案,成立无障碍支援团队,近日还在<a href=\"https://opensource.googleblog.com/2018/03/open-sourcing-gtxilib-accessibility.html\" target=\"_blank\" rel=\"noopener\">博客上宣布</a>开源 iOS 专用的自动化测试框架 GTXiLib ,以帮助开发者打造无障碍 App 。</p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad441196ddc60.png\" alt=\"logo_accessibility_checker_color_3x_ios_133in167dp.png\" /></p>\r\n<p>GTXiLib 采用 Objective-C 编写,能与现存的 XCTest 测试框架整合,并在 XCTest 结束调用 tearDown 前,执行所有注册的可用性检查。当 GTXiLib 检测失败时,XCTest 的测试也会失败,两者相辅相成,能够更好地修补和发现问题。</p>\r\n<p>GTXiLib 可用于:</p>\r\n<ul class=\" list-paddingleft-2\">\r\n<li>\r\n<p><strong>重用测试:</strong> GTXiLib 集成整合到现有的功能测试流程中,能大幅提升现有测试价值。</p>\r\n</li>\r\n<li>\r\n<p><strong>增量可访问性测试:</strong> GTXiLib 可安装在单一测试用例、测试类或测试的特定子集上,以允许灵活地增加可访问性测试。</p>\r\n</li>\r\n<li>\r\n<p><strong>编写属于自己的检查:</strong> GTXiLib 有一个简单的 API 来根据你的应用的特定需求创建自定义检查。比如,可以检测应用中的每一个按钮是否都具备 accessibilityHint 属性。</p>\r\n</li>\r\n</ul>\r\n<p>Google 还表示,为了改进 GTXiLib ,该框架会收集一些使用数据上传至 Google Analytics ,像是测试应用通过或失败的状态,以及应用绑定 ID的 MD5 哈希值,这些信息会让 Google 知道 GTXiLib 的使用情况。若是用户不愿意,则可以选择添加代码片段来停用 Google Analytics 。</p>\r\n<p>相关链接</p>\r\n<ul class=\" list-paddingleft-2\">\r\n<li>\r\n<p>GTXiLib 的详细介绍:<a href=\"https://www.oschina.net/p/gtxilib\" target=\"_blank\" rel=\"noopener\">点击查看</a></p>\r\n</li>\r\n<li>\r\n<p>GTXiLib 的下载地址:<a href=\"https://www.oschina.net/home/login?goto_page=https%3A%2F%2Fwww.oschina.net%2Fnews%2F94948%2Fgoogle-opensource-gtxilib\" target=\"_blank\" rel=\"noopener\">点击下载</a></p>\r\n</li>\r\n</ul>', '', 'domestic', 'vr', '2.00');
INSERT INTO `fa_cms_addonnews` VALUES ('26', '<p><strong>Let\'s Encrypt 宣布 ACME v2 正式支持通配符证书。Let\'s Encrypt 宣称将继续清除 Web 上采用 HTTPS 的障碍,让每个网站轻松获取管理证书。</strong>ACMEv21.6k 是 ACME 协议的更新版本,考虑到行业专家和其他组织可能希望在某天使用 ACME 协议进行证书颁发和管理,它已经通过 IETF 标准流程。</p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad44119326fd0.jpg\" alt=\"Wildcard_certificate.jpg\" /></p>\r\n<p>(配图来自:维基百科)</p>\r\n<p><a href=\"https://en.wikipedia.org/wiki/Wildcard_certificate\" target=\"_self\">Wildcard certificates</a> 1.9k 允许使用单个证书来保护域的所有子域。在某些情况下,通配符证书可以使证书更容易管理,以帮助使 Web 达到100% 的 HTTPS 协议。但是对于大多数用例,Let\'s Encrypt 仍然推荐使用非通配符证书。</p>\r\n<p>通配符证书只能通过 <a href=\"https://github.com/ietf-wg-acme/acme\" target=\"_self\">ACME</a>v2 获得。为了将 ACMEv2 用于通配符或非通配符证书,你需要一个已更新且支持 ACMEv23.5k 的客户端。Let\'s Encrypt 希望所有客户和订户转换为 ACMEv2,尽管 ACMEv1 API 还没有“报废”。</p>\r\n<p>另外,通配符域必须使用 DNS-01 质询类型进行验证。这表明你需要修改 DNS TXT 记录才能演示对域的控制以获得通配符证书。</p>\r\n<p>[via <a href=\"https://arstechnica.com/information-technology/2018/03/lets-encrypt-takes-free-wildcard-certificates-live/\" target=\"_self\">ArsTechnica</a>]</p>', '', 'domestic', 'vr', '1.00');
INSERT INTO `fa_cms_addonnews` VALUES ('27', '<p><strong>欧洲电力传输系统运营商网络(ENTSOE)是建立内部能源市场并确保其最佳运作的机构,为解释欧洲的电子钟表运行缓慢超过一个月的原因发表了一份声明。</strong>在一篇引人入胜的题为“欧洲大陆的频率偏差对频率控制的电子钟表影响”新闻稿中,该组织解释说,频率偏差导致一些数字时钟滞后。</p>\r\n<p>许多数字时钟,主要是那些数字闹钟,烤箱和微波炉,使用电网的频率来保持时间。欧洲的电网运行稳定在50Hz,所有时钟都在计算电源周期。如果频率持续下降一段时间,这就造成电子钟表运行缓慢,这种问题在欧洲似乎已经发生。</p>\r\n<p>根据维基百科,频率随着电网负载而变化,但每24小时的周期数保持严格恒定,以使这些电子时钟保持长时间准确。ENTSOE表示,供应短缺是由东南欧的一个未指定的电力分销商造成的。由于欧洲电网相互连接,自1月中旬以来,这导致整个大陆出现频率问题,这些问题导致钟表回落至五分钟。</p>\r\n<p>在问题解决之前,重置你的时钟几乎是不值得的,因为它们只会滞后。 ENTSOE声明确实承诺欧洲的传输系统运营商为了让时钟恢复正常运行,将实施补偿计划,以纠正未来的时间,,需要多长时间仍然不得而知。与此同时,用户仍然可以依赖任何不联网的石英钟,或者通常通过互联网保持正确时间的电脑,智能手机时钟来查看时间。</p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad44118ca9c40.jpg\" alt=\"1024px-Digital-clock-alarm-796x562.jpg\" /></p>', '', 'domestic', 'vr', '1.00');
INSERT INTO `fa_cms_addonnews` VALUES ('30', '<p>北京时间4月11日早间消息,谷歌母公司Alphabet有望在2018进行新的投资,目前,该公司仍在研究如何优化电池的存储价值。作为世界上风能和太阳能的最大企业买家,谷歌可能很快要进行一项新的清洁能源投资,这次他们锁定的目标是电池。</p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad4412a357f60.jpg\" alt=\"Solarpanel.jpg\" /></p>\r\n<p>资料图</p>\r\n<p>本周二,Alphabet公司能源策略主管奈哈·帕尔默(Neha Palmer)在纽约彭博新能源财经机构举办的未来能源峰会上接受采访时说,“2018年我们想有所作为,我们正在对几个项目展开调研。”</p>\r\n<p>帕尔默指出,谷歌根据几个选项来决定合理的投资方向。其中一些项目包括:独立的可供给电网的电池场;用于家庭或企业的电表后端设备;一套与太阳能或风力发电场相连的系统。</p>\r\n<p>这一项目需要依靠一项长达数年的供应合同来保证营收,该公司仍在审查这种投资的市场需求。帕尔默说:“决策团队尚未搞清楚如何优化电力储存的价值。”</p>', null, 'domestic', 'ar', '1.00');
INSERT INTO `fa_cms_addonnews` VALUES ('32', '<p>北京时间4月11日早间消息,谷歌母公司Alphabet有望在2018进行新的投资,目前,该公司仍在研究如何优化电池的存储价值。作为世界上风能和太阳能的最大企业买家,谷歌可能很快要进行一项新的清洁能源投资,这次他们锁定的目标是电池。</p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad4412a357f60.jpg\" alt=\"Solarpanel.jpg\" /></p>\r\n<p>资料图</p>\r\n<p>本周二,Alphabet公司能源策略主管奈哈·帕尔默(Neha Palmer)在纽约彭博新能源财经机构举办的未来能源峰会上接受采访时说,“2018年我们想有所作为,我们正在对几个项目展开调研。”</p>\r\n<p>帕尔默指出,谷歌根据几个选项来决定合理的投资方向。其中一些项目包括:独立的可供给电网的电池场;用于家庭或企业的电表后端设备;一套与太阳能或风力发电场相连的系统。</p>\r\n<p>这一项目需要依靠一项长达数年的供应合同来保证营收,该公司仍在审查这种投资的市场需求。帕尔默说:“决策团队尚未搞清楚如何优化电力储存的价值。”</p>', '', 'overseas', 'vr', '1.00');
INSERT INTO `fa_cms_addonnews` VALUES ('33', '<p>据外媒报道,去年,GitHub 向安全研究人员支付了总计 166495 美元的奖励,针对 GitHub 这个为期四年的“漏洞赏金”项目,安全研究人员会上报自己发现的系统问题和漏洞。2016 年,GitHub 一共支付了81.7万美元,而去年的支出总额显然已经翻了一倍多,几乎相当于前三年的总支出(17.7万美元)。在 2014 和 2015 两年时间里,他们一共支付了95.3万美元的奖金。</p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad4412a798700.jpg\" /></p>\r\n<p>2017 年,GitHub 一共收到了 840 份漏洞报告意见书,但是最终解决问题并获得奖金的比例只有15%(约121份)。2016年,GitHub 共收到了 795 份漏洞报告意见书,最终获得奖励的只有 73 份,而其中只有 48 份有效报告最终被罗列在了漏洞赏金项目的主页上。</p>\r\n<p>有效报告的数量上升推动了总支出的增加,也导致了 GitHub 在去年十月重新评估其支付结构。结果就是,奖金增加了一倍,其中最低奖金为 555 美元,最高奖金高达 20000 美元。</p>\r\n<p>GitHub 的 Greg Ose 指出,随着参与的项目、计划和研究人员规模不断增加,去年是迄今为止支付赏金最多的一年。不仅如此,他们还把 GitHub Enterprise 引入到漏洞赏金项目之中,让研究人员能够在 GitHub.com 平台上一些未公开的、或是特定于某个企业部署的领域里找到漏洞。Ose说道:</p>\r\n<blockquote>\r\n<p>“去年年初,很多漏洞报告涉及到了我们的企业认证方法,这也促使我们不得不在内部关注这个问题,而且我们也在研究如何让研究人员也关注这个功能。”</p>\r\n</blockquote>\r\n<p>此外,Ose还表示,GitHub 已经发布了首个研究人员捐赠,也是他们长期以来关注的一项举措。这项工作会为挖掘应用程序特定功能或领域的研究人员支付固定金额。当然,其他任何发现漏洞的人也能够通过漏洞赏金项目获得奖励。</p>\r\n<p>去年,GitHub 还推出了私人漏洞补丁服务,让用户能够限制生产漏洞的影响范围。不仅如此,他们还进行了内部改进,以更有效进行漏洞分类和修复提交,并计划在今年进一步完善流程。</p>\r\n<p>现在,GitHub 希望进一步扩大 2017 年所取得成绩,推出更多私人奖励和研究补助金,以便在代码公开发布之前及之后引起大家的关注。该公司还计划在今年晚些时候,推出额外的奖励计划。Ose总结道:</p>\r\n<blockquote>\r\n<p>“鉴于漏洞赏金项目取得了成功,我们现在正考虑如何扩大其范围,为我们的生产服务提供更多帮助,同时保护整个GitHub生态系统。我们很期待下一步工作,并且会在今年对提交的漏洞内容进行分类和修正。”</p>\r\n</blockquote>', 'cnbeta1', 'overseas', 'ar', '1.00');
INSERT INTO `fa_cms_addonnews` VALUES ('34', '<p>本周我们正在研究Leap Motion为增强现实带来的新东西。<strong>我们已经看到他们之前创造了一些令人难以置信的技术,尤其是当涉及到运动跟踪和控制时。现在看起来他们认为他们是以面向优先的方式进入AR增强现实世界。</strong></p>\r\n<p>Leap Motion有一款在性能和外形之间达到平衡的头显,这款头显达到了Leap Motion所说最高技术规格所在的平衡点。换句话说,他们创造了一款人们可以使用的产品,与当今世界上大多数其他消费类产品不同。</p>\r\n<p>为了制造这款头显,Leap Motion的团队使用了几款5.5英寸的智能手机。他们将这些智能手机放在佩戴者脸部的两侧,并将其内部的图像反映出来。通过这种设置,最终他们发现他们需要创建自己的LED显示系统。他们决定采用Analogix显示驱动器和两个“快速切换”BOE 3.5英寸显示屏的架构。</p>\r\n<p>他们已经创造了一款头显,正如他们所描述的那样,它会让所有其他头显(VR,AR等)感到羞耻。两个120 fps,1600x1440显示屏,100+视角范围和150 fps手动追踪180 x 180度FOV,打开这个头显,当今系统的分辨率,等待时间和视野限制就会消失。</p>\r\n<p>那么你可以在哪里购买这种现代技术的奇迹?你不能。目前,Leap Motion将此项目称为“北极星计划”,并将其作为一个跳板点。他们正在使用这个项目来表明我们所有人都关注于AR硬件是错误的,他们的产品可以带来最佳体验。</p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad44129495250.jpg\" /></p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad44129bb3621.png\" /></p>', 'ks', 'domestic', 'ar', '1.00');
INSERT INTO `fa_cms_addonnews` VALUES ('35', '<p>据外媒报道,研究人员正在利用VR技术帮助教师们了解自闭症学s生进而能够真正地去帮助他们。近日,来自马耳他大学的一个研究小组决定通过VR技术帮助教师理解自闭症儿童的生活体验。通过利用自闭症儿童的音频和视觉技巧,研究团队开发出一个VR应用,它能模拟出自闭症儿童在教室里的体验情况。</p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad44128db3ed0.png\" alt=\"austim.png\" /></p>\r\n<p>参与了软件开发工作的马耳他大学人工智能系讲师Vanessa Camilleri博士表示,他们希望让教师走进自闭症儿童的世界里了解他们的真实情况同时也希望VR能够成为一台同理心机器。与此同时,他们还希望能从中学到更多的东西进而能设计出能帮助改善自闭症儿童生活质量的工具。</p>\r\n<p>实际上将VR作为一种共情工具的想法已经存在一段时间了。电影制作人Chris Milk就曾和联合国联合制作过一部展示叙利亚难民营生活的VR影片《Clouds Over Sidra》。</p>\r\n<p>目前,研究小组的这款软件还不能使用,但他们希望未来能通过Samsung Gear头套让教师们用上它。</p>\r\n<p>Camilleri还强调,该项目并不能做到模拟出自闭症儿童的各个方面,如嗅觉、触觉。另外他还表示,他们开发的应用更多的是让老师们去了解他们的学生而不是教授他们如何去帮助自闭症学生。</p>\r\n<p>获悉,该团队希望最终还能为父母或家庭成员开发出另一个不同版本的同类型软件。</p>', 'cnbeta', 'domestic', 'ar', '1.00');
-- ----------------------------
-- Table structure for fa_cms_addonproduct
-- ----------------------------
DROP TABLE IF EXISTS `fa_cms_addonproduct`;
CREATE TABLE `fa_cms_addonproduct` (
`id` int(10) NOT NULL,
`content` longtext NOT NULL,
`productdata` varchar(1500) DEFAULT '' COMMENT '产品列表',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='产品表';
-- ----------------------------
-- Records of fa_cms_addonproduct
-- ----------------------------
INSERT INTO `fa_cms_addonproduct` VALUES ('18', '<p>据外媒报道,去年,GitHub 向安全研究人员支付了总计 166495 美元的奖励,针对 GitHub 这个为期四年的“漏洞赏金”项目,安全研究人员会上报自己发现的系统问题和漏洞。2016 年,GitHub 一共支付了81.7万美元,而去年的支出总额显然已经翻了一倍多,几乎相当于前三年的总支出(17.7万美元)。在 2014 和 2015 两年时间里,他们一共支付了95.3万美元的奖金。</p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad4412a798700.jpg\" /></p>\r\n<p>2017 年,GitHub 一共收到了 840 份漏洞报告意见书,但是最终解决问题并获得奖金的比例只有15%(约121份)。2016年,GitHub 共收到了 795 份漏洞报告意见书,最终获得奖励的只有 73 份,而其中只有 48 份有效报告最终被罗列在了漏洞赏金项目的主页上。</p>\r\n<p>有效报告的数量上升推动了总支出的增加,也导致了 GitHub 在去年十月重新评估其支付结构。结果就是,奖金增加了一倍,其中最低奖金为 555 美元,最高奖金高达 20000 美元。</p>\r\n<p>GitHub 的 Greg Ose 指出,随着参与的项目、计划和研究人员规模不断增加,去年是迄今为止支付赏金最多的一年。不仅如此,他们还把 GitHub Enterprise 引入到漏洞赏金项目之中,让研究人员能够在 GitHub.com 平台上一些未公开的、或是特定于某个企业部署的领域里找到漏洞。Ose说道:</p>\r\n<blockquote>\r\n<p>“去年年初,很多漏洞报告涉及到了我们的企业认证方法,这也促使我们不得不在内部关注这个问题,而且我们也在研究如何让研究人员也关注这个功能。”</p>\r\n</blockquote>\r\n<p>此外,Ose还表示,GitHub 已经发布了首个研究人员捐赠,也是他们长期以来关注的一项举措。这项工作会为挖掘应用程序特定功能或领域的研究人员支付固定金额。当然,其他任何发现漏洞的人也能够通过漏洞赏金项目获得奖励。</p>\r\n<p>去年,GitHub 还推出了私人漏洞补丁服务,让用户能够限制生产漏洞的影响范围。不仅如此,他们还进行了内部改进,以更有效进行漏洞分类和修复提交,并计划在今年进一步完善流程。</p>\r\n<p>现在,GitHub 希望进一步扩大 2017 年所取得成绩,推出更多私人奖励和研究补助金,以便在代码公开发布之前及之后引起大家的关注。该公司还计划在今年晚些时候,推出额外的奖励计划。Ose总结道:</p>\r\n<blockquote>\r\n<p>“鉴于漏洞赏金项目取得了成功,我们现在正考虑如何扩大其范围,为我们的生产服务提供更多帮助,同时保护整个GitHub生态系统。我们很期待下一步工作,并且会在今年对提交的漏洞内容进行分类和修正。”</p>\r\n</blockquote>', 'https://cdn.fastadmin.net/uploads/20180401/1f059faa0ba3bb502d7dd012565321e2.jpg,https://cdn.fastadmin.net/uploads/20180401/05e374fd1f784f9c4f634889bd7028ac.jpg,https://cdn.fastadmin.net/uploads/20180401/fdaca158bf96ed0fd59879f2c7f673d3.jpg,https://cdn.fastadmin.net/uploads/20180401/33b63f123cdee4c251590b73c2464fa9.jpg');
INSERT INTO `fa_cms_addonproduct` VALUES ('23', '<p>北京时间4月11日早间消息,谷歌母公司Alphabet有望在2018进行新的投资,目前,该公司仍在研究如何优化电池的存储价值。作为世界上风能和太阳能的最大企业买家,谷歌可能很快要进行一项新的清洁能源投资,这次他们锁定的目标是电池。</p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad4412a357f60.jpg\" alt=\"Solarpanel.jpg\" /></p>\r\n<p>资料图</p>\r\n<p>本周二,Alphabet公司能源策略主管奈哈·帕尔默(Neha Palmer)在纽约彭博新能源财经机构举办的未来能源峰会上接受采访时说,“2018年我们想有所作为,我们正在对几个项目展开调研。”</p>\r\n<p>帕尔默指出,谷歌根据几个选项来决定合理的投资方向。其中一些项目包括:独立的可供给电网的电池场;用于家庭或企业的电表后端设备;一套与太阳能或风力发电场相连的系统。</p>\r\n<p>这一项目需要依靠一项长达数年的供应合同来保证营收,该公司仍在审查这种投资的市场需求。帕尔默说:“决策团队尚未搞清楚如何优化电力储存的价值。”</p>', 'https://cdn.fastadmin.net/uploads/20180416/5ad4412a357f60.jpg,https://cdn.fastadmin.net/uploads/20180404/9dcbcd9ca1fce9f184ee12aea36351de.jpg,https://cdn.fastadmin.net/uploads/20180401/e5f3f6312c360f4c851daf99b1208515.jpg,https://cdn.fastadmin.net/uploads/20180401/26558a3bffe6960768350f2202885955.jpg,https://cdn.fastadmin.net/uploads/20180401/2d184becba222eb8406aadd72b004c5e.jpg,https://cdn.fastadmin.net/uploads/20180401/8cb318ead26ae66086953f1c0bcf0275.jpg');
INSERT INTO `fa_cms_addonproduct` VALUES ('28', '<p>本周我们正在研究Leap Motion为增强现实带来的新东西。<strong>我们已经看到他们之前创造了一些令人难以置信的技术,尤其是当涉及到运动跟踪和控制时。现在看起来他们认为他们是以面向优先的方式进入AR增强现实世界。</strong></p>\r\n<p>Leap Motion有一款在性能和外形之间达到平衡的头显,这款头显达到了Leap Motion所说最高技术规格所在的平衡点。换句话说,他们创造了一款人们可以使用的产品,与当今世界上大多数其他消费类产品不同。</p>\r\n<p>为了制造这款头显,Leap Motion的团队使用了几款5.5英寸的智能手机。他们将这些智能手机放在佩戴者脸部的两侧,并将其内部的图像反映出来。通过这种设置,最终他们发现他们需要创建自己的LED显示系统。他们决定采用Analogix显示驱动器和两个“快速切换”BOE 3.5英寸显示屏的架构。</p>\r\n<p>他们已经创造了一款头显,正如他们所描述的那样,它会让所有其他头显(VR,AR等)感到羞耻。两个120 fps,1600x1440显示屏,100+视角范围和150 fps手动追踪180 x 180度FOV,打开这个头显,当今系统的分辨率,等待时间和视野限制就会消失。</p>\r\n<p>那么你可以在哪里购买这种现代技术的奇迹?你不能。目前,Leap Motion将此项目称为“北极星计划”,并将其作为一个跳板点。他们正在使用这个项目来表明我们所有人都关注于AR硬件是错误的,他们的产品可以带来最佳体验。</p>\r\n<p><a href=\"https://static.cnbetacdn.com/article/2018/0410/bd9058b4bbe7a4c.jpg\" target=\"_blank\" rel=\"noopener\" data-index=\"0\" data-lightbox-gallery=\"cbc-gallery\"><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad44129495250.jpg\" /></a></p>\r\n<p><a href=\"https://static.cnbetacdn.com/article/2018/0410/e4a1b9dfd59d1ae.png\" target=\"_blank\" rel=\"noopener\" data-index=\"1\" data-lightbox-gallery=\"cbc-gallery\"><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad44129bb3621.png\" /></a></p>', 'https://cdn.fastadmin.net/uploads/20180416/5ad44129495250.jpg');
INSERT INTO `fa_cms_addonproduct` VALUES ('29', '<p>据外媒报道,研究人员正在利用VR技术帮助教师们了解自闭症学生进而能够真正地去帮助他们。近日,来自马耳他大学的一个研究小组决定通过VR技术帮助教师理解自闭症儿童的生活体验。通过利用自闭症儿童的音频和视觉技巧,研究团队开发出一个VR应用,它能模拟出自闭症儿童在教室里的体验情况。</p>\r\n<p><img src=\"https://cdn.fastadmin.net/uploads/20180416/5ad44128db3ed0.png\" alt=\"austim.png\" /></p>\r\n<p>参与了软件开发工作的马耳他大学人工智能系讲师Vanessa Camilleri博士表示,他们希望让教师走进自闭症儿童的世界里了解他们的真实情况同时也希望VR能够成为一台同理心机器。与此同时,他们还希望能从中学到更多的东西进而能设计出能帮助改善自闭症儿童生活质量的工具。</p>\r\n<p>实际上将VR作为一种共情工具的想法已经存在一段时间了。电影制作人Chris Milk就曾和联合国联合制作过一部展示叙利亚难民营生活的VR影片《Clouds Over Sidra》。</p>\r\n<p>目前,研究小组的这款软件还不能使用,但他们希望未来能通过Samsung Gear头套让教师们用上它。</p>\r\n<p>Camilleri还强调,该项目并不能做到模拟出自闭症儿童的各个方面,如嗅觉、触觉。另外他还表示,他们开发的应用更多的是让老师们去了解他们的学生而不是教授他们如何去帮助自闭症学生。</p>\r\n<p>获悉,该团队希望最终还能为父母或家庭成员开发出另一个不同版本的同类型软件。</p>', 'https://cdn.fastadmin.net/uploads/20180416/5ad44128db3ed0.png');
-- ----------------------------
-- Table structure for fa_cms_archives
-- ----------------------------
DROP TABLE IF EXISTS `fa_cms_archives`;
CREATE TABLE `fa_cms_archives` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '会员ID',
`channel_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '栏目ID',
`model_id` int(10) NOT NULL DEFAULT '0' COMMENT '模型ID',
`title` varchar(80) NOT NULL DEFAULT '' COMMENT '文章标题',
`flag` set('hot','new','recommend') NOT NULL DEFAULT '' COMMENT '标志',
`image` varchar(255) NOT NULL DEFAULT '' COMMENT '缩略图',
`keywords` varchar(255) NOT NULL DEFAULT '' COMMENT '关键字',
`description` varchar(255) NOT NULL DEFAULT '' COMMENT '描述',
`tags` varchar(255) NOT NULL DEFAULT '' COMMENT 'TAG',
`weigh` int(10) NOT NULL DEFAULT '0' COMMENT '权重',
`views` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '浏览次数',
`comments` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '评论次数',
`likes` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '点赞数',
`dislikes` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '点踩数',
`diyname` varchar(50) NOT NULL DEFAULT '' COMMENT '自定义URL',
`createtime` int(10) DEFAULT NULL COMMENT '创建时间',
`updatetime` int(10) DEFAULT NULL COMMENT '更新时间',
`publishtime` int(10) DEFAULT NULL COMMENT '发布时间',
`deletetime` int(10) DEFAULT NULL COMMENT '删除时间',
`memo` varchar(100) DEFAULT '' COMMENT '备注',
`status` enum('normal','hidden','rejected','pulloff') NOT NULL DEFAULT 'normal' COMMENT '状态',
PRIMARY KEY (`id`),
KEY `status` (`channel_id`,`status`),
KEY `channel` (`channel_id`,`weigh`,`id`)
) ENGINE=InnoDB AUTO_INCREMENT=36 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='内容表';
-- ----------------------------
-- Records of fa_cms_archives
-- ----------------------------
INSERT INTO `fa_cms_archives` VALUES ('1', '1', '7', '1', '驰为发布HiGame迷你PC新品 小身材大能量', '', 'https://cdn.fastadmin.net/uploads/20180416/5ad4412814b010.jpg', '驰为,笔记本,HiGame', '说到驰为(Chuwi),很多人第一时间想到的就是该公司的 Windows 笔记本或 Android 平板电脑。但是最近,该厂家又凭借 HiGame 子品牌进军了迷你游戏 PC 市场。作为一款迷你 PC,它的三围只有 17.3×15.8×7.3 CM(约 7×6×3 英寸)。即便如此,它的硬件配置也让我们眼前一亮。', 'HiGame,PC,驰为', '1', '9', '1', '0', '0', '', '1523718809', '1523879174', '1523635200', null, '', 'normal');
INSERT INTO `fa_cms_archives` VALUES ('2', '1', '7', '1', '宏碁Chromebox CXI3迷你台式机现已开放预定', '', 'https://cdn.fastadmin.net/uploads/20180416/5ad44127cc3810.jpg', '宏基,台式机', '今年 1 月的时候,宏碁(Acer)发布了多款新产品,其中就包括 Chromebox CXI3 。与 Chromebook 笔记本不同,Chromebox CXI3 是一款运行 Chrome OS 的小型台式机。不占地方,显然是它的最大卖点,用户甚至可以将它背挂到显示器后面。如果你想要拥有一台,那么现在宏碁也已经开放预定了。', 'Chromebox,台式机,宏基', '2', '20', '0', '0', '0', '', '1523718936', '1523879158', '1523635200', null, '', 'normal');
INSERT INTO `fa_cms_archives` VALUES ('3', '1', '7', '1', 'Misfit最新的混合动力手表Path现已上市', '', 'https://cdn.fastadmin.net/uploads/20180416/5ad44125f364e0.png', '手表,混合动力', 'Misfit的混合动力手表今天通过公司网站发售。它的售价为149.99美元,将有四种颜色可供选择:不锈钢,玫瑰金,黄金和带金色调的不锈钢。该公司首先在CES首次推出手表,在那里我们看到了这款小巧的新设备。这是该公司最小的手表 - 38毫米 - 并没有触摸屏,但它通过蓝牙与智能手机配对。', '智能手表,混合动力', '3', '2', '0', '0', '0', '', '1523719020', '1523879142', '1523635200', null, '', 'normal');
INSERT INTO `fa_cms_archives` VALUES ('4', '1', '7', '1', 'UE为现场演出者推出了价值2200美元的舞台耳返设备', '', 'https://cdn.fastadmin.net/uploads/20180416/5ad441258ab510.png', '耳返,智能设备', '大多数消费者可能熟悉UE推出的色彩鲜艳的蓝牙音箱,但该公司也有一系列定制入耳式耳机,UE刚刚推出了一款新的顶级旗舰机型:2,200美元的UE Live。UE Live耳机是该公司以前的旗舰UE18 Pro型号的进化版本,将每个耳机的扬声器数量从6个增加到8个,共计6个平衡电枢,一个True Tone Plus驱动器和一个6mm钕制动态扬声器,以提供更好的声音。', '智能设备,耳返', '4', '3', '0', '1', '0', '', '1523719106', '1523879126', '1523635200', null, '', 'normal');
INSERT INTO `fa_cms_archives` VALUES ('5', '1', '7', '1', '南孚推出全球首款测电器装电池:可秒分电池新旧', '', 'https://cdn.fastadmin.net/uploads/20180416/5ad4412530fd08.jpg', '电池,南孚', '想必大家都遇到过这样尴尬的事情:家里有很多电池,用的时候也分不清哪个有电、哪个没电,扔了又怕浪费。于是旧的不丢掉,新的买来用,这样家里的电池越积攒越多,造成恶性循环。而现在,南孚带来了一款全新产品——南孚测电器装电池,包含南孚测电器和南孚碱性电池,轻轻松松测一测,电池电量一目了然。', '南孚,电池', '5', '2', '0', '0', '0', '', '1523719198', '1523879107', '1523635200', null, '', 'normal');
INSERT INTO `fa_cms_archives` VALUES ('6', '1', '7', '1', '强生将推能根据光线条件自动变色的隐形镜片', '', 'https://cdn.fastadmin.net/uploads/20180416/5ad44121af36d0.jpeg', '智能设备,强生', '据外媒报道,多年来,人们已经习惯于使用变色镜片的眼镜,然而这在隐形眼镜中却不存在。不过就在日前,强生终于打破了这个技术壁垒,这家公司宣布即将向市场推出具备变色功能的隐形镜片。', '智能设备', '6', '0', '0', '0', '0', '', '1523719286', '1523879078', '1523635200', null, '', 'normal');
INSERT INTO `fa_cms_archives` VALUES ('7', '1', '7', '1', 'Snap新一代Spectacles眼镜文档已被FCC曝光', '', 'https://cdn.fastadmin.net/uploads/20180416/5ad44121495860.jpg', '', '据 Variety 报道,FCC 辐射实验室刚刚证实了一副来自 Snap 的新眼镜。今日曝光的这款穿戴设备的文档称,这是一款由 Snap Inc. 制作的穿戴式视频拍摄装置。从印刷标签来看,其品牌名称为 Spectacles,型号为 Model 002 。尽管文件中所附的大部分内容都以保密为由被遮掩,但还是可以知道它支持低功耗蓝牙 4.2 和 802.11ac Wi-Fi 。', '智能设备,眼镜', '7', '2', '0', '1', '0', '', '1523719403', '1523879062', '1523635200', null, '', 'normal');
INSERT INTO `fa_cms_archives` VALUES ('8', '1', '5', '1', '投资者需求旺盛 Dropbox将IPO发行价区间调高2美元', '', 'https://cdn.fastadmin.net/uploads/20180416/5ad44120f16870.jpg', '', '云存储服务商Dropbox今日宣布,由于投资者需求强劲,现将IPO(数次公开招股)发行价区间调高2美元。上周一,Dropbox宣布将IPO发行价区间定为每股16美元至18美元,最高融资6.48亿美元,公司市值将达到约71亿美元。', 'dropbox,投资', '8', '1', '0', '0', '0', '', '1523719527', '1523879042', '1523635200', null, '', 'normal');
INSERT INTO `fa_cms_archives` VALUES ('9', '1', '5', '1', 'Dropbox股价上市首日大涨36% 市值超120亿美元', '', 'https://cdn.fastadmin.net/uploads/20180416/5ad44120cd28e0.jpg', '', '著名云存储服务提供商Dropbox在上市交易首日股价大涨36%,开盘定价为21美元每股,在当日最高时达到31.6美元每股,最终以28.48美元每股的价格收盘,现在市值超过120亿美元。可以明显看出公开市场投资者十分看好Dropbox这家主营业务为云存储服务和内容协作平台的公司。Dropbox最先对自己股价的预期是16到18美元每股,后来提升到18到20美元每股。而由于上市交易首日表现出色,超过了2014年私募时100亿美元的估值。', 'dropbox,投资', '9', '0', '0', '0', '0', '', '1523719610', '1523879028', '1523635200', null, '', 'normal');
INSERT INTO `fa_cms_archives` VALUES ('10', '1', '5', '1', '云存储公司Dropbox在美提交IPO申请:拟筹资5亿美元', '', 'https://cdn.fastadmin.net/uploads/20180416/5ad44120825a50.jpg', '', '云存储公司Dropbox周五向美国证券交易委员会(SEC)提交了IPO(首次公开招股)申请文件,寻求筹集5亿美元资金。Dropbox的IPO交易长期以来备受市场期待,该公司四年前在私募投资市场上的估值就已高达100亿美元。', 'dropbox', '10', '0', '0', '0', '0', '', '1523719716', '1523879000', '1523635200', null, '', 'normal');
INSERT INTO `fa_cms_archives` VALUES ('11', '1', '5', '1', '通用电气针对Predix云平台的创业者推出奖励计划', '', 'https://cdn.fastadmin.net/uploads/20180416/5ad441204c1c20.png', '', '通用电气(GE)为推广Predix云平台的应用开发,在国内推出首期\"Predix星火计划\",以奖励基于该平台的工业互联网开发者。首期有4家企业获奖,将进驻GE孵化器并获得技术支持和潜在投资机会。', '云计算,互联网', '11', '0', '0', '0', '0', '', '1523719810', '1523878981', '1523635200', null, '', 'normal');
INSERT INTO `fa_cms_archives` VALUES ('12', '1', '5', '1', '超越Web服务 Cloudflare推出全新的Spectrum安全服务', '', 'https://cdn.fastadmin.net/uploads/20180416/5ad4411fb836c0.png', '', '据外媒报道,Cloudflare 公司正将其业务拓展到网站和云应用之外的互联网安全领域。此前,Cloudflare 帮助过企业屏蔽恶意流量,并且让它们的线上内容加载得更加迅速。而根据今日披露的内容,这项新服务旨在保护那些在公共网络背景下运行的联网基础设施,涵盖了从企业内部电子邮件服务器、到领域内部署的联网设备等各个方面。', '云计算,安全', '12', '1', '0', '0', '0', '', '1523719980', '1523878966', '1523635200', null, '', 'normal');
INSERT INTO `fa_cms_archives` VALUES ('13', '1', '5', '1', '映泰Z390GT5主板手册曝光 英特尔Z390芯片组或即将到来 当', '', 'https://cdn.fastadmin.net/uploads/20180416/5ad4411ecab1c0.jpg', '', '当英特尔上周推出更多更多 Coffee Lake CPU 和配套主板时,传说中的 Z390 芯片组却意外缺席了。不过有眼尖的人们发现,主板厂商映泰(Biostar)在自家 B360 Racing GT5 手册中,竟然清楚地列明了另一款名叫“Z390GT5”主板的存在。作为一个二线品牌,映泰的产品主打平价而不是古怪的设计。不过它与现有的 Z370 系列没有太大差别,而且最高支持的 CPU TDP 也仅为 95W,刚好够酷睿 i7-8700K 使用而已。', '智能设备', '13', '1', '0', '0', '0', '', '1523720694', '1523878951', '1523635200', null, '', 'normal');
INSERT INTO `fa_cms_archives` VALUES ('14', '1', '4', '1', '在数据黑箱和信赖危机面前 谁更应该战战兢兢?', '', 'https://cdn.fastadmin.net/uploads/20180416/5ad4411e749b30.jpg', '', '4 月 11 日,Valve 宣布旗下著名的 PC 游戏发行平台 Steam 会推出新的用户数据隐私安全措施。今后玩家们可以选择隐藏你的游戏库内容,也可以隐藏你的活动细节,具体到最近收藏什么游戏,买了什么游戏,玩了什么游戏以及在某游戏上花了多少小时等等。', '安全', '14', '0', '0', '0', '0', '', '1523720913', '1523878935', '1523635200', null, '', 'normal');
INSERT INTO `fa_cms_archives` VALUES ('15', '1', '4', '1', 'Google Chrome和Mozilla Firefox将支持全新无密码登录规范', '', 'https://cdn.fastadmin.net/uploads/20180416/5ad4411e3a7db0.png', '', '今天,W3C和FIDO联盟标准机构宣布,Web浏览器正在构建一种新的登录方式。这款名为WebAuthn所呈现的新开放标准将在最新版本的Firefox中得到支持,并将在未来几个月发布的Chrome和Edge的版本中得到支持。这是多年来的最新举措,目的是让用户远离密码,转向更安全的登录方式,如生物识别和USB令牌。', '互联网,安全', '15', '0', '0', '0', '0', '', '1523720991', '1523878915', '1523635200', null, '', 'normal');
INSERT INTO `fa_cms_archives` VALUES ('16', '1', '4', '1', 'GitHub 安全警告计划已检测出 400 多万个漏洞', '', 'https://cdn.fastadmin.net/uploads/20180416/5ad4411db71750.png', '', 'Github 去年推出的安全警告,极大减少了开发人员消除 Ruby 和 JavaScript 项目漏洞的时间。GitHub 安全警告服务,可以搜索依赖寻找已知漏洞然后通过开发者,以便帮助开发者尽可能快的打上补丁修复漏洞,消除有漏洞的依赖或者转到安全版本。', '互联网,安全', '16', '0', '0', '0', '0', '', '1523721095', '1523878887', '1523635200', null, '', 'normal');
INSERT INTO `fa_cms_archives` VALUES ('17', '1', '4', '1', 'Windows 10杀毒软件大PK:Defender首入前三', '', 'https://cdn.fastadmin.net/uploads/20180416/5ad4411cec01d0.jpg', '', 'AV-TEST公布了2018年1~2月杀毒软件的最新测试情况,稍稍有点不接地气的是,基于Windows 10企业版平台。排名第一的依然是铁打的卡巴斯基,3个满分总计18分无悬念。不过,这次Symantec和Trend Micro也是18满分,令人刮目相看。', '云计算,安全', '17', '1', '0', '0', '0', '', '1523721137', '1523878857', '1523635200', null, '', 'normal');
INSERT INTO `fa_cms_archives` VALUES ('18', '1', '10', '2', 'GitHub 去年为漏洞支付了 16.6 万美元赏金', '', 'https://cdn.fastadmin.net/uploads/20180416/5ad4412a798700.jpg', '', '据外媒报道,去年,GitHub 向安全研究人员支付了总计 166495 美元的奖励,针对 GitHub 这个为期四年的“漏洞赏金”项目,安全研究人员会上报自己发现的系统问题和漏洞。2016 年,GitHub 一共支付了81.7万美元,而去年的支出总额显然已经翻了一倍多,几乎相当于前三年的总支出(17.7万美元)。在 2014 和 2015 两年时间里,他们一共支付了95.3万美元的奖金。', '互联网,安全', '18', '21', '0', '1', '0', '', '1523721203', '1523895458', '1523635200', null, '', 'normal');
INSERT INTO `fa_cms_archives` VALUES ('19', '1', '3', '1', '谷歌发布“与书对话”检索引擎 从字里行间邂逅心仪书籍', '', 'https://cdn.fastadmin.net/uploads/20180416/5ad4411b4c3960.jpg', '', '今日,谷歌分享了 Semantic Experiences,在博客中展示了两大关于自然语言理解的互动工具。Talk to Books 是一个可以从书中的句子层面搜索书籍的全新检索模式;另一个互动内容则是 Semantris,一个由机器学习驱动的单词联想游戏。', 'Google,互联网', '19', '3', '0', '0', '0', '', '1523721303', '1523878822', '1523635200', null, '', 'normal');
INSERT INTO `fa_cms_archives` VALUES ('20', '1', '3', '1', '节省40%搜索流量:Google Go轻量级应用将于非洲市场推出', '', 'https://cdn.fastadmin.net/uploads/20180416/5ad4411b10d540.png', '', '针对新兴市场,Google希望通过Google Go轻量级应用帮助身处网络速度慢、流量资费高昂地区的用户获得更流畅的网络搜索体验。现在谷歌正向在26个撒哈拉以南非洲国家/地区推广,Google Go轻量级应用可以让搜索数据用流量减少40%,并且支持对以往搜索记录的脱机访问。', 'Google,互联网', '20', '0', '0', '0', '0', '', '1523721344', '1523878791', '1523635200', null, '', 'normal');
INSERT INTO `fa_cms_archives` VALUES ('21', '1', '3', '1', '谷歌公布Fuchsia文档:并非Linux内核 从头构建自己的库和组件', '', 'https://cdn.fastadmin.net/uploads/20180416/5ad4411ab103e0.jpg', '', '尽管已经研发两年多时间,但对于Fuchsia系统Google始终缄口不言。不过今天,公司发表了名为“The Book”的深度解析文档,详细介绍了这款计划取代Android和Chrome OS的操作系统。 目前Android和Chrome OS都是使用Linux内核,不过在最新发布的文档中谷歌明确Fuchsia并非基于Linux内核。', 'Google,互联网', '21', '2', '0', '0', '0', '', '1523721408', '1523878779', '1523635200', null, '', 'normal');
INSERT INTO `fa_cms_archives` VALUES ('22', '1', '3', '1', '谷歌手机应用可直接过滤语音垃圾邮件', '', 'https://cdn.fastadmin.net/uploads/20180416/5ad4411a368920.jpg', '', '谷歌手机应用程序在2月份收到了主要更新,为快速通话控件添加了便捷的聊天功能。在接下来的几周里,Pixel,Nexus和Android One设备的默认拨号程序正在添加垃圾邮件过滤功能,并附带一个新的测试版程序,现在就可以试用该功能。', 'Google,互联网', '22', '2', '0', '0', '0', '', '1523721460', '1523878762', '1523635200', null, '', 'normal');
INSERT INTO `fa_cms_archives` VALUES ('23', '1', '10', '2', '谷歌母公司继续投资清洁能源领域:或押注于电池', '', 'https://cdn.fastadmin.net/uploads/20180416/5ad4412a357f60.jpg', '', '北京时间4月11日早间消息,谷歌母公司Alphabet有望在2018进行新的投资,目前,该公司仍在研究如何优化电池的存储价值。作为世界上风能和太阳能的最大企业买家,谷歌可能很快要进行一项新的清洁能源投资,这次他们锁定的目标是电池。', 'Google,互联网', '23', '28', '0', '0', '0', '', '1523721500', '1523895423', '1523635200', null, '', 'normal');
INSERT INTO `fa_cms_archives` VALUES ('24', '1', '3', '1', '谷歌携手美国医学协会 促进健康监测设备数据共享', '', 'https://cdn.fastadmin.net/uploads/20180416/5ad44119d944a0.png', '', '谷歌正在与美国医学协会(美国的一个医师游说团体)进行合作,双方达成一项挑战计划,其内容是让初创企业能够想出“促进健康监测设备数据共享的最佳新思路”。美国医学协会于周一表示,最终的挑战成果将会是一款手机应用或可穿戴设备。', 'Google,互联网', '24', '5', '0', '0', '0', '', '1523721555', '1523878724', '1523635200', null, '', 'normal');
INSERT INTO `fa_cms_archives` VALUES ('25', '1', '3', '1', '谷歌开源 iOS 自动测试框架 GTXiLib,主打无障碍使用', '', 'https://cdn.fastadmin.net/uploads/20180416/5ad441196ddc60.png', '', '最近 Google 在帮助开发者提升 App 可用性上可谓是动作频频,不只发布了无障碍技术指导方案,成立无障碍支援团队,近日还在博客上宣布开源 iOS 专用的自动化测试框架 GTXiLib ,以帮助开发者打造无障碍 App 。', 'Google,互联网', '25', '7', '0', '0', '0', '', '1523754040', '1523878710', '1523721600', null, '', 'normal');
INSERT INTO `fa_cms_archives` VALUES ('26', '1', '4', '1', 'Let\'s Encrypt发布ACME v2 正式支持通配符证书', '', 'https://cdn.fastadmin.net/uploads/20180416/5ad44119326fd0.jpg', '', 'Let\'s Encrypt 宣布 ACME v2 正式支持通配符证书。Let\'s Encrypt 宣称将继续清除 Web 上采用 HTTPS 的障碍,让每个网站轻松获取管理证书。ACMEv21.6k 是 ACME 协议的更新版本,考虑到行业专家和其他组织可能希望在某天使用 ACME 协议进行证书颁发和管理,它已经通过 IETF 标准流程。', '互联网,安全', '26', '36', '0', '1', '0', '', '1523754142', '1523878676', '1523721600', null, '', 'normal');
INSERT INTO `fa_cms_archives` VALUES ('27', '1', '4', '1', '因为电网问题 欧洲的电子钟表运行缓慢超过一个月时间', 'recommend', 'https://cdn.fastadmin.net/uploads/20180416/5ad44118ca9c40.jpg', '', '欧洲电力传输系统运营商网络(ENTSOE)是建立内部能源市场并确保其最佳运作的机构,为解释欧洲的电子钟表运行缓慢超过一个月的原因发表了一份声明。在一篇引人入胜的题为“欧洲大陆的频率偏差对频率控制的电子钟表影响”新闻稿中,该组织解释说,频率偏差导致一些数字时钟滞后。', '互联网,安全', '27', '140', '7', '1', '0', '', '1523754196', '1523878659', '1523721600', null, '', 'normal');
INSERT INTO `fa_cms_archives` VALUES ('28', '1', '9', '2', 'Leap Motion AR头显看起来很疯狂但可能是奇迹', '', 'https://cdn.fastadmin.net/uploads/20180416/5ad44129495250.jpg', '', '本周我们正在研究Leap Motion为增强现实带来的新东西。我们已经看到他们之前创造了一些令人难以置信的技术,尤其是当涉及到运动跟踪和控制时。现在看起来他们认为他们是以面向优先的方式进入AR增强现实世界。', 'AR,VR,互联网', '28', '16', '0', '1', '0', '', '1523755374', '1523878629', '1523721600', null, '', 'normal');
INSERT INTO `fa_cms_archives` VALUES ('29', '1', '9', '2', '研究人员利用VR技术帮助教师更好了解自闭症学生', 'hot,new', 'https://cdn.fastadmin.net/uploads/20180416/5ad44128db3ed0.png', '', '据外媒报道,研究人员正在利用VR技术帮助教师们了解自闭症学生进而能够真正地去帮助他们。近日,来自马耳他大学的一个研究小组决定通过VR技术帮助教师理解自闭症儿童的生活体验。通过利用自闭症儿童的音频和视觉技巧,研究团队开发出一个VR应用,它能模拟出自闭症儿童在教室里的体验情况。', 'AR,互联网', '29', '33', '0', '0', '0', '', '1523755471', '1523878608', '1523721600', null, '', 'normal');
INSERT INTO `fa_cms_archives` VALUES ('30', '1', '3', '1', '谷歌母公司继续投资清洁能源领域:或押注于电池', '', 'https://cdn.fastadmin.net/uploads/20180416/5ad4412a357f60.jpg', '', '', '互联网,Google', '30', '6', '0', '0', '0', '', '1523895691', '1523895691', '1523894400', null, '', 'normal');
INSERT INTO `fa_cms_archives` VALUES ('33', '1', '3', '1', 'GitHub 去年为漏洞支付了 16.6 万美元赏金', '', 'https://cdn.fastadmin.net/uploads/20180416/5ad4412a798700.jpg', '', '据外媒报道,去年,GitHub 向安全研究人员支付了总计 166495 美元的奖励,针对 GitHub 这个为期四年的“漏洞赏金”项目,安全研究人员会上报自己发现的系统问题和漏洞。2016 年,GitHub 一共支付了81.7万美元,而去年的支出总额显然已经翻了一倍多,几乎相当于前三年的总支出(17.7万美元)。在 2014 和 2015 两年时间里,他们一共支付了95.3万美元的奖金。', '互联网,安全', '33', '16', '0', '1', '1', '', '1523895893', '1523895893', '1523894400', null, '', 'normal');
INSERT INTO `fa_cms_archives` VALUES ('34', '1', '7', '1', 'Leap Motion AR头显看起来很疯狂但可能是奇迹', '', 'https://cdn.fastadmin.net/uploads/20180416/5ad44129495250.jpg', '', '本周我们正在研究Leap Motion为增强现实带来的新东西。我们已经看到他们之前创造了一些令人难以置信的技术,尤其是当涉及到运动跟踪和控制时。现在看起来他们认为他们是以面向优先的方式进入AR增强现实世界。', '互联网,AR', '34', '27', '0', '2', '0', '', '1523895990', '1523895990', '1523894400', null, '', 'normal');
INSERT INTO `fa_cms_archives` VALUES ('35', '1', '7', '1', '研究人员利用VR技术帮助教师更好了解自闭症学生', '', 'https://cdn.fastadmin.net/uploads/20180416/5ad44128db3ed0.png', '', '据外媒报道,研究人员正在利用VR技术帮助教师们了解自闭症学生进而能够真正地去帮助他们。近日,来自马耳他大学的一个研究小组决定通过VR技术帮助教师理解自闭症儿童的生活体验。通过利用自闭症儿童的音频和视觉技巧,研究团队开发出一个VR应用,它能模拟出自闭症儿童在教室里的体验情况。', '智能设备,AR', '35', '148', '0', '20', '14', '', '1523896040', '1523896040', '1523894400', null, '', 'normal');
-- ----------------------------
-- Table structure for fa_cms_block
-- ----------------------------
DROP TABLE IF EXISTS `fa_cms_block`;
CREATE TABLE `fa_cms_block` (
`id` smallint(8) unsigned NOT NULL AUTO_INCREMENT,
`type` varchar(30) NOT NULL DEFAULT '' COMMENT '类型',
`name` varchar(50) NOT NULL DEFAULT '' COMMENT '名称',
`title` varchar(100) NOT NULL DEFAULT '' COMMENT '标题',
`image` varchar(100) NOT NULL DEFAULT '' COMMENT '图片',
`url` varchar(100) NOT NULL DEFAULT '' COMMENT '链接',
`content` mediumtext COMMENT '内容',
`createtime` int(10) DEFAULT NULL COMMENT '添加时间',
`updatetime` int(10) DEFAULT NULL COMMENT '更新时间',
`status` enum('normal','hidden') NOT NULL DEFAULT 'normal' COMMENT '状态',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='区块表';
-- ----------------------------
-- Records of fa_cms_block
-- ----------------------------
INSERT INTO `fa_cms_block` VALUES ('1', 'focus', 'focus', '幻灯图片1', '/assets/addons/cms/img/focus/1.jpg', 'http://www.fastadmin.net', '111', '0', '0', 'normal');
INSERT INTO `fa_cms_block` VALUES ('2', 'focus', 'focus', '幻灯图片2', '/assets/addons/cms/img/focus/2.jpg', 'http://www.fastadmin.net', '222', '0', '0', 'normal');
INSERT INTO `fa_cms_block` VALUES ('3', 'focus', 'focus', '幻灯图片3', '/assets/addons/cms/img/focus/3.jpg', 'http://www.fastadmin.net', '333', '0', '0', 'normal');
INSERT INTO `fa_cms_block` VALUES ('4', 'other', 'contactus', '联系我们', '', '', '', '0', '0', 'normal');
INSERT INTO `fa_cms_block` VALUES ('6', 'other', 'footer', '底部链接', '', '', '<div class=\"col-md-3 col-sm-3\">\n <div class=\"footer-logo\">\n <a href=\"#\"><i class=\"fa fa-bookmark\"></i></a>\n </div>\n <p class=\"copyright\"><small>© 2017. All Rights Reserved. <br>\n FastAdmin\n </small>\n </p>\n </div>\n <div class=\"col-md-5 col-md-push-1 col-sm-5 col-sm-push-1\">\n <div class=\"row\">\n <div class=\"col-md-4 col-sm-4\">\n <ul class=\"links\">\n <li><a href=\"#\">关于我们</a></li>\n <li><a href=\"#\">发展历程</a></li>\n <li><a href=\"#\">服务项目</a></li>\n <li><a href=\"#\">团队成员</a></li>\n </ul>\n </div>\n <div class=\"col-md-4 col-sm-4\">\n <ul class=\"links\">\n <li><a href=\"#\">新闻</a></li>\n <li><a href=\"#\">资讯</a></li>\n <li><a href=\"#\">推荐</a></li>\n <li><a href=\"#\">博客</a></li>\n </ul>\n </div>\n <div class=\"col-md-4 col-sm-4\">\n <ul class=\"links\">\n <li><a href=\"#\">服务</a></li>\n <li><a href=\"#\">圈子</a></li>\n <li><a href=\"#\">论坛</a></li>\n <li><a href=\"#\">广告</a></li>\n </ul>\n </div>\n </div>\n </div>\n <div class=\"col-md-3 col-sm-3 col-md-push-1 col-sm-push-1\">\n <div class=\"footer-social\">\n <a href=\"#\"><i class=\"fa fa-weibo\"></i></a>\n <a href=\"#\"><i class=\"fa fa-qq\"></i></a>\n <a href=\"#\"><i class=\"fa fa-wechat\"></i></a>\n </div>\n </div>', '0', '0', 'normal');
INSERT INTO `fa_cms_block` VALUES ('7', 'other', 'bannerad', '通栏广告', '/assets/addons/cms/img/banner/1.jpg', 'http://www.fastadmin.net', '', '0', '0', 'normal');
INSERT INTO `fa_cms_block` VALUES ('8', 'other', 'sidebarad1', '边栏广告1', '/assets/addons/cms/img/sidebar/1.jpg', 'http://www.fastadmin.net', '', '0', '0', 'normal');
INSERT INTO `fa_cms_block` VALUES ('9', 'other', 'sidebarad2', '边栏广告2', '/assets/addons/cms/img/sidebar/2.jpg', 'http://www.fastadmin.net', '', '0', '0', 'normal');
-- ----------------------------
-- Table structure for fa_cms_channel
-- ----------------------------
DROP TABLE IF EXISTS `fa_cms_channel`;
CREATE TABLE `fa_cms_channel` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`type` enum('channel','page','link','list') NOT NULL COMMENT '类型',
`model_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '模型ID',
`parent_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '父ID',
`name` varchar(30) NOT NULL DEFAULT '' COMMENT '名称',
`image` varchar(100) NOT NULL DEFAULT '' COMMENT '图片',
`flag` set('hot','new','recommend') DEFAULT '' COMMENT '标志',
`keywords` varchar(255) NOT NULL DEFAULT '' COMMENT '关键字',
`description` varchar(255) NOT NULL DEFAULT '' COMMENT '描述',
`diyname` varchar(30) NOT NULL DEFAULT '' COMMENT '自定义名称',
`outlink` varchar(255) NOT NULL DEFAULT '' COMMENT '外部链接',
`items` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT '文章数量',
`weigh` int(10) NOT NULL DEFAULT '0' COMMENT '权重',
`channeltpl` varchar(100) NOT NULL DEFAULT '' COMMENT '栏目页模板',
`listtpl` varchar(100) NOT NULL DEFAULT '' COMMENT '列表页模板',
`showtpl` varchar(100) NOT NULL DEFAULT '' COMMENT '详情页模板',
`pagesize` smallint(5) NOT NULL DEFAULT '0' COMMENT '分页大小',
`iscontribute` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否可投稿',
`createtime` int(10) DEFAULT NULL COMMENT '创建时间',
`updatetime` int(10) DEFAULT NULL COMMENT '更新时间',
`status` enum('normal','hidden') NOT NULL DEFAULT 'normal' COMMENT '状态',
PRIMARY KEY (`id`),
UNIQUE KEY `diyname` (`diyname`),
KEY `weigh` (`weigh`,`id`),
KEY `parent_id` (`parent_id`)
) ENGINE=InnoDB AUTO_INCREMENT=45 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='栏目表';
-- ----------------------------
-- Records of fa_cms_channel
-- ----------------------------
INSERT INTO `fa_cms_channel` VALUES ('1', 'channel', '1', '0', '新闻中心', '', '', '', '', 'news', '', '0', '9', 'channel.html', '', '', '10', '1', '1508990697', '1508992553', 'normal');
INSERT INTO `fa_cms_channel` VALUES ('2', 'channel', '2', '0', '产品中心', '', '', '', '', 'product', '', '0', '10', 'channel.html', '', '', '10', '1', '1508992541', '1508992541', 'normal');
INSERT INTO `fa_cms_channel` VALUES ('3', 'list', '1', '1', '互联网', '', 'recommend', '', '', 'internet', '', '8', '47', 'channel.html', 'list_news.html', 'show_news.html', '10', '1', '1523718032', '1523718032', 'normal');
INSERT INTO `fa_cms_channel` VALUES ('4', 'list', '1', '1', ' 安全', '', 'recommend', '', '', 'security', '', '8', '5', 'channel.html', 'list_news.html', 'show_news.html', '10', '1', '1508990707', '1523720840', 'normal');
INSERT INTO `fa_cms_channel` VALUES ('5', 'list', '1', '1', '投资', '', 'recommend', '', '', 'investment', '', '8', '8', 'channel.html', 'list_news.html', 'show_news.html', '10', '1', '1508990716', '1523717837', 'normal');
INSERT INTO `fa_cms_channel` VALUES ('7', 'list', '1', '1', '硬件', '', 'recommend', '', '', 'hardware', '', '9', '46', 'channel.html', 'list_news.html', 'show_news.html', '10', '1', '1523717893', '1523717893', 'normal');
INSERT INTO `fa_cms_channel` VALUES ('8', 'list', '2', '2', '可穿戴设备', '', '', '', '', 'wearable', '', '2', '4', 'channel.html', 'list_product.html', 'show_product.html', '10', '1', '1508992598', '1523718084', 'normal');
INSERT INTO `fa_cms_channel` VALUES ('9', 'list', '2', '2', 'VR/AR', '', '', '', '', 'vrar', '', '2', '7', 'channel.html', 'list_product.html', 'show_product.html', '10', '1', '1508992623', '1523718179', 'normal');
INSERT INTO `fa_cms_channel` VALUES ('10', 'list', '2', '2', '智能家居', '', 'recommend', '', '', 'smarthome', '', '2', '44', 'channel.html', 'list_product.html', 'show_product.html', '10', '1', '1522157583', '1523718113', 'normal');
INSERT INTO `fa_cms_channel` VALUES ('40', 'link', '1', '0', '普通单页', '', '', '', '', 'aboutus', '/cms/p/aboutus.html', '0', '8', 'channel.html', '', '', '10', '1', '1508994681', '1508994681', 'normal');
INSERT INTO `fa_cms_channel` VALUES ('41', 'link', '1', '0', '自定义表单', '', '', '', '', 'message', '/cms/d/message.html', '0', '7', 'channel.html', '', '', '10', '1', '1508994681', '1508994681', 'normal');
INSERT INTO `fa_cms_channel` VALUES ('42', 'link', '1', '0', '官网首页', '', '', '', '', 'official', 'http://www.fastadmin.net', '0', '6', 'channel.html', '', '', '10', '1', '1508994753', '1508994753', 'normal');
INSERT INTO `fa_cms_channel` VALUES ('43', 'link', '1', '0', '交流社区', '', '', '', '', 'forum', 'http://forum.fastadmin.net', '0', '3', 'channel.html', '', '', '10', '1', '1508994772', '1508994772', 'normal');
INSERT INTO `fa_cms_channel` VALUES ('44', 'link', '1', '0', '文档', '', '', '', '', 'docs', 'http://doc.fastadmin.net', '0', '2', 'channel.html', '', '', '10', '1', '1508994788', '1508994788', 'normal');
-- ----------------------------
-- Table structure for fa_cms_channel_admin
-- ----------------------------
DROP TABLE IF EXISTS `fa_cms_channel_admin`;
CREATE TABLE `fa_cms_channel_admin` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`admin_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '管理员ID',
`channel_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '栏目ID',
PRIMARY KEY (`id`),
UNIQUE KEY `admin_id` (`admin_id`,`channel_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='栏目权限表';
-- ----------------------------
-- Records of fa_cms_channel_admin
-- ----------------------------
-- ----------------------------
-- Table structure for fa_cms_comment
-- ----------------------------
DROP TABLE IF EXISTS `fa_cms_comment`;
CREATE TABLE `fa_cms_comment` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
`user_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '会员ID',
`type` enum('archives','page') NOT NULL DEFAULT 'archives' COMMENT '类型',
`aid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '关联ID',
`pid` int(10) NOT NULL DEFAULT '0' COMMENT '父ID',
`content` text COMMENT '内容',
`comments` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '评论数',
`ip` varchar(50) NOT NULL DEFAULT '' COMMENT 'IP',
`useragent` varchar(255) NOT NULL DEFAULT '' COMMENT 'User Agent',
`subscribe` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '订阅',
`createtime` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '创建时间',
`updatetime` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '更新时间',
`status` enum('normal','hidden') NOT NULL DEFAULT 'normal' COMMENT '状态',
PRIMARY KEY (`id`),
KEY `post_id` (`aid`,`pid`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='评论表';
-- ----------------------------
-- Records of fa_cms_comment
-- ----------------------------
INSERT INTO `fa_cms_comment` VALUES ('1', '1', 'archives', '27', '0', '这是测试内容。', '0', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36', '0', '1523758108', '1523758108', 'normal');
INSERT INTO `fa_cms_comment` VALUES ('2', '1', 'archives', '27', '0', '我是测试评论内容。', '0', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36', '0', '1523796231', '1523796231', 'normal');
INSERT INTO `fa_cms_comment` VALUES ('3', '1', 'archives', '27', '2', '测试回复他人内容!', '0', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36', '0', '1523796706', '1523796706', 'normal');
INSERT INTO `fa_cms_comment` VALUES ('4', '1', 'archives', '27', '0', '测试评论内容', '0', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36', '0', '1523805202', '1523805202', 'normal');
INSERT INTO `fa_cms_comment` VALUES ('5', '1', 'archives', '27', '0', '测试评论内容', '0', '127.0.0.1', 'Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1 wechatdevtools/1.02.1804120 MicroMessenger/6.5.7 Language/zh_CN webview/', '0', '1523806163', '1523806163', 'normal');
INSERT INTO `fa_cms_comment` VALUES ('6', '1', 'archives', '27', '0', '测试评论内容2', '0', '127.0.0.1', 'Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1 wechatdevtools/1.02.1804120 MicroMessenger/6.5.7 Language/zh_CN webview/', '0', '1523806277', '1523806277', 'normal');
INSERT INTO `fa_cms_comment` VALUES ('7', '1', 'archives', '27', '0', '测试评论内容22', '0', '127.0.0.1', 'Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1 wechatdevtools/1.02.1804120 MicroMessenger/6.5.7 Language/zh_CN webview/', '0', '1523806323', '1523806323', 'normal');
-- ----------------------------
-- Table structure for fa_cms_diyform
-- ----------------------------
DROP TABLE IF EXISTS `fa_cms_diyform`;
CREATE TABLE `fa_cms_diyform` (
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`name` char(30) NOT NULL DEFAULT '' COMMENT '表单名称',
`title` varchar(100) DEFAULT NULL COMMENT '表单标题',
`keywords` varchar(100) DEFAULT NULL COMMENT '关键字',
`description` varchar(255) DEFAULT NULL COMMENT '描述',
`table` varchar(50) NOT NULL DEFAULT '' COMMENT '表名',
`fields` text COMMENT '字段列表',
`needlogin` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否需要登录',
`successtips` varchar(255) DEFAULT NULL COMMENT '成功提示文字',
`redirecturl` varchar(100) DEFAULT NULL COMMENT '成功后跳转链接',
`formtpl` varchar(30) NOT NULL DEFAULT '' COMMENT '表单页模板',
`diyname` varchar(30) DEFAULT NULL COMMENT '自定义名称',
`createtime` int(10) DEFAULT NULL COMMENT '创建时间',
`updatetime` int(10) DEFAULT NULL COMMENT '更新时间',
`setting` varchar(1500) DEFAULT NULL COMMENT '表单配置',
`status` enum('normal','hidden') DEFAULT 'hidden' COMMENT '状态',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='自定义表单表';
-- ----------------------------
-- Records of fa_cms_diyform
-- ----------------------------
INSERT INTO `fa_cms_diyform` VALUES ('1', '站内留言', '发表留言', '留言板', '欢迎给我们留言反馈你的问题', 'cms_message', 'name,telephone,qq,content', '0', '留言已成功提交,我们会在第一时间进行处理', null, 'diyform.html', 'message', '1540091957', '1540092155', null, 'normal');
-- ----------------------------
-- Table structure for fa_cms_fields
-- ----------------------------
DROP TABLE IF EXISTS `fa_cms_fields`;
CREATE TABLE `fa_cms_fields` (
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`model_id` int(10) NOT NULL DEFAULT '0' COMMENT '模型ID',
`diyform_id` int(10) NOT NULL DEFAULT '0' COMMENT '表单ID',
`name` char(30) NOT NULL DEFAULT '' COMMENT '名称',
`type` varchar(30) NOT NULL DEFAULT '' COMMENT '类型',
`title` varchar(30) NOT NULL DEFAULT '' COMMENT '标题',
`content` text COMMENT '内容',
`defaultvalue` varchar(100) NOT NULL DEFAULT '' COMMENT '默认值',
`rule` varchar(100) DEFAULT '' COMMENT '验证规则',
`msg` varchar(30) DEFAULT '0' COMMENT '错误消息',
`ok` varchar(30) DEFAULT '0' COMMENT '成功消息',
`tip` varchar(30) DEFAULT '' COMMENT '提示消息',
`decimals` tinyint(1) DEFAULT NULL COMMENT '小数点',
`length` mediumint(8) DEFAULT NULL COMMENT '长度',
`minimum` smallint(6) DEFAULT NULL COMMENT '最小数量',
`maximum` smallint(6) unsigned NOT NULL DEFAULT '0' COMMENT '最大数量',
`extend` varchar(255) NOT NULL DEFAULT '' COMMENT '扩展信息',
`weigh` int(10) NOT NULL DEFAULT '0' COMMENT '排序',
`createtime` int(10) DEFAULT NULL COMMENT '添加时间',
`updatetime` int(10) DEFAULT NULL COMMENT '更新时间',
`iscontribute` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否可投稿',
`isfilter` tinyint(1) NOT NULL DEFAULT '0' COMMENT '筛选',
`status` enum('normal','hidden') NOT NULL COMMENT '状态',
PRIMARY KEY (`id`),
KEY `model_id` (`model_id`) USING BTREE,
KEY `diyform_id` (`diyform_id`)
) ENGINE=InnoDB AUTO_INCREMENT=141 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='模型字段表';
-- ----------------------------
-- Records of fa_cms_fields
-- ----------------------------
INSERT INTO `fa_cms_fields` VALUES ('132', '0', '1', 'name', 'string', '姓名', 'value1|title1\r\nvalue2|title2', '', 'required', '', '', '', '0', '50', '0', '0', '', '136', '1540110334', '1540110334', '1', '0', 'normal');
INSERT INTO `fa_cms_fields` VALUES ('133', '0', '1', 'telephone', 'string', '手机', 'value1|title1\r\nvalue2|title2', '', 'required,mobile', '', '', '', '0', '50', '0', '0', '', '135', '1540110369', '1540110369', '1', '0', 'normal');
INSERT INTO `fa_cms_fields` VALUES ('134', '0', '1', 'qq', 'string', 'QQ', 'value1|title1\r\nvalue2|title2', '', 'digits', '', '', '', '0', '30', '0', '0', '', '134', '1540110394', '1540110394', '1', '0', 'normal');
INSERT INTO `fa_cms_fields` VALUES ('135', '0', '1', 'content', 'editor', '内容', 'value1|title1\r\nvalue2|title2', '', 'required', '', '', '', '0', '255', '0', '0', '', '133', '1540110415', '1540110415', '1', '0', 'normal');
INSERT INTO `fa_cms_fields` VALUES ('136', '1', '0', 'author', 'string', '作者', 'value1|title1\r\nvalue2|title2', '', '', '', '', '', '0', '255', '0', '0', '', '136', '1508990735', '1508991985', '1', '1', 'normal');
INSERT INTO `fa_cms_fields` VALUES ('137', '1', '0', 'area', 'select', '地区', 'domestic|国内\r\noverseas|国外\r\nlocal|本地', '', '', '', '', '', '0', '255', '0', '0', '', '137', '1508990746', '1523723221', '1', '1', 'normal');
INSERT INTO `fa_cms_fields` VALUES ('138', '1', '0', 'device', 'radio', '设备', 'vr|智能设备\r\nar|虚拟设备', '', 'required', '', '', '', '0', '255', '0', '0', '', '138', '1508992093', '1508992093', '1', '1', 'normal');
INSERT INTO `fa_cms_fields` VALUES ('139', '2', '0', 'productdata', 'images', '产品列表', 'value1|title1\r\nvalue2|title2', '', 'required', '', '', '', '0', '1500', '0', '20', '', '139', '1508992518', '1508992518', '1', '1', 'normal');
INSERT INTO `fa_cms_fields` VALUES ('140', '1', '0', 'price', 'number', '价格', 'value1|title1\r\nvalue2|title2', '', 'required', '', '', '', '0', '10', '0', '0', '', '140', '1508992093', '1508992093', '1', '1', 'normal');
-- ----------------------------
-- Table structure for fa_cms_message
-- ----------------------------
DROP TABLE IF EXISTS `fa_cms_message`;
CREATE TABLE `fa_cms_message` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(10) DEFAULT NULL COMMENT '会员ID',
`createtime` int(10) DEFAULT NULL COMMENT '添加时间',
`updatetime` int(10) DEFAULT NULL COMMENT '更新时间',
`name` varchar(50) DEFAULT '' COMMENT '姓名',
`telephone` varchar(100) DEFAULT '' COMMENT '电话',
`qq` varchar(30) DEFAULT '' COMMENT 'QQ',
`content` text COMMENT '内容',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='站内留言';
-- ----------------------------
-- Records of fa_cms_message
-- ----------------------------
INSERT INTO `fa_cms_message` VALUES ('1', null, '1540107249', '1540107249', 'FastAdmin', '13811111111', '123456', '我是来自前台提交的信息');
-- ----------------------------
-- Table structure for fa_cms_model
-- ----------------------------
DROP TABLE IF EXISTS `fa_cms_model`;
CREATE TABLE `fa_cms_model` (
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`name` char(30) NOT NULL DEFAULT '' COMMENT '模型名称',
`table` char(20) NOT NULL DEFAULT '' COMMENT '表名',
`fields` text COMMENT '字段列表',
`channeltpl` varchar(30) NOT NULL DEFAULT '' COMMENT '栏目页模板',
`listtpl` varchar(30) NOT NULL DEFAULT '' COMMENT '列表页模板',
`showtpl` varchar(30) NOT NULL DEFAULT '' COMMENT '详情页模板',
`createtime` int(10) DEFAULT NULL COMMENT '创建时间',
`updatetime` int(10) DEFAULT NULL COMMENT '更新时间',
`setting` text COMMENT '模型配置',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='内容模型表';
-- ----------------------------
-- Records of fa_cms_model
-- ----------------------------
INSERT INTO `fa_cms_model` VALUES ('1', '新闻', 'cms_addonnews', 'author,area,device,price', 'channel.html', 'list_news.html', 'show_news.html', '1508990659', '1523723221', '');
INSERT INTO `fa_cms_model` VALUES ('2', '产品', 'cms_addonproduct', 'productdata', 'channel.html', 'list_product.html', 'show_product.html', '1508992445', '1508992445', '');
-- ----------------------------
-- Table structure for fa_cms_order
-- ----------------------------
DROP TABLE IF EXISTS `fa_cms_order`;
CREATE TABLE `fa_cms_order` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '订单ID',
`user_id` int(10) unsigned DEFAULT '0' COMMENT '会员ID',
`archives_id` int(10) unsigned DEFAULT '0' COMMENT '文档ID',
`title` varchar(100) DEFAULT NULL COMMENT '订单标题',
`amount` double(10,2) unsigned DEFAULT '0.00' COMMENT '订单金额',
`payamount` double(10,2) unsigned DEFAULT '0.00' COMMENT '支付金额',
`paytype` varchar(50) DEFAULT NULL COMMENT '支付类型',
`paytime` int(10) DEFAULT NULL COMMENT '支付时间',
`ip` varchar(50) DEFAULT NULL COMMENT 'IP地址',
`useragent` varchar(255) DEFAULT NULL COMMENT 'UserAgent',
`memo` varchar(255) DEFAULT NULL COMMENT '备注',
`createtime` int(10) DEFAULT NULL COMMENT '添加时间',
`updatetime` int(10) DEFAULT NULL COMMENT '更新时间',
`status` enum('created','paid','expired') DEFAULT 'created' COMMENT '状态',
PRIMARY KEY (`id`),
KEY `archives_id` (`archives_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='订单表';
-- ----------------------------
-- Records of fa_cms_order
-- ----------------------------
-- ----------------------------
-- Table structure for fa_cms_page
-- ----------------------------
DROP TABLE IF EXISTS `fa_cms_page`;
CREATE TABLE `fa_cms_page` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
`category_id` int(10) NOT NULL DEFAULT '0' COMMENT '分类ID',
`type` varchar(50) NOT NULL DEFAULT '' COMMENT '类型',
`title` varchar(50) NOT NULL DEFAULT '' COMMENT '标题',
`keywords` varchar(255) NOT NULL DEFAULT '' COMMENT '关键字',
`description` varchar(255) NOT NULL DEFAULT '' COMMENT '描述',
`flag` set('hot','index','recommend') NOT NULL DEFAULT '' COMMENT '标志',
`image` varchar(255) NOT NULL DEFAULT '' COMMENT '头像',
`content` text COMMENT '内容',
`icon` varchar(50) NOT NULL DEFAULT '' COMMENT '图标',
`views` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '点击',
`comments` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '评论',
`diyname` varchar(50) NOT NULL DEFAULT '' COMMENT '自定义',
`showtpl` varchar(50) NOT NULL DEFAULT '' COMMENT '视图模板',
`createtime` int(10) DEFAULT NULL COMMENT '创建时间',
`updatetime` int(10) DEFAULT NULL COMMENT '更新时间',
`weigh` int(10) NOT NULL DEFAULT '0' COMMENT '权重',
`status` varchar(30) NOT NULL DEFAULT '' COMMENT '状态',
PRIMARY KEY (`id`),
KEY `type` (`type`)
) ENGINE=InnoDB AUTO_INCREMENT=29 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='单页表';
-- ----------------------------
-- Records of fa_cms_page
-- ----------------------------
INSERT INTO `fa_cms_page` VALUES ('28', '0', 'page', '基于ThinkPHP5和Bootstrap的极速后台开发框架', '', '', '', 'fds', '<p>基于ThinkPHP5和Bootstrap进行二次开发,手机、平板、PC均自动适配,无需要担心兼容性问题</p>', '', '0', '0', 'aboutus', 'page', '1508933935', '1508934150', '28', 'normal');
-- ----------------------------
-- Table structure for fa_cms_tags
-- ----------------------------
DROP TABLE IF EXISTS `fa_cms_tags`;
CREATE TABLE `fa_cms_tags` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(50) NOT NULL DEFAULT '' COMMENT '标签名称',
`archives` text COMMENT '文档ID集合',
`nums` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`) USING BTREE,
KEY `nums` (`nums`)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8 COMMENT='标签表';
-- ----------------------------
-- Records of fa_cms_tags
-- ----------------------------
INSERT INTO `fa_cms_tags` VALUES ('1', '驰为', '1', '1');
INSERT INTO `fa_cms_tags` VALUES ('2', 'HiGame', '1', '1');
INSERT INTO `fa_cms_tags` VALUES ('3', 'PC', '1', '1');
INSERT INTO `fa_cms_tags` VALUES ('4', '宏基', '2', '1');
INSERT INTO `fa_cms_tags` VALUES ('5', '台式机', '2', '1');
INSERT INTO `fa_cms_tags` VALUES ('6', 'Chromebox', '2', '1');
INSERT INTO `fa_cms_tags` VALUES ('7', '智能手表', '3', '1');
INSERT INTO `fa_cms_tags` VALUES ('8', '混合动力', '3', '1');
INSERT INTO `fa_cms_tags` VALUES ('9', '耳返', '4', '1');
INSERT INTO `fa_cms_tags` VALUES ('10', '智能设备', '4,6,7,13,35', '5');
INSERT INTO `fa_cms_tags` VALUES ('11', '电池', '5', '1');
INSERT INTO `fa_cms_tags` VALUES ('12', '南孚', '5', '1');
INSERT INTO `fa_cms_tags` VALUES ('13', '眼镜', '7', '1');
INSERT INTO `fa_cms_tags` VALUES ('14', 'dropbox', '8,9,10', '3');
INSERT INTO `fa_cms_tags` VALUES ('15', '投资', '8,9', '2');
INSERT INTO `fa_cms_tags` VALUES ('16', '互联网', '11,15,16,18,19,20,21,22,23,24,25,26,27,28,29,32,31,33,34', '19');
INSERT INTO `fa_cms_tags` VALUES ('17', '云计算', '11,12,17', '3');
INSERT INTO `fa_cms_tags` VALUES ('18', '安全', '12,14,15,16,17,18,26,27,33', '9');
INSERT INTO `fa_cms_tags` VALUES ('19', 'Google', '19,20,21,22,23,24,25,32,31', '9');
INSERT INTO `fa_cms_tags` VALUES ('20', 'AR', '28,29,34,35', '4');
INSERT INTO `fa_cms_tags` VALUES ('21', 'VR', '28', '1');
-- ----------------------------
-- Table structure for fa_command
-- ----------------------------
DROP TABLE IF EXISTS `fa_command`;
CREATE TABLE `fa_command` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
`type` varchar(30) NOT NULL DEFAULT '' COMMENT '类型',
`params` varchar(1500) NOT NULL DEFAULT '' COMMENT '参数',
`command` varchar(1500) NOT NULL DEFAULT '' COMMENT '命令',
`content` text COMMENT '返回结果',
`executetime` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '执行时间',
`createtime` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '创建时间',
`updatetime` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '更新时间',
`status` enum('successed','failured') NOT NULL DEFAULT 'failured' COMMENT '状态',
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='在线命令表';
-- ----------------------------
-- Records of fa_command
-- ----------------------------
INSERT INTO `fa_command` VALUES ('2', 'menu', '[\"--controller=News\"]', 'php think menu --controller=News', 'Build Successed!', '1553073768', '1553073768', '1553073768', 'successed');
INSERT INTO `fa_command` VALUES ('7', 'crud', '[\"--force=1\",\"--table=fa_news\"]', 'php think crud --force=1 --table=fa_news', 'Build Successed', '1553074283', '1553074283', '1553074283', 'successed');
INSERT INTO `fa_command` VALUES ('8', 'crud', '[\"--table=fa_custom\"]', 'php think crud --table=fa_custom', 'Build Successed', '1555661397', '1555661397', '1555661398', 'successed');
INSERT INTO `fa_command` VALUES ('9', 'crud', '[\"--table=fa_custom\",\"--fields=id,title,url,image\"]', 'php think crud --table=fa_custom --fields=id,title,url,image', 'Build Successed', '1555662634', '1555662634', '1555662634', 'successed');
-- ----------------------------
-- Table structure for fa_config
-- ----------------------------
DROP TABLE IF EXISTS `fa_config`;
CREATE TABLE `fa_config` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(30) NOT NULL DEFAULT '' COMMENT '变量名',
`group` varchar(30) NOT NULL DEFAULT '' COMMENT '分组',
`title` varchar(100) NOT NULL DEFAULT '' COMMENT '变量标题',
`tip` varchar(100) NOT NULL DEFAULT '' COMMENT '变量描述',
`type` varchar(30) NOT NULL DEFAULT '' COMMENT '类型:string,text,int,bool,array,datetime,date,file',
`value` text NOT NULL COMMENT '变量值',
`content` text NOT NULL COMMENT '变量字典数据',
`rule` varchar(100) NOT NULL DEFAULT '' COMMENT '验证规则',
`extend` varchar(255) NOT NULL DEFAULT '' COMMENT '扩展属性',
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='系统配置';
-- ----------------------------
-- Records of fa_config
-- ----------------------------
INSERT INTO `fa_config` VALUES ('1', 'name', 'basic', 'Site name', '请填写SEO名称', 'string', '九州纵横', '', 'required', '');
INSERT INTO `fa_config` VALUES ('2', 'beian', 'basic', 'Beian', '粤ICP备15054802号-4', 'string', '', '', '', '');
INSERT INTO `fa_config` VALUES ('3', 'cdnurl', 'basic', 'Cdn url', '如果静态资源使用第三方云储存请配置该值', 'string', '', '', '', '');
INSERT INTO `fa_config` VALUES ('4', 'version', 'basic', 'Version', '如果静态资源有变动请重新配置该值', 'string', '1.0.1', '', 'required', '');
INSERT INTO `fa_config` VALUES ('5', 'timezone', 'basic', 'Timezone', '', 'string', 'Asia/Shanghai', '', 'required', '');
INSERT INTO `fa_config` VALUES ('6', 'forbiddenip', 'basic', 'Forbidden ip', '一行一条记录', 'text', '', '', '', '');
INSERT INTO `fa_config` VALUES ('7', 'languages', 'basic', 'Languages', '', 'array', '{\"backend\":\"zh-cn\",\"frontend\":\"zh-cn\"}', '', 'required', '');
INSERT INTO `fa_config` VALUES ('8', 'fixedpage', 'basic', 'Fixed page', '请尽量输入左侧菜单栏存在的链接', 'string', 'dashboard', '', 'required', '');
INSERT INTO `fa_config` VALUES ('9', 'categorytype', 'dictionary', 'Category type', '', 'array', '{\"default\":\"Default\",\"page\":\"Page\",\"article\":\"Article\",\"test\":\"Test\"}', '', '', '');
INSERT INTO `fa_config` VALUES ('10', 'configgroup', 'dictionary', 'Config group', '', 'array', '{\"basic\":\"Basic\",\"email\":\"Email\",\"dictionary\":\"Dictionary\",\"user\":\"User\",\"example\":\"Example\"}', '', '', '');
INSERT INTO `fa_config` VALUES ('11', 'mail_type', 'email', 'Mail type', '选择邮件发送方式', 'select', '1', '[\"Please select\",\"SMTP\",\"Mail\"]', '', '');
INSERT INTO `fa_config` VALUES ('12', 'mail_smtp_host', 'email', 'Mail smtp host', '错误的配置发送邮件会导致服务器超时', 'string', 'smtp.qq.com', '', '', '');
INSERT INTO `fa_config` VALUES ('13', 'mail_smtp_port', 'email', 'Mail smtp port', '(不加密默认25,SSL默认465,TLS默认587)', 'string', '465', '', '', '');
INSERT INTO `fa_config` VALUES ('14', 'mail_smtp_user', 'email', 'Mail smtp user', '(填写完整用户名)', 'string', '10000', '', '', '');
INSERT INTO `fa_config` VALUES ('15', 'mail_smtp_pass', 'email', 'Mail smtp password', '(填写您的密码)', 'string', 'password', '', '', '');
INSERT INTO `fa_config` VALUES ('16', 'mail_verify_type', 'email', 'Mail vertify type', '(SMTP验证方式[推荐SSL])', 'select', '2', '[\"None\",\"TLS\",\"SSL\"]', '', '');
INSERT INTO `fa_config` VALUES ('17', 'mail_from', 'email', 'Mail from', '', 'string', '10000@qq.com', '', '', '');
INSERT INTO `fa_config` VALUES ('18', 'keys', 'basic', 'Site keys', '请填写SEO关键字', 'string', '关键字|关键字', '', '', '');
INSERT INTO `fa_config` VALUES ('19', 'description', 'basic', 'Site description', '请填写SEO描述', 'text', '描述描述11', '', '', '');
-- ----------------------------
-- Table structure for fa_custom
-- ----------------------------
DROP TABLE IF EXISTS `fa_custom`;
CREATE TABLE `fa_custom` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键id',
`title` varchar(30) NOT NULL DEFAULT '' COMMENT '合作客户标题',
`url` varchar(100) NOT NULL DEFAULT '' COMMENT '链接',
`image` varchar(100) NOT NULL DEFAULT '' COMMENT '合作客户图片',
`description` varchar(200) NOT NULL DEFAULT '' COMMENT '描述',
`createtime` int(10) unsigned NOT NULL COMMENT '创建时间',
`updatetime` int(10) unsigned NOT NULL COMMENT '更新时间',
`deletetime` int(10) unsigned NOT NULL COMMENT '删除时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COMMENT='合作客户表';
-- ----------------------------
-- Records of fa_custom
-- ----------------------------
INSERT INTO `fa_custom` VALUES ('5', '客户4', 'https://www.baidu.com', '/uploads/20190422/820b01717356656d848f8ed015ff8214.png', '客户4描述', '1555664774', '0', '0');
INSERT INTO `fa_custom` VALUES ('6', '客户5', 'https://www.baidu.com', '/uploads/20190419/eb547f4d119cd97b2b0cf2b4f9410bf7.png', '客户5描述', '1555668286', '0', '0');
INSERT INTO `fa_custom` VALUES ('7', '客户6', 'http://liepin.w.brotop.cn', '/uploads/20190419/eb547f4d119cd97b2b0cf2b4f9410bf7.png', '客户6描述', '1555671989', '0', '0');
INSERT INTO `fa_custom` VALUES ('8', '保利地产', 'http://www.chinacrossing.cn', '/uploads/20190421/e2260eb96dc74d4f4ea9b67324c8ad59.png', '九州纵横', '1555849352', '0', '0');
INSERT INTO `fa_custom` VALUES ('9', '客户1', 'https://www.baidu.com', '/uploads/20190422/820b01717356656d848f8ed015ff8214.png', '客户1描述', '1555902002', '0', '0');
-- ----------------------------
-- Table structure for fa_ems
-- ----------------------------
DROP TABLE IF EXISTS `fa_ems`;
CREATE TABLE `fa_ems` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
`event` varchar(30) NOT NULL DEFAULT '' COMMENT '事件',
`email` varchar(100) NOT NULL DEFAULT '' COMMENT '邮箱',
`code` varchar(10) NOT NULL DEFAULT '' COMMENT '验证码',
`times` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '验证次数',
`ip` varchar(30) NOT NULL DEFAULT '' COMMENT 'IP',
`createtime` int(10) unsigned DEFAULT '0' COMMENT '创建时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='邮箱验证码表';
-- ----------------------------
-- Records of fa_ems
-- ----------------------------
-- ----------------------------
-- Table structure for fa_news
-- ----------------------------
DROP TABLE IF EXISTS `fa_news`;
CREATE TABLE `fa_news` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(30) NOT NULL DEFAULT '',
`flag` enum('hot','index','recommend') NOT NULL DEFAULT 'index',
`image` varchar(100) NOT NULL DEFAULT '' COMMENT '图片',
`description` varchar(255) NOT NULL DEFAULT '' COMMENT '描述',
`createtime` int(10) DEFAULT NULL COMMENT '创建时间',
`weigh` int(10) NOT NULL DEFAULT '0' COMMENT '权重',
`content` text,
PRIMARY KEY (`id`),
KEY `weigh` (`weigh`,`id`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='新闻资讯表';
-- ----------------------------
-- Records of fa_news
-- ----------------------------
INSERT INTO `fa_news` VALUES ('12', '领导问你“有空吗”,你的回答决定你能走多远!', 'index', '/uploads/20190419/fd3311d1232d2fac59b020169cb1aac4.png', '前几天,在知乎上看到一个热门话题前几天,在知乎上看到一个热门话题前几天,在知乎上看到一个热门话题前几天,在知乎上看到一个热门话题前几天,在知乎上看到一个热门话题前几天,在知乎上看到一个热门话题前几天,在知乎上看到一个热门话题前几天,在知乎上看到一个热门话题前几天,在知乎上看到一个热门话题前几天,在知乎上看到一个热门话题前几天,在知乎上看到一个热门话题前几天,在知乎上看到一个热门话题前几天,在知乎上看到一个热门话题前几天,在知乎上看到一个热门话题', '1497015727', '13', '<p helvetica=\"\" sans=\"\" yahei=\"\" font-size:=\"\" letter-spacing:=\"\" margin:=\"\" padding:=\"\" max-width:=\"\" box-sizing:=\"\" clear:=\"\" min-height:=\"\" word-wrap:=\"\" break-word=\"\" style=\"margin-bottom: 5px; padding: 0px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 21px;\">前几天,在知乎上看到一个热门话题:在职场,你收到过最恐怖的消息是什么。有一个答案很有意思也引发了不少共鸣:</p><p helvetica=\"\" sans=\"\" yahei=\"\" font-size:=\"\" letter-spacing:=\"\" margin:=\"\" padding:=\"\" max-width:=\"\" box-sizing:=\"\" clear:=\"\" min-height:=\"\" word-wrap:=\"\" break-word=\"\" style=\"margin-bottom: 5px; padding: 0px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 21px;\"><br></p><p helvetica=\"\" sans=\"\" yahei=\"\" font-size:=\"\" letter-spacing:=\"\" margin:=\"\" padding:=\"\" max-width:=\"\" box-sizing:=\"\" clear:=\"\" min-height:=\"\" word-wrap:=\"\" break-word=\"\" style=\"margin-bottom: 5px; padding: 0px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 21px;\"><font color=\"#757575\"><span style=\"max-width: 100%; letter-spacing: 0.544px; line-height: 27px; text-align: justify; background-color: rgb(255, 255, 255); word-wrap: break-word !important;\">“我收到过最可怕的信息是,领导问你下班有空吗?”</span></font></p><p helvetica=\"\" sans=\"\" yahei=\"\" font-size:=\"\" letter-spacing:=\"\" margin:=\"\" padding:=\"\" max-width:=\"\" box-sizing:=\"\" clear:=\"\" min-height:=\"\" word-wrap:=\"\" break-word=\"\" style=\"margin-bottom: 5px; padding: 0px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 21px;\"><br></p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\">有人说,领导问你有空么,说明领导器重你,看到了你的价值,所以你职场的高潮要来了。还有人说,说明你要倒霉了,领导盯上了你,不是要让你加班,就是把你当保姆。</p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\"> <wbr></p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\">想起一个同事也跟我提过类似的事儿:她前东家的领导,最爱问她有空吗?当时她是职场小白,没想过这句话是职场深坑,你要是说有空,等你的就是各种乱七八糟的活儿,可你要说没空,领导肯定不高兴。</p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\"> <wbr></p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\">她的总结很到位,<span style=\"max-width: 100%;\">拒绝伤钱,不拒绝伤身</span>,职场果然不好混。</p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\"> <wbr></p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\">面对老板的要求,每个人的回复都不一样。有人找理由拒绝或者视而不见,有人把老板的话视为圣旨,但真正聪明的人都有一套属于自己的做法。</p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\"><br></p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\"> <wbr>01.<span style=\"word-break: normal; line-height: 21px; text-align: justify; margin: 0px; padding: 0px; max-width: 100%; word-wrap: break-word !important;\">及时回复,别不把老板当回事儿</span></p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\"> <wbr></p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\">收到请回复,已经是一种基本的职业素养,更何况是老板发来的。</p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\"> <wbr></p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\">可我发现,生活里,依然有很多人不习惯回复老板信息,问起原因,他们总喜欢提到一个理由:我没看见。</p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\"> <wbr></p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\">我们公司就有一个90后,每次老板问他“有空吗”,他都直接忽略,直到有一天老板专门把他叫到办公室,言辞恳切地探讨了一番工作态度问题。他还觉得理直气壮:“您发的时候,我没看见手机。等我看见了,觉得您可能已经找到别人了。”</p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\"> <wbr></p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\">老板听了虽然没理由怪你,可心里别扭是必然的。</p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\"> <wbr></p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\">曾经听过一句话,很扎心却很真实,你回复信息的速度就是你未来的工资涨幅。那些秒杀你的人,都能秒回信息。</p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\"> <wbr></p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\">这就是职场的残酷。你当然可以说,我没听见,但后果永远得你自己承受。</p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\"><br style=\"margin: 0px; padding: 0px; max-width: 100%; word-wrap: break-word !important;\"></p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\">我的前老板就经常对不回复信息的员工下狠手,还曾经一口气辞退过四五个。他有一句话说得很对,想不想做是态度,能不能做是实力,回复不回复是专业。态度不好,实力不够我都能忍,忍受不了的是不专业。</p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\"> <wbr></p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\">如今的职场,别说上班,下班回复信息都已经是标配,你当然可以说,我下班了别烦我。但聪明人绝不会晾着老板,你可以说,收到或者明天处理,杳无音讯是职场最大的禁忌。</p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\"> <wbr></p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\">千万别小看一条信息的价值,它背后藏着一个人的职场素养。及时回复,是一种尊重,更是一种责任。</p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\"> <wbr> <wbr> <wbr> <wbr><a href=\"http://album.sina.com.cn/pic/006mfo63zy7sUBoiJFD19\" target=\"_blank\"><img src=\"http://s10.sinaimg.cn/mw690/006mfo63zy7sUBoiJFD19&690\" real_src=\"http://s10.sinaimg.cn/mw690/006mfo63zy7sUBoiJFD19&690\" width=\"612\" height=\"314\" name=\"image_operate_7711554680922470\" alt=\"领导问你“有空吗”,你的回答决定你能走多远!\" title=\"领导问你“有空吗”,你的回答决定你能走多远!\" style=\"margin: 0px; padding: 0px; list-style: none;\"></a><br><br></p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\"> <wbr>02.<span style=\"word-break: normal; line-height: 21px; text-align: justify; margin: 0px; padding: 0px; max-width: 100%; word-wrap: break-word !important;\">老板的无理要求,别轻易拒绝</span></p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\"> <wbr></p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\">很多职场人都说,不要轻易答应老板的无理要求,有一就有二,千万不能惯着。</p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\"> <wbr></p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\">说实话,我不太同意,有时候,老板给你安排工作,比你看得更长远。工作上别挑三拣四,也别轻易说不,你未必会知道自己的拒绝,会让你失去什么东西。</p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\"> <wbr></p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\">前几年,我们公司就有一个90后,所有和她合作过的人都心累得要命,每次给她派活儿,都会听到一个答复:这个我做不了。这是实话,有些事情的确是做不了。无论是时间不够还是能力不够,但一句“做不到”就是让人很苦恼。</p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\"> <wbr></p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\">按照我们老板的话说,我聘你,就是做我做不了的事,你什么都做不了,我用你干什么。其实我理解他的意思,真正让他生气的,不是下属能不能做成,而是你愿不愿意多努力一把。</p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\"> <wbr></p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\">很多人觉得,老板喜欢无理取闹。但其实冷静下来,仔细想想,你就会发现,很有可能是你并没有竭尽全力。</p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\"> <wbr></p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\">宁向东教授的清华管理课中,讲过一个真实案例。</p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\"> <wbr></p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\">有一个老板,销售员出身,曾为攻下重要客户,整个月去客户公司蹲守,后来得知公司一位高层,家里老人住院又抽不开身全职伺候。于是,他想方设法打听出老人所住医院,装成志愿者去照顾老人。</p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\"> <wbr></p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\">每次高层来探病,老人不停口的夸这个志愿者比孙子还亲。后来,老人出院,高层拿钱给他,他说不要钱,只说他的老板想请这位高层吃饭。没想到,高层同意了,他的第一桶金就是这样求爷爷告奶奶赚来的。</p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\"> <wbr></p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\">在职场,找借口就等于秀愚蠢。你当然可以说,老板无理取闹,自己根本做不到。可这句话背后的代价很多人不知道。</p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\"> <wbr></p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\">用好牌获胜不是本事,一手烂牌能翻盘,才是一个人的核心竞争力。所以,别轻易对老板的要求下结论,这些无理要求可能就是你脱颖而出的机会。</p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\"><br></p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\"> <wbr> <wbr> <wbr> <wbr> <wbr> <wbr><a href=\"http://album.sina.com.cn/pic/006mfo63zy7sUBrlZIf13\" target=\"_blank\"><img src=\"http://s4.sinaimg.cn/mw690/006mfo63zy7sUBrlZIf13&690\" real_src=\"http://s4.sinaimg.cn/mw690/006mfo63zy7sUBrlZIf13&690\" width=\"545\" height=\"266\" name=\"image_operate_87501554680978945\" alt=\"领导问你“有空吗”,你的回答决定你能走多远!\" title=\"领导问你“有空吗”,你的回答决定你能走多远!\" style=\"margin: 0px; padding: 0px; list-style: none;\"></a> <wbr> <wbr> <wbr><br></p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\"> <wbr>03.<span style=\"word-break: normal; line-height: 21px; text-align: justify; margin: 0px; padding: 0px; max-width: 100%; word-wrap: break-word !important;\">当老板越界,拒绝要有技巧</span></p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\"> <wbr></p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\">我表弟曾在咨询公司工作过,他的老板经常让他下班帮着接孩子,三更半夜让他去接机,哪怕是休息日,老板总喜欢叫他去帮忙。他本身工作就很忙,这样7*24小时给老板卖命,结果,睡眠不足,20岁出头的小伙子看上去像老头。</p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\"> <wbr></p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\">他经常苦恼地问我,怎么能优雅地拒绝老板。</p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\"> <wbr></p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\">我一直相信,对老板一定不能有求必应。但怼老板的时候,也不能硬碰硬。</p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\"><br></p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 21px; text-align: justify;\">《通往出色之路》的作者肖恩·贝尔丁给了两个建议,我觉得很有意思,他说,</span><span style=\"letter-spacing: 0.544px; text-align: justify; max-width: 100%;\">当你拒绝别人的时候,不要简单粗暴地说,对不起我做不了。而是要给自己的回复中给出备选方案。</span></p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\"> <wbr></p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\"><span style=\"max-width: 100%;\">比如:</span>我不能做这个,但是这些是我能做的,或者,我希望我能帮你,要不我们换个时间试试。</p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\"> <wbr></p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\">这种方法能让你和同事、老板建立更融洽的关系。因为当你给别人提供备选方案而不是直接拒绝的时候,别人才不会觉得你虽然无能为力,却是真心想帮忙。人与人之间的互动,态度很重要。</p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\"> <wbr></p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\">这个策略我自己也用过。</p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 21px;\"> <wbr></span></p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\">每次老板交给我难以实现的任务时,我都会跟他提条件,按时完成可以,我需要多一些人手。这件事我做不了,不过我可以给你推荐一个更好的人。</p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\"> <wbr></p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\">优雅拒绝老板是一门艺术,但你掌握技巧就不会是让你头痛的事。</p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\"> <wbr></p><p style=\"margin-bottom: 0px; padding: 0px; border: 0px; list-style: none; word-break: normal; line-height: 21px; max-width: 100%; clear: both; min-height: 1em; word-wrap: break-word !important;\">职场如战场,每天都是和老板斗智斗勇,既要有好心态,也要有策略。不要错过晋升的机会,也不要白白做了苦力。</p>');
INSERT INTO `fa_news` VALUES ('14', '别让“垃圾快乐”毁了你的生活', 'recommend', '/uploads/20190419/5809c4e7ee9d0372a0521ffcc3785f7e.png', '长期沉迷于垃圾快乐中,不仅伤害身体健康,还消磨意志力,还会让一个人走上人生的下坡路。', '1555679898', '14', '<p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">很多人都有过这样的时刻。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">本想刷一会手机,就去睡觉或者读书。结果手指一动,滑开手机,就再也停不下来。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">看看朋友圈的消息,看看微博上的热搜,玩玩小游戏,刷刷短视频。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">结果转眼不知不觉中,时间已经过去大半,懊悔、心痛瞬间涌上心头,可再追悔,也已于事无补。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">其实刷手机、电子游戏、打麻将等等带来的都是“垃圾快乐”。它虽然短暂地带来了快感,但是极易让人丧失自控力,而沉迷其中。</p><ul style=\"border: 0px; margin: 0.63em 0px 1.8em; padding: 0px; font-size: 16px; list-style: none; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\"><li style=\"border: 0px; margin: 0px; padding: 0px 0px 0px 1.5em; list-style-type: none;\"><span style=\"font-weight: 700; border: 0px; margin: 0px; padding: 0px;\">长期沉迷于垃圾快乐中,不仅伤害身体健康,还消磨意志力,还会让一个人走上人生的下坡路。</span></li></ul><p class=\"ql-align-justify\" style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; text-align: justify; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\"><span style=\"font-weight: 700; border: 0px; margin: 0px; padding: 0px;\">01 “垃圾快乐”容易让人上瘾</span></p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">所谓的垃圾快乐,就是能带来短暂的精神快感。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">比如搞笑的短视频、好玩的综艺、肥皂剧,看着非常过瘾,让人不禁沉浸于“哈哈大笑”的喜欢。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">说到“垃圾快乐”,不得不提提我的同事小k。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">小k以前的生活是,下班后的时间,就约上几个好朋友吃个饭,看个电影,每天晚上睡前看一会书,基本上两三天就能看完一本书。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">早上刚来闲聊那会,她喜欢和我们分享她昨天看的书,侃侃而谈昨日又看到让她颇有感受的观点,眼神都是在发着光。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">但近期,小k渐渐变得有些不一样。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">不再和大家分享看到的好书好电影。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">上班经常迟到,赶到办公室的时候满头大汗,气喘吁吁,整个人已经没有了以前的好气色和精力。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">取而代之的是,眼睛下挥之不去的乌青,散乱的头发,昏昏欲睡的状态。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">小k最近迷恋上一款小游戏,原本只想玩玩打发时间,却没想到开始了就停不下来。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">玩到通宵,第二天睡得起不来,迟到了大半天……午休时间,吃饭的等餐时间,都在玩,甚至为这个游戏充了不少钱买了一堆没什么用的皮肤。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">我们劝过小k,别太沉迷于游戏中,她总是笑笑不以为然地说:“生活这么苦,总要找点乐子,缓解下压力。”</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">直到昨天,小k又一次迟到,连续的迟到让主管气到扣了她这个季度的奖金。她才意识到,自己的生活已经被这所谓的“乐子”搞得一团糟。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">之前看到过一篇文章,说到:<span style=\"font-weight: 700; border: 0px; margin: 0px; padding: 0px;\">垃圾快乐成瘾,比毒品成瘾更可怕。</span></p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">毒品成瘾,每个人都知道是件必须拒绝和远离的事。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">而垃圾快乐,一旦尝到了甜头,就会忍不住地想要更多,让你的意志迷失,忽略到本来应该做的事情。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">它默不作声地,让你慢慢成瘾,一层“快乐”的糖衣之下,也许会有刹那甜蜜的错觉,但久而久之,你就会尝到它带来的苦。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\"><img src=\"http://5b0988e595225.cdn.sohucs.com/images/20190413/11c324fad2e0401b8f0e114e32b93fd4.png\" max-width=\"600\" style=\"margin: 10px auto 0px; padding: 0px; display: block; max-width: 100%; height: auto;\"></p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">图片来源/图虫创意</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\"><span style=\"font-weight: 700; border: 0px; margin: 0px; padding: 0px;\">02 走得太舒服的路,都是下坡路</span></p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">为什么人会沉浸于“垃圾快乐”中呢?</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">心理学的角度上,有这样的说法:反馈越短的时间越容易获得快感。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">你玩一会游戏,马上就能获得爽感,看一个搞笑短视频,马上就能哈哈大笑。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">情绪带来的快感,让人忍不住上瘾,这么舒服的事情,谁愿意舍弃呢?</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">反之,对于那些反馈模式比较长,获取快感的时间比较慢的事情,我们通常会觉得厌烦,难以坚持。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">比如,想要收获好身材,必须克服高热量美食的诱惑,再加之一次次挥汗如雨的运动。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">学习读书亦是。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">一两个小时的学习并不会让人直接成为学识渊博的人,它是通过日复一日的积累,在不知不觉中沉淀在看不见的气质、谈吐之中。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">罗马不是一天建成的,那些我们所追求的美好,亦不是唾手可得。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">我一直相信,走得太舒服的路,都是下坡路。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">所谓的自由,不是想要什么就要什么,自由就像卢梭所说的:“无往不在枷锁中。”</p><ul style=\"border: 0px; margin: 0.63em 0px 1.8em; padding: 0px; font-size: 16px; list-style: none; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\"><li style=\"border: 0px; margin: 0px; padding: 0px 0px 0px 1.5em; list-style-type: none;\"><span style=\"font-weight: 700; border: 0px; margin: 0px; padding: 0px;\">你想要得到什么,就要付出什么。</span></li></ul><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">你所热爱的东西,所沉沦的快乐,最终有可能会毁掉你自己。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">“生于忧患,死于安乐”,在充满挑战,困难的环境下,才能让人变得更加强大。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\"><img src=\"http://5b0988e595225.cdn.sohucs.com/images/20190413/cfefc100533640ccbb594d9213ade1da.png\" max-width=\"600\" style=\"margin: 10px auto 0px; padding: 0px; display: block; max-width: 100%; height: auto;\"></p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">图片来源/图虫创意</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\"><span style=\"font-weight: 700; border: 0px; margin: 0px; padding: 0px;\">03 每天做两件不喜欢的事</span></p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">毛姆说过这样一句话:</p><blockquote style=\"border-width: 0px 0px 0px 4px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: rgb(204, 204, 204); border-image: initial; margin-top: 0.63em; margin-bottom: 0px; padding: 0px 0px 0px 16px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">“为了使灵魂宁静,一个人每天要做两件不喜欢的事。”</blockquote><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">想要变得更加自律,在人生路上,走得更长更远,你就必须一次次地去突破自己。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">在之前《声临其境》的节目中,韩雪的表现让我印象很深刻。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">年到35岁的她,保持着良好的身材,一身“仙气”,宛若少女般,更可贵的是她说得一口流利的英语,配的音亦是媲美专业水平。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">韩雪的自律在圈内是出了名的。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">据说有次收了工,何炅约她一同吃饭,韩雪一口回绝:“何老师,我要回家写作业。”</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">何老师心下一惊,他也是第一次遇到这样的推脱理由。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">而韩雪的的确确是回家写作业的。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">她每天“七点半起床,三分钟洗漱,五分钟上妆;一天只吃两顿饭,晚上六点半以后不吃东西;睡前一小时充电时间……”</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">这样的作息习惯,需要与美食、惰性对抗,很多人坚持几天大概就崩溃了,韩雪却坚持了十几年。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">不仅如此,她每天还会花2-4小时学习英语。手机里1000分钟的手机通话时间,有900分钟是打给英语老师的。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">在片场,拍戏休息的间隙,其他演员多半会玩手机打发时间,韩雪却是捧着电子书在安静地品读。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">学英语、保持十几年如一日的自律,都不是简单的事情。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">但当它一旦成为习惯,就变成了让人满足和快乐的事情。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">当你体会到知识浸入灵魂,充实的喜悦,就不再会沉迷于那些无益的垃圾快乐中了。</p><ul style=\"border: 0px; margin: 0.63em 0px 1.8em; padding: 0px; font-size: 16px; list-style: none; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\"><li style=\"border: 0px; margin: 0px; padding: 0px 0px 0px 1.5em; list-style-type: none;\"><span style=\"font-weight: 700; border: 0px; margin: 0px; padding: 0px;\">学会去做自己不喜欢的事,去感受那些可能并不“轻松”的事情,并坚持。</span></li></ul><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">你会发现,原来真正的快乐,不是简简单单的哈哈大笑的快感。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">真正的快乐,是你翻过一座座高山,气喘吁吁过,汗流浃背过,最后,灵魂和精神被知识和精力填满,它带来充实感和满足感,也沉淀于你的气质里。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\"><img src=\"http://5b0988e595225.cdn.sohucs.com/images/20190413/2e420c40f72c4006b9d39fa9ab21c6b2.png\" max-width=\"600\" style=\"margin: 10px auto 0px; padding: 0px; display: block; max-width: 100%; height: auto;\"></p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">图片来源/图虫创意</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\"><span style=\"font-weight: 700; border: 0px; margin: 0px; padding: 0px;\">04 二十岁的生活方式,决定你三十岁的打开方式</span></p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">不可否认,生活有时候很苦,我们需要一些简单的快乐来治愈。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">偶尔看个轻松搞笑的视频,刷刷情节过瘾、不用动脑的电视剧,这都没什么问题。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">但切忌成瘾,切忌在上面浪费大把大把的时间。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">有的人的快乐,来自于读书、旅行、健身,一步步充实自己,提升灵魂。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">有的人的快乐,是来自于躺在床上不动,吃吃炸鸡喝喝奶茶,看看手机,刷刷搞笑短视频。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">你的时间花在哪,你就会成为什么样的人。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">种什么样的因,就有什么样的果。</p><ul style=\"border: 0px; margin: 0.63em 0px 1.8em; padding: 0px; font-size: 16px; list-style: none; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\"><li style=\"border: 0px; margin: 0px; padding: 0px 0px 0px 1.5em; list-style-type: none;\"><span style=\"font-weight: 700; border: 0px; margin: 0px; padding: 0px;\">拉开人和人之间的差距,是在闲暇时间的利用上。</span></li></ul><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">也许,沉迷一小时游戏、手机和看一小时的书,二者给人带来的变化相差并不大。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">但是一个月、一年、甚至十年以后呢?</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">你给岁月什么,岁月自然就会回馈你什么。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">二十岁的生活方式,决定你三十岁的打开方式,三十岁的生活方式,同样也决定你四十岁的打开方式……</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">所以,<span style=\"font-weight: 700; border: 0px; margin: 0px; padding: 0px;\">千万别仅仅只是满足昙花一现的快乐,别让“垃圾快乐”毁了你的生活。</span></p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">好好读书、好好健身、认真护肤……多选择一些有价值意义的事情。</p><p style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">当有一天回首过去时,对生命不辜负,对自己不遗憾。</p><p class=\"ql-align-justify\" style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; font-size: 16px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; text-align: justify; color: rgb(25, 25, 25); font-family: \"PingFang SC\", Arial, 微软雅黑, 宋体, simsun, sans-serif;\">文章作者:橘子味也</p>');
INSERT INTO `fa_news` VALUES ('15', '九州纵横:开会发言排最后,4种方法让你纵横职场!', 'hot', '/uploads/20190421/2cbbf39f1a0770d1ccf2acc67d8f06ec.png', '公司开会注定不是领导一个人的事,要发言要附和。世界上最悲催的事莫过于开会发言顺序排在最后,待到发言时,慕然发现自己准备的话题都被前面的同事讲完了!九州纵横总经理冯雷就曾多次遇到这种囧事,后来他总结了如下套路,顺利过关。', '1555811239', '15', '<p style=\"margin-top: 0.14rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\">公司开会注定不是领导一个人的事,要发言要附和。世界上最悲催的事莫过于开会发言顺序排在最后,待到发言时,慕然发现自己准备的话题都被前面的同事讲完了!九州纵横总经理冯雷就曾多次遇到这种囧事,后来他总结了如下套路,顺利过关。</span></p><p style=\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px 0px 0px 0.11rem; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; position: relative; font-weight: 700;\">绝招一:总结+补充+推广</span></p><p style=\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; font-weight: 700; color: rgb(51, 51, 51);\">话术模型:</span></span></p><p style=\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\">“关于XXX问题,我刚才听了一下大家的发言,发现我要说的和XXX都差不多,重复的话我都不说了,我就在他的基础上补充(或者延伸)一点…另外我还有个想法,这个方案能不能推广到XXX。”</span></p><p style=\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"> <wbr></p><p style=\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; font-weight: 700; color: rgb(51, 51, 51);\">模拟案例:</span></span></p><p style=\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\">“关于请九州纵横的冯雷老师给我们公司设计股权激励方案这件事,我刚才听了大家的发言,发现我的观点和张总,王总说的都差不多,重复的话我就不说了,我就在两位领导的基础上延伸一点我的个人看法,针对具体问题有针对性的进行解决并且能在解决问题的过程中系统的学习解决问题的方式方法,对于我们公司人员的整体素质提升帮助很大,正好和咱们公司的人才发展计划结合到一起。另外我还有个想法不知道妥不妥,这种一边解决问题一边学习的咨询式培训方式能不能推广到业务部门,加速业务人员的成熟度。”</span></p><p style=\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"> <wbr></p><p style=\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; font-weight: 700; color: rgb(51, 51, 51);\">案例点评:</span></span></p><p style=\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\">(1) 使用“总结”或是“延伸”一词要根据具体情况进行使用。案例中发言人的职级比张总和王总低,使用“延伸”意在得到了领导启发,避免下级总结上级发言的尴尬。</span></p><p style=\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\">(2) 发言顺序排到最后,补充或者延伸论点时就要越聚焦越好,越接地气越好,越从自己的本职工作出发越好,这样才容易找到话题。如果实在找不到话题,就直接上“推广”。<span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; font-weight: 700; color: rgb(51, 51, 51);\">如</span>:<span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; font-weight: 700; color: rgb(51, 51, 51);\">“关于请九州纵横的冯雷老师给我们公司设计股权激励方案这件事,我刚才听了大家的发言,发现我的观点和张总,王总说的都差不多,重复的话我就不说了,但是我有个建议不知道妥不妥,这种一边解决问难题一边学习的咨询式培训能不能推广到业务部门,加速业务人员的成熟度。</span>”</span></p><p style=\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); font-family: \"Microsoft YaHei\", \"Helvetica Neue\", SimSun; font-size: 14px; outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; text-align: justify;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; font-family: Arial, Helvetica, sans-serif; font-size: 0.19rem; letter-spacing: 0.2px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\">(3) 这套话束最牛B的地方在最后的“推广”环节。说出这部分内容可以显得高瞻远瞩有木有?而且可以推广的内容简直是无穷无尽,方法可以推广,技术可以推广,会议精神可以推广,文件可以推广,有形无形的都能推广。而且被推广的对象也很多,可以在某个部门推广,可以在部分部门推广,可以在全公司推广,还可以在公司外部进行推广。</span><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; font-family: Arial, Helvetica, sans-serif; font-size: 0.19rem; letter-spacing: 0.2px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\"><br></span><span style=\"word-wrap: normal; word-break: normal; line-height: 21px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\"><a href=\"http://album.sina.com.cn/pic/006mfo63zy7sX5EPQ295d\" target=\"_blank\" style=\"color: rgb(62, 115, 160);\"><img src=\"http://s14.sinaimg.cn/mw690/006mfo63zy7sX5EPQ295d&690\" real_src=\"http://s14.sinaimg.cn/mw690/006mfo63zy7sX5EPQ295d&690\" width=\"612\" height=\"270\" name=\"image_operate_58761554815849509\" alt=\"九州纵横:开会发言排最后,4种方法让你有话可说!\" title=\"九州纵横:开会发言排最后,4种方法让你有话可说!\" style=\"margin: 0px; padding: 0px; list-style: none;\"></a><br></span></p><div style=\"color: rgb(70, 70, 70); font-family: \"Microsoft YaHei\", \"Helvetica Neue\", SimSun; font-size: 14px; background-color: rgb(188, 211, 229); text-align: center;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 21px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; font-size: 12px; letter-spacing: 0.2px;\"><br></span></span></div><p style=\"margin-top: 0.14rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"> <wbr></p><p style=\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px 0px 0px 0.11rem; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; position: relative; font-weight: 700;\">绝招二:总结+站队+行动+推广</span></p><p style=\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"> <wbr></p><p style=\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; font-weight: 700; color: rgb(51, 51, 51);\">话术模型:</span></span></p><p style=\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\">“关于XXX问题,刚才各位同事的发言都特别的精彩,让我深受启发,受益匪浅,总结一下我简单总结一下:第一,刘总的建议非常好,我觉得XXX。第二,张总的意见我认为很有道理,会后我会XXX”。</span></p><p style=\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"> <wbr></p><p style=\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; font-weight: 700; color: rgb(51, 51, 51);\">模拟案例:</span></span></p><p style=\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\">“刚才同事们针对如何推进我们公司股权激励制度建设的发言都特别精彩,让我深受启发,受益匪浅。我的总结主要有两点:第一、刘总提出的先从A部门进行试点的建议非常好,我觉得刘总是站在经营企业的角度看待的这个问题,在部门试点股权激励不但可以总结适合我们自己公司的成功经验,便于进一步复制,即使出现风险也可以得到有效控制。第二、张总提出的再次和冯雷老师进行进一步沟通的意见我认为很有道理,这样可以将我们公司的具体情况告知冯雷老师,让他能够更加详细的知晓我司做股权激励的目的和难点等信息,又可以进一步考量冯雷老师对股权激励的理解。会后我会尽快安排和冯老师再做一次深入沟通,并调研一下看哪个部门对股权激励比较感兴趣,方便我们进一步开展工作。”</span></p><p style=\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"> <wbr></p><p style=\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; font-weight: 700; color: rgb(51, 51, 51);\">案例点评:</span></span></p><p style=\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\">(1)会议中会出现两种甚至更多的声音,主要是因为发言者看待问题的角度不同造成的。此时最简单的套路就是表明自己的立场。</span></p><p style=\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\">(2)表明立场不能简单说赞同XX的意见就结束,这样就low到家了。所以,不但要表明立场,还要给出表明立场的理由。</span></p><p style=\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\">(3)<span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; font-weight: 700; color: rgb(51, 51, 51);\">“行动”和“推广”是关键</span>。在表明立场后,再陈述一下,我未来会采取的下一步行动,这个行动最好基于自己部门或者自己的本职工作产生,所以不会和别人重复,还会向所有参会者展示你已经针对某个问题想好了行动方案和策略。如果机会合适在提出推广建议,那就是再好不过了。</span><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\"><br></span><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\"><a href=\"http://album.sina.com.cn/pic/006mfo63zy7sX5HIZtUa2\" target=\"_blank\" style=\"color: rgb(62, 115, 160);\"><img src=\"http://s3.sinaimg.cn/mw690/006mfo63zy7sX5HIZtUa2&690\" real_src=\"http://s3.sinaimg.cn/mw690/006mfo63zy7sX5HIZtUa2&690\" width=\"608\" height=\"282\" name=\"image_operate_30741554815874028\" alt=\"九州纵横:开会发言排最后,4种方法让你有话可说!\" title=\"九州纵横:开会发言排最后,4种方法让你有话可说!\" style=\"margin: 0px; padding: 0px; list-style: none;\"></a><br><br></span></p><p style=\"margin-top: 0.14rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"> <wbr></p><p style=\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px 0px 0px 0.11rem; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; position: relative; font-weight: 700;\">绝招三:总结+收获+行动+推广</span></p><p style=\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"> <wbr></p><p style=\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; font-weight: 700; color: rgb(51, 51, 51);\">话术模型:</span></span></p><p style=\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\">“关于XXX问题,刚才各位同事的发言都特别的精彩,让我深受启发,受益匪浅,从大家的发言中我有如下收获:第一,我学到了XXX。第二,我学到了XXX,接下来我会XXX”。</span></p><p style=\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"> <wbr></p><p style=\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; font-weight: 700; color: rgb(51, 51, 51);\">模拟案例:</span></span></p><p style=\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\">“刚才同事们针对如何推进我们公司股权激励制度建设的发言都特别精彩,让我深受启发,受益匪浅。从大家的发言中我学到了很多东西,做个简单的总结。第一,张总提到股权激励可以解决企业的实际管理问题,比如可以解放人性,留住后备力量等,让我对股权激励的作用有了新的认识。第二,王总提到华为股权激励的案例,让我认识到了华为成功的本质,不是床垫文化,而是为什么华为的员工愿意接受床垫文化、第三。冯雷老师提到,企业导入股权激励不是一份合同就能解决,因为每个企业不同,要解决的问题也各不相同,需要明确我们企业做股权激励的本质目的到底是什么,才能根据目的采用相应的方法,让我体会到以前看到过的一句话叫做:目的决定方法的含义。会后,我会搜集关于股权激励相关书籍和资料,如有条件允许我会去听一些相关的课程,尽快的将自己在这方面的不足补上,为咱们公司推荐股权激励贡献点力量,实在不行不拖后腿也行啊!”</span></p><p style=\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"> <wbr></p><p style=\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; font-weight: 700; color: rgb(51, 51, 51);\">案例点评:</span></span></p><p style=\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\">(1)此方法不宜常用,偶尔使用效果不俗。长期使用则会主动暴露自己的不足之处。</span></p><p style=\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\">(2)这是一个取巧的做法,因为谁也不会怪一个在会上赞美别人,虚心承认且努力上进不足的人。</span><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\"><br></span><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\"><a href=\"http://album.sina.com.cn/pic/006mfo63zy7sX5Kpua21e\" target=\"_blank\" style=\"color: rgb(62, 115, 160);\"><img src=\"http://s15.sinaimg.cn/mw690/006mfo63zy7sX5Kpua21e&690\" real_src=\"http://s15.sinaimg.cn/mw690/006mfo63zy7sX5Kpua21e&690\" width=\"591\" height=\"292\" name=\"image_operate_14091554815991325\" alt=\"九州纵横:开会发言排最后,4种方法让你有话可说!\" title=\"九州纵横:开会发言排最后,4种方法让你有话可说!\" style=\"margin: 0px; padding: 0px; list-style: none;\"></a><br><br></span></p><p style=\"margin-top: 0.14rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"> <wbr></p><p style=\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px 0px 0px 0.11rem; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; position: relative; font-weight: 700;\">绝招四:总结+反馈+行动+推广</span></p><p style=\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"> <wbr></p><p style=\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; font-weight: 700; color: rgb(51, 51, 51);\">话术模型:</span></span></p><p style=\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\">“关于XXX问题,刚才各位同事的发言都特别的精彩,让我深受启发,受益匪浅,下面我从最近正在推动的XX项目谈谈自己的一些体会:第一,XXX。第二,XXX,接下来我会XXX”。</span></p><p style=\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"> <wbr></p><p style=\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; font-weight: 700; color: rgb(51, 51, 51);\">模拟案例:</span></span></p><p style=\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\">“刚才同事们针对如何推进我们公司股权激励制度建设的发言都特别精彩,让我深受启发,受益匪浅。作为这个项目的主要推动者,我谈谈自己最近的一些体会和反馈。第一、通过最近和同事们调研,我发现个别的同事对于公司做股权激励这件事,不是很相信,认为公司搞股权激励的背后存在一定的阴谋,这种现象可能对我们做股权激励项目落地影响很大。第二、有些员工跟我反应,公司搞股权激励是一件好事,但是他们可能拿不出那么多钱购买公司股份。为了解决这些问题,我想是不是可以请九州纵横冯老师再来做一次培训,主要说说股权激励的作用、目的和对员工的好处,先把员工对这件事的思想打通,后面的事情就好办多了。另外借此机会再和冯老师协商一下第二种情况如何解决。”</span></p><p style=\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"> <wbr></p><p style=\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; font-weight: 700; color: rgb(51, 51, 51);\">案例点评:</span></span></p><p style=\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\">(1)“反馈”这个环节可以针对会议主题反馈最近工作遇到的问题,也可以谈感受或体会。</span></p><p style=\"margin-top: 0.25rem; margin-bottom: 0px; padding: 0px 17px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 0.3rem; color: rgb(70, 70, 70); outline: 0px; vertical-align: baseline; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; -webkit-tap-highlight-color: transparent; text-size-adjust: 100%; overflow: visible; letter-spacing: 0.2px; font-size: 0.19rem; font-family: Arial, Helvetica, sans-serif; text-align: justify;\"><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\">(2)反馈情况一定要想好解决方案,否则容易让其他人认为你在吐槽。</span><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\"><br></span><span style=\"word-wrap: normal; word-break: normal; line-height: 18px; margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background: 0px 0px; -webkit-tap-highlight-color: transparent; display: block;\">ps:本文原创作者:九州纵横冯雷,转载请注明出处!</span></p>');
INSERT INTO `fa_news` VALUES ('16', '九州测试文章', 'recommend', '/uploads/20190422/fb0912045771693d0e966b37e03da22c.jpg', '九州测试文章九州测试文章九州测试文章', '1555901844', '16', '<p>九州测试文章九州测试文章九州测试文章九州测试文章111<br></p>');
-- ----------------------------
-- Table structure for fa_sms
-- ----------------------------
DROP TABLE IF EXISTS `fa_sms`;
CREATE TABLE `fa_sms` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
`event` varchar(30) NOT NULL DEFAULT '' COMMENT '事件',
`mobile` varchar(20) NOT NULL DEFAULT '' COMMENT '手机号',
`code` varchar(10) NOT NULL DEFAULT '' COMMENT '验证码',
`times` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '验证次数',
`ip` varchar(30) NOT NULL DEFAULT '' COMMENT 'IP',
`createtime` int(10) unsigned DEFAULT '0' COMMENT '创建时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='短信验证码表';
-- ----------------------------
-- Records of fa_sms
-- ----------------------------
-- ----------------------------
-- Table structure for fa_test
-- ----------------------------
DROP TABLE IF EXISTS `fa_test`;
CREATE TABLE `fa_test` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
`admin_id` int(10) NOT NULL DEFAULT '0' COMMENT '管理员ID',
`category_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '分类ID(单选)',
`category_ids` varchar(100) NOT NULL COMMENT '分类ID(多选)',
`week` enum('monday','tuesday','wednesday') NOT NULL COMMENT '星期(单选):monday=星期一,tuesday=星期二,wednesday=星期三',
`flag` set('hot','index','recommend') NOT NULL DEFAULT '' COMMENT '标志(多选):hot=热门,index=首页,recommend=推荐',
`genderdata` enum('male','female') NOT NULL DEFAULT 'male' COMMENT '性别(单选):male=男,female=女',
`hobbydata` set('music','reading','swimming') NOT NULL COMMENT '爱好(多选):music=音乐,reading=读书,swimming=游泳',
`title` varchar(50) NOT NULL DEFAULT '' COMMENT '标题',
`content` text NOT NULL COMMENT '内容',
`image` varchar(100) NOT NULL DEFAULT '' COMMENT '图片',
`images` varchar(1500) NOT NULL DEFAULT '' COMMENT '图片组',
`attachfile` varchar(100) NOT NULL DEFAULT '' COMMENT '附件',
`keywords` varchar(100) NOT NULL DEFAULT '' COMMENT '关键字',
`description` varchar(255) NOT NULL DEFAULT '' COMMENT '描述',
`city` varchar(100) NOT NULL DEFAULT '' COMMENT '省市',
`price` float(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '价格',
`views` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '点击',
`startdate` date DEFAULT NULL COMMENT '开始日期',
`activitytime` datetime DEFAULT NULL COMMENT '活动时间(datetime)',
`year` year(4) DEFAULT NULL COMMENT '年',
`times` time DEFAULT NULL COMMENT '时间',
`refreshtime` int(10) DEFAULT NULL COMMENT '刷新时间(int)',
`createtime` int(10) DEFAULT NULL COMMENT '创建时间',
`updatetime` int(10) DEFAULT NULL COMMENT '更新时间',
`deletetime` int(10) DEFAULT NULL COMMENT '删除时间',
`weigh` int(10) NOT NULL DEFAULT '0' COMMENT '权重',
`switch` tinyint(1) NOT NULL DEFAULT '0' COMMENT '开关',
`status` enum('normal','hidden') NOT NULL DEFAULT 'normal' COMMENT '状态',
`state` enum('0','1','2') NOT NULL DEFAULT '1' COMMENT '状态值:0=禁用,1=正常,2=推荐',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='测试表';
-- ----------------------------
-- Records of fa_test
-- ----------------------------
INSERT INTO `fa_test` VALUES ('1', '0', '12', '12,13', 'monday', 'hot,index', 'male', 'music,reading', '我是一篇测试文章', '<p>我是测试内容</p>', '/assets/img/avatar.png', '/assets/img/avatar.png,/assets/img/qrcode.png', '/assets/img/avatar.png', '关键字', '描述', '广西壮族自治区/百色市/平果县', '0.00', '0', '2017-07-10', '2017-07-10 18:24:45', '2017', '18:24:45', '1499682285', '1499682526', '1499682526', null, '0', '1', 'normal', '1');
-- ----------------------------
-- Table structure for fa_third
-- ----------------------------
DROP TABLE IF EXISTS `fa_third`;
CREATE TABLE `fa_third` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
`user_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '会员ID',
`platform` varchar(30) NOT NULL DEFAULT '' COMMENT '第三方应用',
`openid` varchar(50) NOT NULL DEFAULT '' COMMENT '第三方唯一ID',
`openname` varchar(50) NOT NULL DEFAULT '' COMMENT '第三方会员昵称',
`access_token` varchar(255) NOT NULL DEFAULT '' COMMENT 'AccessToken',
`refresh_token` varchar(255) NOT NULL DEFAULT 'RefreshToken',
`expires_in` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '有效期',
`createtime` int(10) unsigned DEFAULT NULL COMMENT '创建时间',
`updatetime` int(10) unsigned DEFAULT NULL COMMENT '更新时间',
`logintime` int(10) unsigned DEFAULT NULL COMMENT '登录时间',
`expiretime` int(10) unsigned DEFAULT NULL COMMENT '过期时间',
PRIMARY KEY (`id`),
UNIQUE KEY `platform` (`platform`,`openid`),
KEY `user_id` (`user_id`,`platform`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='第三方登录表';
-- ----------------------------
-- Records of fa_third
-- ----------------------------
-- ----------------------------
-- Table structure for fa_user
-- ----------------------------
DROP TABLE IF EXISTS `fa_user`;
CREATE TABLE `fa_user` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
`group_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '组别ID',
`username` varchar(32) NOT NULL DEFAULT '' COMMENT '用户名',
`nickname` varchar(50) NOT NULL DEFAULT '' COMMENT '昵称',
`password` varchar(32) NOT NULL DEFAULT '' COMMENT '密码',
`salt` varchar(30) NOT NULL DEFAULT '' COMMENT '密码盐',
`email` varchar(100) NOT NULL DEFAULT '' COMMENT '电子邮箱',
`mobile` varchar(11) NOT NULL DEFAULT '' COMMENT '手机号',
`avatar` varchar(255) NOT NULL DEFAULT '' COMMENT '头像',
`level` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '等级',
`gender` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '性别',
`birthday` date DEFAULT NULL COMMENT '生日',
`bio` varchar(100) NOT NULL DEFAULT '' COMMENT '格言',
`money` decimal(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '余额',
`score` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '积分',
`successions` int(10) unsigned NOT NULL DEFAULT '1' COMMENT '连续登录天数',
`maxsuccessions` int(10) unsigned NOT NULL DEFAULT '1' COMMENT '最大连续登录天数',
`prevtime` int(10) DEFAULT NULL COMMENT '上次登录时间',
`logintime` int(10) DEFAULT NULL COMMENT '登录时间',
`loginip` varchar(50) NOT NULL DEFAULT '' COMMENT '登录IP',
`loginfailure` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '失败次数',
`joinip` varchar(50) NOT NULL DEFAULT '' COMMENT '加入IP',
`jointime` int(10) DEFAULT NULL COMMENT '加入时间',
`createtime` int(10) DEFAULT NULL COMMENT '创建时间',
`updatetime` int(10) DEFAULT NULL COMMENT '更新时间',
`token` varchar(50) NOT NULL DEFAULT '' COMMENT 'Token',
`status` varchar(30) NOT NULL DEFAULT '' COMMENT '状态',
`verification` varchar(255) NOT NULL DEFAULT '' COMMENT '验证',
PRIMARY KEY (`id`),
KEY `username` (`username`),
KEY `email` (`email`),
KEY `mobile` (`mobile`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='会员表';
-- ----------------------------
-- Records of fa_user
-- ----------------------------
INSERT INTO `fa_user` VALUES ('1', '1', 'admin', 'admin', 'c13f62012fd6a8fdf06b3452a94430e5', 'rpR6Bv', 'admin@163.com', '13888888888', '/assets/img/avatar.png', '0', '0', '2017-04-15', '', '0.00', '0', '1', '1', '1516170492', '1516171614', '127.0.0.1', '0', '127.0.0.1', '1491461418', '0', '1516171614', '', 'normal', '');
-- ----------------------------
-- Table structure for fa_user_group
-- ----------------------------
DROP TABLE IF EXISTS `fa_user_group`;
CREATE TABLE `fa_user_group` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(50) DEFAULT '' COMMENT '组名',
`rules` text COMMENT '权限节点',
`createtime` int(10) DEFAULT NULL COMMENT '添加时间',
`updatetime` int(10) DEFAULT NULL COMMENT '更新时间',
`status` enum('normal','hidden') DEFAULT NULL COMMENT '状态',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='会员组表';
-- ----------------------------
-- Records of fa_user_group
-- ----------------------------
INSERT INTO `fa_user_group` VALUES ('1', '默认组', '1,2,3,4,5,6,7,8,9,10,11,12', '1515386468', '1516168298', 'normal');
-- ----------------------------
-- Table structure for fa_user_money_log
-- ----------------------------
DROP TABLE IF EXISTS `fa_user_money_log`;
CREATE TABLE `fa_user_money_log` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '会员ID',
`money` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '变更余额',
`before` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '变更前余额',
`after` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '变更后余额',
`memo` varchar(255) NOT NULL DEFAULT '' COMMENT '备注',
`createtime` int(10) DEFAULT NULL COMMENT '创建时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='会员余额变动表';
-- ----------------------------
-- Records of fa_user_money_log
-- ----------------------------
-- ----------------------------
-- Table structure for fa_user_rule
-- ----------------------------
DROP TABLE IF EXISTS `fa_user_rule`;
CREATE TABLE `fa_user_rule` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) DEFAULT NULL COMMENT '父ID',
`name` varchar(50) DEFAULT NULL COMMENT '名称',
`title` varchar(50) DEFAULT '' COMMENT '标题',
`remark` varchar(100) DEFAULT NULL COMMENT '备注',
`ismenu` tinyint(1) DEFAULT NULL COMMENT '是否菜单',
`createtime` int(10) DEFAULT NULL COMMENT '创建时间',
`updatetime` int(10) DEFAULT NULL COMMENT '更新时间',
`weigh` int(10) DEFAULT '0' COMMENT '权重',
`status` enum('normal','hidden') DEFAULT NULL COMMENT '状态',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='会员规则表';
-- ----------------------------
-- Records of fa_user_rule
-- ----------------------------
INSERT INTO `fa_user_rule` VALUES ('1', '0', 'index', '前台', '', '1', '1516168079', '1516168079', '1', 'normal');
INSERT INTO `fa_user_rule` VALUES ('2', '0', 'api', 'API接口', '', '1', '1516168062', '1516168062', '2', 'normal');
INSERT INTO `fa_user_rule` VALUES ('3', '1', 'user', '会员模块', '', '1', '1515386221', '1516168103', '12', 'normal');
INSERT INTO `fa_user_rule` VALUES ('4', '2', 'user', '会员模块', '', '1', '1515386221', '1516168092', '11', 'normal');
INSERT INTO `fa_user_rule` VALUES ('5', '3', 'index/user/login', '登录', '', '0', '1515386247', '1515386247', '5', 'normal');
INSERT INTO `fa_user_rule` VALUES ('6', '3', 'index/user/register', '注册', '', '0', '1515386262', '1516015236', '7', 'normal');
INSERT INTO `fa_user_rule` VALUES ('7', '3', 'index/user/index', '会员中心', '', '0', '1516015012', '1516015012', '9', 'normal');
INSERT INTO `fa_user_rule` VALUES ('8', '3', 'index/user/profile', '个人资料', '', '0', '1516015012', '1516015012', '4', 'normal');
INSERT INTO `fa_user_rule` VALUES ('9', '4', 'api/user/login', '登录', '', '0', '1515386247', '1515386247', '6', 'normal');
INSERT INTO `fa_user_rule` VALUES ('10', '4', 'api/user/register', '注册', '', '0', '1515386262', '1516015236', '8', 'normal');
INSERT INTO `fa_user_rule` VALUES ('11', '4', 'api/user/index', '会员中心', '', '0', '1516015012', '1516015012', '10', 'normal');
INSERT INTO `fa_user_rule` VALUES ('12', '4', 'api/user/profile', '个人资料', '', '0', '1516015012', '1516015012', '3', 'normal');
-- ----------------------------
-- Table structure for fa_user_score_log
-- ----------------------------
DROP TABLE IF EXISTS `fa_user_score_log`;
CREATE TABLE `fa_user_score_log` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '会员ID',
`score` int(10) NOT NULL DEFAULT '0' COMMENT '变更积分',
`before` int(10) NOT NULL DEFAULT '0' COMMENT '变更前积分',
`after` int(10) NOT NULL DEFAULT '0' COMMENT '变更后积分',
`memo` varchar(255) NOT NULL DEFAULT '' COMMENT '备注',
`createtime` int(10) DEFAULT NULL COMMENT '创建时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='会员积分变动表';
-- ----------------------------
-- Records of fa_user_score_log
-- ----------------------------
-- ----------------------------
-- Table structure for fa_user_token
-- ----------------------------
DROP TABLE IF EXISTS `fa_user_token`;
CREATE TABLE `fa_user_token` (
`token` varchar(50) NOT NULL COMMENT 'Token',
`user_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '会员ID',
`createtime` int(10) DEFAULT NULL COMMENT '创建时间',
`expiretime` int(10) DEFAULT NULL COMMENT '过期时间',
PRIMARY KEY (`token`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='会员Token表';
-- ----------------------------
-- Records of fa_user_token
-- ----------------------------
-- ----------------------------
-- Table structure for fa_version
-- ----------------------------
DROP TABLE IF EXISTS `fa_version`;
CREATE TABLE `fa_version` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
`oldversion` varchar(30) NOT NULL DEFAULT '' COMMENT '旧版本号',
`newversion` varchar(30) NOT NULL DEFAULT '' COMMENT '新版本号',
`packagesize` varchar(30) NOT NULL DEFAULT '' COMMENT '包大小',
`content` varchar(500) NOT NULL DEFAULT '' COMMENT '升级内容',
`downloadurl` varchar(255) NOT NULL DEFAULT '' COMMENT '下载地址',
`enforce` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '强制更新',
`createtime` int(10) NOT NULL DEFAULT '0' COMMENT '创建时间',
`updatetime` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '更新时间',
`weigh` int(10) NOT NULL DEFAULT '0' COMMENT '权重',
`status` varchar(30) NOT NULL DEFAULT '' COMMENT '状态',
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='版本表';
-- ----------------------------
-- Records of fa_version
-- ----------------------------
INSERT INTO `fa_version` VALUES ('1', '1.1.1,2', '1.2.1', '20M', '更新内容', 'https://www.fastadmin.net/download.html', '1', '1520425318', '0', '0', 'normal');
-- ----------------------------
-- Table structure for fa_web
-- ----------------------------
DROP TABLE IF EXISTS `fa_web`;
CREATE TABLE `fa_web` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键id',
`title` varchar(30) NOT NULL DEFAULT '' COMMENT '网站名称',
`keywords` varchar(100) NOT NULL DEFAULT '' COMMENT '网站关键字',
`description` varchar(200) NOT NULL DEFAULT '' COMMENT '网站描述',
`createtime` int(10) unsigned NOT NULL COMMENT '创建时间',
`updatetime` int(10) unsigned NOT NULL COMMENT '更新时间',
`deletetime` int(10) unsigned NOT NULL COMMENT '删除时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='网站信息表';
-- ----------------------------
-- Records of fa_web
-- ----------------------------