-
Notifications
You must be signed in to change notification settings - Fork 0
/
CI.drawio
2363 lines (2363 loc) · 264 KB
/
CI.drawio
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
<mxfile host="app.diagrams.net" modified="2024-02-22T03:20:31.899Z" agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36" etag="Ja773jovLPW_e5fpsbDi" version="23.1.5" type="github" pages="11">
<diagram id="dbYi_EsOO7d35I-B2Z4p" name="通用审核流程图">
<mxGraphModel dx="2074" dy="1156" grid="0" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0">
<root>
<mxCell id="XuZFi7v_uXKurtLlGYp6-0" />
<mxCell id="XuZFi7v_uXKurtLlGYp6-1" parent="XuZFi7v_uXKurtLlGYp6-0" />
<mxCell id="B8H8yHcM6l1h0T3WxI43-0" value="<font face="helvetica"><span style="font-size: 20px">客户安全团队</span></font>" style="rounded=1;whiteSpace=wrap;html=1;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="40" y="289" width="146" height="60" as="geometry" />
</mxCell>
<mxCell id="B8H8yHcM6l1h0T3WxI43-2" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 30px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">腾讯云</span>" style="text;whiteSpace=wrap;html=1;fontSize=30;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="522" y="41" width="96" height="51" as="geometry" />
</mxCell>
<mxCell id="B8H8yHcM6l1h0T3WxI43-3" value="" style="endArrow=none;dashed=1;html=1;" parent="XuZFi7v_uXKurtLlGYp6-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="497" y="549" as="sourcePoint" />
<mxPoint x="497" y="61" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="B8H8yHcM6l1h0T3WxI43-4" value="COS存储" style="rounded=1;whiteSpace=wrap;html=1;fontSize=20;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="517" y="204" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="B8H8yHcM6l1h0T3WxI43-5" value="友商" style="rounded=1;whiteSpace=wrap;html=1;fontSize=20;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="323" y="399" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="B8H8yHcM6l1h0T3WxI43-6" value="" style="edgeStyle=elbowEdgeStyle;elbow=vertical;endArrow=classic;html=1;fontSize=20;" parent="XuZFi7v_uXKurtLlGYp6-1" source="B8H8yHcM6l1h0T3WxI43-0" target="B8H8yHcM6l1h0T3WxI43-5" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="160.99999999999994" y="611.02" as="sourcePoint" />
<mxPoint x="634.96" y="608" as="targetPoint" />
<Array as="points">
<mxPoint x="278" y="428" />
<mxPoint x="367" y="448" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="B8H8yHcM6l1h0T3WxI43-7" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 30px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">友商审核的方案:</span>" style="text;whiteSpace=wrap;html=1;fontSize=20;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="4" y="60" width="286" height="45" as="geometry" />
</mxCell>
<mxCell id="B8H8yHcM6l1h0T3WxI43-8" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 20px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">1 获取外网url</span>" style="text;whiteSpace=wrap;html=1;fontSize=20;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="209" y="196" width="205" height="38" as="geometry" />
</mxCell>
<mxCell id="B8H8yHcM6l1h0T3WxI43-9" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 20px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">2 送审cos外网url</span>" style="text;whiteSpace=wrap;html=1;fontSize=20;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="128" y="436" width="173" height="38" as="geometry" />
</mxCell>
<mxCell id="B8H8yHcM6l1h0T3WxI43-10" value="" style="edgeStyle=elbowEdgeStyle;elbow=vertical;endArrow=classic;html=1;fontSize=20;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;" parent="XuZFi7v_uXKurtLlGYp6-1" source="B8H8yHcM6l1h0T3WxI43-5" target="B8H8yHcM6l1h0T3WxI43-4" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="123" y="447" as="sourcePoint" />
<mxPoint x="587" y="447" as="targetPoint" />
<Array as="points">
<mxPoint x="529" y="428" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="B8H8yHcM6l1h0T3WxI43-11" value="" style="edgeStyle=elbowEdgeStyle;elbow=vertical;endArrow=classic;html=1;fontSize=20;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" parent="XuZFi7v_uXKurtLlGYp6-1" source="B8H8yHcM6l1h0T3WxI43-0" target="B8H8yHcM6l1h0T3WxI43-4" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="524" y="425.3399999999999" as="sourcePoint" />
<mxPoint x="527" y="259" as="targetPoint" />
<Array as="points">
<mxPoint x="322" y="234" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="B8H8yHcM6l1h0T3WxI43-12" value="<span style="font-family: &#34;helvetica&#34; ; font-size: 20px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">3 外网下载文件并审核<br><font color="#ff3333">产生外网流量</font><br></span>" style="text;whiteSpace=wrap;html=1;fontSize=20;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="504" y="440" width="206" height="38" as="geometry" />
</mxCell>
<mxCell id="B8H8yHcM6l1h0T3WxI43-13" value="<span style="font-family: &#34;helvetica&#34; ; font-size: 20px">客户安全团队</span>" style="rounded=1;whiteSpace=wrap;html=1;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="49" y="835" width="147" height="60" as="geometry" />
</mxCell>
<mxCell id="B8H8yHcM6l1h0T3WxI43-15" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 30px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">腾讯云</span>" style="text;whiteSpace=wrap;html=1;fontSize=30;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="531" y="587" width="96" height="51" as="geometry" />
</mxCell>
<mxCell id="B8H8yHcM6l1h0T3WxI43-16" value="" style="endArrow=none;dashed=1;html=1;" parent="XuZFi7v_uXKurtLlGYp6-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="506" y="1095" as="sourcePoint" />
<mxPoint x="506" y="607" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="B8H8yHcM6l1h0T3WxI43-17" value="COS存储" style="rounded=1;whiteSpace=wrap;html=1;fontSize=20;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="526" y="750" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="B8H8yHcM6l1h0T3WxI43-18" value="内容审核" style="rounded=1;whiteSpace=wrap;html=1;fontSize=20;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="526" y="881" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="B8H8yHcM6l1h0T3WxI43-19" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 30px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">COS api审核方案:</span>" style="text;whiteSpace=wrap;html=1;fontSize=20;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="40" y="674" width="279" height="32" as="geometry" />
</mxCell>
<mxCell id="B8H8yHcM6l1h0T3WxI43-20" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 20px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">1 直接调用COS审核api</span>" style="text;whiteSpace=wrap;html=1;fontSize=20;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="218" y="742" width="218" height="38" as="geometry" />
</mxCell>
<mxCell id="B8H8yHcM6l1h0T3WxI43-21" value="" style="edgeStyle=elbowEdgeStyle;elbow=vertical;endArrow=classic;html=1;fontSize=20;entryX=0.5;entryY=0;entryDx=0;entryDy=0;exitX=0.5;exitY=1;exitDx=0;exitDy=0;" parent="XuZFi7v_uXKurtLlGYp6-1" source="B8H8yHcM6l1h0T3WxI43-17" target="B8H8yHcM6l1h0T3WxI43-18" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="514" y="852" as="sourcePoint" />
<mxPoint x="596" y="993" as="targetPoint" />
<Array as="points">
<mxPoint x="574" y="841" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="B8H8yHcM6l1h0T3WxI43-22" value="" style="edgeStyle=elbowEdgeStyle;elbow=vertical;endArrow=classic;html=1;fontSize=20;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" parent="XuZFi7v_uXKurtLlGYp6-1" source="B8H8yHcM6l1h0T3WxI43-13" target="B8H8yHcM6l1h0T3WxI43-17" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="533" y="971.3399999999999" as="sourcePoint" />
<mxPoint x="536" y="805" as="targetPoint" />
<Array as="points">
<mxPoint x="331" y="780" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="B8H8yHcM6l1h0T3WxI43-23" value="<span style="font-family: &#34;helvetica&#34; ; font-size: 20px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">2 内网送审<br><span style="color: rgb(0 , 153 , 77)">无外网流量</span><br></span>" style="text;whiteSpace=wrap;html=1;fontSize=20;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="618" y="819" width="137" height="53" as="geometry" />
</mxCell>
<mxCell id="B8H8yHcM6l1h0T3WxI43-24" value="<span style="font-family: &#34;helvetica&#34; ; font-size: 20px">客户安全团队</span>" style="rounded=1;whiteSpace=wrap;html=1;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="30" y="1444" width="133" height="60" as="geometry" />
</mxCell>
<mxCell id="B8H8yHcM6l1h0T3WxI43-26" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 30px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">腾讯云</span>" style="text;whiteSpace=wrap;html=1;fontSize=30;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="531" y="1162" width="96" height="51" as="geometry" />
</mxCell>
<mxCell id="B8H8yHcM6l1h0T3WxI43-27" value="" style="endArrow=none;dashed=1;html=1;" parent="XuZFi7v_uXKurtLlGYp6-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="506" y="1689" as="sourcePoint" />
<mxPoint x="506" y="1201" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="B8H8yHcM6l1h0T3WxI43-28" value="COS存储" style="rounded=1;whiteSpace=wrap;html=1;fontSize=20;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="522" y="1300" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="B8H8yHcM6l1h0T3WxI43-29" value="内容审核" style="rounded=1;whiteSpace=wrap;html=1;fontSize=20;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="522" y="1431" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="B8H8yHcM6l1h0T3WxI43-31" value="" style="edgeStyle=elbowEdgeStyle;elbow=vertical;endArrow=classic;html=1;fontSize=20;entryX=0.5;entryY=0;entryDx=0;entryDy=0;exitX=0.5;exitY=1;exitDx=0;exitDy=0;" parent="XuZFi7v_uXKurtLlGYp6-1" source="B8H8yHcM6l1h0T3WxI43-28" target="B8H8yHcM6l1h0T3WxI43-29" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="536" y="1414" as="sourcePoint" />
<mxPoint x="592" y="1543" as="targetPoint" />
<Array as="points">
<mxPoint x="570" y="1391" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="B8H8yHcM6l1h0T3WxI43-32" value="" style="edgeStyle=elbowEdgeStyle;elbow=vertical;endArrow=classic;html=1;fontSize=20;entryX=0;entryY=0.5;entryDx=0;entryDy=0;exitX=1;exitY=0.5;exitDx=0;exitDy=0;" parent="XuZFi7v_uXKurtLlGYp6-1" source="B8H8yHcM6l1h0T3WxI43-37" target="B8H8yHcM6l1h0T3WxI43-28" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="529" y="1521.34" as="sourcePoint" />
<mxPoint x="532" y="1355" as="targetPoint" />
<Array as="points">
<mxPoint x="327" y="1330" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="B8H8yHcM6l1h0T3WxI43-34" value="增量审核配置" style="rounded=1;whiteSpace=wrap;html=1;fontSize=20;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="687" y="1300" width="129" height="60" as="geometry" />
</mxCell>
<mxCell id="B8H8yHcM6l1h0T3WxI43-35" value="" style="edgeStyle=elbowEdgeStyle;elbow=vertical;endArrow=classic;html=1;fontSize=20;entryX=0;entryY=0.5;entryDx=0;entryDy=0;exitX=1;exitY=0.5;exitDx=0;exitDy=0;" parent="XuZFi7v_uXKurtLlGYp6-1" source="B8H8yHcM6l1h0T3WxI43-28" target="B8H8yHcM6l1h0T3WxI43-34" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="609" y="1245" as="sourcePoint" />
<mxPoint x="1026" y="1190" as="targetPoint" />
<Array as="points" />
</mxGeometry>
</mxCell>
<mxCell id="B8H8yHcM6l1h0T3WxI43-36" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 20px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">2 内网送审<br><span style="color: rgb(0 , 153 , 77)">无外网流量</span><br></span>" style="text;whiteSpace=wrap;html=1;fontSize=20;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="606" y="1374" width="114" height="57" as="geometry" />
</mxCell>
<mxCell id="B8H8yHcM6l1h0T3WxI43-37" value="<span style="font-family: &#34;helvetica&#34; ; font-size: 20px">客户业务团队</span>" style="rounded=1;whiteSpace=wrap;html=1;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="33" y="1300" width="128" height="60" as="geometry" />
</mxCell>
<mxCell id="B8H8yHcM6l1h0T3WxI43-38" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 20px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">1 业务有文件上传</span>" style="text;whiteSpace=wrap;html=1;fontSize=20;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="233" y="1288" width="218" height="38" as="geometry" />
</mxCell>
<mxCell id="B8H8yHcM6l1h0T3WxI43-39" value="" style="edgeStyle=elbowEdgeStyle;elbow=vertical;endArrow=classic;html=1;fontSize=20;exitX=0.192;exitY=1.039;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;exitPerimeter=0;" parent="XuZFi7v_uXKurtLlGYp6-1" source="B8H8yHcM6l1h0T3WxI43-28" target="B8H8yHcM6l1h0T3WxI43-24" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="161" y="1330" as="sourcePoint" />
<mxPoint x="180" y="1520" as="targetPoint" />
<Array as="points">
<mxPoint x="329" y="1405" />
<mxPoint x="485" y="1398" />
<mxPoint x="484" y="1474" />
<mxPoint x="327" y="1330" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="B8H8yHcM6l1h0T3WxI43-40" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 20px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">3 审核结果回调</span>" style="text;whiteSpace=wrap;html=1;fontSize=20;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="230" y="1412" width="203" height="38" as="geometry" />
</mxCell>
<mxCell id="B8H8yHcM6l1h0T3WxI43-42" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 30px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">COS增量审核方案:</span>" style="text;whiteSpace=wrap;html=1;fontSize=20;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="35" y="1181" width="279" height="32" as="geometry" />
</mxCell>
<mxCell id="tiR6DcxpCzgHxxNmPTT0-0" value="<span style="font-family: &#34;helvetica&#34; ; font-size: 20px">客户安全团队</span>" style="rounded=1;whiteSpace=wrap;html=1;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="35" y="2031" width="133" height="60" as="geometry" />
</mxCell>
<mxCell id="tiR6DcxpCzgHxxNmPTT0-1" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 30px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">腾讯云</span>" style="text;whiteSpace=wrap;html=1;fontSize=30;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="534" y="1768" width="96" height="51" as="geometry" />
</mxCell>
<mxCell id="tiR6DcxpCzgHxxNmPTT0-2" value="COS存储" style="rounded=1;whiteSpace=wrap;html=1;fontSize=20;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="527" y="1887" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="tiR6DcxpCzgHxxNmPTT0-3" value="api触发审核<br>java/Go/python/php SDK" style="rounded=1;whiteSpace=wrap;html=1;fontSize=20;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="901" y="2509.5" width="229" height="60" as="geometry" />
</mxCell>
<mxCell id="tiR6DcxpCzgHxxNmPTT0-17" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="XuZFi7v_uXKurtLlGYp6-1" source="tiR6DcxpCzgHxxNmPTT0-6" target="tiR6DcxpCzgHxxNmPTT0-2" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="tiR6DcxpCzgHxxNmPTT0-6" value="存量审核模块" style="rounded=1;whiteSpace=wrap;html=1;fontSize=20;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="692" y="1887" width="129" height="60" as="geometry" />
</mxCell>
<mxCell id="tiR6DcxpCzgHxxNmPTT0-8" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 20px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">3 内网送审<br><span style="color: rgb(0 , 153 , 77)">无外网流量</span><br></span>" style="text;whiteSpace=wrap;html=1;fontSize=20;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="772" y="1976" width="109" height="59" as="geometry" />
</mxCell>
<mxCell id="tiR6DcxpCzgHxxNmPTT0-11" value="" style="edgeStyle=elbowEdgeStyle;elbow=vertical;endArrow=classic;html=1;fontSize=20;exitX=0.25;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="XuZFi7v_uXKurtLlGYp6-1" source="tiR6DcxpCzgHxxNmPTT0-6" target="tiR6DcxpCzgHxxNmPTT0-0" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="166" y="1917" as="sourcePoint" />
<mxPoint x="185" y="2107" as="targetPoint" />
<Array as="points">
<mxPoint x="334" y="1992" />
<mxPoint x="490" y="1985" />
<mxPoint x="489" y="2061" />
<mxPoint x="332" y="1917" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="tiR6DcxpCzgHxxNmPTT0-12" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 20px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">4 审核结果回调</span>" style="text;whiteSpace=wrap;html=1;fontSize=20;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="235" y="1999" width="203" height="38" as="geometry" />
</mxCell>
<mxCell id="tiR6DcxpCzgHxxNmPTT0-13" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 30px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">COS存量审核方案:</span>" style="text;whiteSpace=wrap;html=1;fontSize=20;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="40" y="1768" width="279" height="32" as="geometry" />
</mxCell>
<mxCell id="tiR6DcxpCzgHxxNmPTT0-15" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="XuZFi7v_uXKurtLlGYp6-1" source="tiR6DcxpCzgHxxNmPTT0-14" target="tiR6DcxpCzgHxxNmPTT0-6" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="tiR6DcxpCzgHxxNmPTT0-14" value="存量审核配置" style="rounded=1;whiteSpace=wrap;html=1;fontSize=20;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="692" y="1789" width="129" height="60" as="geometry" />
</mxCell>
<mxCell id="tiR6DcxpCzgHxxNmPTT0-18" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 20px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">2 遍历COS文件</span>" style="text;whiteSpace=wrap;html=1;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="582.9966259765624" y="1850.996748046875" width="157" height="31" as="geometry" />
</mxCell>
<mxCell id="tiR6DcxpCzgHxxNmPTT0-19" value="" style="edgeStyle=elbowEdgeStyle;elbow=vertical;endArrow=classic;html=1;fontSize=20;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="XuZFi7v_uXKurtLlGYp6-1" source="tiR6DcxpCzgHxxNmPTT0-6" target="uW91O_0hlvky1Mw-fPKi-0" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="824.54" y="1657.0000000000002" as="sourcePoint" />
<mxPoint x="757" y="2083" as="targetPoint" />
<Array as="points">
<mxPoint x="701" y="2048" />
<mxPoint x="764.5" y="1692.66" />
<mxPoint x="763.5" y="1768.66" />
<mxPoint x="606.5" y="1624.66" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="tiR6DcxpCzgHxxNmPTT0-21" value="" style="endArrow=none;dashed=1;html=1;" parent="XuZFi7v_uXKurtLlGYp6-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="507" y="2188" as="sourcePoint" />
<mxPoint x="507" y="1700" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="p480nV6rLNE_SQuTAzuX-3" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=18;entryX=0.5;entryY=0;entryDx=0;entryDy=0;entryPerimeter=0;" parent="XuZFi7v_uXKurtLlGYp6-1" source="p480nV6rLNE_SQuTAzuX-1" target="p480nV6rLNE_SQuTAzuX-5" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="108.5" y="2705.5" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="p480nV6rLNE_SQuTAzuX-7" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;fontSize=18;" parent="XuZFi7v_uXKurtLlGYp6-1" source="p480nV6rLNE_SQuTAzuX-1" target="p480nV6rLNE_SQuTAzuX-9" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="258" y="2534.5" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="p480nV6rLNE_SQuTAzuX-1" value="<font style="font-size: 18px">业务是否会产生数据</font>" style="rhombus;whiteSpace=wrap;html=1;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry y="2474" width="217" height="121" as="geometry" />
</mxCell>
<mxCell id="p480nV6rLNE_SQuTAzuX-4" value="<div style="text-align: center"><font face="helvetica"><span style="font-size: 20px">不会</span></font></div>" style="text;whiteSpace=wrap;html=1;fontSize=18;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="120" y="2622" width="61" height="37" as="geometry" />
</mxCell>
<mxCell id="p480nV6rLNE_SQuTAzuX-5" value="" style="verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.flowchart.or;fontSize=18;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="73.5" y="2686" width="70" height="70" as="geometry" />
</mxCell>
<mxCell id="p480nV6rLNE_SQuTAzuX-8" value="<div style="text-align: center">要CDN加速</div>" style="text;whiteSpace=wrap;html=1;fontSize=18;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="475" y="2376" width="96" height="37" as="geometry" />
</mxCell>
<mxCell id="p480nV6rLNE_SQuTAzuX-14" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;fontSize=18;entryPerimeter=0;" parent="XuZFi7v_uXKurtLlGYp6-1" source="p480nV6rLNE_SQuTAzuX-9" target="p480nV6rLNE_SQuTAzuX-18" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="523" y="2534.5" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="p480nV6rLNE_SQuTAzuX-15" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;fontSize=18;" parent="XuZFi7v_uXKurtLlGYp6-1" source="p480nV6rLNE_SQuTAzuX-9" target="p480nV6rLNE_SQuTAzuX-12" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="374" y="2671" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="p480nV6rLNE_SQuTAzuX-9" value="<font style="font-size: 18px">对数据有什么需求</font>" style="rhombus;whiteSpace=wrap;html=1;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="265" y="2474" width="217" height="121" as="geometry" />
</mxCell>
<mxCell id="p480nV6rLNE_SQuTAzuX-24" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;fontSize=18;exitX=0.5;exitY=0;exitDx=0;exitDy=0;" parent="XuZFi7v_uXKurtLlGYp6-1" source="p480nV6rLNE_SQuTAzuX-12" target="tiR6DcxpCzgHxxNmPTT0-3" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="p480nV6rLNE_SQuTAzuX-26" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;fontSize=18;" parent="XuZFi7v_uXKurtLlGYp6-1" source="p480nV6rLNE_SQuTAzuX-12" target="p480nV6rLNE_SQuTAzuX-22" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="p480nV6rLNE_SQuTAzuX-28" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;fontSize=18;" parent="XuZFi7v_uXKurtLlGYp6-1" source="p480nV6rLNE_SQuTAzuX-12" target="p480nV6rLNE_SQuTAzuX-23" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="692" y="2802" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="p480nV6rLNE_SQuTAzuX-12" value="<font style="font-size: 18px">数据现在<br>怎么产生<br>怎么存储</font>" style="rhombus;whiteSpace=wrap;html=1;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="583" y="2610" width="217" height="121" as="geometry" />
</mxCell>
<mxCell id="p480nV6rLNE_SQuTAzuX-13" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=18;entryX=0;entryY=0.5;entryDx=0;entryDy=0;exitX=0.5;exitY=0;exitDx=0;exitDy=0;entryPerimeter=0;" parent="XuZFi7v_uXKurtLlGYp6-1" source="p480nV6rLNE_SQuTAzuX-9" target="p480nV6rLNE_SQuTAzuX-17" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="118.5" y="2605" as="sourcePoint" />
<mxPoint x="523" y="2398.5" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="p480nV6rLNE_SQuTAzuX-16" value="<div style="text-align: center">要存储</div>" style="text;whiteSpace=wrap;html=1;fontSize=18;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="475" y="2487" width="96" height="37" as="geometry" />
</mxCell>
<mxCell id="p480nV6rLNE_SQuTAzuX-17" value="" style="verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.flowchart.or;fontSize=18;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="567" y="2376" width="70" height="70" as="geometry" />
</mxCell>
<mxCell id="p480nV6rLNE_SQuTAzuX-18" value="" style="verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.flowchart.or;fontSize=18;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="567" y="2499.5" width="70" height="70" as="geometry" />
</mxCell>
<mxCell id="p480nV6rLNE_SQuTAzuX-19" value="<div style="text-align: center">要安全</div><div style="text-align: center">做内容审核</div>" style="text;whiteSpace=wrap;html=1;fontSize=18;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="449" y="2618" width="96" height="37" as="geometry" />
</mxCell>
<mxCell id="p480nV6rLNE_SQuTAzuX-20" value="<div style="text-align: center"><font face="helvetica"><span style="font-size: 20px">会</span></font></div>" style="text;whiteSpace=wrap;html=1;fontSize=18;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="209" y="2552" width="42" height="37" as="geometry" />
</mxCell>
<mxCell id="p480nV6rLNE_SQuTAzuX-22" value="增量审核" style="rounded=1;whiteSpace=wrap;html=1;fontSize=20;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="901" y="2640.5" width="231" height="60" as="geometry" />
</mxCell>
<mxCell id="p480nV6rLNE_SQuTAzuX-23" value="存量审核" style="rounded=1;whiteSpace=wrap;html=1;fontSize=20;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="901" y="2772" width="236" height="60" as="geometry" />
</mxCell>
<mxCell id="p480nV6rLNE_SQuTAzuX-25" value="<div style="text-align: center">存内存不落地</div><div style="text-align: center">存自建IDC</div><div style="text-align: center">存其他云</div>" style="text;whiteSpace=wrap;html=1;fontSize=18;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="758" y="2466" width="115.5" height="72" as="geometry" />
</mxCell>
<mxCell id="p480nV6rLNE_SQuTAzuX-27" value="<div style="text-align: center">新增文件在COS</div>" style="text;whiteSpace=wrap;html=1;fontSize=18;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="779" y="2616" width="115.5" height="41" as="geometry" />
</mxCell>
<mxCell id="p480nV6rLNE_SQuTAzuX-29" value="<div style="text-align: center">已有文件在COS</div>" style="text;whiteSpace=wrap;html=1;fontSize=18;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="758" y="2749" width="115.5" height="41" as="geometry" />
</mxCell>
<mxCell id="p480nV6rLNE_SQuTAzuX-42" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;fontSize=18;exitX=0.5;exitY=0;exitDx=0;exitDy=0;" parent="XuZFi7v_uXKurtLlGYp6-1" source="p480nV6rLNE_SQuTAzuX-32" target="p480nV6rLNE_SQuTAzuX-39" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="1353" y="2556" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="p480nV6rLNE_SQuTAzuX-43" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=18;" parent="XuZFi7v_uXKurtLlGYp6-1" source="p480nV6rLNE_SQuTAzuX-32" target="p480nV6rLNE_SQuTAzuX-40" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="p480nV6rLNE_SQuTAzuX-44" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.75;entryDx=0;entryDy=0;fontSize=18;" parent="XuZFi7v_uXKurtLlGYp6-1" source="p480nV6rLNE_SQuTAzuX-32" target="p480nV6rLNE_SQuTAzuX-41" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="1353" y="2825" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="p480nV6rLNE_SQuTAzuX-32" value="<span style="font-size: 18px">遇到问题</span>" style="rhombus;whiteSpace=wrap;html=1;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="1244" y="2610" width="217" height="121" as="geometry" />
</mxCell>
<mxCell id="p480nV6rLNE_SQuTAzuX-33" value="" style="endArrow=classic;html=1;rounded=0;fontSize=18;entryX=0;entryY=0.5;entryDx=0;entryDy=0;exitX=1;exitY=0.25;exitDx=0;exitDy=0;" parent="XuZFi7v_uXKurtLlGYp6-1" source="tiR6DcxpCzgHxxNmPTT0-3" target="p480nV6rLNE_SQuTAzuX-32" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="893" y="3050" as="sourcePoint" />
<mxPoint x="943" y="3000" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="p480nV6rLNE_SQuTAzuX-34" value="" style="endArrow=classic;html=1;rounded=0;fontSize=18;entryX=0;entryY=0.5;entryDx=0;entryDy=0;exitX=1;exitY=0.5;exitDx=0;exitDy=0;" parent="XuZFi7v_uXKurtLlGYp6-1" source="p480nV6rLNE_SQuTAzuX-23" target="p480nV6rLNE_SQuTAzuX-32" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1140" y="2534.5" as="sourcePoint" />
<mxPoint x="1254" y="2680.5" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="p480nV6rLNE_SQuTAzuX-35" value="" style="endArrow=classic;html=1;rounded=0;fontSize=18;entryX=0;entryY=0.5;entryDx=0;entryDy=0;exitX=1;exitY=0.5;exitDx=0;exitDy=0;" parent="XuZFi7v_uXKurtLlGYp6-1" source="p480nV6rLNE_SQuTAzuX-22" target="p480nV6rLNE_SQuTAzuX-32" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1150" y="2544.5" as="sourcePoint" />
<mxPoint x="1264" y="2690.5" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="p480nV6rLNE_SQuTAzuX-36" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 20px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">接口报错,时延过大,客户不会写代码</span>" style="text;whiteSpace=wrap;html=1;fontSize=18;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="1409" y="2501" width="214" height="37" as="geometry" />
</mxCell>
<mxCell id="p480nV6rLNE_SQuTAzuX-37" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 20px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">审核效果不好,漏审、误杀<br></span>" style="text;whiteSpace=wrap;html=1;fontSize=18;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="1370" y="2777" width="246" height="37" as="geometry" />
</mxCell>
<mxCell id="p480nV6rLNE_SQuTAzuX-38" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 20px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">文档不清楚,</span><span style="font-family: &#34;helvetica&#34; ; font-size: 20px ; text-align: center">产品不好用,功能不支持</span>" style="text;whiteSpace=wrap;html=1;fontSize=18;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="1411" y="2607" width="349" height="37" as="geometry" />
</mxCell>
<mxCell id="p480nV6rLNE_SQuTAzuX-39" value="找研发" style="rounded=1;whiteSpace=wrap;html=1;fontSize=20;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="1630" y="2526" width="133" height="60" as="geometry" />
</mxCell>
<mxCell id="p480nV6rLNE_SQuTAzuX-40" value="找产品" style="rounded=1;whiteSpace=wrap;html=1;fontSize=20;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="1630" y="2640.5" width="133" height="60" as="geometry" />
</mxCell>
<mxCell id="p480nV6rLNE_SQuTAzuX-41" value="找运营" style="rounded=1;whiteSpace=wrap;html=1;fontSize=20;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="1630" y="2780" width="133" height="60" as="geometry" />
</mxCell>
<mxCell id="p480nV6rLNE_SQuTAzuX-45" value="<div style="text-align: center"><font face="helvetica">阶段一:客户接入</font></div>" style="text;whiteSpace=wrap;html=1;fontSize=18;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="17.4966259765625" y="2393" width="182" height="36" as="geometry" />
</mxCell>
<mxCell id="p480nV6rLNE_SQuTAzuX-46" value="更多场景,直播/TRTC" style="rounded=1;whiteSpace=wrap;html=1;fontSize=20;dashed=1;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="901" y="2907" width="236" height="60" as="geometry" />
</mxCell>
<mxCell id="p480nV6rLNE_SQuTAzuX-47" value="<div style="text-align: center"><b><span><font face="helvetica">关键难点:沟通客户业务流程,</font></span><span style="font-family: &#34;helvetica&#34;">帮客户找到调用审核api的点</span></b></div>" style="text;whiteSpace=wrap;html=1;fontSize=18;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="889" y="2436" width="285" height="65" as="geometry" />
</mxCell>
<mxCell id="uW91O_0hlvky1Mw-fPKi-0" value="内容审核" style="rounded=1;whiteSpace=wrap;html=1;fontSize=20;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="696" y="2076" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="R3ITBf981f5qP9713a8w-0" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 20px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">1 发起历史数据批量审核</span>" style="text;whiteSpace=wrap;html=1;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="642" y="1745" width="233" height="31" as="geometry" />
</mxCell>
<mxCell id="I5dprp4ih2KDtcLOhwC_-0" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &quot;helvetica&quot; ; font-size: 30px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">coding 公有仓库</span>" style="text;whiteSpace=wrap;html=1;fontSize=30;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="971" y="75" width="232" height="51" as="geometry" />
</mxCell>
<mxCell id="I5dprp4ih2KDtcLOhwC_-12" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="XuZFi7v_uXKurtLlGYp6-1" source="I5dprp4ih2KDtcLOhwC_-1" target="I5dprp4ih2KDtcLOhwC_-11" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="I5dprp4ih2KDtcLOhwC_-1" value="" style="rounded=1;whiteSpace=wrap;html=1;fontSize=20;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="982" y="143" width="247" height="242" as="geometry" />
</mxCell>
<mxCell id="I5dprp4ih2KDtcLOhwC_-2" value="内容审核" style="rounded=1;whiteSpace=wrap;html=1;fontSize=20;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="1384" y="436" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="I5dprp4ih2KDtcLOhwC_-3" value="" style="endArrow=none;dashed=1;html=1;" parent="XuZFi7v_uXKurtLlGYp6-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1267" y="622" as="sourcePoint" />
<mxPoint x="1267" y="31" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="I5dprp4ih2KDtcLOhwC_-4" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 30px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">腾讯云</span>" style="text;whiteSpace=wrap;html=1;fontSize=30;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="1396" y="75" width="96" height="51" as="geometry" />
</mxCell>
<mxCell id="I5dprp4ih2KDtcLOhwC_-9" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="XuZFi7v_uXKurtLlGYp6-1" source="I5dprp4ih2KDtcLOhwC_-5" target="I5dprp4ih2KDtcLOhwC_-1" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="I5dprp4ih2KDtcLOhwC_-5" value="" style="verticalLabelPosition=bottom;html=1;verticalAlign=top;align=center;strokeColor=none;fillColor=#00BEF2;shape=mxgraph.azure.user;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="858" y="239" width="47.5" height="50" as="geometry" />
</mxCell>
<mxCell id="I5dprp4ih2KDtcLOhwC_-6" value="图片" style="rounded=1;whiteSpace=wrap;html=1;fontSize=20;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="1038" y="154" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="I5dprp4ih2KDtcLOhwC_-7" value="音视频" style="rounded=1;whiteSpace=wrap;html=1;fontSize=20;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="1038" y="229" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="I5dprp4ih2KDtcLOhwC_-8" value="文档文本" style="rounded=1;whiteSpace=wrap;html=1;fontSize=20;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="1038" y="308" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="I5dprp4ih2KDtcLOhwC_-10" value="<span style="color: rgb(0, 0, 0); font-family: Helvetica; font-size: 20px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: center; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(248, 249, 250); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline !important;">上传</span>" style="text;whiteSpace=wrap;html=1;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="911.0042857142857" y="209.00001743861617" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="I5dprp4ih2KDtcLOhwC_-11" value="腾讯云对象存储服务COS" style="rounded=1;whiteSpace=wrap;html=1;fontSize=20;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="1376" y="234" width="146" height="60" as="geometry" />
</mxCell>
<mxCell id="I5dprp4ih2KDtcLOhwC_-13" value="<span style="color: rgb(0, 0, 0); font-family: Helvetica; font-size: 20px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: center; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(248, 249, 250); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline !important;">数据实际落地</span>" style="text;whiteSpace=wrap;html=1;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="1244" y="199" width="135" height="30" as="geometry" />
</mxCell>
<mxCell id="I5dprp4ih2KDtcLOhwC_-15" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="XuZFi7v_uXKurtLlGYp6-1" source="I5dprp4ih2KDtcLOhwC_-14" target="I5dprp4ih2KDtcLOhwC_-8" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="I5dprp4ih2KDtcLOhwC_-17" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="XuZFi7v_uXKurtLlGYp6-1" source="I5dprp4ih2KDtcLOhwC_-14" target="I5dprp4ih2KDtcLOhwC_-2" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="I5dprp4ih2KDtcLOhwC_-20" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="XuZFi7v_uXKurtLlGYp6-1" source="I5dprp4ih2KDtcLOhwC_-14" target="I5dprp4ih2KDtcLOhwC_-19" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="I5dprp4ih2KDtcLOhwC_-14" value="安全服务" style="rounded=1;whiteSpace=wrap;html=1;fontSize=20;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="1038" y="436" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="I5dprp4ih2KDtcLOhwC_-16" value="<span style="color: rgb(0, 0, 0); font-family: Helvetica; font-size: 20px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: center; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(248, 249, 250); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline !important;">定时检测新增数据</span>" style="text;whiteSpace=wrap;html=1;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="1101" y="396" width="168" height="30" as="geometry" />
</mxCell>
<mxCell id="I5dprp4ih2KDtcLOhwC_-18" value="<span style="color: rgb(0, 0, 0); font-family: Helvetica; font-size: 20px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: center; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(248, 249, 250); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline !important;">调用api触发审核</span>" style="text;whiteSpace=wrap;html=1;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="1178" y="481" width="168" height="30" as="geometry" />
</mxCell>
<mxCell id="I5dprp4ih2KDtcLOhwC_-21" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.75;entryDx=0;entryDy=0;" parent="XuZFi7v_uXKurtLlGYp6-1" source="I5dprp4ih2KDtcLOhwC_-19" target="I5dprp4ih2KDtcLOhwC_-1" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="973.0000174386164" y="320.1429443359375" as="targetPoint" />
<Array as="points">
<mxPoint x="907" y="578" />
<mxPoint x="907" y="325" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="I5dprp4ih2KDtcLOhwC_-19" value="人工复审" style="rounded=1;whiteSpace=wrap;html=1;fontSize=20;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="1038" y="548" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="I5dprp4ih2KDtcLOhwC_-23" value="<span style="color: rgb(0, 0, 0); font-family: Helvetica; font-size: 20px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: center; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(248, 249, 250); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline !important;">封禁文件或仓库</span>" style="text;whiteSpace=wrap;html=1;" parent="XuZFi7v_uXKurtLlGYp6-1" vertex="1">
<mxGeometry x="841" y="496" width="168" height="30" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram id="0i_a363HOQ5otxLn6usN" name="彩视">
<mxGraphModel dx="2074" dy="1156" grid="0" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="P-CCTiPUnd-aN9DFWdZh-64" value="" style="ellipse;whiteSpace=wrap;html=1;fontSize=20;dashed=1;" parent="1" vertex="1">
<mxGeometry x="283" y="801" width="210" height="97" as="geometry" />
</mxCell>
<mxCell id="P-CCTiPUnd-aN9DFWdZh-1" value="<span style="font-family: &#34;helvetica&#34; ; font-size: 20px">业务团队</span>" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="53" y="206" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="P-CCTiPUnd-aN9DFWdZh-2" value="<span style="font-family: &#34;helvetica&#34; ; font-size: 20px">审核团队</span>" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="53" y="377" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="P-CCTiPUnd-aN9DFWdZh-3" value="" style="endArrow=none;dashed=1;html=1;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="188" y="553" as="sourcePoint" />
<mxPoint x="188" y="70" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="P-CCTiPUnd-aN9DFWdZh-4" value="<span style="color: rgb(0, 0, 0); font-family: helvetica; font-size: 30px; font-style: normal; font-weight: 400; letter-spacing: normal; text-align: center; text-indent: 0px; text-transform: none; word-spacing: 0px; background-color: rgb(248, 249, 250); display: inline; float: none;">彩视</span>" style="text;whiteSpace=wrap;html=1;fontSize=30;" parent="1" vertex="1">
<mxGeometry x="57" y="69" width="86" height="51" as="geometry" />
</mxCell>
<mxCell id="P-CCTiPUnd-aN9DFWdZh-5" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 30px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">腾讯云</span>" style="text;whiteSpace=wrap;html=1;fontSize=30;" parent="1" vertex="1">
<mxGeometry x="206" y="67" width="96" height="51" as="geometry" />
</mxCell>
<mxCell id="P-CCTiPUnd-aN9DFWdZh-6" value="" style="endArrow=none;dashed=1;html=1;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="497" y="549" as="sourcePoint" />
<mxPoint x="497" y="61" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="P-CCTiPUnd-aN9DFWdZh-7" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 30px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">七牛</span>" style="text;whiteSpace=wrap;html=1;fontSize=30;" parent="1" vertex="1">
<mxGeometry x="508" y="69" width="96" height="51" as="geometry" />
</mxCell>
<mxCell id="P-CCTiPUnd-aN9DFWdZh-11" value="七牛存储" style="rounded=1;whiteSpace=wrap;html=1;fontSize=20;" parent="1" vertex="1">
<mxGeometry x="517" y="204" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="P-CCTiPUnd-aN9DFWdZh-12" value="腾讯审核<br>天御" style="rounded=1;whiteSpace=wrap;html=1;fontSize=20;" parent="1" vertex="1">
<mxGeometry x="288" y="377" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="P-CCTiPUnd-aN9DFWdZh-14" value="" style="endArrow=classic;html=1;fontSize=20;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="P-CCTiPUnd-aN9DFWdZh-2" target="P-CCTiPUnd-aN9DFWdZh-12" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="344" y="590" as="sourcePoint" />
<mxPoint x="394" y="540" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="P-CCTiPUnd-aN9DFWdZh-15" value="" style="endArrow=classic;html=1;fontSize=20;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;" parent="1" source="P-CCTiPUnd-aN9DFWdZh-12" target="P-CCTiPUnd-aN9DFWdZh-11" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="183" y="417" as="sourcePoint" />
<mxPoint x="298" y="417" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="P-CCTiPUnd-aN9DFWdZh-22" value="" style="edgeStyle=elbowEdgeStyle;elbow=vertical;endArrow=classic;html=1;fontSize=20;exitX=0.417;exitY=0.017;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="P-CCTiPUnd-aN9DFWdZh-1" target="P-CCTiPUnd-aN9DFWdZh-11" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="344" y="480" as="sourcePoint" />
<mxPoint x="394" y="430" as="targetPoint" />
<Array as="points">
<mxPoint x="352" y="149" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="P-CCTiPUnd-aN9DFWdZh-25" value="七牛截帧" style="rounded=1;whiteSpace=wrap;html=1;fontSize=20;" parent="1" vertex="1">
<mxGeometry x="664" y="204" width="115" height="60" as="geometry" />
</mxCell>
<mxCell id="P-CCTiPUnd-aN9DFWdZh-26" value="七牛审核" style="rounded=1;whiteSpace=wrap;html=1;fontSize=20;" parent="1" vertex="1">
<mxGeometry x="580" y="374" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="P-CCTiPUnd-aN9DFWdZh-28" value="" style="endArrow=classic;html=1;fontSize=20;entryX=1;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="P-CCTiPUnd-aN9DFWdZh-25" target="P-CCTiPUnd-aN9DFWdZh-11" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="527" y="244" as="sourcePoint" />
<mxPoint x="418" y="244" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="P-CCTiPUnd-aN9DFWdZh-29" value="" style="edgeStyle=elbowEdgeStyle;elbow=vertical;endArrow=classic;html=1;fontSize=20;" parent="1" source="P-CCTiPUnd-aN9DFWdZh-2" target="P-CCTiPUnd-aN9DFWdZh-26" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="177.99999999999994" y="648.02" as="sourcePoint" />
<mxPoint x="651.96" y="645" as="targetPoint" />
<Array as="points">
<mxPoint x="384" y="485" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="P-CCTiPUnd-aN9DFWdZh-30" value="" style="endArrow=classic;html=1;fontSize=20;entryX=0.842;entryY=1.017;entryDx=0;entryDy=0;entryPerimeter=0;" parent="1" source="P-CCTiPUnd-aN9DFWdZh-26" target="P-CCTiPUnd-aN9DFWdZh-11" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="418" y="417" as="sourcePoint" />
<mxPoint x="587" y="274" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="P-CCTiPUnd-aN9DFWdZh-31" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 20px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">1 上传文件</span>" style="text;whiteSpace=wrap;html=1;fontSize=20;" parent="1" vertex="1">
<mxGeometry x="94" y="113" width="104" height="38" as="geometry" />
</mxCell>
<mxCell id="P-CCTiPUnd-aN9DFWdZh-32" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 20px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">2 截图保存</span>" style="text;whiteSpace=wrap;html=1;fontSize=20;" parent="1" vertex="1">
<mxGeometry x="613" y="164" width="106" height="38" as="geometry" />
</mxCell>
<mxCell id="P-CCTiPUnd-aN9DFWdZh-33" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 20px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">3 审核截图</span>" style="text;whiteSpace=wrap;html=1;fontSize=20;" parent="1" vertex="1">
<mxGeometry x="642" y="326" width="121" height="38" as="geometry" />
</mxCell>
<mxCell id="P-CCTiPUnd-aN9DFWdZh-34" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 20px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">10%</span>" style="text;whiteSpace=wrap;html=1;fontSize=20;" parent="1" vertex="1">
<mxGeometry x="431" y="317" width="60" height="38" as="geometry" />
</mxCell>
<mxCell id="P-CCTiPUnd-aN9DFWdZh-35" value="<span style="font-family: &#34;helvetica&#34; ; font-size: 20px">业务团队</span>" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="99" y="817" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="P-CCTiPUnd-aN9DFWdZh-36" value="<span style="font-family: &#34;helvetica&#34; ; font-size: 20px">审核团队</span>" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="99" y="990" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="P-CCTiPUnd-aN9DFWdZh-37" value="" style="endArrow=none;dashed=1;html=1;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="234" y="1166" as="sourcePoint" />
<mxPoint x="234" y="683" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="P-CCTiPUnd-aN9DFWdZh-38" value="<span style="color: rgb(0, 0, 0); font-family: helvetica; font-size: 30px; font-style: normal; font-weight: 400; letter-spacing: normal; text-align: center; text-indent: 0px; text-transform: none; word-spacing: 0px; background-color: rgb(248, 249, 250); display: inline; float: none;">彩视</span>" style="text;whiteSpace=wrap;html=1;fontSize=30;" parent="1" vertex="1">
<mxGeometry x="103" y="682" width="86" height="51" as="geometry" />
</mxCell>
<mxCell id="P-CCTiPUnd-aN9DFWdZh-39" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 30px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">腾讯云</span>" style="text;whiteSpace=wrap;html=1;fontSize=30;" parent="1" vertex="1">
<mxGeometry x="252" y="680" width="96" height="51" as="geometry" />
</mxCell>
<mxCell id="P-CCTiPUnd-aN9DFWdZh-40" value="" style="endArrow=none;dashed=1;html=1;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="543" y="1162" as="sourcePoint" />
<mxPoint x="543" y="674" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="P-CCTiPUnd-aN9DFWdZh-41" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 30px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">七牛</span>" style="text;whiteSpace=wrap;html=1;fontSize=30;" parent="1" vertex="1">
<mxGeometry x="554" y="682" width="96" height="51" as="geometry" />
</mxCell>
<mxCell id="P-CCTiPUnd-aN9DFWdZh-42" value="腾讯云存储COS" style="rounded=1;whiteSpace=wrap;html=1;fontSize=20;" parent="1" vertex="1">
<mxGeometry x="334" y="817" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="P-CCTiPUnd-aN9DFWdZh-44" value="腾讯审核<br>天御" style="rounded=1;whiteSpace=wrap;html=1;fontSize=20;" parent="1" vertex="1">
<mxGeometry x="334" y="990" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="P-CCTiPUnd-aN9DFWdZh-45" value="" style="endArrow=classic;html=1;fontSize=20;" parent="1" source="P-CCTiPUnd-aN9DFWdZh-64" target="P-CCTiPUnd-aN9DFWdZh-36" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="390" y="1203" as="sourcePoint" />
<mxPoint x="271" y="954" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="P-CCTiPUnd-aN9DFWdZh-48" value="" style="endArrow=classic;html=1;fontSize=20;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="P-CCTiPUnd-aN9DFWdZh-35" target="P-CCTiPUnd-aN9DFWdZh-42" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="229" y="1030" as="sourcePoint" />
<mxPoint x="344" y="1030" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="P-CCTiPUnd-aN9DFWdZh-50" value="" style="edgeStyle=segmentEdgeStyle;endArrow=classic;html=1;fontSize=20;" parent="1" source="P-CCTiPUnd-aN9DFWdZh-42" target="P-CCTiPUnd-aN9DFWdZh-44" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="338" y="975" as="sourcePoint" />
<mxPoint x="281" y="895" as="targetPoint" />
<Array as="points">
<mxPoint x="394" y="975" />
<mxPoint x="394" y="975" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="P-CCTiPUnd-aN9DFWdZh-56" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 20px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">1 上传文件</span>" style="text;whiteSpace=wrap;html=1;fontSize=20;" parent="1" vertex="1">
<mxGeometry x="234" y="775" width="105" height="38" as="geometry" />
</mxCell>
<mxCell id="P-CCTiPUnd-aN9DFWdZh-60" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 30px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">迁移前方案:</span>" style="text;whiteSpace=wrap;html=1;fontSize=20;" parent="1" vertex="1">
<mxGeometry x="12" y="26" width="186" height="32" as="geometry" />
</mxCell>
<mxCell id="P-CCTiPUnd-aN9DFWdZh-61" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 30px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">迁移后方案:</span>" style="text;whiteSpace=wrap;html=1;fontSize=20;" parent="1" vertex="1">
<mxGeometry x="12" y="632" width="186" height="32" as="geometry" />
</mxCell>
<mxCell id="P-CCTiPUnd-aN9DFWdZh-65" value="" style="endArrow=classic;html=1;fontSize=20;exitX=0.824;exitY=0.887;exitDx=0;exitDy=0;exitPerimeter=0;dashed=1;" parent="1" source="P-CCTiPUnd-aN9DFWdZh-64" target="P-CCTiPUnd-aN9DFWdZh-66" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="464" y="1030" as="sourcePoint" />
<mxPoint x="620" y="1029" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="P-CCTiPUnd-aN9DFWdZh-66" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 20px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">1、存量审核<br>2、增量审核<br>3、按需调用api触发审核<br></span>" style="text;whiteSpace=wrap;html=1;fontSize=20;" parent="1" vertex="1">
<mxGeometry x="396" y="1076" width="223" height="111" as="geometry" />
</mxCell>
<mxCell id="P-CCTiPUnd-aN9DFWdZh-69" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 20px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">3&nbsp;</span><span style="font-family: &#34;helvetica&#34; ; text-align: center">结果回调</span>" style="text;whiteSpace=wrap;html=1;fontSize=20;" parent="1" vertex="1">
<mxGeometry x="206" y="927" width="114" height="38" as="geometry" />
</mxCell>
<mxCell id="P-CCTiPUnd-aN9DFWdZh-70" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 20px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">2&nbsp;</span><span style="font-family: &#34;helvetica&#34; ; text-align: center">违规文件自动冻结</span>" style="text;whiteSpace=wrap;html=1;fontSize=20;" parent="1" vertex="1">
<mxGeometry x="425" y="768" width="185" height="38" as="geometry" />
</mxCell>
<mxCell id="P-CCTiPUnd-aN9DFWdZh-71" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 20px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">4 文件处置</span>" style="text;whiteSpace=wrap;html=1;fontSize=20;" parent="1" vertex="1">
<mxGeometry x="77" y="498" width="121" height="38" as="geometry" />
</mxCell>
<mxCell id="L24JwbHKwp-Smsv8oQfB-6" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="L24JwbHKwp-Smsv8oQfB-1" target="L24JwbHKwp-Smsv8oQfB-3" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="L24JwbHKwp-Smsv8oQfB-1" value="桶A<br>视频目录1<br>视频目录2<br>。。。" style="rounded=1;whiteSpace=wrap;html=1;fontSize=20;" parent="1" vertex="1">
<mxGeometry x="43" y="1344" width="120" height="107" as="geometry" />
</mxCell>
<mxCell id="L24JwbHKwp-Smsv8oQfB-2" value="<span style="color: rgb(0, 0, 0); font-family: helvetica; font-size: 20px; font-style: normal; font-weight: 400; letter-spacing: normal; text-align: center; text-indent: 0px; text-transform: none; word-spacing: 0px; background-color: rgb(248, 249, 250); display: inline; float: none;">腾讯云存储COS</span>" style="text;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="18" y="1288" width="163" height="31" as="geometry" />
</mxCell>
<mxCell id="L24JwbHKwp-Smsv8oQfB-7" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="L24JwbHKwp-Smsv8oQfB-3" target="L24JwbHKwp-Smsv8oQfB-4" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="L24JwbHKwp-Smsv8oQfB-3" value="截帧程序" style="rounded=1;whiteSpace=wrap;html=1;fontSize=20;fillColor=#fff2cc;strokeColor=#d6b656;" parent="1" vertex="1">
<mxGeometry x="249" y="1377" width="120" height="41" as="geometry" />
</mxCell>
<mxCell id="L24JwbHKwp-Smsv8oQfB-8" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="L24JwbHKwp-Smsv8oQfB-4" target="L24JwbHKwp-Smsv8oQfB-5" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="L24JwbHKwp-Smsv8oQfB-4" value="桶A<br>/snapshot/2021052000/视频路径_第几帧.jpg<br>/snapshot/2021052023/视频路径_第几帧.jpg<br>。。。" style="rounded=1;whiteSpace=wrap;html=1;fontSize=20;" parent="1" vertex="1">
<mxGeometry x="454" y="1344" width="425" height="107" as="geometry" />
</mxCell>
<mxCell id="L24JwbHKwp-Smsv8oQfB-10" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="L24JwbHKwp-Smsv8oQfB-5" target="L24JwbHKwp-Smsv8oQfB-9" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="L24JwbHKwp-Smsv8oQfB-5" value="审核程序" style="rounded=1;whiteSpace=wrap;html=1;fontSize=20;fillColor=#fff2cc;strokeColor=#d6b656;" parent="1" vertex="1">
<mxGeometry x="606.5" y="1502" width="120" height="41" as="geometry" />
</mxCell>
<mxCell id="L24JwbHKwp-Smsv8oQfB-9" value="审核结果存储" style="rounded=1;whiteSpace=wrap;html=1;fontSize=20;fillColor=#fff2cc;strokeColor=#d6b656;" parent="1" vertex="1">
<mxGeometry x="605" y="1594" width="124" height="46" as="geometry" />
</mxCell>
<mxCell id="L24JwbHKwp-Smsv8oQfB-11" value="<div><font face="helvetica"><span style="font-size: 20px">存量视频审核截帧+审核方案:</span></font></div><div><font face="helvetica"><span style="font-size: 20px">1、约定好视频源路径(存量增量文件在相同目录的话,还支持按上传时间来筛选),目的截图保存路径,截帧间隔(6秒)</span></font></div><div><font face="helvetica"><span style="font-size: 20px">&nbsp; &nbsp; &nbsp; 腾讯云负责截帧脚本提供和部署运行。路径中带有日期和小时,是为了让审核任务流水线式地运行,不必等全部截帧完成再执行。</span></font></div><div><font face="helvetica"><span style="font-size: 20px"><br></span></font></div><div><font face="helvetica"><span style="font-size: 20px">2、截帧任务开始后,按照定好的审核策略,同步开始审核任务。审核qps 1000,14亿截图约20天跑完。</span></font></div><div><font face="helvetica"><span style="font-size: 20px"><br></span></font></div><div><font face="helvetica"><span style="font-size: 20px">3、我们导出审核结果给客户</span></font></div>" style="text;whiteSpace=wrap;html=1;align=left;" parent="1" vertex="1">
<mxGeometry x="53" y="1633" width="773" height="369" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram id="Chn28t4Q_Pbc5lsuNcj4" name="凤凰">
<mxGraphModel dx="2901" dy="1156" grid="0" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0">
<root>
<mxCell id="MFgfLRZCeNVr7PoOQNtx-0" />
<mxCell id="MFgfLRZCeNVr7PoOQNtx-1" parent="MFgfLRZCeNVr7PoOQNtx-0" />
<mxCell id="KAK1-FB1FDKZZIEAYjfa-1" value="<span style="font-family: &#34;helvetica&#34; ; font-size: 20px">审核团队</span>" style="rounded=1;whiteSpace=wrap;html=1;" parent="MFgfLRZCeNVr7PoOQNtx-1" vertex="1">
<mxGeometry x="40" y="289" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="KAK1-FB1FDKZZIEAYjfa-3" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 30px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">凤凰</span>" style="text;whiteSpace=wrap;html=1;fontSize=30;" parent="MFgfLRZCeNVr7PoOQNtx-1" vertex="1">
<mxGeometry x="57" y="69" width="86" height="51" as="geometry" />
</mxCell>
<mxCell id="KAK1-FB1FDKZZIEAYjfa-4" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 30px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">腾讯云</span>" style="text;whiteSpace=wrap;html=1;fontSize=30;" parent="MFgfLRZCeNVr7PoOQNtx-1" vertex="1">
<mxGeometry x="522" y="41" width="96" height="51" as="geometry" />
</mxCell>
<mxCell id="KAK1-FB1FDKZZIEAYjfa-5" value="" style="endArrow=none;dashed=1;html=1;" parent="MFgfLRZCeNVr7PoOQNtx-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="497" y="549" as="sourcePoint" />
<mxPoint x="497" y="61" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="KAK1-FB1FDKZZIEAYjfa-7" value="COS存储" style="rounded=1;whiteSpace=wrap;html=1;fontSize=20;" parent="MFgfLRZCeNVr7PoOQNtx-1" vertex="1">
<mxGeometry x="517" y="204" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="KAK1-FB1FDKZZIEAYjfa-13" value="天御审核" style="rounded=1;whiteSpace=wrap;html=1;fontSize=20;" parent="MFgfLRZCeNVr7PoOQNtx-1" vertex="1">
<mxGeometry x="517" y="335" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="KAK1-FB1FDKZZIEAYjfa-15" value="" style="edgeStyle=elbowEdgeStyle;elbow=vertical;endArrow=classic;html=1;fontSize=20;" parent="MFgfLRZCeNVr7PoOQNtx-1" source="KAK1-FB1FDKZZIEAYjfa-1" target="KAK1-FB1FDKZZIEAYjfa-13" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="160.99999999999994" y="611.02" as="sourcePoint" />
<mxPoint x="634.96" y="608" as="targetPoint" />
<Array as="points">
<mxPoint x="367" y="448" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="KAK1-FB1FDKZZIEAYjfa-21" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 30px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">当前方案:</span>" style="text;whiteSpace=wrap;html=1;fontSize=20;" parent="MFgfLRZCeNVr7PoOQNtx-1" vertex="1">
<mxGeometry x="7" width="186" height="32" as="geometry" />
</mxCell>
<mxCell id="KAK1-FB1FDKZZIEAYjfa-22" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 20px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">1 获取外网带签名的url</span>" style="text;whiteSpace=wrap;html=1;fontSize=20;" parent="MFgfLRZCeNVr7PoOQNtx-1" vertex="1">
<mxGeometry x="209" y="196" width="205" height="38" as="geometry" />
</mxCell>
<mxCell id="XQbD_v2N9E6bSswUqv-z-1" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 20px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">2 送审cos外网带签名url</span>" style="text;whiteSpace=wrap;html=1;fontSize=20;" parent="MFgfLRZCeNVr7PoOQNtx-1" vertex="1">
<mxGeometry x="226" y="409" width="225" height="38" as="geometry" />
</mxCell>
<mxCell id="XQbD_v2N9E6bSswUqv-z-2" value="" style="edgeStyle=elbowEdgeStyle;elbow=vertical;endArrow=classic;html=1;fontSize=20;exitX=-0.025;exitY=0.639;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0;entryY=0.75;entryDx=0;entryDy=0;" parent="MFgfLRZCeNVr7PoOQNtx-1" source="KAK1-FB1FDKZZIEAYjfa-13" target="KAK1-FB1FDKZZIEAYjfa-7" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="123" y="447" as="sourcePoint" />
<mxPoint x="587" y="447" as="targetPoint" />
<Array as="points">
<mxPoint x="437" y="325" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="XQbD_v2N9E6bSswUqv-z-3" value="" style="edgeStyle=elbowEdgeStyle;elbow=vertical;endArrow=classic;html=1;fontSize=20;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" parent="MFgfLRZCeNVr7PoOQNtx-1" source="KAK1-FB1FDKZZIEAYjfa-1" target="KAK1-FB1FDKZZIEAYjfa-7" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="524" y="425.3399999999999" as="sourcePoint" />
<mxPoint x="527" y="259" as="targetPoint" />
<Array as="points">
<mxPoint x="322" y="234" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="XQbD_v2N9E6bSswUqv-z-4" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 20px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">3 外网下载文件并审核</span>" style="text;whiteSpace=wrap;html=1;fontSize=20;" parent="MFgfLRZCeNVr7PoOQNtx-1" vertex="1">
<mxGeometry x="304" y="286" width="206" height="38" as="geometry" />
</mxCell>
<mxCell id="HuAMnFgn9ztyb8hnKMQ7-0" value="<span style="font-family: &#34;helvetica&#34; ; font-size: 20px">审核团队</span>" style="rounded=1;whiteSpace=wrap;html=1;" parent="MFgfLRZCeNVr7PoOQNtx-1" vertex="1">
<mxGeometry x="49" y="835" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="HuAMnFgn9ztyb8hnKMQ7-1" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 30px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">凤凰</span>" style="text;whiteSpace=wrap;html=1;fontSize=30;" parent="MFgfLRZCeNVr7PoOQNtx-1" vertex="1">
<mxGeometry x="66" y="615" width="86" height="51" as="geometry" />
</mxCell>
<mxCell id="HuAMnFgn9ztyb8hnKMQ7-2" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 30px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">腾讯云</span>" style="text;whiteSpace=wrap;html=1;fontSize=30;" parent="MFgfLRZCeNVr7PoOQNtx-1" vertex="1">
<mxGeometry x="531" y="587" width="96" height="51" as="geometry" />
</mxCell>
<mxCell id="HuAMnFgn9ztyb8hnKMQ7-3" value="" style="endArrow=none;dashed=1;html=1;" parent="MFgfLRZCeNVr7PoOQNtx-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="506" y="1095" as="sourcePoint" />
<mxPoint x="506" y="607" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="HuAMnFgn9ztyb8hnKMQ7-4" value="COS存储" style="rounded=1;whiteSpace=wrap;html=1;fontSize=20;" parent="MFgfLRZCeNVr7PoOQNtx-1" vertex="1">
<mxGeometry x="526" y="750" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="HuAMnFgn9ztyb8hnKMQ7-5" value="天御审核" style="rounded=1;whiteSpace=wrap;html=1;fontSize=20;" parent="MFgfLRZCeNVr7PoOQNtx-1" vertex="1">
<mxGeometry x="526" y="881" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="HuAMnFgn9ztyb8hnKMQ7-7" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 30px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">建议方案1:</span>" style="text;whiteSpace=wrap;html=1;fontSize=20;" parent="MFgfLRZCeNVr7PoOQNtx-1" vertex="1">
<mxGeometry x="16" y="546" width="186" height="32" as="geometry" />
</mxCell>
<mxCell id="HuAMnFgn9ztyb8hnKMQ7-8" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 20px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">1 直接调用COS审核api</span>" style="text;whiteSpace=wrap;html=1;fontSize=20;" parent="MFgfLRZCeNVr7PoOQNtx-1" vertex="1">
<mxGeometry x="218" y="742" width="218" height="38" as="geometry" />
</mxCell>
<mxCell id="HuAMnFgn9ztyb8hnKMQ7-10" value="" style="edgeStyle=elbowEdgeStyle;elbow=vertical;endArrow=classic;html=1;fontSize=20;entryX=0.5;entryY=0;entryDx=0;entryDy=0;exitX=0.5;exitY=1;exitDx=0;exitDy=0;" parent="MFgfLRZCeNVr7PoOQNtx-1" source="HuAMnFgn9ztyb8hnKMQ7-4" target="HuAMnFgn9ztyb8hnKMQ7-5" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="514" y="852" as="sourcePoint" />
<mxPoint x="596" y="993" as="targetPoint" />
<Array as="points">
<mxPoint x="574" y="841" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="HuAMnFgn9ztyb8hnKMQ7-11" value="" style="edgeStyle=elbowEdgeStyle;elbow=vertical;endArrow=classic;html=1;fontSize=20;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" parent="MFgfLRZCeNVr7PoOQNtx-1" source="HuAMnFgn9ztyb8hnKMQ7-0" target="HuAMnFgn9ztyb8hnKMQ7-4" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="533" y="971.3399999999999" as="sourcePoint" />
<mxPoint x="536" y="805" as="targetPoint" />
<Array as="points">
<mxPoint x="331" y="780" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="HuAMnFgn9ztyb8hnKMQ7-12" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 20px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">2 内网下载文件并审核</span>" style="text;whiteSpace=wrap;html=1;fontSize=20;" parent="MFgfLRZCeNVr7PoOQNtx-1" vertex="1">
<mxGeometry x="596" y="829" width="203" height="38" as="geometry" />
</mxCell>
<mxCell id="l_Vz_trHYBxYx5XD7r7e-0" value="<span style="font-family: &#34;helvetica&#34; ; font-size: 20px">审核团队</span>" style="rounded=1;whiteSpace=wrap;html=1;" parent="MFgfLRZCeNVr7PoOQNtx-1" vertex="1">
<mxGeometry x="43" y="1444" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="l_Vz_trHYBxYx5XD7r7e-1" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 30px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">凤凰</span>" style="text;whiteSpace=wrap;html=1;fontSize=30;" parent="MFgfLRZCeNVr7PoOQNtx-1" vertex="1">
<mxGeometry x="62" y="1165" width="86" height="51" as="geometry" />
</mxCell>
<mxCell id="l_Vz_trHYBxYx5XD7r7e-2" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 30px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">腾讯云</span>" style="text;whiteSpace=wrap;html=1;fontSize=30;" parent="MFgfLRZCeNVr7PoOQNtx-1" vertex="1">
<mxGeometry x="527" y="1137" width="96" height="51" as="geometry" />
</mxCell>
<mxCell id="l_Vz_trHYBxYx5XD7r7e-3" value="" style="endArrow=none;dashed=1;html=1;" parent="MFgfLRZCeNVr7PoOQNtx-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="530" y="1690" as="sourcePoint" />
<mxPoint x="530" y="1202" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="l_Vz_trHYBxYx5XD7r7e-4" value="COS存储" style="rounded=1;whiteSpace=wrap;html=1;fontSize=20;" parent="MFgfLRZCeNVr7PoOQNtx-1" vertex="1">
<mxGeometry x="522" y="1300" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="l_Vz_trHYBxYx5XD7r7e-5" value="天御审核" style="rounded=1;whiteSpace=wrap;html=1;fontSize=20;" parent="MFgfLRZCeNVr7PoOQNtx-1" vertex="1">
<mxGeometry x="522" y="1431" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="l_Vz_trHYBxYx5XD7r7e-6" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 30px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">建议方案2:</span>" style="text;whiteSpace=wrap;html=1;fontSize=20;" parent="MFgfLRZCeNVr7PoOQNtx-1" vertex="1">
<mxGeometry x="12" y="1096" width="186" height="32" as="geometry" />
</mxCell>
<mxCell id="l_Vz_trHYBxYx5XD7r7e-8" value="" style="edgeStyle=elbowEdgeStyle;elbow=vertical;endArrow=classic;html=1;fontSize=20;entryX=0.5;entryY=0;entryDx=0;entryDy=0;exitX=0.5;exitY=1;exitDx=0;exitDy=0;" parent="MFgfLRZCeNVr7PoOQNtx-1" source="l_Vz_trHYBxYx5XD7r7e-4" target="l_Vz_trHYBxYx5XD7r7e-5" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="536" y="1414" as="sourcePoint" />
<mxPoint x="592" y="1543" as="targetPoint" />
<Array as="points">
<mxPoint x="570" y="1391" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="l_Vz_trHYBxYx5XD7r7e-9" value="" style="edgeStyle=elbowEdgeStyle;elbow=vertical;endArrow=classic;html=1;fontSize=20;entryX=0;entryY=0.5;entryDx=0;entryDy=0;exitX=1;exitY=0.5;exitDx=0;exitDy=0;" parent="MFgfLRZCeNVr7PoOQNtx-1" source="bs7jUIB0tzzmvSItqn0Z-1" target="l_Vz_trHYBxYx5XD7r7e-4" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="529" y="1521.34" as="sourcePoint" />
<mxPoint x="532" y="1355" as="targetPoint" />
<Array as="points">
<mxPoint x="327" y="1330" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="l_Vz_trHYBxYx5XD7r7e-11" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 20px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">1、按需调用api触发审核2、增量审核<br>3、存量审核<br></span>" style="text;whiteSpace=wrap;html=1;fontSize=20;" parent="MFgfLRZCeNVr7PoOQNtx-1" vertex="1">
<mxGeometry x="-229" y="630" width="223" height="95" as="geometry" />
</mxCell>
<mxCell id="l_Vz_trHYBxYx5XD7r7e-12" value="增量审核配置" style="rounded=1;whiteSpace=wrap;html=1;fontSize=20;" parent="MFgfLRZCeNVr7PoOQNtx-1" vertex="1">
<mxGeometry x="687" y="1300" width="129" height="60" as="geometry" />
</mxCell>
<mxCell id="l_Vz_trHYBxYx5XD7r7e-13" value="" style="edgeStyle=elbowEdgeStyle;elbow=vertical;endArrow=classic;html=1;fontSize=20;entryX=0;entryY=0.5;entryDx=0;entryDy=0;exitX=1;exitY=0.5;exitDx=0;exitDy=0;" parent="MFgfLRZCeNVr7PoOQNtx-1" source="l_Vz_trHYBxYx5XD7r7e-4" target="l_Vz_trHYBxYx5XD7r7e-12" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="609" y="1245" as="sourcePoint" />
<mxPoint x="1026" y="1190" as="targetPoint" />
<Array as="points" />
</mxGeometry>
</mxCell>
<mxCell id="l_Vz_trHYBxYx5XD7r7e-14" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 20px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">2 内网下载文件并审核</span>" style="text;whiteSpace=wrap;html=1;fontSize=20;" parent="MFgfLRZCeNVr7PoOQNtx-1" vertex="1">
<mxGeometry x="599" y="1385" width="203" height="38" as="geometry" />
</mxCell>
<mxCell id="bs7jUIB0tzzmvSItqn0Z-1" value="<span style="font-family: &#34;helvetica&#34; ; font-size: 20px">业务团队</span>" style="rounded=1;whiteSpace=wrap;html=1;" parent="MFgfLRZCeNVr7PoOQNtx-1" vertex="1">
<mxGeometry x="41" y="1300" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="bs7jUIB0tzzmvSItqn0Z-2" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 20px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">1 业务有文件上传</span>" style="text;whiteSpace=wrap;html=1;fontSize=20;" parent="MFgfLRZCeNVr7PoOQNtx-1" vertex="1">
<mxGeometry x="233" y="1288" width="218" height="38" as="geometry" />
</mxCell>
<mxCell id="bs7jUIB0tzzmvSItqn0Z-3" value="" style="edgeStyle=elbowEdgeStyle;elbow=vertical;endArrow=classic;html=1;fontSize=20;exitX=0.192;exitY=1.039;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;exitPerimeter=0;" parent="MFgfLRZCeNVr7PoOQNtx-1" source="l_Vz_trHYBxYx5XD7r7e-4" target="l_Vz_trHYBxYx5XD7r7e-0" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="161" y="1330" as="sourcePoint" />
<mxPoint x="180" y="1520" as="targetPoint" />
<Array as="points">
<mxPoint x="329" y="1405" />
<mxPoint x="485" y="1398" />
<mxPoint x="484" y="1474" />
<mxPoint x="327" y="1330" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="bs7jUIB0tzzmvSItqn0Z-4" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 20px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">3 审核结果回调</span>" style="text;whiteSpace=wrap;html=1;fontSize=20;" parent="MFgfLRZCeNVr7PoOQNtx-1" vertex="1">
<mxGeometry x="230" y="1412" width="203" height="38" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram id="YKc7xLH0ZD2Wb9kipWP-" name="trtc+cos审核">
<mxGraphModel dx="2074" dy="2325" grid="0" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0">
<root>
<mxCell id="21coxDRDgsxf23kZ1eBv-0" />
<mxCell id="21coxDRDgsxf23kZ1eBv-1" parent="21coxDRDgsxf23kZ1eBv-0" />
<mxCell id="wU61ol3yCMf8DzkOAZ5e-3" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=18;" parent="21coxDRDgsxf23kZ1eBv-1" source="wU61ol3yCMf8DzkOAZ5e-1" target="wU61ol3yCMf8DzkOAZ5e-2" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="wU61ol3yCMf8DzkOAZ5e-5" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=18;" parent="21coxDRDgsxf23kZ1eBv-1" source="wU61ol3yCMf8DzkOAZ5e-1" target="wU61ol3yCMf8DzkOAZ5e-4" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="wU61ol3yCMf8DzkOAZ5e-1" value="<span>TRTC云服务</span>" style="rounded=1;whiteSpace=wrap;html=1;fontSize=18;" parent="21coxDRDgsxf23kZ1eBv-1" vertex="1">
<mxGeometry x="318" y="-370" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="wU61ol3yCMf8DzkOAZ5e-9" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=18;" parent="21coxDRDgsxf23kZ1eBv-1" source="wU61ol3yCMf8DzkOAZ5e-2" target="wU61ol3yCMf8DzkOAZ5e-4" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="wU61ol3yCMf8DzkOAZ5e-2" value="<span>COS</span>" style="rounded=1;whiteSpace=wrap;html=1;fontSize=18;" parent="21coxDRDgsxf23kZ1eBv-1" vertex="1">
<mxGeometry x="593" y="-230" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="wU61ol3yCMf8DzkOAZ5e-12" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=18;" parent="21coxDRDgsxf23kZ1eBv-1" source="wU61ol3yCMf8DzkOAZ5e-4" target="wU61ol3yCMf8DzkOAZ5e-11" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="wU61ol3yCMf8DzkOAZ5e-4" value="天御" style="whiteSpace=wrap;html=1;rounded=1;fontSize=18;" parent="21coxDRDgsxf23kZ1eBv-1" vertex="1">
<mxGeometry x="318" y="-230" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="wU61ol3yCMf8DzkOAZ5e-6" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 18px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">1、上传音频到COS</span>" style="text;whiteSpace=wrap;html=1;fontSize=18;" parent="21coxDRDgsxf23kZ1eBv-1" vertex="1">
<mxGeometry x="480" y="-383" width="172" height="36" as="geometry" />
</mxCell>
<mxCell id="wU61ol3yCMf8DzkOAZ5e-7" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 18px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">2、调用天御音频审核api<br>传入groupid、userid等TRTC的参数<br></span>" style="text;whiteSpace=wrap;html=1;fontSize=18;" parent="21coxDRDgsxf23kZ1eBv-1" vertex="1">
<mxGeometry x="68" y="-293" width="295" height="71" as="geometry" />
</mxCell>
<mxCell id="wU61ol3yCMf8DzkOAZ5e-10" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 18px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">3、从COS下载音频文件</span>" style="text;whiteSpace=wrap;html=1;fontSize=18;" parent="21coxDRDgsxf23kZ1eBv-1" vertex="1">
<mxGeometry x="435" y="-266" width="201" height="36" as="geometry" />
</mxCell>
<mxCell id="wU61ol3yCMf8DzkOAZ5e-11" value="客户服务" style="whiteSpace=wrap;html=1;rounded=1;fontSize=18;" parent="21coxDRDgsxf23kZ1eBv-1" vertex="1">
<mxGeometry x="318" y="-90" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="wU61ol3yCMf8DzkOAZ5e-13" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 18px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">4、审核结果回调客户<br>带上groupid、userid等TRTC的参数<br></span>" style="text;whiteSpace=wrap;html=1;fontSize=18;" parent="21coxDRDgsxf23kZ1eBv-1" vertex="1">
<mxGeometry x="396" y="-143" width="337" height="36" as="geometry" />
</mxCell>
<mxCell id="wU61ol3yCMf8DzkOAZ5e-14" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=18;" parent="21coxDRDgsxf23kZ1eBv-1" source="wU61ol3yCMf8DzkOAZ5e-16" target="wU61ol3yCMf8DzkOAZ5e-18" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="wU61ol3yCMf8DzkOAZ5e-16" value="<span>TRTC云服务</span>" style="rounded=1;whiteSpace=wrap;html=1;fontSize=18;" parent="21coxDRDgsxf23kZ1eBv-1" vertex="1">
<mxGeometry x="318" y="97" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="wU61ol3yCMf8DzkOAZ5e-17" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=18;" parent="21coxDRDgsxf23kZ1eBv-1" source="wU61ol3yCMf8DzkOAZ5e-18" target="wU61ol3yCMf8DzkOAZ5e-20" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="F41BLx68-mJaw4yvlTQs-3" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=18;" parent="21coxDRDgsxf23kZ1eBv-1" source="wU61ol3yCMf8DzkOAZ5e-18" target="wU61ol3yCMf8DzkOAZ5e-23" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="wU61ol3yCMf8DzkOAZ5e-18" value="<span>COS</span>" style="rounded=1;whiteSpace=wrap;html=1;fontSize=18;" parent="21coxDRDgsxf23kZ1eBv-1" vertex="1">
<mxGeometry x="593" y="237" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="wU61ol3yCMf8DzkOAZ5e-20" value="天御" style="whiteSpace=wrap;html=1;rounded=1;fontSize=18;" parent="21coxDRDgsxf23kZ1eBv-1" vertex="1">
<mxGeometry x="318" y="237" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="wU61ol3yCMf8DzkOAZ5e-21" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 18px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">2、调用天御音频审核api<br><br></span>" style="text;whiteSpace=wrap;html=1;fontSize=18;" parent="21coxDRDgsxf23kZ1eBv-1" vertex="1">
<mxGeometry x="416" y="205" width="206" height="34" as="geometry" />
</mxCell>
<mxCell id="wU61ol3yCMf8DzkOAZ5e-23" value="客户服务" style="whiteSpace=wrap;html=1;rounded=1;fontSize=18;" parent="21coxDRDgsxf23kZ1eBv-1" vertex="1">
<mxGeometry x="593" y="348" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="wU61ol3yCMf8DzkOAZ5e-24" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 18px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">3、审核结果回调客户<br>带上groupid、userid等TRTC的参数<br></span>" style="text;whiteSpace=wrap;html=1;fontSize=18;" parent="21coxDRDgsxf23kZ1eBv-1" vertex="1">
<mxGeometry x="299" y="328" width="294" height="35" as="geometry" />
</mxCell>
<mxCell id="F41BLx68-mJaw4yvlTQs-0" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 24px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">trtc现在音频审核方案:<br>1、2是trtc发起<br>3、4是天御发起<br></span>" style="text;whiteSpace=wrap;html=1;fontSize=20;" parent="21coxDRDgsxf23kZ1eBv-1" vertex="1">
<mxGeometry x="13" y="-494" width="315" height="96" as="geometry" />
</mxCell>
<mxCell id="F41BLx68-mJaw4yvlTQs-1" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 24px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">新trtc音频审核方案:<br>1是trtc发起<br>2、3是COS发起<br></span>" style="text;whiteSpace=wrap;html=1;fontSize=20;" parent="21coxDRDgsxf23kZ1eBv-1" vertex="1">
<mxGeometry x="6" y="59" width="315" height="97" as="geometry" />
</mxCell>
<mxCell id="F41BLx68-mJaw4yvlTQs-2" value="<span style="color: rgb(0 , 0 , 0) ; font-family: &#34;helvetica&#34; ; font-size: 18px ; font-style: normal ; font-weight: 400 ; letter-spacing: normal ; text-align: center ; text-indent: 0px ; text-transform: none ; word-spacing: 0px ; background-color: rgb(248 , 249 , 250) ; display: inline ; float: none">1、上传音频到COS<br>传入groupid、userid等TRTC的参数<br></span>" style="text;whiteSpace=wrap;html=1;fontSize=18;" parent="21coxDRDgsxf23kZ1eBv-1" vertex="1">
<mxGeometry x="459" y="70" width="297" height="36" as="geometry" />
</mxCell>
<mxCell id="F41BLx68-mJaw4yvlTQs-4" value="<div><span style="font-size: 24px"><font face="helvetica">新方案优势:</font></span></div><div><span style="font-size: 24px"><font face="helvetica">1、对于trtc减少一次调用</font></span></div><div><span style="font-size: 24px"><font face="helvetica">2、对于天御无需特殊处理trtc参数</font></span></div><div><span style="font-size: 24px"><font face="helvetica">3、对于cos利用上传时自定义参数透传,也是标准化的流程</font></span></div>" style="text;whiteSpace=wrap;html=1;fontSize=18;align=left;" parent="21coxDRDgsxf23kZ1eBv-1" vertex="1">
<mxGeometry x="62.000000000000014" y="451" width="656.67" height="133.33" as="geometry" />
</mxCell>
<mxCell id="R8BslKHfP9MhoLzpl_tF-0" value="<span>TRTC云服务</span>" style="rounded=1;whiteSpace=wrap;html=1;fontSize=18;" parent="21coxDRDgsxf23kZ1eBv-1" vertex="1">
<mxGeometry x="1762" y="-461" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="R8BslKHfP9MhoLzpl_tF-2" value="旁路转码服务" style="ellipse;whiteSpace=wrap;html=1;fontSize=18;" parent="21coxDRDgsxf23kZ1eBv-1" vertex="1">
<mxGeometry x="1829" y="-345" width="143" height="83" as="geometry" />
</mxCell>
<mxCell id="R8BslKHfP9MhoLzpl_tF-4" value="" style="endArrow=classic;html=1;rounded=0;fontSize=18;exitX=0.5;exitY=1;exitDx=0;exitDy=0;" parent="21coxDRDgsxf23kZ1eBv-1" source="R8BslKHfP9MhoLzpl_tF-0" target="R8BslKHfP9MhoLzpl_tF-2" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1751" y="-86" as="sourcePoint" />
<mxPoint x="1801" y="-136" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="R8BslKHfP9MhoLzpl_tF-5" value="" style="endArrow=classic;html=1;rounded=0;fontSize=18;" parent="21coxDRDgsxf23kZ1eBv-1" source="R8BslKHfP9MhoLzpl_tF-2" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1832" y="-391" as="sourcePoint" />
<mxPoint x="2042" y="-303" as="targetPoint" />
</mxGeometry>