@hddjs/hdd-cloud-types 1.0.2 → 1.0.4
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/hdd-ai-cloud/common/ICallUniCloudParams.js +2 -2
- package/hdd-ai-cloud/common/ICommonRequstHead.js +2 -2
- package/hdd-ai-cloud/common/IFormatCutOffCollegeData.d.ts +29 -0
- package/hdd-ai-cloud/common/IFormatProfessional.ts +29 -0
- package/hdd-ai-cloud/common/IPicture.d.ts +13 -0
- package/hdd-ai-cloud/common/index.d.ts +3 -0
- package/hdd-ai-cloud/controller/index.d.ts +279 -0
- package/hdd-ai-cloud/index.d.ts +2 -170
- package/hdd-ai-cloud/service/index.d.ts +36 -0
- package/package.json +1 -1
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports,
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports,
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { type IFormatProfessional } from './IFormatProfessional';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* 格式化后的院校专业投档数据
|
|
5
|
+
* @interface IFormatCutOffCollegeData
|
|
6
|
+
* @description 用于API返回的格式化院校数据结构
|
|
7
|
+
*/
|
|
8
|
+
export interface IFormatCutOffCollegeData {
|
|
9
|
+
/** 院校名称 */
|
|
10
|
+
school: string;
|
|
11
|
+
/** 城市 */
|
|
12
|
+
city: string;
|
|
13
|
+
/** 省份 */
|
|
14
|
+
province: string;
|
|
15
|
+
/** 是否双一流院校 */
|
|
16
|
+
isDoubleFirstClass: string;
|
|
17
|
+
/** 主要科目类型 物理或历史 */
|
|
18
|
+
mainSubject: string;
|
|
19
|
+
/** 录取批次 */
|
|
20
|
+
batch: string;
|
|
21
|
+
/** 计划招生的专业列表 */
|
|
22
|
+
professionalList: IFormatProfessional[];
|
|
23
|
+
/** 该学校最低录取分数(数值类型) */
|
|
24
|
+
minScore: number;
|
|
25
|
+
/** 该学校最低录取排名(数值类型) */
|
|
26
|
+
minRank: number;
|
|
27
|
+
/** 院校类型 */
|
|
28
|
+
schoolType: string;
|
|
29
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 专业信息(来源招生计划表)
|
|
3
|
+
*/
|
|
4
|
+
export interface IFormatProfessional {
|
|
5
|
+
/**
|
|
6
|
+
* 专业名称
|
|
7
|
+
*/
|
|
8
|
+
professionalName?: string;
|
|
9
|
+
/**
|
|
10
|
+
* 专业填报要求
|
|
11
|
+
*/
|
|
12
|
+
professionalRequirements?: string;
|
|
13
|
+
/**
|
|
14
|
+
* 专业备注
|
|
15
|
+
*/
|
|
16
|
+
professionalRemark?: string;
|
|
17
|
+
/**
|
|
18
|
+
* 学费
|
|
19
|
+
*/
|
|
20
|
+
tuitionFee?: number;
|
|
21
|
+
/**
|
|
22
|
+
* 计划招生人数
|
|
23
|
+
*/
|
|
24
|
+
plannedNumber?: number;
|
|
25
|
+
/**
|
|
26
|
+
* 专业代码
|
|
27
|
+
*/
|
|
28
|
+
professionalCode?: string;
|
|
29
|
+
}
|
|
@@ -9,3 +9,6 @@ export * from './IAliFcContext';
|
|
|
9
9
|
export * from './ISseChunk';
|
|
10
10
|
export * from './ICallUniCloudParams';
|
|
11
11
|
export * from './ICommonRequstHead';
|
|
12
|
+
export * from './IFormatCutOffCollegeData';
|
|
13
|
+
export * from './IFormatProfessional.ts';
|
|
14
|
+
export * from './IPicture.ts';
|
|
@@ -0,0 +1,279 @@
|
|
|
1
|
+
import { type IChatAiMessageItem } from '../common/IChatAiMessageItem';
|
|
2
|
+
import { type ICommonReq, type AISceneEnum, type ICommonRes } from '../common';
|
|
3
|
+
import { type IPicture } from '../common/IPicture';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* 千问AI聊天api 请求参数
|
|
7
|
+
*/
|
|
8
|
+
export interface IChatQwenReq extends ICommonReq {
|
|
9
|
+
/**
|
|
10
|
+
* 历史对话消息
|
|
11
|
+
*/
|
|
12
|
+
messages: IChatAiMessageItem[];
|
|
13
|
+
/**
|
|
14
|
+
* 是否开启流式传输
|
|
15
|
+
*/
|
|
16
|
+
stream: boolean;
|
|
17
|
+
/**
|
|
18
|
+
* 提问场景
|
|
19
|
+
*/
|
|
20
|
+
scene?: AISceneEnum;
|
|
21
|
+
/**
|
|
22
|
+
* 通道id(如果开启流式传输stream为true则必传)
|
|
23
|
+
*/
|
|
24
|
+
channel?: string;
|
|
25
|
+
/**
|
|
26
|
+
* 是否开发模式 仅调式使用 默认false 前端禁止使用
|
|
27
|
+
*/
|
|
28
|
+
devMode?: boolean;
|
|
29
|
+
/**
|
|
30
|
+
*会话id 如有则表示是已经创建的聊天 没有则表示是新聊天
|
|
31
|
+
*/
|
|
32
|
+
sessionId?: string;
|
|
33
|
+
/**
|
|
34
|
+
*会话步骤id
|
|
35
|
+
*/
|
|
36
|
+
stepId?: string;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* 千问AI聊天api 返回参数
|
|
41
|
+
*/
|
|
42
|
+
export interface IChatQwenRes extends ICommonReq {
|
|
43
|
+
/**
|
|
44
|
+
* ai回复消息(完成拼接之后的消息)
|
|
45
|
+
*/
|
|
46
|
+
message: string;
|
|
47
|
+
/**
|
|
48
|
+
* llm运行总时间 单位ms
|
|
49
|
+
*/
|
|
50
|
+
llmRunTime: number;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* AI聊天api 单次流式传输返回参数
|
|
55
|
+
*/
|
|
56
|
+
export interface IChatAIStreamRes {
|
|
57
|
+
/**
|
|
58
|
+
* 当前返回的消息
|
|
59
|
+
*/
|
|
60
|
+
chunkMessage: string;
|
|
61
|
+
/**
|
|
62
|
+
* 深度思考的原因 仅deepseek模型返回
|
|
63
|
+
*/
|
|
64
|
+
chunkReasonMessage?: string;
|
|
65
|
+
/**
|
|
66
|
+
* 索引(从0开始) 本次流式消息是整体流式消息的第几个
|
|
67
|
+
*/
|
|
68
|
+
index: number;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
/**
|
|
72
|
+
* DeepSeek AI聊天api 请求参数
|
|
73
|
+
*/
|
|
74
|
+
export interface IChatDeepSeekReq extends ICommonReq {
|
|
75
|
+
/**
|
|
76
|
+
* 历史对话消息
|
|
77
|
+
*/
|
|
78
|
+
messages: IChatAiMessageItem[];
|
|
79
|
+
/**
|
|
80
|
+
* 是否开启流式传输
|
|
81
|
+
*/
|
|
82
|
+
stream: boolean;
|
|
83
|
+
/**
|
|
84
|
+
* 通道id(如果开启流式传输stream为true则必传)
|
|
85
|
+
*/
|
|
86
|
+
channel?: string;
|
|
87
|
+
/**
|
|
88
|
+
* 提问场景
|
|
89
|
+
*/
|
|
90
|
+
scene?: AISceneEnum;
|
|
91
|
+
/**
|
|
92
|
+
* 是否开发模式 仅调式使用 默认false 前端禁止使用
|
|
93
|
+
*/
|
|
94
|
+
devMode?: boolean;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
/**
|
|
98
|
+
* DeepSeek AI聊天api 返回参数
|
|
99
|
+
*/
|
|
100
|
+
export interface IChatDeepSeekRes extends ICommonReq {
|
|
101
|
+
/**
|
|
102
|
+
* ai回复消息(完成拼接之后的消息)
|
|
103
|
+
*/
|
|
104
|
+
message: string;
|
|
105
|
+
/**
|
|
106
|
+
* deepseek深度思考给出的原因
|
|
107
|
+
*/
|
|
108
|
+
reasonMessage: string;
|
|
109
|
+
/**
|
|
110
|
+
* llm运行总时间 单位ms
|
|
111
|
+
*/
|
|
112
|
+
llmRunTime: number;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
export interface IGuessAnswerListReq extends ICommonReq {
|
|
116
|
+
/**
|
|
117
|
+
* 问题内容
|
|
118
|
+
*/
|
|
119
|
+
content: string;
|
|
120
|
+
/**
|
|
121
|
+
* 临时消息id
|
|
122
|
+
*/
|
|
123
|
+
tempMsgId: string;
|
|
124
|
+
/**
|
|
125
|
+
* 场景
|
|
126
|
+
*/
|
|
127
|
+
scene?: AISceneEnum;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
export interface IGuessAnswerListRes extends ICommonRes {
|
|
131
|
+
/**
|
|
132
|
+
* 关联的问题id
|
|
133
|
+
*/
|
|
134
|
+
relatedTempMsgId?: string;
|
|
135
|
+
/**
|
|
136
|
+
* 可能的答案选项
|
|
137
|
+
*/
|
|
138
|
+
choices?: string[];
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
/**
|
|
142
|
+
* 生成报告的req
|
|
143
|
+
*/
|
|
144
|
+
export interface IGenerateReportReq extends ICommonReq {
|
|
145
|
+
/**
|
|
146
|
+
* 会话id
|
|
147
|
+
*/
|
|
148
|
+
sessionId?: string;
|
|
149
|
+
/**
|
|
150
|
+
* 报告id
|
|
151
|
+
*/
|
|
152
|
+
reportId?: string;
|
|
153
|
+
/**
|
|
154
|
+
* 报告类型,例如:专业、性格
|
|
155
|
+
*/
|
|
156
|
+
reportType?: string;
|
|
157
|
+
/**
|
|
158
|
+
* 咨询类型
|
|
159
|
+
*/
|
|
160
|
+
counselorId?: string;
|
|
161
|
+
/**
|
|
162
|
+
* 报告所需数据
|
|
163
|
+
*/
|
|
164
|
+
params?: any;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
/**
|
|
168
|
+
* 生成报告的res
|
|
169
|
+
*/
|
|
170
|
+
export interface IGenerateReportRes extends ICommonRes {}
|
|
171
|
+
|
|
172
|
+
/**
|
|
173
|
+
* 咨询师类型请求
|
|
174
|
+
*/
|
|
175
|
+
export interface ICounselorTypeReq extends ICommonReq {
|
|
176
|
+
/**
|
|
177
|
+
* 咨询师id
|
|
178
|
+
*/
|
|
179
|
+
counselorId?: string;
|
|
180
|
+
/**
|
|
181
|
+
* 咨询师名称
|
|
182
|
+
*/
|
|
183
|
+
counselorName?: string;
|
|
184
|
+
/**
|
|
185
|
+
* 咨询师头像url
|
|
186
|
+
*/
|
|
187
|
+
avatar?: IPicture;
|
|
188
|
+
/**
|
|
189
|
+
* 报告类型
|
|
190
|
+
*/
|
|
191
|
+
reportTypes: string[];
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
/**
|
|
195
|
+
* 咨询师类型响应
|
|
196
|
+
*/
|
|
197
|
+
export interface IGenerateReportRes extends ICommonRes {
|
|
198
|
+
/**
|
|
199
|
+
* 咨询师id
|
|
200
|
+
*/
|
|
201
|
+
counselorId?: string;
|
|
202
|
+
/**
|
|
203
|
+
* 咨询师名称
|
|
204
|
+
*/
|
|
205
|
+
counselorName?: string;
|
|
206
|
+
/**
|
|
207
|
+
* 咨询师头像url
|
|
208
|
+
*/
|
|
209
|
+
avatar?: IPicture;
|
|
210
|
+
/**
|
|
211
|
+
* 报告类型
|
|
212
|
+
*/
|
|
213
|
+
reportTypes: string[];
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
/**
|
|
217
|
+
* 智能体的req
|
|
218
|
+
*/
|
|
219
|
+
export interface IAgentReq extends ICommonReq {
|
|
220
|
+
/**
|
|
221
|
+
* 智能体类型 necc为高考智能体
|
|
222
|
+
*/
|
|
223
|
+
type: 'ncee';
|
|
224
|
+
/**
|
|
225
|
+
* 节点名称 恢复对话时候前端透传需要回到的节点名称
|
|
226
|
+
*/
|
|
227
|
+
gotoNodeName?: string;
|
|
228
|
+
/**
|
|
229
|
+
* 会话id
|
|
230
|
+
*/
|
|
231
|
+
sessionId?: string;
|
|
232
|
+
/**
|
|
233
|
+
* 用户输入信息
|
|
234
|
+
*/
|
|
235
|
+
content?: string;
|
|
236
|
+
/**
|
|
237
|
+
* 是否是恢复上次的会话 'F' | 'T'
|
|
238
|
+
*/
|
|
239
|
+
isResume?: 'F' | 'T';
|
|
240
|
+
/**
|
|
241
|
+
* 是否展示图表数据 'F' | 'T'
|
|
242
|
+
*/
|
|
243
|
+
showGraph?: 'F' | 'T';
|
|
244
|
+
gaokaoData: {
|
|
245
|
+
/**
|
|
246
|
+
* 高考排名
|
|
247
|
+
*/
|
|
248
|
+
rank?: string;
|
|
249
|
+
/**
|
|
250
|
+
* 高考主要选课
|
|
251
|
+
*/
|
|
252
|
+
mainSubject?: string;
|
|
253
|
+
};
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
/**
|
|
257
|
+
* 智能体res
|
|
258
|
+
*/
|
|
259
|
+
export interface IAgentRes extends ICommonRes {
|
|
260
|
+
data?: {
|
|
261
|
+
/**
|
|
262
|
+
* 图结构showGraph为'T'时返回
|
|
263
|
+
*/
|
|
264
|
+
base64Image?: string;
|
|
265
|
+
/**
|
|
266
|
+
* 智能体回复的消息
|
|
267
|
+
*/
|
|
268
|
+
message: string[];
|
|
269
|
+
};
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
export interface ISttOneMinuteRes extends ICommonRes {
|
|
273
|
+
data?: {
|
|
274
|
+
/**
|
|
275
|
+
* 翻译结果
|
|
276
|
+
*/
|
|
277
|
+
transResult?: string;
|
|
278
|
+
};
|
|
279
|
+
}
|
package/hdd-ai-cloud/index.d.ts
CHANGED
|
@@ -1,171 +1,3 @@
|
|
|
1
|
-
import { type IChatAiMessageItem } from './common/IChatAiMessageItem';
|
|
2
|
-
import { type ICommonReq, type ICommonRes, type AISceneEnum } from './common';
|
|
3
|
-
|
|
4
1
|
export * from './common';
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
* 千问AI聊天api 请求参数
|
|
8
|
-
*/
|
|
9
|
-
export interface IChatQwenReq extends ICommonReq {
|
|
10
|
-
/**
|
|
11
|
-
* 历史对话消息
|
|
12
|
-
*/
|
|
13
|
-
messages: IChatAiMessageItem[];
|
|
14
|
-
/**
|
|
15
|
-
* 是否开启流式传输
|
|
16
|
-
*/
|
|
17
|
-
stream: boolean;
|
|
18
|
-
/**
|
|
19
|
-
* 提问场景
|
|
20
|
-
*/
|
|
21
|
-
scene?: AISceneEnum;
|
|
22
|
-
/**
|
|
23
|
-
* 通道id(如果开启流式传输stream为true则必传)
|
|
24
|
-
*/
|
|
25
|
-
channel?: string;
|
|
26
|
-
/**
|
|
27
|
-
* 是否开发模式 仅调式使用 默认false 前端禁止使用
|
|
28
|
-
*/
|
|
29
|
-
devMode?: boolean;
|
|
30
|
-
/**
|
|
31
|
-
*会话id 如有则表示是已经创建的聊天 没有则表示是新聊天
|
|
32
|
-
*/
|
|
33
|
-
sessionId?: string;
|
|
34
|
-
/**
|
|
35
|
-
*会话步骤id
|
|
36
|
-
*/
|
|
37
|
-
stepId?: string;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
/**
|
|
41
|
-
* 千问AI聊天api 返回参数
|
|
42
|
-
*/
|
|
43
|
-
export interface IChatQwenRes extends ICommonReq {
|
|
44
|
-
/**
|
|
45
|
-
* ai回复消息(完成拼接之后的消息)
|
|
46
|
-
*/
|
|
47
|
-
message: string;
|
|
48
|
-
/**
|
|
49
|
-
* llm运行总时间 单位ms
|
|
50
|
-
*/
|
|
51
|
-
llmRunTime: number;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
/**
|
|
55
|
-
* AI聊天api 单次流式传输返回参数
|
|
56
|
-
*/
|
|
57
|
-
export interface IChatAIStreamRes {
|
|
58
|
-
/**
|
|
59
|
-
* 当前返回的消息
|
|
60
|
-
*/
|
|
61
|
-
chunkMessage: string;
|
|
62
|
-
/**
|
|
63
|
-
* 深度思考的原因 仅deepseek模型返回
|
|
64
|
-
*/
|
|
65
|
-
chunkReasonMessage?: string;
|
|
66
|
-
/**
|
|
67
|
-
* 索引(从0开始) 本次流式消息是整体流式消息的第几个
|
|
68
|
-
*/
|
|
69
|
-
index: number;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
/**
|
|
73
|
-
* DeepSeek AI聊天api 请求参数
|
|
74
|
-
*/
|
|
75
|
-
export interface IChatDeepSeekReq extends ICommonReq {
|
|
76
|
-
/**
|
|
77
|
-
* 历史对话消息
|
|
78
|
-
*/
|
|
79
|
-
messages: IChatAiMessageItem[];
|
|
80
|
-
/**
|
|
81
|
-
* 是否开启流式传输
|
|
82
|
-
*/
|
|
83
|
-
stream: boolean;
|
|
84
|
-
/**
|
|
85
|
-
* 通道id(如果开启流式传输stream为true则必传)
|
|
86
|
-
*/
|
|
87
|
-
channel?: string;
|
|
88
|
-
/**
|
|
89
|
-
* 提问场景
|
|
90
|
-
*/
|
|
91
|
-
scene?: AISceneEnum;
|
|
92
|
-
/**
|
|
93
|
-
* 是否开发模式 仅调式使用 默认false 前端禁止使用
|
|
94
|
-
*/
|
|
95
|
-
devMode?: boolean;
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
/**
|
|
99
|
-
* DeepSeek AI聊天api 返回参数
|
|
100
|
-
*/
|
|
101
|
-
export interface IChatDeepSeekRes extends ICommonReq {
|
|
102
|
-
/**
|
|
103
|
-
* ai回复消息(完成拼接之后的消息)
|
|
104
|
-
*/
|
|
105
|
-
message: string;
|
|
106
|
-
/**
|
|
107
|
-
* deepseek深度思考给出的原因
|
|
108
|
-
*/
|
|
109
|
-
reasonMessage: string;
|
|
110
|
-
/**
|
|
111
|
-
* llm运行总时间 单位ms
|
|
112
|
-
*/
|
|
113
|
-
llmRunTime: number;
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
export interface IGuessAnswerListReq extends ICommonReq {
|
|
117
|
-
/**
|
|
118
|
-
* 问题内容
|
|
119
|
-
*/
|
|
120
|
-
content: string;
|
|
121
|
-
/**
|
|
122
|
-
* 临时消息id
|
|
123
|
-
*/
|
|
124
|
-
tempMsgId: string;
|
|
125
|
-
/**
|
|
126
|
-
* 场景
|
|
127
|
-
*/
|
|
128
|
-
scene?: AISceneEnum;
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
export interface IGuessAnswerListRes extends ICommonRes {
|
|
132
|
-
/**
|
|
133
|
-
* 关联的问题id
|
|
134
|
-
*/
|
|
135
|
-
relatedTempMsgId?: string;
|
|
136
|
-
/**
|
|
137
|
-
* 可能的答案选项
|
|
138
|
-
*/
|
|
139
|
-
choices?: string[];
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
/**
|
|
143
|
-
* 生成报告的req
|
|
144
|
-
*/
|
|
145
|
-
export interface IGenerateReportReq extends ICommonReq {
|
|
146
|
-
/**
|
|
147
|
-
* 会话id
|
|
148
|
-
*/
|
|
149
|
-
sessionId: ?string;
|
|
150
|
-
/**
|
|
151
|
-
* 报告id
|
|
152
|
-
*/
|
|
153
|
-
reportId?: string;
|
|
154
|
-
/**
|
|
155
|
-
* 报告类型,例如:专业、性格
|
|
156
|
-
*/
|
|
157
|
-
reportType?: string;
|
|
158
|
-
/**
|
|
159
|
-
* 咨询类型
|
|
160
|
-
*/
|
|
161
|
-
counselorId?: string;
|
|
162
|
-
/**
|
|
163
|
-
* 报告所需数据
|
|
164
|
-
*/
|
|
165
|
-
params?: any;
|
|
166
|
-
}
|
|
167
|
-
|
|
168
|
-
/**
|
|
169
|
-
* 生成报告的res
|
|
170
|
-
*/
|
|
171
|
-
export interface IGenerateReportRes extends ICommonRes {}
|
|
2
|
+
export * from './controller';
|
|
3
|
+
export * from './service';
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { type IFormatCutOffCollegeData } from '../common/IFormatCutOffCollegeData';
|
|
2
|
+
/**
|
|
3
|
+
* 根据排名获取投档院校专业冲稳保的范围service返回
|
|
4
|
+
* @interface ApiResponseData
|
|
5
|
+
* @description 定义API返回数据的结构
|
|
6
|
+
*/
|
|
7
|
+
export interface IFilterCutOffCollegeByRankRes {
|
|
8
|
+
/** 目标排名 */
|
|
9
|
+
targetRank: number;
|
|
10
|
+
/** 统计摘要信息 */
|
|
11
|
+
summary: {
|
|
12
|
+
/** 冲击院校数量 */
|
|
13
|
+
chongCount: number;
|
|
14
|
+
/** 稳妥院校数量 */
|
|
15
|
+
wenCount: number;
|
|
16
|
+
/** 保底院校数量 */
|
|
17
|
+
baoCount: number;
|
|
18
|
+
/** 总院校数量 */
|
|
19
|
+
totalCount: number;
|
|
20
|
+
};
|
|
21
|
+
/** 各类院校的排名范围说明 */
|
|
22
|
+
ranges: {
|
|
23
|
+
/** 冲击院校排名范围 */
|
|
24
|
+
chong: string;
|
|
25
|
+
/** 稳妥院校排名范围 */
|
|
26
|
+
wen: string;
|
|
27
|
+
/** 保底院校排名范围 */
|
|
28
|
+
bao: string;
|
|
29
|
+
};
|
|
30
|
+
/** 冲击院校列表 */
|
|
31
|
+
chongColleges: IFormatCutOffCollegeData[];
|
|
32
|
+
/** 稳妥院校列表 */
|
|
33
|
+
wenColleges: IFormatCutOffCollegeData[];
|
|
34
|
+
/** 保底院校列表 */
|
|
35
|
+
baoColleges: IFormatCutOffCollegeData[];
|
|
36
|
+
}
|