-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path769fdc1b.html
More file actions
2393 lines (2371 loc) · 174 KB
/
Copy path769fdc1b.html
File metadata and controls
2393 lines (2371 loc) · 174 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
<!DOCTYPE html><html lang="zh-CN" data-theme="light"><head><div id="myscoll"></div><meta charset="UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"><title>管理信息系统 | Yangjiayu</title><meta name="keywords" content="科普"><meta name="author" content="Yangjiayu"><meta name="copyright" content="Yangjiayu"><meta name="format-detection" content="telephone=no"><meta name="theme-color" content="ffffff"><meta name="description" content="管理信息系统期末复习">
<meta property="og:type" content="article">
<meta property="og:title" content="管理信息系统">
<meta property="og:url" content="https://yjyrichard.github.io/posts/769fdc1b.html">
<meta property="og:site_name" content="Yangjiayu">
<meta property="og:description" content="管理信息系统期末复习">
<meta property="og:locale" content="zh_CN">
<meta property="og:image" content="https://bilibili123.oss-cn-beijing.aliyuncs.com/websitepic/2.png">
<meta property="article:published_time" content="2025-06-26T08:45:17.547Z">
<meta property="article:modified_time" content="2025-06-26T08:46:45.692Z">
<meta property="article:author" content="Yangjiayu">
<meta property="article:tag" content="科普">
<meta name="twitter:card" content="summary">
<meta name="twitter:image" content="https://bilibili123.oss-cn-beijing.aliyuncs.com/websitepic/2.png"><link rel="shortcut icon" href="https://bilibili123.oss-cn-beijing.aliyuncs.com/about/your_image_path_here.jpg"><link rel="canonical" href="https://yjyrichard.github.io/posts/769fdc1b"><link rel="preconnect" href="//cdn.jsdelivr.net"/><link rel="preconnect" href="//busuanzi.ibruce.info"/><link rel="stylesheet" href="/css/index.css"><link rel="stylesheet" href="https://lf6-cdn-tos.bytecdntp.com/cdn/expire-1-M/font-awesome/6.0.0/css/all.min.css" media="print" onload="this.media='all'"><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/node-snackbar/0.1.16/snackbar.min.css" media="print" onload="this.media='all'"><link rel="stylesheet" href="https://cdn.staticfile.org/fancyapps-ui/4.0.31/fancybox.min.css" media="print" onload="this.media='all'"><script>const GLOBAL_CONFIG = {
root: '/',
algolia: undefined,
localSearch: {"path":"/search.xml","preload":true,"languages":{"hits_empty":"找不到您查询的内容:${query}"}},
translate: undefined,
noticeOutdate: {"limitDay":365,"position":"top","messagePrev":"It has been","messageNext":"days since the last update, the content of the article may be outdated."},
highlight: {"plugin":"highlighjs","highlightCopy":true,"highlightLang":true,"highlightHeightLimit":230},
copy: {
success: '复制成功',
error: '复制错误',
noSupport: '浏览器不支持'
},
relativeDate: {
homepage: true,
post: true
},
runtime: '',
date_suffix: {
just: '刚刚',
min: '分钟前',
hour: '小时前',
day: '天前',
month: '个月前'
},
copyright: undefined,
lightbox: 'fancybox',
Snackbar: {"chs_to_cht":"你已切换为繁体","cht_to_chs":"你已切换为简体","day_to_night":"你已切换为深色模式","night_to_day":"你已切换为浅色模式","bgLight":"var(--theme-color)","bgDark":"#191919","position":"top-right"},
source: {
justifiedGallery: {
js: 'https://cdnjs.cloudflare.com/ajax/libs/flickr-justified-gallery/2.1.2/fjGallery.min.js',
css: 'https://cdnjs.cloudflare.com/ajax/libs/flickr-justified-gallery/2.1.2/fjGallery.min.css'
}
},
isPhotoFigcaption: false,
islazyload: false,
isAnchor: false
}</script><script id="config-diff">var GLOBAL_CONFIG_SITE = {
title: '管理信息系统',
isPost: true,
isHome: false,
isHighlightShrink: false,
isToc: true,
postUpdate: '2025-06-26 16:46:45'
}</script><noscript><style type="text/css">
#nav {
opacity: 1
}
.justified-gallery img {
opacity: 1
}
#recent-posts time,
#post-meta time {
display: inline !important
}
</style></noscript><script>(win=>{
win.saveToLocal = {
set: function setWithExpiry(key, value, ttl) {
if (ttl === 0) return
const now = new Date()
const expiryDay = ttl * 86400000
const item = {
value: value,
expiry: now.getTime() + expiryDay,
}
localStorage.setItem(key, JSON.stringify(item))
},
get: function getWithExpiry(key) {
const itemStr = localStorage.getItem(key)
if (!itemStr) {
return undefined
}
const item = JSON.parse(itemStr)
const now = new Date()
if (now.getTime() > item.expiry) {
localStorage.removeItem(key)
return undefined
}
return item.value
}
}
win.getScript = url => new Promise((resolve, reject) => {
const script = document.createElement('script')
script.src = url
script.async = true
script.onerror = reject
script.onload = script.onreadystatechange = function() {
const loadState = this.readyState
if (loadState && loadState !== 'loaded' && loadState !== 'complete') return
script.onload = script.onreadystatechange = null
resolve()
}
document.head.appendChild(script)
})
win.activateDarkMode = function () {
document.documentElement.setAttribute('data-theme', 'dark')
if (document.querySelector('meta[name="theme-color"]') !== null) {
document.querySelector('meta[name="theme-color"]').setAttribute('content', '#0d0d0d')
}
}
win.activateLightMode = function () {
document.documentElement.setAttribute('data-theme', 'light')
if (document.querySelector('meta[name="theme-color"]') !== null) {
document.querySelector('meta[name="theme-color"]').setAttribute('content', 'ffffff')
}
}
const t = saveToLocal.get('theme')
const now = new Date()
const hour = now.getHours()
const isNight = hour <= 6 || hour >= 18
if (t === undefined) isNight ? activateDarkMode() : activateLightMode()
else if (t === 'light') activateLightMode()
else activateDarkMode()
const asideStatus = saveToLocal.get('aside-status')
if (asideStatus !== undefined) {
if (asideStatus === 'hide') {
document.documentElement.classList.add('hide-aside')
} else {
document.documentElement.classList.remove('hide-aside')
}
}
const detectApple = () => {
if(/iPad|iPhone|iPod|Macintosh/.test(navigator.userAgent)){
document.documentElement.classList.add('apple')
}
}
detectApple()
})(window)</script><link rel="stylesheet" href="https://cdn.staticfile.org/font-awesome/6.5.0/css/all.min.css"><link rel="stylesheet" href="https://cdn1.tianli0.top/npm/element-ui@2.15.6/packages/theme-chalk/lib/index.css"><style id="themeColor"></style><style id="rightSide"></style><style id="transPercent"></style><style id="blurNum"></style><style id="settingStyle"></style><span id="fps"></span><style id="defineBg"></style><style id="menu_shadow"></style><svg aria-hidden="true" style="position:absolute; overflow:hidden; width:0; height:0"><symbol id="icon-sun" viewBox="0 0 1024 1024"><path d="M960 512l-128 128v192h-192l-128 128-128-128H192v-192l-128-128 128-128V192h192l128-128 128 128h192v192z" fill="#FFD878" p-id="8420"></path><path d="M736 512a224 224 0 1 0-448 0 224 224 0 1 0 448 0z" fill="#FFE4A9" p-id="8421"></path><path d="M512 109.248L626.752 224H800v173.248L914.752 512 800 626.752V800h-173.248L512 914.752 397.248 800H224v-173.248L109.248 512 224 397.248V224h173.248L512 109.248M512 64l-128 128H192v192l-128 128 128 128v192h192l128 128 128-128h192v-192l128-128-128-128V192h-192l-128-128z" fill="#4D5152" p-id="8422"></path><path d="M512 320c105.888 0 192 86.112 192 192s-86.112 192-192 192-192-86.112-192-192 86.112-192 192-192m0-32a224 224 0 1 0 0 448 224 224 0 0 0 0-448z" fill="#4D5152" p-id="8423"></path></symbol><symbol id="icon-moon" viewBox="0 0 1024 1024"><path d="M611.370667 167.082667a445.013333 445.013333 0 0 1-38.4 161.834666 477.824 477.824 0 0 1-244.736 244.394667 445.141333 445.141333 0 0 1-161.109334 38.058667 85.077333 85.077333 0 0 0-65.066666 135.722666A462.08 462.08 0 1 0 747.093333 102.058667a85.077333 85.077333 0 0 0-135.722666 65.024z" fill="#FFB531" p-id="11345"></path><path d="M329.728 274.133333l35.157333-35.157333a21.333333 21.333333 0 1 0-30.165333-30.165333l-35.157333 35.157333-35.114667-35.157333a21.333333 21.333333 0 0 0-30.165333 30.165333l35.114666 35.157333-35.114666 35.157334a21.333333 21.333333 0 1 0 30.165333 30.165333l35.114667-35.157333 35.157333 35.157333a21.333333 21.333333 0 1 0 30.165333-30.165333z" fill="#030835" p-id="11346"></path></symbol></svg><!-- hexo injector head_end start --><link rel="stylesheet" href="https://npm.elemecdn.com/hexo-butterfly-swiper/lib/swiper.min.css" media="print" onload="this.media='all'"><link rel="stylesheet" href="https://npm.elemecdn.com/hexo-butterfly-swiper/lib/swiperstyle.css" media="print" onload="this.media='all'"><link rel="stylesheet" href="https://npm.elemecdn.com/hexo-butterfly-wowjs/lib/animate.min.css" media="print" onload="this.media='screen'"><link rel="stylesheet" href="https://npm.elemecdn.com/hexo-butterfly-tag-plugins-plus@latest/lib/assets/font-awesome-animation.min.css" media="defer" onload="this.media='all'"><link rel="stylesheet" href="https://npm.elemecdn.com/hexo-butterfly-tag-plugins-plus@latest/lib/tag_plugins.css" media="defer" onload="this.media='all'"><script src="https://npm.elemecdn.com/hexo-butterfly-tag-plugins-plus@latest/lib/assets/carousel-touch.js"></script><link rel="stylesheet" href="https://npm.elemecdn.com/hexo-filter-gitcalendar/lib/gitcalendar.css" media="print" onload="this.media='all'"><!-- hexo injector head_end end --><meta name="generator" content="Hexo 6.3.0"><link rel="alternate" href="/atom.xml" title="Yangjiayu" type="application/atom+xml">
</head><body><div id="web_bg"></div><div id="sidebar"><div id="menu-mask"></div><div id="sidebar-menus"><div class="avatar-img is-center"><img src="https://bilibili123.oss-cn-beijing.aliyuncs.com/about/your_image_path_here.jpg" onerror="onerror=null;src='/assets/r1.jpg'" alt="avatar"/></div><div class="sidebar-site-data site-data is-center"><a href="/archives/"><div class="headline">文章</div><div class="length-num">151</div></a><a href="/tags/"><div class="headline">标签</div><div class="length-num">31</div></a><a href="/categories/"><div class="headline">分类</div><div class="length-num">31</div></a></div><hr/><div class="menus_items"><div class="menus_item"><a class="site-page faa-parent animated-hover" href="/"><svg class="menu_icon faa-tada" aria-hidden="true" style="width:1.30em;height:1.30em;vertical-align:-0.15em;fill:currentColor;overflow:hidden;"><use xlink:href="#icon-home"></use></svg><span class="menu_word" style="font-size:17px"> 首页</span></a></div><div class="menus_item"><a class="site-page group faa-parent animated-hover hide" href="javascript:void(0);"><svg class="menu_icon faa-tada" aria-hidden="true" style="width:1.30em;height:1.30em;vertical-align:-0.15em;fill:currentColor;overflow:hidden;"><use xlink:href="#icon--article"></use></svg><span class="menu_word" style="font-size:17px"> 文章</span><i class="fas fa-chevron-down"></i></a><ul class="menus_item_child"><li><a class="site-page child faa-parent animated-hover" href="/archives/"><svg class="menu_icon faa-tada" aria-hidden="true" style="width:1.30em;height:1.30em;vertical-align:-0.15em;fill:currentColor;overflow:hidden;"><use xlink:href="#icon-guidang1"> </use></svg><span class="menu_word" style="font-size:17px"> 归档</span></a></li><li><a class="site-page child faa-parent animated-hover" href="/tags/"><svg class="menu_icon faa-tada" aria-hidden="true" style="width:1.30em;height:1.30em;vertical-align:-0.15em;fill:currentColor;overflow:hidden;"><use xlink:href="#icon-sekuaibiaoqian"> </use></svg><span class="menu_word" style="font-size:17px"> 标签</span></a></li><li><a class="site-page child faa-parent animated-hover" href="/categories/"><svg class="menu_icon faa-tada" aria-hidden="true" style="width:1.30em;height:1.30em;vertical-align:-0.15em;fill:currentColor;overflow:hidden;"><use xlink:href="#icon-fenlei"> </use></svg><span class="menu_word" style="font-size:17px"> 分类</span></a></li></ul></div><div class="menus_item"><a class="site-page group faa-parent animated-hover hide" href="javascript:void(0);"><svg class="menu_icon faa-tada" aria-hidden="true" style="width:1.30em;height:1.30em;vertical-align:-0.15em;fill:currentColor;overflow:hidden;"><use xlink:href="#icon-pinweishenghuo"></use></svg><span class="menu_word" style="font-size:17px"> 休闲</span><i class="fas fa-chevron-down"></i></a><ul class="menus_item_child"><li><a class="site-page child faa-parent animated-hover" href="/life/music/"><svg class="menu_icon faa-tada" aria-hidden="true" style="width:1.30em;height:1.30em;vertical-align:-0.15em;fill:currentColor;overflow:hidden;"><use xlink:href="#icon-yinle"> </use></svg><span class="menu_word" style="font-size:17px"> 八音盒</span></a></li><li><a class="site-page child faa-parent animated-hover" href="/life/movies/"><svg class="menu_icon faa-tada" aria-hidden="true" style="width:1.30em;height:1.30em;vertical-align:-0.15em;fill:currentColor;overflow:hidden;"><use xlink:href="#icon-dianying1"> </use></svg><span class="menu_word" style="font-size:17px"> 影院</span></a></li><li><a class="site-page child faa-parent animated-hover" href="/life/games/"><svg class="menu_icon faa-tada" aria-hidden="true" style="width:1.30em;height:1.30em;vertical-align:-0.15em;fill:currentColor;overflow:hidden;"><use xlink:href="#icon-youxishoubing"> </use></svg><span class="menu_word" style="font-size:17px"> 健身</span></a></li><li><a class="site-page child faa-parent animated-hover" href="/life/books/"><svg class="menu_icon faa-tada" aria-hidden="true" style="width:1.30em;height:1.30em;vertical-align:-0.15em;fill:currentColor;overflow:hidden;"><use xlink:href="#icon-lianjie"> </use></svg><span class="menu_word" style="font-size:17px"> 书籍</span></a></li></ul></div><div class="menus_item"><a class="site-page group faa-parent animated-hover hide" href="javascript:void(0);"><svg class="menu_icon faa-tada" aria-hidden="true" style="width:1.30em;height:1.30em;vertical-align:-0.15em;fill:currentColor;overflow:hidden;"><use xlink:href="#icon-shejiaoxinxi"></use></svg><span class="menu_word" style="font-size:17px"> 社交</span><i class="fas fa-chevron-down"></i></a><ul class="menus_item_child"><li><a class="site-page child faa-parent animated-hover" href="/social/fcircle/"><svg class="menu_icon faa-tada" aria-hidden="true" style="width:1.30em;height:1.30em;vertical-align:-0.15em;fill:currentColor;overflow:hidden;"><use xlink:href="#icon-pengyouquan"> </use></svg><span class="menu_word" style="font-size:17px"> 朋友圈</span></a></li><li><a class="site-page child faa-parent animated-hover" href="/comments/"><svg class="menu_icon faa-tada" aria-hidden="true" style="width:1.30em;height:1.30em;vertical-align:-0.15em;fill:currentColor;overflow:hidden;"><use xlink:href="#icon-liuyan"> </use></svg><span class="menu_word" style="font-size:17px"> 留言板</span></a></li></ul></div><div class="menus_item"><a class="site-page group faa-parent animated-hover hide" href="javascript:void(0);"><svg class="menu_icon faa-tada" aria-hidden="true" style="width:1.30em;height:1.30em;vertical-align:-0.15em;fill:currentColor;overflow:hidden;"><use xlink:href="#icon-maoliang"></use></svg><span class="menu_word" style="font-size:17px"> 个人</span><i class="fas fa-chevron-down"></i></a><ul class="menus_item_child"><li><a class="site-page child faa-parent animated-hover" href="/personal/bb/"><svg class="menu_icon faa-tada" aria-hidden="true" style="width:1.30em;height:1.30em;vertical-align:-0.15em;fill:currentColor;overflow:hidden;"><use xlink:href="#icon-qunliaotian"> </use></svg><span class="menu_word" style="font-size:17px"> 时间管理</span></a></li><li><a class="site-page child faa-parent animated-hover" href="/personal/about/"><svg class="menu_icon faa-tada" aria-hidden="true" style="width:1.30em;height:1.30em;vertical-align:-0.15em;fill:currentColor;overflow:hidden;"><use xlink:href="#icon-paperplane"> </use></svg><span class="menu_word" style="font-size:17px"> 关于</span></a></li></ul></div></div></div></div><div class="post" id="body-wrap"><header class="post-bg" id="page-header"><nav id="nav"><span id="blog_name"><a id="site-name" href="/">Yangjiayu</a></span><div id="menus"><div class="menus_items"><div class="menus_item"><a class="site-page faa-parent animated-hover" href="/"><svg class="menu_icon faa-tada" aria-hidden="true" style="width:1.30em;height:1.30em;vertical-align:-0.15em;fill:currentColor;overflow:hidden;"><use xlink:href="#icon-home"></use></svg><span class="menu_word" style="font-size:17px"> 首页</span></a></div><div class="menus_item"><a class="site-page group faa-parent animated-hover hide" href="javascript:void(0);"><svg class="menu_icon faa-tada" aria-hidden="true" style="width:1.30em;height:1.30em;vertical-align:-0.15em;fill:currentColor;overflow:hidden;"><use xlink:href="#icon--article"></use></svg><span class="menu_word" style="font-size:17px"> 文章</span><i class="fas fa-chevron-down"></i></a><ul class="menus_item_child"><li><a class="site-page child faa-parent animated-hover" href="/archives/"><svg class="menu_icon faa-tada" aria-hidden="true" style="width:1.30em;height:1.30em;vertical-align:-0.15em;fill:currentColor;overflow:hidden;"><use xlink:href="#icon-guidang1"> </use></svg><span class="menu_word" style="font-size:17px"> 归档</span></a></li><li><a class="site-page child faa-parent animated-hover" href="/tags/"><svg class="menu_icon faa-tada" aria-hidden="true" style="width:1.30em;height:1.30em;vertical-align:-0.15em;fill:currentColor;overflow:hidden;"><use xlink:href="#icon-sekuaibiaoqian"> </use></svg><span class="menu_word" style="font-size:17px"> 标签</span></a></li><li><a class="site-page child faa-parent animated-hover" href="/categories/"><svg class="menu_icon faa-tada" aria-hidden="true" style="width:1.30em;height:1.30em;vertical-align:-0.15em;fill:currentColor;overflow:hidden;"><use xlink:href="#icon-fenlei"> </use></svg><span class="menu_word" style="font-size:17px"> 分类</span></a></li></ul></div><div class="menus_item"><a class="site-page group faa-parent animated-hover hide" href="javascript:void(0);"><svg class="menu_icon faa-tada" aria-hidden="true" style="width:1.30em;height:1.30em;vertical-align:-0.15em;fill:currentColor;overflow:hidden;"><use xlink:href="#icon-pinweishenghuo"></use></svg><span class="menu_word" style="font-size:17px"> 休闲</span><i class="fas fa-chevron-down"></i></a><ul class="menus_item_child"><li><a class="site-page child faa-parent animated-hover" href="/life/music/"><svg class="menu_icon faa-tada" aria-hidden="true" style="width:1.30em;height:1.30em;vertical-align:-0.15em;fill:currentColor;overflow:hidden;"><use xlink:href="#icon-yinle"> </use></svg><span class="menu_word" style="font-size:17px"> 八音盒</span></a></li><li><a class="site-page child faa-parent animated-hover" href="/life/movies/"><svg class="menu_icon faa-tada" aria-hidden="true" style="width:1.30em;height:1.30em;vertical-align:-0.15em;fill:currentColor;overflow:hidden;"><use xlink:href="#icon-dianying1"> </use></svg><span class="menu_word" style="font-size:17px"> 影院</span></a></li><li><a class="site-page child faa-parent animated-hover" href="/life/games/"><svg class="menu_icon faa-tada" aria-hidden="true" style="width:1.30em;height:1.30em;vertical-align:-0.15em;fill:currentColor;overflow:hidden;"><use xlink:href="#icon-youxishoubing"> </use></svg><span class="menu_word" style="font-size:17px"> 健身</span></a></li><li><a class="site-page child faa-parent animated-hover" href="/life/books/"><svg class="menu_icon faa-tada" aria-hidden="true" style="width:1.30em;height:1.30em;vertical-align:-0.15em;fill:currentColor;overflow:hidden;"><use xlink:href="#icon-lianjie"> </use></svg><span class="menu_word" style="font-size:17px"> 书籍</span></a></li></ul></div><div class="menus_item"><a class="site-page group faa-parent animated-hover hide" href="javascript:void(0);"><svg class="menu_icon faa-tada" aria-hidden="true" style="width:1.30em;height:1.30em;vertical-align:-0.15em;fill:currentColor;overflow:hidden;"><use xlink:href="#icon-shejiaoxinxi"></use></svg><span class="menu_word" style="font-size:17px"> 社交</span><i class="fas fa-chevron-down"></i></a><ul class="menus_item_child"><li><a class="site-page child faa-parent animated-hover" href="/social/fcircle/"><svg class="menu_icon faa-tada" aria-hidden="true" style="width:1.30em;height:1.30em;vertical-align:-0.15em;fill:currentColor;overflow:hidden;"><use xlink:href="#icon-pengyouquan"> </use></svg><span class="menu_word" style="font-size:17px"> 朋友圈</span></a></li><li><a class="site-page child faa-parent animated-hover" href="/comments/"><svg class="menu_icon faa-tada" aria-hidden="true" style="width:1.30em;height:1.30em;vertical-align:-0.15em;fill:currentColor;overflow:hidden;"><use xlink:href="#icon-liuyan"> </use></svg><span class="menu_word" style="font-size:17px"> 留言板</span></a></li></ul></div><div class="menus_item"><a class="site-page group faa-parent animated-hover hide" href="javascript:void(0);"><svg class="menu_icon faa-tada" aria-hidden="true" style="width:1.30em;height:1.30em;vertical-align:-0.15em;fill:currentColor;overflow:hidden;"><use xlink:href="#icon-maoliang"></use></svg><span class="menu_word" style="font-size:17px"> 个人</span><i class="fas fa-chevron-down"></i></a><ul class="menus_item_child"><li><a class="site-page child faa-parent animated-hover" href="/personal/bb/"><svg class="menu_icon faa-tada" aria-hidden="true" style="width:1.30em;height:1.30em;vertical-align:-0.15em;fill:currentColor;overflow:hidden;"><use xlink:href="#icon-qunliaotian"> </use></svg><span class="menu_word" style="font-size:17px"> 时间管理</span></a></li><li><a class="site-page child faa-parent animated-hover" href="/personal/about/"><svg class="menu_icon faa-tada" aria-hidden="true" style="width:1.30em;height:1.30em;vertical-align:-0.15em;fill:currentColor;overflow:hidden;"><use xlink:href="#icon-paperplane"> </use></svg><span class="menu_word" style="font-size:17px"> 关于</span></a></li></ul></div></div><center id="name-container"><a id="page-name" href="javascript:scrollToTop()">PAGE_NAME</a></center><div id="nav-right"><div id="search-button"><a class="search faa-parent animated-hover" title="检索站内任何你想要的信息"><svg class="faa-tada icon" style="height:24px;width:24px;fill:currentColor;position:relative;top:6px" aria-hidden="true"><use xlink:href="#icon-valentine_-search-love-find-heart"></use></svg><span> 搜索</span></a></div><a class="meihua faa-parent animated-hover" onclick="toggleWinbox()" title="美化设置-自定义你的风格" id="meihua-button"><svg class="faa-tada icon" style="height:26px;width:26px;fill:currentColor;position:relative;top:8px" aria-hidden="true"><use xlink:href="#icon-tupian1"></use></svg></a><a class="sun_moon faa-parent animated-hover" onclick="switchNightMode()" title="浅色和深色模式转换" id="nightmode-button"><svg class="faa-tada" style="height:25px;width:25px;fill:currentColor;position:relative;top:7px" viewBox="0 0 1024 1024"><use id="modeicon" xlink:href="#icon-moon"> </use></svg></a><div id="toggle-menu"><a><i class="fas fa-bars fa-fw"></i></a></div></div></div></nav><div id="post-info"><h1 class="post-title">管理信息系统</h1><div id="post-meta"><div class="meta-firstline"><span class="post-meta-date"><svg class="meta_icon post-meta-icon" style="width:30px;height:30px;position:relative;top:10px"><use xlink:href="#icon-rili"></use></svg><span class="post-meta-label">发表于 </span><time class="post-meta-date-created" datetime="2025-06-26T08:45:17.547Z" title="发表于 2025-06-26 16:45:17">2025-06-26</time><span class="post-meta-separator">|</span><svg class="meta_icon post-meta-icon" style="width:18px;height:18px;position:relative;top:5px"><use xlink:href="#icon-gengxin1"></use></svg><span class="post-meta-label">更新于</span><time class="post-meta-date-updated" datetime="2025-06-26T08:46:45.692Z" title="更新于 2025-06-26 16:46:45">2025-06-26</time></span><span class="post-meta-categories"><span class="post-meta-separator">|</span><svg class="meta_icon post-meta-icon" style="width:18px;height:18px;position:relative;top:5px"><use xlink:href="#icon-biaoqian"></use></svg><a class="post-meta-categories" href="/categories/%E7%A7%91%E6%99%AE/">科普</a></span></div><div class="meta-secondline"><span class="post-meta-separator">|</span><span class="post-meta-wordcount"><svg class="meta_icon post-meta-icon" style="width:25px;height:25px;position:relative;top:8px"><use xlink:href="#icon-charuword"></use></svg><span class="post-meta-label">字数总计:</span><span class="word-count">1.3w</span><span class="post-meta-separator">|</span><svg class="meta_icon post-meta-icon" style="width:20px;height:20px;position:relative;top:5px"><use xlink:href="#icon-shizhong"></use></svg><span class="post-meta-label">阅读时长:</span><span>38分钟</span></span><span class="post-meta-separator">|</span><span class="post-meta-pv-cv" id="" data-flag-title="管理信息系统"><svg class="meta_icon post-meta-icon" style="width:25px;height:25px;position:relative;top:5px"><use xlink:href="#icon-eye"></use></svg><span class="post-meta-label">阅读量:</span><span id="busuanzi_value_page_pv"><i class="fa-solid fa-spinner fa-spin"></i></span></span></div></div></div><section class="main-hero-waves-area waves-area"><svg class="waves-svg" xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink" viewBox="0 24 150 28" preserveAspectRatio="none" shape-rendering="auto"><defs><path id="gentle-wave" d="M -160 44 c 30 0 58 -18 88 -18 s 58 18 88 18 s 58 -18 88 -18 s 58 18 88 18 v 44 h -352 Z"></path></defs><g class="parallax"><use href="#gentle-wave" x="48" y="0"></use><use href="#gentle-wave" x="48" y="3"></use><use href="#gentle-wave" x="48" y="5"></use><use href="#gentle-wave" x="48" y="7"></use></g></svg></section></header><main class="layout" id="content-inner"><div id="post"><article class="post-content" id="article-container"><h1>管理信息系统期末复习</h1>
<p>题型:</p>
<ul>
<li>
<p>选择题</p>
</li>
<li>
<p>名词解释</p>
</li>
<li>
<p>简答题</p>
</li>
<li>
<p>设计题 (数据库)</p>
</li>
<li>
<p>综合应用题(两种题型)</p>
<ul>
<li>信息系统的开发</li>
<li>案例分析</li>
</ul>
</li>
</ul>
<p>ER图跟关系模型:注意是实体Entity是长方形,属性Attribute是圆角矩形,联系Relation是菱形(也有属性).</p>
<p>要标明1对1,1对多,多对多</p>
<p>画关系模型的时候注意当1对多的时候,多的哪一方要多增加1的主键作为外键。如果是多对多的话要新建一张表。</p>
<p>主键是<code>_____</code> 即可,外键<code>~~~~~~</code> 用波浪线。新建的表要两个属性共同作为新建表的主键,分别用波浪线作为外键</p>
<p>信息系统:从技术角度定义为若干相互连接的部件组成的。对组织中的信息进行收集,处理,存储和发布的系统,用以支持企业作决策和管理控制。</p>
<p>组织有几层?</p>
<blockquote>
<ol>
<li><strong>战略层(高层管理)</strong>
<ul>
<li>负责组织的长期规划和决策,制定总体目标和政策。</li>
<li>关注外部环境(如市场竞争、法律法规)和战略方向(如企业并购、市场拓展)。</li>
<li>典型角色:CEO、董事会、高层管理者。</li>
</ul>
</li>
<li><strong>战术层(中层管理)</strong>
<ul>
<li>负责将战略目标转化为可执行的计划,协调和监督基层活动。</li>
<li>关注部门级资源配置、绩效控制和中期决策(如预算分配、项目审批)。</li>
<li>典型角色:部门经理、项目主管。</li>
</ul>
</li>
<li><strong>操作层(基层管理)</strong>
<ul>
<li>负责日常业务活动的执行和短期任务管理。</li>
<li>关注具体流程、效率和质量控制(如生产调度、客户服务)。</li>
<li>典型角色:班组长、一线主管。</li>
</ul>
</li>
</ol>
<h3 id="补充说明:">补充说明:</h3>
<ul>
<li><strong>信息系统的作用</strong>:不同层次需要不同类型的信息系统支持。例如,战略层依赖<strong>决策支持系统(DSS)</strong>,战术层使用<strong>管理信息系统(MIS)</strong>,操作层则依赖<strong>事务处理系统(TPS)</strong>。</li>
<li><strong>扁平化趋势</strong>:现代组织可能减少中层(战术层),使结构更扁平,以提高决策效率。</li>
</ul>
<p>这一分层反映了信息流动和决策权在组织中的分布,是管理信息系统设计的基础框架。</p>
</blockquote>
<figure class="highlight"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">信息发展经历了那些阶段? IT基础设施有哪些构成要素 基础设施的构成要素。</span><br></pre></td></tr></table></figure>
<blockquote>
<h3 id="信息发展的阶段(信息技术演进历程)">信息发展的阶段(信息技术演进历程)</h3>
<p>信息发展可以划分为以下几个阶段,每个阶段的标志性技术和特征如下:</p>
<h4 id="1-主机时代(1950s-1970s)"><strong>1. 主机时代(1950s-1970s)</strong></h4>
<ul>
<li><strong>技术</strong>:大型计算机(Mainframe)、批处理系统。</li>
<li><strong>特点</strong>:集中式计算,用户通过终端访问主机,处理能力有限,主要用于科学计算和大规模数据处理(如银行交易)。</li>
<li><strong>代表</strong>:IBM System/360。</li>
</ul>
<h4 id="2-小型机与微机时代(1970s-1980s)"><strong>2. 小型机与微机时代(1970s-1980s)</strong></h4>
<ul>
<li><strong>技术</strong>:小型机(Mini Computer)、个人计算机(PC)。</li>
<li><strong>特点</strong>:计算能力分散化,企业开始使用小型机,个人计算机(如Apple II、IBM PC)普及。</li>
<li><strong>影响</strong>:办公自动化(如WordStar、Lotus 1-2-3)。</li>
</ul>
<h4 id="3-客户端-服务器时代(1980s-1990s)"><strong>3. 客户端/服务器时代(1980s-1990s)</strong></h4>
<ul>
<li><strong>技术</strong>:局域网(LAN)、客户端/服务器(C/S)架构。</li>
<li><strong>特点</strong>:企业采用服务器集中管理数据,客户端(PC)负责用户界面和部分计算。</li>
<li><strong>代表</strong>:Oracle数据库、Windows NT服务器。</li>
</ul>
<h4 id="4-互联网时代(1990s-2000s)"><strong>4. 互联网时代(1990s-2000s)</strong></h4>
<ul>
<li><strong>技术</strong>:万维网(WWW)、浏览器/服务器(B/S)架构。</li>
<li><strong>特点</strong>:信息全球化,电子商务(如Amazon)、搜索引擎(如Google)兴起。</li>
<li><strong>关键协议</strong>:HTTP、TCP/IP。</li>
</ul>
<h4 id="5-移动互联网与云计算时代(2000s-2010s)"><strong>5. 移动互联网与云计算时代(2000s-2010s)</strong></h4>
<ul>
<li><strong>技术</strong>:智能手机(iPhone/Android)、云计算(AWS、Azure)。</li>
<li><strong>特点</strong>:随时随地上网,数据存储和计算迁移至云端,SaaS(如Salesforce)普及。</li>
</ul>
<h4 id="6-人工智能与物联网时代(2010s-至今)"><strong>6. 人工智能与物联网时代(2010s-至今)</strong></h4>
<ul>
<li><strong>技术</strong>:大数据、AI(深度学习)、物联网(IoT)、5G。</li>
<li><strong>特点</strong>:智能设备互联(如智能家居)、自动化决策(如推荐系统)、边缘计算。</li>
</ul>
<h3 id="IT基础设施的构成要素"><strong>IT基础设施的构成要素</strong></h3>
<p>IT基础设施是支撑企业信息系统的技术基础,主要包括以下<strong>5大核心要素</strong>:</p>
<h4 id="1-计算机硬件"><strong>1. 计算机硬件</strong></h4>
<ul>
<li><strong>包括</strong>:服务器、存储设备(如NAS、SAN)、终端设备(PC、移动设备)。</li>
<li><strong>作用</strong>:提供计算能力、数据存储和用户交互界面。</li>
</ul>
<h4 id="2-系统软件"><strong>2. 系统软件</strong></h4>
<ul>
<li>包括:
<ul>
<li><strong>操作系统</strong>(如Windows Server、Linux)。</li>
<li><strong>数据库管理系统</strong>(如MySQL、Oracle)。</li>
<li><strong>中间件</strong>(如消息队列、API网关)。</li>
</ul>
</li>
<li><strong>作用</strong>:管理硬件资源,提供基础运行环境。</li>
</ul>
<h4 id="3-网络与通信技术"><strong>3. 网络与通信技术</strong></h4>
<ul>
<li>包括:
<ul>
<li><strong>网络设备</strong>(路由器、交换机、防火墙)。</li>
<li><strong>通信协议</strong>(TCP/IP、HTTP、5G)。</li>
<li><strong>互联网接入</strong>(光纤、Wi-Fi、移动网络)。</li>
</ul>
</li>
<li><strong>作用</strong>:实现数据交换和系统互联。</li>
</ul>
<h4 id="4-数据管理与存储"><strong>4. 数据管理与存储</strong></h4>
<ul>
<li>包括:
<ul>
<li><strong>数据库</strong>(关系型如SQL Server,非关系型如MongoDB)。</li>
<li><strong>大数据平台</strong>(如Hadoop、Spark)。</li>
<li><strong>云存储</strong>(如AWS S3、Google Cloud Storage)。</li>
</ul>
</li>
<li><strong>作用</strong>:存储、处理和分析企业数据。</li>
</ul>
<h4 id="5-企业应用软件"><strong>5. 企业应用软件</strong></h4>
<ul>
<li>包括:
<ul>
<li><strong>ERP</strong>(如SAP、Oracle ERP)。</li>
<li><strong>CRM</strong>(如Salesforce)。</li>
<li><strong>协作工具</strong>(如Microsoft Teams、Slack)。</li>
</ul>
</li>
<li><strong>作用</strong>:支持业务流程和决策。</li>
</ul>
<h3 id="记忆技巧"><strong>记忆技巧</strong></h3>
<ol>
<li><strong>信息发展阶段</strong>:按时间轴记忆,从“大型机→PC→互联网→移动/云→AI/IoT”,对应“集中→分散→全球→智能”的逻辑。</li>
<li>IT基础设施:用**“硬软网数用”**五字口诀:
<ul>
<li><strong>硬</strong>(硬件)</li>
<li><strong>软</strong>(系统软件)</li>
<li><strong>网</strong>(网络)</li>
<li><strong>数</strong>(数据管理)</li>
<li><strong>用</strong>(应用软件)</li>
</ul>
</li>
</ol>
<p>这样分类后,既能理解技术演进脉络,又能系统掌握IT基础设施的组成。</p>
</blockquote>
<blockquote>
<h3 id="第六章:数据库与商务智能核心概念"><strong>第六章:数据库与商务智能核心概念</strong></h3>
<h2 id="一、数据库基础概念"><strong>一、数据库基础概念</strong></h2>
<h3 id="1-数据库(Database-DB)"><strong>1. 数据库(Database, DB)</strong></h3>
<ul>
<li><strong>定义</strong>:结构化数据的集合,用于高效存储、检索和管理数据。</li>
<li>特点:
<ul>
<li>减少数据冗余(避免重复存储)。</li>
<li>支持多用户并发访问。</li>
<li>提供数据安全性和完整性约束(如权限控制、外键约束)。</li>
</ul>
</li>
</ul>
<h3 id="2-数据库管理系统(DBMS-Database-Management-System)"><strong>2. 数据库管理系统(DBMS, Database Management System)</strong></h3>
<ul>
<li>
<p><strong>定义</strong>:管理数据库的软件系统,充当用户与数据库之间的接口。</p>
</li>
<li>
<p><strong>核心功能</strong>:</p>
<table>
<thead>
<tr>
<th><strong>功能</strong></th>
<th><strong>说明</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>数据定义</strong></td>
<td>创建/修改数据库结构(如表、字段)。</td>
</tr>
<tr>
<td><strong>数据操作</strong></td>
<td>增删改查(CRUD:Create, Read, Update, Delete)。</td>
</tr>
<tr>
<td><strong>数据安全</strong></td>
<td>用户权限管理、数据加密。</td>
</tr>
<tr>
<td><strong>数据完整性</strong></td>
<td>约束规则(如主键唯一性、外键关联)。</td>
</tr>
<tr>
<td><strong>并发控制</strong></td>
<td>避免多用户同时修改数据时的冲突(如锁机制)。</td>
</tr>
<tr>
<td><strong>备份与恢复</strong></td>
<td>防止数据丢失(如事务日志、定期备份)。</td>
</tr>
</tbody>
</table>
</li>
<li>
<p><strong>常见DBMS</strong>:</p>
<ul>
<li><strong>关系型</strong>:MySQL、Oracle、SQL Server。</li>
<li><strong>非关系型(NoSQL)</strong>:MongoDB(文档型)、Redis(键值型)。</li>
</ul>
</li>
</ul>
<h2 id="二、商务智能(Business-Intelligence-BI)"><strong>二、商务智能(Business Intelligence, BI)</strong></h2>
<h3 id="1-商务智能的定义"><strong>1. 商务智能的定义</strong></h3>
<ul>
<li><strong>核心目标</strong>:将企业数据转化为可操作的洞察,辅助决策。</li>
<li><strong>关键组成</strong>:</li>
</ul>
<figure class="highlight clean"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br><span class="line">3</span><br><span class="line">4</span><br><span class="line">5</span><br></pre></td><td class="code"><pre><span class="line">数据源</span><br><span class="line"> -> 数据仓库</span><br><span class="line"> -> 数据分析工具</span><br><span class="line"> ->可视化仪表盘</span><br><span class="line"> ->决策支持</span><br></pre></td></tr></table></figure>
<h3 id="2-BI的核心技术"><strong>2. BI的核心技术</strong></h3>
<table>
<thead>
<tr>
<th><strong>技术</strong></th>
<th><strong>作用</strong></th>
<th><strong>工具示例</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>数据仓库</strong></td>
<td>集成多个数据源的历史数据,优化分析查询。</td>
<td>Snowflake、Amazon Redshift</td>
</tr>
<tr>
<td><strong>ETL</strong></td>
<td>数据抽取(Extract)、转换(Transform)、加载(Load)。</td>
<td>Informatica、Talend</td>
</tr>
<tr>
<td><strong>OLAP</strong></td>
<td>在线分析处理,支持多维数据查询(如时间、地区、产品维度)。</td>
<td>Microsoft Analysis Services</td>
</tr>
<tr>
<td><strong>数据可视化</strong></td>
<td>通过图表、仪表盘直观展示数据趋势。</td>
<td>Tableau、Power BI</td>
</tr>
<tr>
<td><strong>报表系统</strong></td>
<td>定期生成标准化报告(如销售月报)。</td>
<td>Crystal Reports</td>
</tr>
</tbody>
</table>
<h3 id="3-BI的应用场景"><strong>3. BI的应用场景</strong></h3>
<ul>
<li><strong>销售分析</strong>:识别高利润产品和客户群体。</li>
<li><strong>库存优化</strong>:预测需求,减少库存积压。</li>
<li><strong>风险监控</strong>:检测异常交易(如金融反欺诈)。</li>
</ul>
<h2 id="三、数据挖掘(Data-Mining)"><strong>三、数据挖掘(Data Mining)</strong></h2>
<h3 id="1-数据挖掘的定义"><strong>1. 数据挖掘的定义</strong></h3>
<ul>
<li><strong>本质</strong>:从大规模数据中自动发现隐藏模式(如关联规则、分类模型)。</li>
<li>与BI的关系:
<ul>
<li>BI侧重“描述性分析”(发生了什么)。</li>
<li>数据挖掘侧重“预测性分析”(未来可能发生什么)。</li>
</ul>
</li>
</ul>
<h3 id="2-数据挖掘的主要方法"><strong>2. 数据挖掘的主要方法</strong></h3>
<table>
<thead>
<tr>
<th><strong>方法</strong></th>
<th><strong>用途</strong></th>
<th><strong>案例</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>分类</strong></td>
<td>预测类别(如客户是否流失)。</td>
<td>决策树、逻辑回归</td>
</tr>
<tr>
<td><strong>聚类</strong></td>
<td>无监督分组(如市场细分)。</td>
<td>K-means</td>
</tr>
<tr>
<td><strong>关联规则</strong></td>
<td>发现数据项间的关系(如“啤酒与尿布”)。</td>
<td>Apriori算法</td>
</tr>
<tr>
<td><strong>时序模式</strong></td>
<td>预测时间序列趋势(如股票价格)。</td>
<td>ARIMA模型</td>
</tr>
</tbody>
</table>
<h3 id="3-典型应用"><strong>3. 典型应用</strong></h3>
<ul>
<li><strong>推荐系统</strong>:Amazon的商品推荐、Netflix的影片推荐。</li>
<li><strong>信用评分</strong>:银行评估贷款风险。</li>
<li><strong>医疗诊断</strong>:基于病历预测疾病风险。</li>
</ul>
<h2 id="四、关键概念对比"><strong>四、关键概念对比</strong></h2>
<table>
<thead>
<tr>
<th><strong>概念</strong></th>
<th><strong>核心重点</strong></th>
<th><strong>典型工具/技术</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>DBMS</strong></td>
<td>数据的存储与管理</td>
<td>MySQL、Oracle</td>
</tr>
<tr>
<td><strong>商务智能(BI)</strong></td>
<td>数据→洞察→决策</td>
<td>Tableau、Power BI</td>
</tr>
<tr>
<td><strong>数据挖掘</strong></td>
<td>自动发现数据中的隐藏模式</td>
<td>Python(Scikit-learn)、R</td>
</tr>
</tbody>
</table>
<h2 id="记忆技巧-2"><strong>记忆技巧</strong></h2>
<ol>
<li><strong>数据库三要素</strong>:
<ul>
<li><strong>结构</strong>(表、字段)</li>
<li><strong>操作</strong>(CRUD)</li>
<li><strong>管理</strong>(安全、备份)。</li>
</ul>
</li>
<li><strong>BI流程口诀</strong>: <strong>“取数据(ETL)→存数据(数据仓库)→分析数据(OLAP)→看数据(可视化)”</strong>。</li>
<li><strong>数据挖掘方法</strong>:
<ul>
<li><strong>分类</strong>(预测类别)</li>
<li><strong>聚类</strong>(自动分组)</li>
<li><strong>关联</strong>(发现规则)</li>
<li><strong>时序</strong>(预测趋势)。</li>
</ul>
</li>
</ol>
<p>通过这种结构化梳理,可以系统掌握数据库、BI与数据挖掘的核心逻辑!</p>
</blockquote>
<p>商务智能:是一个现代术语,包括一系列用来组织,分析和提供数据访问的数据与软件工具,以帮助管理者和其他企业用户做出更明智的决策。</p>
<blockquote>
<h3 id="第七章:计算机网络分类(按不同参照标准)"><strong>第七章:计算机网络分类(按不同参照标准)</strong></h3>
<p>计算机网络可以按照<strong>覆盖范围、拓扑结构、传输技术、使用权限</strong>等多个标准进行分类。以下是系统化的分类框架:</p>
<h2 id="一、按覆盖范围(地理尺度)"><strong>一、按覆盖范围(地理尺度)</strong></h2>
<table>
<thead>
<tr>
<th><strong>类型</strong></th>
<th><strong>范围</strong></th>
<th><strong>特点</strong></th>
<th><strong>典型应用</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>个人局域网</strong></td>
<td>10米以内</td>
<td>连接个人设备(如蓝牙耳机、智能手表)。</td>
<td>蓝牙、ZigBee</td>
</tr>
<tr>
<td><strong>(PAN)</strong></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td><strong>局域网</strong></td>
<td>1公里以内</td>
<td>高速、低延迟,私有管理(如企业、学校)。</td>
<td>企业内网、Wi-Fi</td>
</tr>
<tr>
<td><strong>(LAN)</strong></td>
<td>(一栋楼或园区)</td>
<td></td>
<td></td>
</tr>
<tr>
<td><strong>城域网</strong></td>
<td>10-100公里</td>
<td>覆盖城市,连接多个LAN。</td>
<td>城市政务网、ISP骨干网</td>
</tr>
<tr>
<td><strong>(MAN)</strong></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td><strong>广域网</strong></td>
<td>全球范围</td>
<td>低速高延迟,依赖公共基础设施(如光纤、卫星)。</td>
<td>互联网、跨国企业专线</td>
</tr>
<tr>
<td><strong>(WAN)</strong></td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<p><strong>记忆口诀</strong>: <strong>“人(PAN)小局(LAN)大城(MAN)广(WAN)”</strong>(从个人到全球的扩展)。</p>
<h2 id="二、按拓扑结构(物理连接方式)"><strong>二、按拓扑结构(物理连接方式)</strong></h2>
<table>
<thead>
<tr>
<th><strong>类型</strong></th>
<th><strong>图示</strong></th>
<th><strong>特点</strong></th>
<th><strong>优缺点</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>总线型</strong></td>
<td>───[PC1]──[PC2]───</td>
<td>所有设备共享一条主干电缆。</td>
<td>✅成本低 ❌单点故障影响全网</td>
</tr>
<tr>
<td><strong>星型</strong></td>
<td>●(中心节点)</td>
<td>所有设备连接至中央节点(如交换机)。</td>
<td>✅易维护 ❌中心节点故障则瘫痪</td>
</tr>
<tr>
<td><strong>环型</strong></td>
<td>○→○→○→○(闭环)</td>
<td>数据沿环路单向/双向传输。</td>
<td>✅公平访问 ❌断环则全网失效</td>
</tr>
<tr>
<td><strong>网状型</strong></td>
<td>多设备互联成网</td>
<td>每个节点至少两条路径,冗余高。</td>
<td>✅高可靠性 ❌布线复杂、成本高</td>
</tr>
<tr>
<td><strong>混合型</strong></td>
<td>星型+总线等组合</td>
<td>结合多种拓扑优势。</td>
<td>✅灵活性强 ❌设计复杂</td>
</tr>
</tbody>
</table>
<p><strong>关键点</strong>:</p>
<ul>
<li><strong>星型</strong>是现代LAN的主流(如以太网)。</li>
<li><strong>网状型</strong>用于关键设施(如军事网络、数据中心)。</li>
</ul>
<h2 id="三、按传输技术"><strong>三、按传输技术</strong></h2>
<table>
<thead>
<tr>
<th><strong>类型</strong></th>
<th><strong>原理</strong></th>
<th><strong>示例</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>广播式网络</strong></td>
<td>所有节点接收数据,但只有目标节点处理(如广播电台)。</td>
<td>传统以太网、Wi-Fi</td>
</tr>
<tr>
<td><strong>点对点网络</strong></td>
<td>数据通过专用链路在两个节点间传输。</td>
<td>VPN、电话拨号</td>
</tr>
</tbody>
</table>
<p><strong>对比</strong>:</p>
<ul>
<li>广播式网络适合小型LAN,点对点网络适合远距离通信。</li>
</ul>
<h2 id="四、按使用权限"><strong>四、按使用权限</strong></h2>
<table>
<thead>
<tr>
<th><strong>类型</strong></th>
<th><strong>特点</strong></th>
<th><strong>示例</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>公有网络</strong></td>
<td>向公众开放,安全性较低。</td>
<td>互联网、4G/5G</td>
</tr>
<tr>
<td><strong>私有网络</strong></td>
<td>组织内部专用,安全性高。</td>
<td>企业内网、政府专网</td>
</tr>
<tr>
<td><strong>虚拟私有网络</strong></td>
<td>通过加密技术在公有网上构建私有通道。</td>
<td>VPN(如企业远程办公)</td>
</tr>
</tbody>
</table>
<h2 id="五、其他分类标准"><strong>五、其他分类标准</strong></h2>
<ol>
<li>按传输介质:
<ul>
<li><strong>有线网络</strong>:光纤、双绞线(如Cat6)。</li>
<li><strong>无线网络</strong>:Wi-Fi、5G、卫星通信。</li>
</ul>
</li>
<li>按协议标准:
<ul>
<li><strong>TCP/IP网络</strong>(互联网标准)。</li>
<li><strong>OSI模型网络</strong>(理论参考模型)。</li>
</ul>
</li>
</ol>
<h2 id="记忆技巧-3"><strong>记忆技巧</strong></h2>
<ol>
<li><strong>地理范围分类</strong>:按“个人→局部→城市→全球”递进记忆。</li>
<li>拓扑结构:联想实物:
<ul>
<li><strong>总线型</strong>:像一根串起灯泡的电线。</li>
<li><strong>星型</strong>:像自行车轮辐条。</li>
</ul>
</li>
<li><strong>公有 vs 私有</strong>:公有=“马路”,私有=“私家车道”。</li>
</ol>
<p>通过这种结构化分类,可以清晰掌握计算机网络的多样化划分逻辑!</p>
</blockquote>
<blockquote>
<h3 id="第八章:信息系统安全核心概念">第八章:信息系统安全核心概念</h3>
<h2 id="一、恶意软件(Malware)"><strong>一、恶意软件(Malware)</strong></h2>
<p><strong>定义</strong>:恶意软件(Malicious Software)是任何设计用于破坏、窃取数据或未经授权访问系统的软件。</p>
<h3 id="常见类型及特点"><strong>常见类型及特点</strong></h3>
<table>
<thead>
<tr>
<th><strong>类型</strong></th>
<th><strong>传播方式</strong></th>
<th><strong>危害</strong></th>
<th><strong>示例</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>病毒(Virus)</strong></td>
<td>依附于合法文件/程序</td>
<td>感染文件,自我复制,破坏数据。</td>
<td>CIH病毒、Melissa病毒</td>
</tr>
<tr>
<td><strong>蠕虫(Worm)</strong></td>
<td>通过网络自动传播</td>
<td>消耗带宽,导致系统瘫痪(无需用户操作)。</td>
<td>WannaCry、Conficker</td>
</tr>
<tr>
<td><strong>木马(Trojan)</strong></td>
<td>伪装成正常软件</td>
<td>窃取数据、远程控制设备(如键盘记录)。</td>
<td>Zeus木马、Emotet</td>
</tr>
<tr>
<td><strong>勒索软件(Ransomware)</strong></td>
<td>加密用户文件</td>
<td>勒索赎金解密(通常要求比特币支付)。</td>
<td>LockBit、REvil</td>
</tr>
<tr>
<td><strong>间谍软件(Spyware)</strong></td>
<td>捆绑下载/钓鱼</td>
<td>监控用户行为(如浏览记录、密码)。</td>
<td>Pegasus(飞马间谍软件)</td>
</tr>
<tr>
<td><strong>广告软件(Adware)</strong></td>
<td>捆绑免费软件安装</td>
<td>弹窗广告、降低系统性能。</td>
<td>Superfish</td>
</tr>
</tbody>
</table>
<p><strong>防护措施</strong>:</p>
<ul>
<li>安装杀毒软件(如卡巴斯基、火绒)。</li>
<li>定期更新系统补丁。</li>
<li>不打开可疑邮件/链接。</li>
</ul>
<h2 id="二、黑客(Hacker)"><strong>二、黑客(Hacker)</strong></h2>
<p><strong>定义</strong>:黑客是指利用技术手段突破系统安全限制的人,可分为<strong>白帽、黑帽、灰帽</strong>三类。</p>
<h3 id="黑客分类"><strong>黑客分类</strong></h3>
<table>
<thead>
<tr>
<th><strong>类型</strong></th>
<th><strong>动机</strong></th>
<th><strong>行为</strong></th>
<th><strong>典型例子</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>白帽黑客</strong></td>
<td>合法测试漏洞</td>
<td>受雇于企业进行渗透测试(Ethical Hacking)。</td>
<td>网络安全公司研究员</td>
</tr>
<tr>
<td><strong>黑帽黑客</strong></td>
<td>非法牟利/破坏</td>
<td>窃取数据、发动攻击(如DDoS)。</td>
<td>Anonymous组织成员</td>
</tr>
<tr>
<td><strong>灰帽黑客</strong></td>
<td>介于合法与非法之间</td>
<td>发现漏洞后可能公开或私下出售。</td>
<td>独立安全研究员</td>
</tr>
</tbody>
</table>
<p><strong>黑客常用技术</strong>:</p>
<ul>
<li><strong>社会工程学</strong>(如钓鱼邮件、假冒客服)。</li>
<li><strong>漏洞利用</strong>(如SQL注入、零日攻击)。</li>
<li><strong>密码破解</strong>(暴力破解、彩虹表)。</li>
</ul>
<h2 id="三、其他安全威胁"><strong>三、其他安全威胁</strong></h2>
<h3 id="1-拒绝服务攻击(DDoS)"><strong>1. 拒绝服务攻击(DDoS)</strong></h3>
<ul>
<li><strong>原理</strong>:通过海量请求淹没目标服务器,使其瘫痪。</li>
<li><strong>案例</strong>:2016年Dyn公司攻击导致Twitter、Netflix宕机。</li>
</ul>
<h3 id="2-中间人攻击(MITM)"><strong>2. 中间人攻击(MITM)</strong></h3>
<ul>
<li><strong>原理</strong>:黑客截获通信双方的数据(如公共Wi-Fi窃取密码)。</li>
<li><strong>防御</strong>:使用HTTPS、VPN加密。</li>
</ul>
<h3 id="3-SQL注入"><strong>3. SQL注入</strong></h3>
<ul>
<li><strong>原理</strong>:通过输入恶意SQL代码篡改数据库查询。</li>
<li><strong>案例</strong>:2017年Equifax数据泄露(1.4亿用户信息被盗)。</li>
</ul>
<h2 id="四、安全防护措施"><strong>四、安全防护措施</strong></h2>
<h3 id="1-技术层面"><strong>1. 技术层面</strong></h3>
<ul>
<li><strong>防火墙(Firewall)</strong>:过滤非法流量。</li>
<li><strong>加密技术</strong>:SSL/TLS(用于HTTPS)、AES加密算法。</li>
<li><strong>多因素认证(MFA)</strong>:密码+短信验证码+指纹。</li>
</ul>
<h3 id="2-管理层面"><strong>2. 管理层面</strong></h3>
<ul>
<li><strong>安全策略</strong>:定期更换密码、最小权限原则。</li>
<li><strong>员工培训</strong>:防范社会工程学攻击。</li>
</ul>
<h3 id="3-法律与标准"><strong>3. 法律与标准</strong></h3>
<ul>
<li><strong>GDPR</strong>(欧盟通用数据保护条例):违规罚款可达全球营收4%。</li>
<li><strong>等保2.0</strong>(中国):分五级保护关键信息基础设施。</li>
</ul>
<h2 id="五、关键概念对比"><strong>五、关键概念对比</strong></h2>
<table>
<thead>
<tr>
<th><strong>概念</strong></th>
<th><strong>核心特点</strong></th>
<th><strong>关联威胁</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>恶意软件</strong></td>
<td>软件形式的攻击载体</td>
<td>病毒、勒索软件</td>
</tr>
<tr>
<td><strong>黑客</strong></td>
<td>实施攻击的主体</td>
<td>黑帽/白帽行为差异</td>
</tr>
<tr>
<td><strong>DDoS</strong></td>
<td>通过流量压垮目标</td>
<td>网络带宽攻击</td>
</tr>
<tr>
<td><strong>社会工程学</strong></td>
<td>利用人性弱点(如信任)</td>
<td>钓鱼、假冒身份</td>
</tr>
</tbody>
</table>
<h2 id="记忆技巧-4"><strong>记忆技巧</strong></h2>
<ol>
<li>
<p>恶意软件类型</p>
<p>:按危害方式记忆:</p>
<ul>
<li><strong>病毒</strong>→感染;<strong>蠕虫</strong>→传播;<strong>木马</strong>→潜伏;<strong>勒索</strong>→加密勒索。</li>
</ul>
</li>
<li>
<p>黑客三类:用“帽子颜色”区分:</p>
<ul>
<li><strong>白帽</strong>(合法)、<strong>黑帽</strong>(犯罪)、<strong>灰帽</strong>(游走边缘)。</li>
</ul>
</li>
<li>
<p>防护三层次:</p>
<ul>
<li><strong>技术</strong>(防火墙)、<strong>管理</strong>(培训)、<strong>法律</strong>(GDPR)。</li>
</ul>
</li>
</ol>
<p>通过结构化分类和案例联想,可以系统掌握信息安全的核心威胁与防御逻辑!</p>
</blockquote>
<blockquote>
<h3 id="第九章:运营优化核心概念与策略"><strong>第九章:运营优化核心概念与策略</strong></h3>
<h2 id="一、企业应用(Enterprise-Applications)"><strong>一、企业应用(Enterprise Applications)</strong></h2>
<p><strong>定义</strong>:集成化的软件系统,用于支持企业核心业务流程,提升运营效率与跨部门协作。</p>
<h3 id="主要类型与功能"><strong>主要类型与功能</strong></h3>
<table>
<thead>
<tr>
<th><strong>类型</strong></th>
<th><strong>核心功能</strong></th>
<th><strong>典型系统</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>ERP</strong>(企业资源计划)</td>
<td>整合财务、HR、生产、供应链等模块,实现数据统一管理。</td>
<td>SAP、Oracle ERP</td>
</tr>
<tr>
<td><strong>CRM</strong>(客户关系管理)</td>
<td>管理客户交互、销售漏斗、售后服务,提升客户满意度。</td>
<td>Salesforce、HubSpot</td>
</tr>
<tr>
<td><strong>SCM</strong>(供应链管理)</td>
<td>优化采购、物流、库存,协调供应商与分销商。</td>
<td>JDA、Kinaxis</td>
</tr>
<tr>
<td><strong>HRM</strong>(人力资源管理)</td>
<td>覆盖招聘、考勤、薪酬、培训等全周期员工管理。</td>
<td>Workday、北森</td>
</tr>
</tbody>
</table>
<p><strong>关键价值</strong>:</p>
<ul>
<li><strong>消除信息孤岛</strong>:各部门数据实时共享(如销售数据自动同步至财务系统)。</li>
<li><strong>流程自动化</strong>:减少人工操作(如ERP自动生成采购订单)。</li>
</ul>
<h2 id="二、供应链管理(SCM-Supply-Chain-Management)"><strong>二、供应链管理(SCM, Supply Chain Management)</strong></h2>
<p><strong>定义</strong>:对从原材料采购到产品交付终端的全链条进行计划、协调与优化。</p>
<h3 id="供应链核心环节"><strong>供应链核心环节</strong></h3>
<figure class="highlight"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br><span class="line">3</span><br><span class="line">4</span><br><span class="line">5</span><br><span class="line">6</span><br><span class="line">7</span><br></pre></td><td class="code"><pre><span class="line"></span><br><span class="line">供应商</span><br><span class="line">生产商</span><br><span class="line">仓储</span><br><span class="line">分销商</span><br><span class="line">零售商</span><br><span class="line">消费者</span><br></pre></td></tr></table></figure>
<h3 id="优化策略"><strong>优化策略</strong></h3>
<ol>
<li><strong>精益供应链</strong>:减少浪费(如丰田JIT“准时制”生产)。</li>
<li><strong>敏捷供应链</strong>:快速响应需求变化(如Zara的快速时尚模式)。</li>
<li>数字化供应链:
<ul>
<li><strong>IoT</strong>:实时追踪货物位置(如RFID标签)。</li>
<li><strong>区块链</strong>:提高供应链透明度(如沃尔玛食品溯源)。</li>
</ul>
</li>
</ol>
<p><strong>挑战</strong>:牛鞭效应(需求信号逐级放大导致库存失衡)。</p>
<h2 id="三、客户关系管理(CRM-Customer-Relationship-Management)"><strong>三、客户关系管理(CRM, Customer Relationship Management)</strong></h2>
<p><strong>定义</strong>:通过数据分析与流程优化,提升客户生命周期价值(LTV)。</p>
<h3 id="CRM核心功能"><strong>CRM核心功能</strong></h3>
<table>
<thead>
<tr>
<th><strong>模块</strong></th>
<th><strong>作用</strong></th>
<th><strong>技术工具</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>销售自动化</strong></td>
<td>管理线索、商机、合同(如预测销售额)。</td>
<td>Pipedrive、Zoho CRM</td>
</tr>
<tr>
<td><strong>营销自动化</strong></td>
<td>精准投放广告、邮件营销(如细分客户群体)。</td>
<td>Marketo、HubSpot</td>
</tr>
<tr>
<td><strong>客户服务</strong></td>
<td>工单系统、知识库、呼叫中心(如7×24在线客服)。</td>
<td>Zendesk、Freshdesk</td>
</tr>
<tr>
<td><strong>数据分析</strong></td>
<td>客户画像、流失预警、交叉销售建议。</td>
<td>Power BI、Tableau</td>
</tr>
</tbody>
</table>
<h3 id="CRM策略"><strong>CRM策略</strong></h3>
<ol>
<li><strong>个性化服务</strong>:基于行为数据推荐产品(如亚马逊的“猜你喜欢”)。</li>