snss-types 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/index.d.ts +145 -142
- package/package.json +1 -1
package/dist-types/index.d.ts
CHANGED
|
@@ -21,16 +21,16 @@ interface SceneItem {
|
|
|
21
21
|
*/
|
|
22
22
|
interface SceneItemMeta {
|
|
23
23
|
scene_json?: SceneItemSelfInfo;
|
|
24
|
-
manifest_json?:
|
|
25
|
-
constellations_json?:
|
|
26
|
-
satellites_json?:
|
|
27
|
-
nodes_json?:
|
|
28
|
-
links_json?:
|
|
29
|
-
tasks_json?:
|
|
30
|
-
flows_json?:
|
|
31
|
-
timeline_json?:
|
|
32
|
-
metrics_json?:
|
|
33
|
-
evaluation_json?:
|
|
24
|
+
manifest_json?: SceneManifestData;
|
|
25
|
+
constellations_json?: SceneConstellationsData;
|
|
26
|
+
satellites_json?: SceneSatellitesData;
|
|
27
|
+
nodes_json?: SceneNodesData;
|
|
28
|
+
links_json?: SceneLinksData;
|
|
29
|
+
tasks_json?: SceneTasksData;
|
|
30
|
+
flows_json?: SceneFlowsData;
|
|
31
|
+
timeline_json?: SceneTimelineData;
|
|
32
|
+
metrics_json?: SceneMetricsData;
|
|
33
|
+
evaluation_json?: SceneEvaluationData;
|
|
34
34
|
}
|
|
35
35
|
/**
|
|
36
36
|
* 场景节点(单个架构版本)
|
|
@@ -61,7 +61,7 @@ type SceneRole = 'baseline' | 'iteration' | 'final';
|
|
|
61
61
|
/**
|
|
62
62
|
* 时间配置
|
|
63
63
|
*/
|
|
64
|
-
interface
|
|
64
|
+
interface SceneManifestTime {
|
|
65
65
|
epoch_utc: string;
|
|
66
66
|
start_time_s: number;
|
|
67
67
|
end_time_s: number;
|
|
@@ -71,174 +71,174 @@ interface ManifestTime {
|
|
|
71
71
|
/**
|
|
72
72
|
* 场景清单文件
|
|
73
73
|
*/
|
|
74
|
-
interface
|
|
74
|
+
interface SceneManifestData {
|
|
75
75
|
scene_id: string;
|
|
76
76
|
scene_name: string;
|
|
77
77
|
description: string;
|
|
78
|
-
time:
|
|
78
|
+
time: SceneManifestTime;
|
|
79
79
|
}
|
|
80
80
|
/**
|
|
81
81
|
* 星座类型
|
|
82
82
|
*/
|
|
83
|
-
type
|
|
83
|
+
type SceneConstellationType = 'GEO' | 'MEO' | 'LEO';
|
|
84
84
|
/**
|
|
85
85
|
* 星座配置
|
|
86
86
|
*/
|
|
87
|
-
interface
|
|
87
|
+
interface SceneConstellation {
|
|
88
88
|
constellation_id: string;
|
|
89
89
|
constellation_name: string;
|
|
90
|
-
layer:
|
|
90
|
+
layer: SceneConstellationType;
|
|
91
91
|
satellite_count: number;
|
|
92
92
|
}
|
|
93
93
|
/**
|
|
94
94
|
* 星座列表
|
|
95
95
|
*/
|
|
96
|
-
interface
|
|
97
|
-
constellations:
|
|
96
|
+
interface SceneConstellationsData {
|
|
97
|
+
constellations: SceneConstellation[];
|
|
98
98
|
}
|
|
99
99
|
/**
|
|
100
100
|
* 卫星TLE数据
|
|
101
101
|
*/
|
|
102
|
-
interface
|
|
102
|
+
interface SceneSatelliteTLE {
|
|
103
103
|
line1: string;
|
|
104
104
|
line2: string;
|
|
105
105
|
}
|
|
106
106
|
/**
|
|
107
107
|
* 卫星配置
|
|
108
108
|
*/
|
|
109
|
-
interface
|
|
109
|
+
interface SceneSatellite {
|
|
110
110
|
satellite_id: string;
|
|
111
111
|
satellite_name: string;
|
|
112
112
|
constellation_id: string;
|
|
113
|
-
layer:
|
|
114
|
-
satellite_type:
|
|
113
|
+
layer: SceneConstellationType;
|
|
114
|
+
satellite_type: SceneTaskType;
|
|
115
115
|
orbit_plane: number;
|
|
116
116
|
orbit_index: number;
|
|
117
|
-
tle:
|
|
117
|
+
tle: SceneSatelliteTLE;
|
|
118
118
|
}
|
|
119
119
|
/**
|
|
120
120
|
* 卫星列表
|
|
121
121
|
*/
|
|
122
|
-
interface
|
|
123
|
-
satellites:
|
|
122
|
+
interface SceneSatellitesData {
|
|
123
|
+
satellites: SceneSatellite[];
|
|
124
124
|
}
|
|
125
125
|
/**
|
|
126
126
|
* 容量配置
|
|
127
127
|
*/
|
|
128
|
-
interface
|
|
128
|
+
interface SceneCapacity {
|
|
129
129
|
max_access_capacity_mbps: number;
|
|
130
130
|
}
|
|
131
131
|
/**
|
|
132
132
|
* 显示配置
|
|
133
133
|
*/
|
|
134
|
-
interface
|
|
134
|
+
interface SceneDisplayOptions {
|
|
135
135
|
show_trajectory?: boolean;
|
|
136
136
|
}
|
|
137
137
|
/**
|
|
138
138
|
* 节点类型
|
|
139
139
|
*/
|
|
140
|
-
type
|
|
140
|
+
type SceneNodeType = 'gateway' | 'user_terminal' | 'control_center' | 'other';
|
|
141
141
|
/**
|
|
142
142
|
* 终端类型(仅在 node_type = 'user_terminal' 时使用)
|
|
143
143
|
*/
|
|
144
|
-
type
|
|
144
|
+
type SceneTerminalType = 'fixed' | 'mobile' | 'airborne' | 'maritime';
|
|
145
145
|
/**
|
|
146
146
|
* 移动模型类型
|
|
147
147
|
*/
|
|
148
|
-
type
|
|
148
|
+
type SceneMobilityModel = 'static' | 'waypoint';
|
|
149
149
|
/**
|
|
150
150
|
* 网关节点
|
|
151
151
|
*/
|
|
152
|
-
interface
|
|
152
|
+
interface SceneGatewayNode {
|
|
153
153
|
node_id: string;
|
|
154
154
|
node_name: string;
|
|
155
155
|
node_type: 'gateway';
|
|
156
156
|
region: string;
|
|
157
|
-
geo_position:
|
|
158
|
-
capacity:
|
|
157
|
+
geo_position: SceneGeoPosition;
|
|
158
|
+
capacity: SceneCapacity;
|
|
159
159
|
}
|
|
160
160
|
/**
|
|
161
161
|
* 固定用户终端
|
|
162
162
|
*/
|
|
163
|
-
interface
|
|
163
|
+
interface SceneStaticUserTerminal {
|
|
164
164
|
node_id: string;
|
|
165
165
|
node_name: string;
|
|
166
166
|
node_type: 'user_terminal';
|
|
167
167
|
terminal_type: 'fixed';
|
|
168
168
|
mobility_model: 'static';
|
|
169
|
-
geo_position:
|
|
170
|
-
display_options?:
|
|
169
|
+
geo_position: SceneGeoPosition;
|
|
170
|
+
display_options?: SceneDisplayOptions;
|
|
171
171
|
}
|
|
172
172
|
/**
|
|
173
173
|
* 移动用户终端
|
|
174
174
|
*/
|
|
175
|
-
interface
|
|
175
|
+
interface SceneMobileUserTerminal {
|
|
176
176
|
node_id: string;
|
|
177
177
|
node_name: string;
|
|
178
178
|
node_type: 'user_terminal';
|
|
179
179
|
terminal_type: 'mobile';
|
|
180
180
|
mobility_model: 'waypoint';
|
|
181
|
-
geo_position:
|
|
182
|
-
display_options?:
|
|
181
|
+
geo_position: SceneGeoPosition;
|
|
182
|
+
display_options?: SceneDisplayOptions;
|
|
183
183
|
}
|
|
184
184
|
/**
|
|
185
185
|
* 其他类型用户终端
|
|
186
186
|
*/
|
|
187
|
-
interface
|
|
187
|
+
interface SceneOtherUserTerminal {
|
|
188
188
|
node_id: string;
|
|
189
189
|
node_name: string;
|
|
190
190
|
node_type: 'user_terminal';
|
|
191
|
-
terminal_type: Exclude<
|
|
192
|
-
mobility_model:
|
|
193
|
-
geo_position:
|
|
194
|
-
display_options?:
|
|
191
|
+
terminal_type: Exclude<SceneTerminalType, 'fixed' | 'mobile'>;
|
|
192
|
+
mobility_model: SceneMobilityModel;
|
|
193
|
+
geo_position: SceneGeoPosition;
|
|
194
|
+
display_options?: SceneDisplayOptions;
|
|
195
195
|
}
|
|
196
196
|
/**
|
|
197
197
|
* 控制中心节点
|
|
198
198
|
*/
|
|
199
|
-
interface
|
|
199
|
+
interface SceneControlCenterNode {
|
|
200
200
|
node_id: string;
|
|
201
201
|
node_name: string;
|
|
202
202
|
node_type: 'control_center';
|
|
203
|
-
geo_position:
|
|
203
|
+
geo_position: SceneGeoPosition;
|
|
204
204
|
}
|
|
205
205
|
/**
|
|
206
206
|
* 其他类型节点
|
|
207
207
|
*/
|
|
208
|
-
interface
|
|
208
|
+
interface SceneOtherNode {
|
|
209
209
|
node_id: string;
|
|
210
210
|
node_name: string;
|
|
211
211
|
node_type: 'other';
|
|
212
|
-
geo_position:
|
|
212
|
+
geo_position: SceneGeoPosition;
|
|
213
213
|
}
|
|
214
214
|
/**
|
|
215
215
|
* 节点联合类型
|
|
216
216
|
*/
|
|
217
|
-
type
|
|
217
|
+
type SceneNode = SceneGatewayNode | SceneStaticUserTerminal | SceneMobileUserTerminal | SceneOtherUserTerminal | SceneControlCenterNode | SceneOtherNode;
|
|
218
218
|
/**
|
|
219
219
|
* 节点列表
|
|
220
220
|
*/
|
|
221
|
-
interface
|
|
222
|
-
nodes:
|
|
221
|
+
interface SceneNodesData {
|
|
222
|
+
nodes: SceneNode[];
|
|
223
223
|
}
|
|
224
224
|
/**
|
|
225
225
|
* 链路类型
|
|
226
226
|
*/
|
|
227
|
-
type
|
|
227
|
+
type SceneLinkType = 'ISL' | 'IOL' | 'GSL' | 'BACKHAUL';
|
|
228
228
|
/**
|
|
229
229
|
* 节点类型
|
|
230
230
|
*/
|
|
231
|
-
type
|
|
231
|
+
type SceneLinkNodeType = 'satellite' | 'gateway';
|
|
232
232
|
/**
|
|
233
233
|
* 链路实例
|
|
234
234
|
*/
|
|
235
|
-
interface
|
|
235
|
+
interface SceneLink {
|
|
236
236
|
link_id: string;
|
|
237
237
|
node_a_id: string;
|
|
238
|
-
node_a_type:
|
|
238
|
+
node_a_type: SceneLinkNodeType;
|
|
239
239
|
node_b_id: string;
|
|
240
|
-
node_b_type:
|
|
241
|
-
link_type:
|
|
240
|
+
node_b_type: SceneLinkNodeType;
|
|
241
|
+
link_type: SceneLinkType;
|
|
242
242
|
capacity_mbps: number;
|
|
243
243
|
node_a_constellation_id?: string;
|
|
244
244
|
node_b_constellation_id?: string;
|
|
@@ -246,34 +246,34 @@ interface Link {
|
|
|
246
246
|
/**
|
|
247
247
|
* 批量链路配置规则
|
|
248
248
|
*/
|
|
249
|
-
interface
|
|
249
|
+
interface SceneBulkConfigRule {
|
|
250
250
|
constellation_id: string;
|
|
251
|
-
link_type:
|
|
251
|
+
link_type: SceneLinkType;
|
|
252
252
|
capacity_mbps: number;
|
|
253
253
|
}
|
|
254
254
|
/**
|
|
255
255
|
* 链路列表
|
|
256
256
|
*/
|
|
257
|
-
interface
|
|
258
|
-
links:
|
|
259
|
-
bulk_config_rules:
|
|
257
|
+
interface SceneLinksData {
|
|
258
|
+
links: SceneLink[];
|
|
259
|
+
bulk_config_rules: SceneBulkConfigRule[];
|
|
260
260
|
}
|
|
261
261
|
/**
|
|
262
262
|
* 任务类型
|
|
263
263
|
*/
|
|
264
|
-
type
|
|
264
|
+
type SceneTaskType = 'emergency_communication';
|
|
265
265
|
/**
|
|
266
266
|
* 任务优先级
|
|
267
267
|
*/
|
|
268
|
-
type
|
|
268
|
+
type SceneTaskPriority = 'high';
|
|
269
269
|
/**
|
|
270
270
|
* 任务
|
|
271
271
|
*/
|
|
272
|
-
interface
|
|
272
|
+
interface SceneTask {
|
|
273
273
|
task_id: string;
|
|
274
274
|
task_name: string;
|
|
275
|
-
task_type:
|
|
276
|
-
priority:
|
|
275
|
+
task_type: SceneTaskType;
|
|
276
|
+
priority: SceneTaskPriority;
|
|
277
277
|
flow_ids: string[];
|
|
278
278
|
start_time_s: number;
|
|
279
279
|
end_time_s: number;
|
|
@@ -281,26 +281,26 @@ interface Task {
|
|
|
281
281
|
/**
|
|
282
282
|
* 任务列表
|
|
283
283
|
*/
|
|
284
|
-
interface
|
|
285
|
-
tasks:
|
|
284
|
+
interface SceneTasksData {
|
|
285
|
+
tasks: SceneTask[];
|
|
286
286
|
}
|
|
287
287
|
/**
|
|
288
288
|
* 业务类型
|
|
289
289
|
*/
|
|
290
|
-
type
|
|
290
|
+
type SceneServiceType = 'voice' | 'image_return';
|
|
291
291
|
/**
|
|
292
292
|
* 业务优先级
|
|
293
293
|
*/
|
|
294
|
-
type
|
|
294
|
+
type SceneFlowPriority = 'high';
|
|
295
295
|
/**
|
|
296
296
|
* 业务流
|
|
297
297
|
*/
|
|
298
|
-
interface
|
|
298
|
+
interface SceneFlow {
|
|
299
299
|
flow_id: string;
|
|
300
300
|
flow_name: string;
|
|
301
301
|
task_id: string;
|
|
302
|
-
service_type:
|
|
303
|
-
priority:
|
|
302
|
+
service_type: SceneServiceType;
|
|
303
|
+
priority: SceneFlowPriority;
|
|
304
304
|
src_node_id: string;
|
|
305
305
|
dst_node_id: string;
|
|
306
306
|
start_time_s: number;
|
|
@@ -309,13 +309,13 @@ interface Flow {
|
|
|
309
309
|
/**
|
|
310
310
|
* 业务流列表
|
|
311
311
|
*/
|
|
312
|
-
interface
|
|
313
|
-
flows:
|
|
312
|
+
interface SceneFlowsData {
|
|
313
|
+
flows: SceneFlow[];
|
|
314
314
|
}
|
|
315
315
|
/**
|
|
316
316
|
* 地理位置
|
|
317
317
|
*/
|
|
318
|
-
interface
|
|
318
|
+
interface SceneGeoPosition {
|
|
319
319
|
lon_deg: number;
|
|
320
320
|
lat_deg: number;
|
|
321
321
|
alt_km: number;
|
|
@@ -323,7 +323,7 @@ interface GeoPosition {
|
|
|
323
323
|
/**
|
|
324
324
|
* 地理位置
|
|
325
325
|
*/
|
|
326
|
-
interface
|
|
326
|
+
interface SceneGeoPosition {
|
|
327
327
|
lon_deg: number;
|
|
328
328
|
lat_deg: number;
|
|
329
329
|
alt_km: number;
|
|
@@ -331,7 +331,7 @@ interface GeoPosition {
|
|
|
331
331
|
/**
|
|
332
332
|
* 速度向量
|
|
333
333
|
*/
|
|
334
|
-
interface
|
|
334
|
+
interface SceneVelocityWGS {
|
|
335
335
|
vx: number;
|
|
336
336
|
vy: number;
|
|
337
337
|
vz: number;
|
|
@@ -340,15 +340,15 @@ interface VelocityWGS {
|
|
|
340
340
|
/**
|
|
341
341
|
* 用户状态
|
|
342
342
|
*/
|
|
343
|
-
interface
|
|
343
|
+
interface SceneUserState {
|
|
344
344
|
node_id: string;
|
|
345
|
-
geo_position:
|
|
346
|
-
velocity_wgs:
|
|
345
|
+
geo_position: SceneGeoPosition;
|
|
346
|
+
velocity_wgs: SceneVelocityWGS;
|
|
347
347
|
}
|
|
348
348
|
/**
|
|
349
349
|
* 链路状态
|
|
350
350
|
*/
|
|
351
|
-
interface
|
|
351
|
+
interface SceneLinkState {
|
|
352
352
|
link_id: string;
|
|
353
353
|
status: string;
|
|
354
354
|
utilization_ratio: number;
|
|
@@ -357,7 +357,7 @@ interface LinkState {
|
|
|
357
357
|
/**
|
|
358
358
|
* 业务流状态
|
|
359
359
|
*/
|
|
360
|
-
interface
|
|
360
|
+
interface SceneFlowState {
|
|
361
361
|
flow_id: string;
|
|
362
362
|
status: string;
|
|
363
363
|
throughput_mbps: number;
|
|
@@ -369,7 +369,7 @@ interface FlowState {
|
|
|
369
369
|
/**
|
|
370
370
|
* 任务状态
|
|
371
371
|
*/
|
|
372
|
-
interface
|
|
372
|
+
interface SceneTaskState {
|
|
373
373
|
task_id: string;
|
|
374
374
|
status: string;
|
|
375
375
|
active_flow_ids: string[];
|
|
@@ -377,24 +377,24 @@ interface TaskState {
|
|
|
377
377
|
/**
|
|
378
378
|
* 时间轴单帧数据
|
|
379
379
|
*/
|
|
380
|
-
interface
|
|
380
|
+
interface SceneTimelineFrame {
|
|
381
381
|
frame_no: number;
|
|
382
382
|
timestamp_s: number;
|
|
383
|
-
user_states:
|
|
384
|
-
links:
|
|
385
|
-
flows:
|
|
386
|
-
tasks:
|
|
383
|
+
user_states: SceneUserState[];
|
|
384
|
+
links: SceneLinkState[];
|
|
385
|
+
flows: SceneFlowState[];
|
|
386
|
+
tasks: SceneTaskState[];
|
|
387
387
|
}
|
|
388
388
|
/**
|
|
389
389
|
* 时间轴数据
|
|
390
390
|
*/
|
|
391
|
-
interface
|
|
392
|
-
timelines:
|
|
391
|
+
interface SceneTimelineData {
|
|
392
|
+
timelines: SceneTimelineFrame[];
|
|
393
393
|
}
|
|
394
394
|
/**
|
|
395
395
|
* 概要统计
|
|
396
396
|
*/
|
|
397
|
-
interface
|
|
397
|
+
interface SceneMetricsSummary {
|
|
398
398
|
active_flow_total: number;
|
|
399
399
|
high_priority_flow_total: number;
|
|
400
400
|
avg_delay_ms: number;
|
|
@@ -405,7 +405,7 @@ interface MetricsSummary {
|
|
|
405
405
|
/**
|
|
406
406
|
* 时序数据点
|
|
407
407
|
*/
|
|
408
|
-
interface
|
|
408
|
+
interface SceneTimeseriesPoint {
|
|
409
409
|
timestamp_s: number;
|
|
410
410
|
active_flow_count: number;
|
|
411
411
|
network_throughput_mbps: number;
|
|
@@ -416,7 +416,7 @@ interface TimeseriesPoint {
|
|
|
416
416
|
/**
|
|
417
417
|
* 图表配置
|
|
418
418
|
*/
|
|
419
|
-
interface
|
|
419
|
+
interface SceneChartConfig {
|
|
420
420
|
chart_id: string;
|
|
421
421
|
chart_name: string;
|
|
422
422
|
chart_type: string;
|
|
@@ -427,7 +427,7 @@ interface ChartConfig {
|
|
|
427
427
|
/**
|
|
428
428
|
* 图表资源
|
|
429
429
|
*/
|
|
430
|
-
interface
|
|
430
|
+
interface SceneFigureAsset {
|
|
431
431
|
figure_id: string;
|
|
432
432
|
figure_name: string;
|
|
433
433
|
figure_type: string;
|
|
@@ -437,33 +437,33 @@ interface FigureAsset {
|
|
|
437
437
|
/**
|
|
438
438
|
* 指标数据
|
|
439
439
|
*/
|
|
440
|
-
interface
|
|
441
|
-
summary:
|
|
442
|
-
timeseries:
|
|
443
|
-
charts:
|
|
444
|
-
figure_assets:
|
|
440
|
+
interface SceneMetricsData {
|
|
441
|
+
summary: SceneMetricsSummary;
|
|
442
|
+
timeseries: SceneTimeseriesPoint[];
|
|
443
|
+
charts: SceneChartConfig[];
|
|
444
|
+
figure_assets: SceneFigureAsset[];
|
|
445
445
|
}
|
|
446
446
|
/**
|
|
447
447
|
* 评估方法类型
|
|
448
448
|
*/
|
|
449
|
-
type
|
|
449
|
+
type SceneEvaluationMethod = 'AHP_ENTROPY';
|
|
450
450
|
/**
|
|
451
451
|
* 指标方向类型
|
|
452
452
|
*/
|
|
453
|
-
type
|
|
453
|
+
type SceneMetricDirection = 'benefit' | 'cost';
|
|
454
454
|
/**
|
|
455
455
|
* 评估模型
|
|
456
456
|
*/
|
|
457
|
-
interface
|
|
458
|
-
method:
|
|
457
|
+
interface SceneEvaluationModel {
|
|
458
|
+
method: SceneEvaluationMethod;
|
|
459
459
|
}
|
|
460
460
|
/**
|
|
461
461
|
* 细分指标
|
|
462
462
|
*/
|
|
463
|
-
interface
|
|
463
|
+
interface SceneMetric {
|
|
464
464
|
metric_id: string;
|
|
465
465
|
metric_name: string;
|
|
466
|
-
direction:
|
|
466
|
+
direction: SceneMetricDirection;
|
|
467
467
|
value: number;
|
|
468
468
|
normalized_value: number;
|
|
469
469
|
unit: string;
|
|
@@ -471,26 +471,26 @@ interface Metric {
|
|
|
471
471
|
/**
|
|
472
472
|
* 评估维度
|
|
473
473
|
*/
|
|
474
|
-
interface
|
|
474
|
+
interface SceneEvaluationDimension {
|
|
475
475
|
dimension_id: string;
|
|
476
476
|
dimension_name: string;
|
|
477
477
|
score: number;
|
|
478
478
|
ahp_weight: number;
|
|
479
479
|
entropy_weight: number;
|
|
480
480
|
combined_weight: number;
|
|
481
|
-
metrics:
|
|
481
|
+
metrics: SceneMetric[];
|
|
482
482
|
}
|
|
483
483
|
/**
|
|
484
484
|
* 最终得分
|
|
485
485
|
*/
|
|
486
|
-
interface
|
|
486
|
+
interface SceneFinalScore {
|
|
487
487
|
score: number;
|
|
488
488
|
score_scale: string;
|
|
489
489
|
}
|
|
490
490
|
/**
|
|
491
491
|
* 评估图表配置
|
|
492
492
|
*/
|
|
493
|
-
interface
|
|
493
|
+
interface SceneEvaluationChart {
|
|
494
494
|
chart_id: string;
|
|
495
495
|
chart_name: string;
|
|
496
496
|
chart_type: string;
|
|
@@ -501,7 +501,7 @@ interface EvaluationChart {
|
|
|
501
501
|
/**
|
|
502
502
|
* 评估图表资源
|
|
503
503
|
*/
|
|
504
|
-
interface
|
|
504
|
+
interface SceneEvaluationFigureAsset {
|
|
505
505
|
figure_id: string;
|
|
506
506
|
figure_name: string;
|
|
507
507
|
figure_type: string;
|
|
@@ -511,14 +511,14 @@ interface EvaluationFigureAsset {
|
|
|
511
511
|
/**
|
|
512
512
|
* 评估结果
|
|
513
513
|
*/
|
|
514
|
-
interface
|
|
514
|
+
interface SceneEvaluationData {
|
|
515
515
|
scene_id: string;
|
|
516
516
|
scene_name: string;
|
|
517
|
-
evaluation_model:
|
|
518
|
-
dimensions:
|
|
519
|
-
final_score:
|
|
520
|
-
charts:
|
|
521
|
-
figure_assets:
|
|
517
|
+
evaluation_model: SceneEvaluationModel;
|
|
518
|
+
dimensions: SceneEvaluationDimension[];
|
|
519
|
+
final_score: SceneFinalScore;
|
|
520
|
+
charts: SceneEvaluationChart[];
|
|
521
|
+
figure_assets: SceneEvaluationFigureAsset[];
|
|
522
522
|
}
|
|
523
523
|
|
|
524
524
|
/**
|
|
@@ -556,28 +556,28 @@ interface CaseItem {
|
|
|
556
556
|
isOnline?: boolean;
|
|
557
557
|
[x: string]: any;
|
|
558
558
|
}
|
|
559
|
+
/**
|
|
560
|
+
* 案例库树结构对象元数据
|
|
561
|
+
*/
|
|
559
562
|
interface CaseItemMeta {
|
|
560
563
|
case_json?: CaseJsonData;
|
|
561
|
-
evaluation_summary_json?:
|
|
564
|
+
evaluation_summary_json?: CaseEvaluationSummaryJsonData;
|
|
562
565
|
}
|
|
563
566
|
/**
|
|
564
|
-
*
|
|
567
|
+
* 案例库多维度评估结果
|
|
565
568
|
*/
|
|
566
|
-
interface
|
|
567
|
-
/**
|
|
568
|
-
|
|
569
|
-
/**
|
|
570
|
-
|
|
571
|
-
/**
|
|
572
|
-
|
|
573
|
-
/** 网络复杂度评分 */
|
|
574
|
-
network_complexity: number;
|
|
575
|
-
[x: string]: number;
|
|
569
|
+
interface CaseEvaluationSummaryJsonData {
|
|
570
|
+
/** 案例唯一标识 */
|
|
571
|
+
case_id: string;
|
|
572
|
+
/** 评估方法 */
|
|
573
|
+
evaluation_method: SceneEvaluationMethod;
|
|
574
|
+
/** 场景评估列表 */
|
|
575
|
+
scenes: CaseSceneEvaluation[];
|
|
576
576
|
}
|
|
577
577
|
/**
|
|
578
|
-
*
|
|
578
|
+
* 案例库场景评估节点
|
|
579
579
|
*/
|
|
580
|
-
interface
|
|
580
|
+
interface CaseSceneEvaluation {
|
|
581
581
|
/** 场景唯一标识 */
|
|
582
582
|
scene_id: string;
|
|
583
583
|
/** 场景显示名称 */
|
|
@@ -585,18 +585,21 @@ interface SceneEvaluation {
|
|
|
585
585
|
/** 综合最终得分 */
|
|
586
586
|
final_score: number;
|
|
587
587
|
/** 各维度得分详情 */
|
|
588
|
-
dimension_scores:
|
|
588
|
+
dimension_scores: CaseSceneDimensionScore;
|
|
589
589
|
}
|
|
590
590
|
/**
|
|
591
|
-
*
|
|
591
|
+
* 案例库各维度评分
|
|
592
592
|
*/
|
|
593
|
-
interface
|
|
594
|
-
/**
|
|
595
|
-
|
|
596
|
-
/**
|
|
597
|
-
|
|
598
|
-
/**
|
|
599
|
-
|
|
593
|
+
interface CaseSceneDimensionScore {
|
|
594
|
+
/** 网络容量评分 */
|
|
595
|
+
network_capacity: number;
|
|
596
|
+
/** 服务质量评分 */
|
|
597
|
+
service_quality: number;
|
|
598
|
+
/** 网络韧性评分 */
|
|
599
|
+
network_resilience: number;
|
|
600
|
+
/** 网络复杂度评分 */
|
|
601
|
+
network_complexity: number;
|
|
602
|
+
[x: string]: number;
|
|
600
603
|
}
|
|
601
604
|
|
|
602
605
|
declare class DirPathDto {
|
|
@@ -675,4 +678,4 @@ interface ModelResponse extends BaseResponse {
|
|
|
675
678
|
data?: ModelEntity | ModelEntity[] | null;
|
|
676
679
|
}
|
|
677
680
|
|
|
678
|
-
export { type BaseResponse, type
|
|
681
|
+
export { type BaseResponse, type CaseEvaluationSummaryJsonData, type CaseItem, type CaseItemMeta, type CaseJsonData, type CaseSceneDimensionScore, type CaseSceneEvaluation, type CaseTreeResponse, type CaseType, DirPathDto, InitCaseCacheDto, ModelDto, ModelEntity, type ModelResponse, type SceneBulkConfigRule, type SceneCapacity, type SceneChartConfig, type SceneConstellation, type SceneConstellationType, type SceneConstellationsData, type SceneControlCenterNode, type SceneDisplayOptions, type SceneEvaluationChart, type SceneEvaluationData, type SceneEvaluationDimension, type SceneEvaluationFigureAsset, type SceneEvaluationMethod, type SceneEvaluationModel, type SceneFigureAsset, type SceneFinalScore, type SceneFlow, type SceneFlowPriority, type SceneFlowState, type SceneFlowsData, type SceneGatewayNode, type SceneGeoPosition, type SceneItem, type SceneItemMeta, type SceneItemMetaResponse, type SceneItemSelfInfo, type SceneLink, type SceneLinkNodeType, type SceneLinkState, type SceneLinkType, type SceneLinksData, type SceneManifestData, type SceneManifestTime, type SceneMetric, type SceneMetricDirection, type SceneMetricsData, type SceneMetricsSummary, type SceneMobileUserTerminal, type SceneMobilityModel, type SceneNode, type SceneNodeType, type SceneNodesData, type SceneOtherNode, type SceneOtherUserTerminal, type SceneRole, type SceneSatellite, type SceneSatelliteTLE, type SceneSatellitesData, type SceneServiceType, type SceneStaticUserTerminal, type SceneTask, type SceneTaskPriority, type SceneTaskState, type SceneTaskType, type SceneTasksData, type SceneTerminalType, type SceneTimelineData, type SceneTimelineFrame, type SceneTimeseriesPoint, type SceneUserState, type SceneVelocityWGS, SendMessageDto, type UploadFileResponse };
|