tencentcloud-sdk-mrs 1.0.200

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.
@@ -0,0 +1,3002 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ module TencentCloud
18
+ module Mrs
19
+ module V20200910
20
+ # 建议
21
+ class Advice < TencentCloud::Common::AbstractModel
22
+ # @param Text: 文本
23
+ # 注意:此字段可能返回 null,表示取不到有效值。
24
+ # @type Text: String
25
+
26
+ attr_accessor :Text
27
+
28
+ def initialize(text=nil)
29
+ @Text = text
30
+ end
31
+
32
+ def deserialize(params)
33
+ @Text = params['Text']
34
+ end
35
+ end
36
+
37
+ # 纵横比
38
+ class AspectRatio < TencentCloud::Common::AbstractModel
39
+ # @param Index: 原文位置
40
+ # 注意:此字段可能返回 null,表示取不到有效值。
41
+ # @type Index: Array
42
+ # @param Number: 数值
43
+ # 注意:此字段可能返回 null,表示取不到有效值。
44
+ # @type Number: String
45
+ # @param Relation: 关系
46
+ # 注意:此字段可能返回 null,表示取不到有效值。
47
+ # @type Relation: String
48
+ # @param Src: 原文
49
+ # 注意:此字段可能返回 null,表示取不到有效值。
50
+ # @type Src: String
51
+ # @param Value: 值
52
+ # 注意:此字段可能返回 null,表示取不到有效值。
53
+ # @type Value: String
54
+
55
+ attr_accessor :Index, :Number, :Relation, :Src, :Value
56
+
57
+ def initialize(index=nil, number=nil, relation=nil, src=nil, value=nil)
58
+ @Index = index
59
+ @Number = number
60
+ @Relation = relation
61
+ @Src = src
62
+ @Value = value
63
+ end
64
+
65
+ def deserialize(params)
66
+ @Index = params['Index']
67
+ @Number = params['Number']
68
+ @Relation = params['Relation']
69
+ @Src = params['Src']
70
+ @Value = params['Value']
71
+ end
72
+ end
73
+
74
+ # 块信息
75
+ class BlockInfo < TencentCloud::Common::AbstractModel
76
+ # @param Index: 原文位置
77
+ # 注意:此字段可能返回 null,表示取不到有效值。
78
+ # @type Index: Array
79
+ # @param Positive: 阳性
80
+ # 注意:此字段可能返回 null,表示取不到有效值。
81
+ # @type Positive: String
82
+ # @param Src: 原文
83
+ # 注意:此字段可能返回 null,表示取不到有效值。
84
+ # @type Src: String
85
+ # @param Value: 值
86
+ # 注意:此字段可能返回 null,表示取不到有效值。
87
+ # @type Value: String
88
+ # @param Type: 类型
89
+ # 注意:此字段可能返回 null,表示取不到有效值。
90
+ # @type Type: String
91
+ # @param Name: 名称
92
+ # 注意:此字段可能返回 null,表示取不到有效值。
93
+ # @type Name: String
94
+
95
+ attr_accessor :Index, :Positive, :Src, :Value, :Type, :Name
96
+
97
+ def initialize(index=nil, positive=nil, src=nil, value=nil, type=nil, name=nil)
98
+ @Index = index
99
+ @Positive = positive
100
+ @Src = src
101
+ @Value = value
102
+ @Type = type
103
+ @Name = name
104
+ end
105
+
106
+ def deserialize(params)
107
+ @Index = params['Index']
108
+ @Positive = params['Positive']
109
+ @Src = params['Src']
110
+ @Value = params['Value']
111
+ @Type = params['Type']
112
+ @Name = params['Name']
113
+ end
114
+ end
115
+
116
+ # 检查报告单
117
+ class Check < TencentCloud::Common::AbstractModel
118
+ # @param Desc: 描述
119
+ # 注意:此字段可能返回 null,表示取不到有效值。
120
+ # @type Desc: :class:`Tencentcloud::Mrs.v20200910.models.Desc`
121
+ # @param Summary: 结论
122
+ # 注意:此字段可能返回 null,表示取不到有效值。
123
+ # @type Summary: :class:`Tencentcloud::Mrs.v20200910.models.Summary`
124
+
125
+ attr_accessor :Desc, :Summary
126
+
127
+ def initialize(desc=nil, summary=nil)
128
+ @Desc = desc
129
+ @Summary = summary
130
+ end
131
+
132
+ def deserialize(params)
133
+ unless params['Desc'].nil?
134
+ @Desc = Desc.new
135
+ @Desc.deserialize(params['Desc'])
136
+ end
137
+ unless params['Summary'].nil?
138
+ @Summary = Summary.new
139
+ @Summary.deserialize(params['Summary'])
140
+ end
141
+ end
142
+ end
143
+
144
+ # 描述
145
+ class Desc < TencentCloud::Common::AbstractModel
146
+ # @param Text: 描述
147
+ # 注意:此字段可能返回 null,表示取不到有效值。
148
+ # @type Text: String
149
+ # @param Organ: 器官
150
+ # 注意:此字段可能返回 null,表示取不到有效值。
151
+ # @type Organ: Array
152
+ # @param Tuber: 结节
153
+ # 注意:此字段可能返回 null,表示取不到有效值。
154
+ # @type Tuber: Array
155
+
156
+ attr_accessor :Text, :Organ, :Tuber
157
+
158
+ def initialize(text=nil, organ=nil, tuber=nil)
159
+ @Text = text
160
+ @Organ = organ
161
+ @Tuber = tuber
162
+ end
163
+
164
+ def deserialize(params)
165
+ @Text = params['Text']
166
+ unless params['Organ'].nil?
167
+ @Organ = []
168
+ params['Organ'].each do |i|
169
+ organ_tmp = Organ.new
170
+ organ_tmp.deserialize(i)
171
+ @Organ << organ_tmp
172
+ end
173
+ end
174
+ unless params['Tuber'].nil?
175
+ @Tuber = []
176
+ params['Tuber'].each do |i|
177
+ tuberinfo_tmp = TuberInfo.new
178
+ tuberinfo_tmp.deserialize(i)
179
+ @Tuber << tuberinfo_tmp
180
+ end
181
+ end
182
+ end
183
+ end
184
+
185
+ # 诊断证明
186
+ class DiagCert < TencentCloud::Common::AbstractModel
187
+ # @param Advice: 建议
188
+ # 注意:此字段可能返回 null,表示取不到有效值。
189
+ # @type Advice: :class:`Tencentcloud::Mrs.v20200910.models.Advice`
190
+ # @param Diagnosis: 诊断
191
+ # 注意:此字段可能返回 null,表示取不到有效值。
192
+ # @type Diagnosis: Array
193
+
194
+ attr_accessor :Advice, :Diagnosis
195
+
196
+ def initialize(advice=nil, diagnosis=nil)
197
+ @Advice = advice
198
+ @Diagnosis = diagnosis
199
+ end
200
+
201
+ def deserialize(params)
202
+ unless params['Advice'].nil?
203
+ @Advice = Advice.new
204
+ @Advice.deserialize(params['Advice'])
205
+ end
206
+ unless params['Diagnosis'].nil?
207
+ @Diagnosis = []
208
+ params['Diagnosis'].each do |i|
209
+ diagcertitem_tmp = DiagCertItem.new
210
+ diagcertitem_tmp.deserialize(i)
211
+ @Diagnosis << diagcertitem_tmp
212
+ end
213
+ end
214
+ end
215
+ end
216
+
217
+ # 诊断证明项
218
+ class DiagCertItem < TencentCloud::Common::AbstractModel
219
+ # @param Text: 文本
220
+ # 注意:此字段可能返回 null,表示取不到有效值。
221
+ # @type Text: String
222
+ # @param Type: 类型
223
+ # 注意:此字段可能返回 null,表示取不到有效值。
224
+ # @type Type: String
225
+ # @param Value: 值
226
+ # 注意:此字段可能返回 null,表示取不到有效值。
227
+ # @type Value: Array
228
+
229
+ attr_accessor :Text, :Type, :Value
230
+
231
+ def initialize(text=nil, type=nil, value=nil)
232
+ @Text = text
233
+ @Type = type
234
+ @Value = value
235
+ end
236
+
237
+ def deserialize(params)
238
+ @Text = params['Text']
239
+ @Type = params['Type']
240
+ @Value = params['Value']
241
+ end
242
+ end
243
+
244
+ # 出入院诊断
245
+ class DischargeDiagnosis < TencentCloud::Common::AbstractModel
246
+ # @param TableIndex: 表格位置
247
+ # 注意:此字段可能返回 null,表示取不到有效值。
248
+ # @type TableIndex: Integer
249
+ # @param OutDiagnosis: 出院诊断
250
+ # 注意:此字段可能返回 null,表示取不到有效值。
251
+ # @type OutDiagnosis: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
252
+ # @param DiseaseCode: 疾病编码
253
+ # 注意:此字段可能返回 null,表示取不到有效值。
254
+ # @type DiseaseCode: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
255
+ # @param InStatus: 入院情况
256
+ # 注意:此字段可能返回 null,表示取不到有效值。
257
+ # @type InStatus: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
258
+ # @param OutStatus: 出院情况
259
+ # 注意:此字段可能返回 null,表示取不到有效值。
260
+ # @type OutStatus: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
261
+
262
+ attr_accessor :TableIndex, :OutDiagnosis, :DiseaseCode, :InStatus, :OutStatus
263
+
264
+ def initialize(tableindex=nil, outdiagnosis=nil, diseasecode=nil, instatus=nil, outstatus=nil)
265
+ @TableIndex = tableindex
266
+ @OutDiagnosis = outdiagnosis
267
+ @DiseaseCode = diseasecode
268
+ @InStatus = instatus
269
+ @OutStatus = outstatus
270
+ end
271
+
272
+ def deserialize(params)
273
+ @TableIndex = params['TableIndex']
274
+ unless params['OutDiagnosis'].nil?
275
+ @OutDiagnosis = BlockInfo.new
276
+ @OutDiagnosis.deserialize(params['OutDiagnosis'])
277
+ end
278
+ unless params['DiseaseCode'].nil?
279
+ @DiseaseCode = BlockInfo.new
280
+ @DiseaseCode.deserialize(params['DiseaseCode'])
281
+ end
282
+ unless params['InStatus'].nil?
283
+ @InStatus = BlockInfo.new
284
+ @InStatus.deserialize(params['InStatus'])
285
+ end
286
+ unless params['OutStatus'].nil?
287
+ @OutStatus = BlockInfo.new
288
+ @OutStatus.deserialize(params['OutStatus'])
289
+ end
290
+ end
291
+ end
292
+
293
+ # 疾病史
294
+ class DiseaseMedicalHistory < TencentCloud::Common::AbstractModel
295
+ # @param MainDiseaseHistory: 主病史
296
+ # 注意:此字段可能返回 null,表示取不到有效值。
297
+ # @type MainDiseaseHistory: String
298
+ # @param AllergyHistory: 过敏史
299
+ # 注意:此字段可能返回 null,表示取不到有效值。
300
+ # @type AllergyHistory: String
301
+ # @param InfectHistory: 传染疾病史
302
+ # 注意:此字段可能返回 null,表示取不到有效值。
303
+ # @type InfectHistory: String
304
+ # @param OperationHistory: 手术史
305
+ # 注意:此字段可能返回 null,表示取不到有效值。
306
+ # @type OperationHistory: String
307
+ # @param TransfusionHistory: 输血史
308
+ # 注意:此字段可能返回 null,表示取不到有效值。
309
+ # @type TransfusionHistory: String
310
+
311
+ attr_accessor :MainDiseaseHistory, :AllergyHistory, :InfectHistory, :OperationHistory, :TransfusionHistory
312
+
313
+ def initialize(maindiseasehistory=nil, allergyhistory=nil, infecthistory=nil, operationhistory=nil, transfusionhistory=nil)
314
+ @MainDiseaseHistory = maindiseasehistory
315
+ @AllergyHistory = allergyhistory
316
+ @InfectHistory = infecthistory
317
+ @OperationHistory = operationhistory
318
+ @TransfusionHistory = transfusionhistory
319
+ end
320
+
321
+ def deserialize(params)
322
+ @MainDiseaseHistory = params['MainDiseaseHistory']
323
+ @AllergyHistory = params['AllergyHistory']
324
+ @InfectHistory = params['InfectHistory']
325
+ @OperationHistory = params['OperationHistory']
326
+ @TransfusionHistory = params['TransfusionHistory']
327
+ end
328
+ end
329
+
330
+ # 心电图详情
331
+ class EcgDescription < TencentCloud::Common::AbstractModel
332
+ # @param HeartRate: 心率
333
+ # 注意:此字段可能返回 null,表示取不到有效值。
334
+ # @type HeartRate: :class:`Tencentcloud::Mrs.v20200910.models.EcgItem`
335
+ # @param AuricularRate: 心房率
336
+ # 注意:此字段可能返回 null,表示取不到有效值。
337
+ # @type AuricularRate: :class:`Tencentcloud::Mrs.v20200910.models.EcgItem`
338
+ # @param VentricularRate: 心室率
339
+ # 注意:此字段可能返回 null,表示取不到有效值。
340
+ # @type VentricularRate: :class:`Tencentcloud::Mrs.v20200910.models.EcgItem`
341
+ # @param Rhythm: 节律
342
+ # 注意:此字段可能返回 null,表示取不到有效值。
343
+ # @type Rhythm: :class:`Tencentcloud::Mrs.v20200910.models.EcgItem`
344
+ # @param PDuration: P波时间
345
+ # 注意:此字段可能返回 null,表示取不到有效值。
346
+ # @type PDuration: :class:`Tencentcloud::Mrs.v20200910.models.EcgItem`
347
+ # @param QrsDuration: QRS时间
348
+ # 注意:此字段可能返回 null,表示取不到有效值。
349
+ # @type QrsDuration: :class:`Tencentcloud::Mrs.v20200910.models.EcgItem`
350
+ # @param QrsAxis: QRS电轴
351
+ # 注意:此字段可能返回 null,表示取不到有效值。
352
+ # @type QrsAxis: :class:`Tencentcloud::Mrs.v20200910.models.EcgItem`
353
+ # @param PRInterval: P-R间期
354
+ # 注意:此字段可能返回 null,表示取不到有效值。
355
+ # @type PRInterval: :class:`Tencentcloud::Mrs.v20200910.models.EcgItem`
356
+ # @param PPInterval: P-P间期
357
+ # 注意:此字段可能返回 null,表示取不到有效值。
358
+ # @type PPInterval: :class:`Tencentcloud::Mrs.v20200910.models.EcgItem`
359
+ # @param RRInterval: R-R间期
360
+ # 注意:此字段可能返回 null,表示取不到有效值。
361
+ # @type RRInterval: :class:`Tencentcloud::Mrs.v20200910.models.EcgItem`
362
+ # @param PJInterval: P-J间期
363
+ # 注意:此字段可能返回 null,表示取不到有效值。
364
+ # @type PJInterval: :class:`Tencentcloud::Mrs.v20200910.models.EcgItem`
365
+ # @param QTInterval: Q-T间期
366
+ # 注意:此字段可能返回 null,表示取不到有效值。
367
+ # @type QTInterval: :class:`Tencentcloud::Mrs.v20200910.models.EcgItem`
368
+ # @param QTCInterval: qt/qtc间期
369
+ # 注意:此字段可能返回 null,表示取不到有效值。
370
+ # @type QTCInterval: :class:`Tencentcloud::Mrs.v20200910.models.EcgItem`
371
+ # @param Rv5SV1Amplitude: RV5/SV1振幅
372
+ # 注意:此字段可能返回 null,表示取不到有效值。
373
+ # @type Rv5SV1Amplitude: :class:`Tencentcloud::Mrs.v20200910.models.EcgItem`
374
+ # @param Rv5AddSV1Amplitude: RV5+SV1振幅
375
+ # 注意:此字段可能返回 null,表示取不到有效值。
376
+ # @type Rv5AddSV1Amplitude: :class:`Tencentcloud::Mrs.v20200910.models.EcgItem`
377
+ # @param PRTAxis: PRT电轴
378
+ # 注意:此字段可能返回 null,表示取不到有效值。
379
+ # @type PRTAxis: :class:`Tencentcloud::Mrs.v20200910.models.EcgItem`
380
+ # @param Rv5Amplitude: RV5振幅
381
+ # 注意:此字段可能返回 null,表示取不到有效值。
382
+ # @type Rv5Amplitude: :class:`Tencentcloud::Mrs.v20200910.models.EcgItem`
383
+ # @param SV1Amplitude: SV1振幅
384
+ # 注意:此字段可能返回 null,表示取不到有效值。
385
+ # @type SV1Amplitude: :class:`Tencentcloud::Mrs.v20200910.models.EcgItem`
386
+ # @param RV6SV2: RV6/SV2
387
+ # 注意:此字段可能返回 null,表示取不到有效值。
388
+ # @type RV6SV2: :class:`Tencentcloud::Mrs.v20200910.models.EcgItem`
389
+ # @param PQRSTAxis: P/QRS/T电轴
390
+ # 注意:此字段可能返回 null,表示取不到有效值。
391
+ # @type PQRSTAxis: :class:`Tencentcloud::Mrs.v20200910.models.EcgItem`
392
+
393
+ attr_accessor :HeartRate, :AuricularRate, :VentricularRate, :Rhythm, :PDuration, :QrsDuration, :QrsAxis, :PRInterval, :PPInterval, :RRInterval, :PJInterval, :QTInterval, :QTCInterval, :Rv5SV1Amplitude, :Rv5AddSV1Amplitude, :PRTAxis, :Rv5Amplitude, :SV1Amplitude, :RV6SV2, :PQRSTAxis
394
+
395
+ def initialize(heartrate=nil, auricularrate=nil, ventricularrate=nil, rhythm=nil, pduration=nil, qrsduration=nil, qrsaxis=nil, printerval=nil, ppinterval=nil, rrinterval=nil, pjinterval=nil, qtinterval=nil, qtcinterval=nil, rv5sv1amplitude=nil, rv5addsv1amplitude=nil, prtaxis=nil, rv5amplitude=nil, sv1amplitude=nil, rv6sv2=nil, pqrstaxis=nil)
396
+ @HeartRate = heartrate
397
+ @AuricularRate = auricularrate
398
+ @VentricularRate = ventricularrate
399
+ @Rhythm = rhythm
400
+ @PDuration = pduration
401
+ @QrsDuration = qrsduration
402
+ @QrsAxis = qrsaxis
403
+ @PRInterval = printerval
404
+ @PPInterval = ppinterval
405
+ @RRInterval = rrinterval
406
+ @PJInterval = pjinterval
407
+ @QTInterval = qtinterval
408
+ @QTCInterval = qtcinterval
409
+ @Rv5SV1Amplitude = rv5sv1amplitude
410
+ @Rv5AddSV1Amplitude = rv5addsv1amplitude
411
+ @PRTAxis = prtaxis
412
+ @Rv5Amplitude = rv5amplitude
413
+ @SV1Amplitude = sv1amplitude
414
+ @RV6SV2 = rv6sv2
415
+ @PQRSTAxis = pqrstaxis
416
+ end
417
+
418
+ def deserialize(params)
419
+ unless params['HeartRate'].nil?
420
+ @HeartRate = EcgItem.new
421
+ @HeartRate.deserialize(params['HeartRate'])
422
+ end
423
+ unless params['AuricularRate'].nil?
424
+ @AuricularRate = EcgItem.new
425
+ @AuricularRate.deserialize(params['AuricularRate'])
426
+ end
427
+ unless params['VentricularRate'].nil?
428
+ @VentricularRate = EcgItem.new
429
+ @VentricularRate.deserialize(params['VentricularRate'])
430
+ end
431
+ unless params['Rhythm'].nil?
432
+ @Rhythm = EcgItem.new
433
+ @Rhythm.deserialize(params['Rhythm'])
434
+ end
435
+ unless params['PDuration'].nil?
436
+ @PDuration = EcgItem.new
437
+ @PDuration.deserialize(params['PDuration'])
438
+ end
439
+ unless params['QrsDuration'].nil?
440
+ @QrsDuration = EcgItem.new
441
+ @QrsDuration.deserialize(params['QrsDuration'])
442
+ end
443
+ unless params['QrsAxis'].nil?
444
+ @QrsAxis = EcgItem.new
445
+ @QrsAxis.deserialize(params['QrsAxis'])
446
+ end
447
+ unless params['PRInterval'].nil?
448
+ @PRInterval = EcgItem.new
449
+ @PRInterval.deserialize(params['PRInterval'])
450
+ end
451
+ unless params['PPInterval'].nil?
452
+ @PPInterval = EcgItem.new
453
+ @PPInterval.deserialize(params['PPInterval'])
454
+ end
455
+ unless params['RRInterval'].nil?
456
+ @RRInterval = EcgItem.new
457
+ @RRInterval.deserialize(params['RRInterval'])
458
+ end
459
+ unless params['PJInterval'].nil?
460
+ @PJInterval = EcgItem.new
461
+ @PJInterval.deserialize(params['PJInterval'])
462
+ end
463
+ unless params['QTInterval'].nil?
464
+ @QTInterval = EcgItem.new
465
+ @QTInterval.deserialize(params['QTInterval'])
466
+ end
467
+ unless params['QTCInterval'].nil?
468
+ @QTCInterval = EcgItem.new
469
+ @QTCInterval.deserialize(params['QTCInterval'])
470
+ end
471
+ unless params['Rv5SV1Amplitude'].nil?
472
+ @Rv5SV1Amplitude = EcgItem.new
473
+ @Rv5SV1Amplitude.deserialize(params['Rv5SV1Amplitude'])
474
+ end
475
+ unless params['Rv5AddSV1Amplitude'].nil?
476
+ @Rv5AddSV1Amplitude = EcgItem.new
477
+ @Rv5AddSV1Amplitude.deserialize(params['Rv5AddSV1Amplitude'])
478
+ end
479
+ unless params['PRTAxis'].nil?
480
+ @PRTAxis = EcgItem.new
481
+ @PRTAxis.deserialize(params['PRTAxis'])
482
+ end
483
+ unless params['Rv5Amplitude'].nil?
484
+ @Rv5Amplitude = EcgItem.new
485
+ @Rv5Amplitude.deserialize(params['Rv5Amplitude'])
486
+ end
487
+ unless params['SV1Amplitude'].nil?
488
+ @SV1Amplitude = EcgItem.new
489
+ @SV1Amplitude.deserialize(params['SV1Amplitude'])
490
+ end
491
+ unless params['RV6SV2'].nil?
492
+ @RV6SV2 = EcgItem.new
493
+ @RV6SV2.deserialize(params['RV6SV2'])
494
+ end
495
+ unless params['PQRSTAxis'].nil?
496
+ @PQRSTAxis = EcgItem.new
497
+ @PQRSTAxis.deserialize(params['PQRSTAxis'])
498
+ end
499
+ end
500
+ end
501
+
502
+ # 心电图诊断
503
+ class EcgDiagnosis < TencentCloud::Common::AbstractModel
504
+ # @param Name: 名称
505
+ # 注意:此字段可能返回 null,表示取不到有效值。
506
+ # @type Name: String
507
+ # @param Value: 值
508
+ # 注意:此字段可能返回 null,表示取不到有效值。
509
+ # @type Value: Array
510
+
511
+ attr_accessor :Name, :Value
512
+
513
+ def initialize(name=nil, value=nil)
514
+ @Name = name
515
+ @Value = value
516
+ end
517
+
518
+ def deserialize(params)
519
+ @Name = params['Name']
520
+ @Value = params['Value']
521
+ end
522
+ end
523
+
524
+ # 心电图指标项
525
+ class EcgItem < TencentCloud::Common::AbstractModel
526
+ # @param Name: 名称
527
+ # 注意:此字段可能返回 null,表示取不到有效值。
528
+ # @type Name: String
529
+ # @param Value: 值
530
+ # 注意:此字段可能返回 null,表示取不到有效值。
531
+ # @type Value: String
532
+ # @param Unit: 单位
533
+ # 注意:此字段可能返回 null,表示取不到有效值。
534
+ # @type Unit: String
535
+ # @param Src: 原文
536
+ # 注意:此字段可能返回 null,表示取不到有效值。
537
+ # @type Src: String
538
+
539
+ attr_accessor :Name, :Value, :Unit, :Src
540
+
541
+ def initialize(name=nil, value=nil, unit=nil, src=nil)
542
+ @Name = name
543
+ @Value = value
544
+ @Unit = unit
545
+ @Src = src
546
+ end
547
+
548
+ def deserialize(params)
549
+ @Name = params['Name']
550
+ @Value = params['Value']
551
+ @Unit = params['Unit']
552
+ @Src = params['Src']
553
+ end
554
+ end
555
+
556
+ # 弹性质地
557
+ class Elastic < TencentCloud::Common::AbstractModel
558
+ # @param Index: 原文位置
559
+ # 注意:此字段可能返回 null,表示取不到有效值。
560
+ # @type Index: Array
561
+ # @param Score: 分数
562
+ # 注意:此字段可能返回 null,表示取不到有效值。
563
+ # @type Score: String
564
+ # @param Src: 原文
565
+ # 注意:此字段可能返回 null,表示取不到有效值。
566
+ # @type Src: String
567
+ # @param Value: 值
568
+ # 注意:此字段可能返回 null,表示取不到有效值。
569
+ # @type Value: String
570
+ # @param Name: 名称
571
+ # 注意:此字段可能返回 null,表示取不到有效值。
572
+ # @type Name: String
573
+
574
+ attr_accessor :Index, :Score, :Src, :Value, :Name
575
+
576
+ def initialize(index=nil, score=nil, src=nil, value=nil, name=nil)
577
+ @Index = index
578
+ @Score = score
579
+ @Src = src
580
+ @Value = value
581
+ @Name = name
582
+ end
583
+
584
+ def deserialize(params)
585
+ @Index = params['Index']
586
+ @Score = params['Score']
587
+ @Src = params['Src']
588
+ @Value = params['Value']
589
+ @Name = params['Name']
590
+ end
591
+ end
592
+
593
+ # 心电图
594
+ class Electrocardiogram < TencentCloud::Common::AbstractModel
595
+ # @param EcgDescription: 心电图详情
596
+ # 注意:此字段可能返回 null,表示取不到有效值。
597
+ # @type EcgDescription: :class:`Tencentcloud::Mrs.v20200910.models.EcgDescription`
598
+ # @param EcgDiagnosis: 心电图诊断
599
+ # 注意:此字段可能返回 null,表示取不到有效值。
600
+ # @type EcgDiagnosis: :class:`Tencentcloud::Mrs.v20200910.models.EcgDiagnosis`
601
+
602
+ attr_accessor :EcgDescription, :EcgDiagnosis
603
+
604
+ def initialize(ecgdescription=nil, ecgdiagnosis=nil)
605
+ @EcgDescription = ecgdescription
606
+ @EcgDiagnosis = ecgdiagnosis
607
+ end
608
+
609
+ def deserialize(params)
610
+ unless params['EcgDescription'].nil?
611
+ @EcgDescription = EcgDescription.new
612
+ @EcgDescription.deserialize(params['EcgDescription'])
613
+ end
614
+ unless params['EcgDiagnosis'].nil?
615
+ @EcgDiagnosis = EcgDiagnosis.new
616
+ @EcgDiagnosis.deserialize(params['EcgDiagnosis'])
617
+ end
618
+ end
619
+ end
620
+
621
+ # 家族疾病史
622
+ class FamilyMedicalHistory < TencentCloud::Common::AbstractModel
623
+ # @param RelativeHistory: 家族成员史
624
+ # 注意:此字段可能返回 null,表示取不到有效值。
625
+ # @type RelativeHistory: String
626
+ # @param RelativeCancerHistory: 家族肿瘤史
627
+ # 注意:此字段可能返回 null,表示取不到有效值。
628
+ # @type RelativeCancerHistory: String
629
+ # @param GeneticHistory: 家族遗传史
630
+ # 注意:此字段可能返回 null,表示取不到有效值。
631
+ # @type GeneticHistory: String
632
+
633
+ attr_accessor :RelativeHistory, :RelativeCancerHistory, :GeneticHistory
634
+
635
+ def initialize(relativehistory=nil, relativecancerhistory=nil, genetichistory=nil)
636
+ @RelativeHistory = relativehistory
637
+ @RelativeCancerHistory = relativecancerhistory
638
+ @GeneticHistory = genetichistory
639
+ end
640
+
641
+ def deserialize(params)
642
+ @RelativeHistory = params['RelativeHistory']
643
+ @RelativeCancerHistory = params['RelativeCancerHistory']
644
+ @GeneticHistory = params['GeneticHistory']
645
+ end
646
+ end
647
+
648
+ # 病案首页
649
+ class FirstPage < TencentCloud::Common::AbstractModel
650
+ # @param DischargeDiagnosis: 出入院诊断
651
+ # 注意:此字段可能返回 null,表示取不到有效值。
652
+ # @type DischargeDiagnosis: Array
653
+ # @param PathologicalDiagnosis: 病理诊断
654
+ # 注意:此字段可能返回 null,表示取不到有效值。
655
+ # @type PathologicalDiagnosis: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
656
+ # @param ClinicalDiagnosis: 临床诊断
657
+ # 注意:此字段可能返回 null,表示取不到有效值。
658
+ # @type ClinicalDiagnosis: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
659
+
660
+ attr_accessor :DischargeDiagnosis, :PathologicalDiagnosis, :ClinicalDiagnosis
661
+
662
+ def initialize(dischargediagnosis=nil, pathologicaldiagnosis=nil, clinicaldiagnosis=nil)
663
+ @DischargeDiagnosis = dischargediagnosis
664
+ @PathologicalDiagnosis = pathologicaldiagnosis
665
+ @ClinicalDiagnosis = clinicaldiagnosis
666
+ end
667
+
668
+ def deserialize(params)
669
+ unless params['DischargeDiagnosis'].nil?
670
+ @DischargeDiagnosis = []
671
+ params['DischargeDiagnosis'].each do |i|
672
+ dischargediagnosis_tmp = DischargeDiagnosis.new
673
+ dischargediagnosis_tmp.deserialize(i)
674
+ @DischargeDiagnosis << dischargediagnosis_tmp
675
+ end
676
+ end
677
+ unless params['PathologicalDiagnosis'].nil?
678
+ @PathologicalDiagnosis = BlockInfo.new
679
+ @PathologicalDiagnosis.deserialize(params['PathologicalDiagnosis'])
680
+ end
681
+ unless params['ClinicalDiagnosis'].nil?
682
+ @ClinicalDiagnosis = BlockInfo.new
683
+ @ClinicalDiagnosis.deserialize(params['ClinicalDiagnosis'])
684
+ end
685
+ end
686
+ end
687
+
688
+ # 图片处理参数
689
+ class HandleParam < TencentCloud::Common::AbstractModel
690
+ # @param OcrEngineType: ocr引擎
691
+ # @type OcrEngineType: Integer
692
+ # @param IsReturnText: 是否返回分行文本内容
693
+ # @type IsReturnText: Boolean
694
+ # @param RotateTheAngle: 顺时针旋转角度
695
+ # @type RotateTheAngle: Float
696
+ # @param AutoFitDirection: 自动适配方向,仅支持优图引擎
697
+ # @type AutoFitDirection: Boolean
698
+ # @param AutoOptimizeCoordinate: 坐标优化
699
+ # @type AutoOptimizeCoordinate: Boolean
700
+ # @param IsScale: 是否开启图片压缩,开启时imageOriginalSize必须正确填写
701
+ # @type IsScale: Boolean
702
+ # @param ImageOriginalSize: 原始图片大小(单位byes),用来判断该图片是否需要压缩
703
+ # @type ImageOriginalSize: Integer
704
+ # @param ScaleTargetSize: 采用后台默认值(2048Kb)
705
+ # @type ScaleTargetSize: Integer
706
+
707
+ attr_accessor :OcrEngineType, :IsReturnText, :RotateTheAngle, :AutoFitDirection, :AutoOptimizeCoordinate, :IsScale, :ImageOriginalSize, :ScaleTargetSize
708
+
709
+ def initialize(ocrenginetype=nil, isreturntext=nil, rotatetheangle=nil, autofitdirection=nil, autooptimizecoordinate=nil, isscale=nil, imageoriginalsize=nil, scaletargetsize=nil)
710
+ @OcrEngineType = ocrenginetype
711
+ @IsReturnText = isreturntext
712
+ @RotateTheAngle = rotatetheangle
713
+ @AutoFitDirection = autofitdirection
714
+ @AutoOptimizeCoordinate = autooptimizecoordinate
715
+ @IsScale = isscale
716
+ @ImageOriginalSize = imageoriginalsize
717
+ @ScaleTargetSize = scaletargetsize
718
+ end
719
+
720
+ def deserialize(params)
721
+ @OcrEngineType = params['OcrEngineType']
722
+ @IsReturnText = params['IsReturnText']
723
+ @RotateTheAngle = params['RotateTheAngle']
724
+ @AutoFitDirection = params['AutoFitDirection']
725
+ @AutoOptimizeCoordinate = params['AutoOptimizeCoordinate']
726
+ @IsScale = params['IsScale']
727
+ @ImageOriginalSize = params['ImageOriginalSize']
728
+ @ScaleTargetSize = params['ScaleTargetSize']
729
+ end
730
+ end
731
+
732
+ # 组织学等级
733
+ class HistologyLevel < TencentCloud::Common::AbstractModel
734
+ # @param Grade: 等级
735
+ # 注意:此字段可能返回 null,表示取不到有效值。
736
+ # @type Grade: String
737
+ # @param Index: 原文位置
738
+ # 注意:此字段可能返回 null,表示取不到有效值。
739
+ # @type Index: Array
740
+ # @param Src: 原文
741
+ # 注意:此字段可能返回 null,表示取不到有效值。
742
+ # @type Src: String
743
+
744
+ attr_accessor :Grade, :Index, :Src
745
+
746
+ def initialize(grade=nil, index=nil, src=nil)
747
+ @Grade = grade
748
+ @Index = index
749
+ @Src = src
750
+ end
751
+
752
+ def deserialize(params)
753
+ @Grade = params['Grade']
754
+ @Index = params['Index']
755
+ @Src = params['Src']
756
+ end
757
+ end
758
+
759
+ # 组织学类型
760
+ class HistologyType < TencentCloud::Common::AbstractModel
761
+ # @param Infiltration: 浸润
762
+ # 注意:此字段可能返回 null,表示取不到有效值。
763
+ # @type Infiltration: String
764
+ # @param Index: 原文位置
765
+ # 注意:此字段可能返回 null,表示取不到有效值。
766
+ # @type Index: Array
767
+ # @param Src: 原文
768
+ # 注意:此字段可能返回 null,表示取不到有效值。
769
+ # @type Src: String
770
+ # @param Type: 类型
771
+ # 注意:此字段可能返回 null,表示取不到有效值。
772
+ # @type Type: String
773
+
774
+ attr_accessor :Infiltration, :Index, :Src, :Type
775
+
776
+ def initialize(infiltration=nil, index=nil, src=nil, type=nil)
777
+ @Infiltration = infiltration
778
+ @Index = index
779
+ @Src = src
780
+ @Type = type
781
+ end
782
+
783
+ def deserialize(params)
784
+ @Infiltration = params['Infiltration']
785
+ @Index = params['Index']
786
+ @Src = params['Src']
787
+ @Type = params['Type']
788
+ end
789
+ end
790
+
791
+ # 出入院信息
792
+ class Hospitalization < TencentCloud::Common::AbstractModel
793
+ # @param AdmissionTime: 入院时间
794
+ # 注意:此字段可能返回 null,表示取不到有效值。
795
+ # @type AdmissionTime: String
796
+ # @param DischargeTime: 出院时间
797
+ # 注意:此字段可能返回 null,表示取不到有效值。
798
+ # @type DischargeTime: String
799
+ # @param AdmissionDays: 住院天数
800
+ # 注意:此字段可能返回 null,表示取不到有效值。
801
+ # @type AdmissionDays: String
802
+ # @param AdmissionDignosis: 入院诊断
803
+ # 注意:此字段可能返回 null,表示取不到有效值。
804
+ # @type AdmissionDignosis: String
805
+ # @param AdmissionCondition: 入院情况
806
+ # 注意:此字段可能返回 null,表示取不到有效值。
807
+ # @type AdmissionCondition: String
808
+ # @param DiagnosisTreatment: 诊疗经过
809
+ # 注意:此字段可能返回 null,表示取不到有效值。
810
+ # @type DiagnosisTreatment: String
811
+ # @param DischargeDiagnosis: 出院诊断
812
+ # 注意:此字段可能返回 null,表示取不到有效值。
813
+ # @type DischargeDiagnosis: String
814
+ # @param DischargeInstruction: 出院医嘱
815
+ # 注意:此字段可能返回 null,表示取不到有效值。
816
+ # @type DischargeInstruction: String
817
+
818
+ attr_accessor :AdmissionTime, :DischargeTime, :AdmissionDays, :AdmissionDignosis, :AdmissionCondition, :DiagnosisTreatment, :DischargeDiagnosis, :DischargeInstruction
819
+
820
+ def initialize(admissiontime=nil, dischargetime=nil, admissiondays=nil, admissiondignosis=nil, admissioncondition=nil, diagnosistreatment=nil, dischargediagnosis=nil, dischargeinstruction=nil)
821
+ @AdmissionTime = admissiontime
822
+ @DischargeTime = dischargetime
823
+ @AdmissionDays = admissiondays
824
+ @AdmissionDignosis = admissiondignosis
825
+ @AdmissionCondition = admissioncondition
826
+ @DiagnosisTreatment = diagnosistreatment
827
+ @DischargeDiagnosis = dischargediagnosis
828
+ @DischargeInstruction = dischargeinstruction
829
+ end
830
+
831
+ def deserialize(params)
832
+ @AdmissionTime = params['AdmissionTime']
833
+ @DischargeTime = params['DischargeTime']
834
+ @AdmissionDays = params['AdmissionDays']
835
+ @AdmissionDignosis = params['AdmissionDignosis']
836
+ @AdmissionCondition = params['AdmissionCondition']
837
+ @DiagnosisTreatment = params['DiagnosisTreatment']
838
+ @DischargeDiagnosis = params['DischargeDiagnosis']
839
+ @DischargeInstruction = params['DischargeInstruction']
840
+ end
841
+ end
842
+
843
+ # Ihc信息
844
+ class IHCInfo < TencentCloud::Common::AbstractModel
845
+ # @param Index: 原文位置
846
+ # 注意:此字段可能返回 null,表示取不到有效值。
847
+ # @type Index: Array
848
+ # @param Src: 原文
849
+ # 注意:此字段可能返回 null,表示取不到有效值。
850
+ # @type Src: String
851
+ # @param Name: 名称
852
+ # 注意:此字段可能返回 null,表示取不到有效值。
853
+ # @type Name: String
854
+ # @param Value: 值
855
+ # @type Value: :class:`Tencentcloud::Mrs.v20200910.models.Value`
856
+
857
+ attr_accessor :Index, :Src, :Name, :Value
858
+
859
+ def initialize(index=nil, src=nil, name=nil, value=nil)
860
+ @Index = index
861
+ @Src = src
862
+ @Name = name
863
+ @Value = value
864
+ end
865
+
866
+ def deserialize(params)
867
+ @Index = params['Index']
868
+ @Src = params['Src']
869
+ @Name = params['Name']
870
+ unless params['Value'].nil?
871
+ @Value = Value.new
872
+ @Value.deserialize(params['Value'])
873
+ end
874
+ end
875
+ end
876
+
877
+ # 图片信息
878
+ class ImageInfo < TencentCloud::Common::AbstractModel
879
+ # @param Id: 图片id
880
+ # @type Id: Integer
881
+ # @param Url: 图片url
882
+ # @type Url: String
883
+ # @param Base64: 图片base64编码
884
+ # @type Base64: String
885
+
886
+ attr_accessor :Id, :Url, :Base64
887
+
888
+ def initialize(id=nil, url=nil, base64=nil)
889
+ @Id = id
890
+ @Url = url
891
+ @Base64 = base64
892
+ end
893
+
894
+ def deserialize(params)
895
+ @Id = params['Id']
896
+ @Url = params['Url']
897
+ @Base64 = params['Base64']
898
+ end
899
+ end
900
+
901
+ # ImageToClass请求参数结构体
902
+ class ImageToClassRequest < TencentCloud::Common::AbstractModel
903
+ # @param ImageInfoList: 图片列表,允许传入多张图片,支持传入图片的url或base64编码
904
+ # @type ImageInfoList: Array
905
+ # @param HandleParam: 图片处理参数
906
+ # @type HandleParam: :class:`Tencentcloud::Mrs.v20200910.models.HandleParam`
907
+ # @param Type: 图片类型,目前支持11(检验报告),12(检查报告),15(病理报告),218(诊断证明)。
908
+ # @type Type: Integer
909
+
910
+ attr_accessor :ImageInfoList, :HandleParam, :Type
911
+
912
+ def initialize(imageinfolist=nil, handleparam=nil, type=nil)
913
+ @ImageInfoList = imageinfolist
914
+ @HandleParam = handleparam
915
+ @Type = type
916
+ end
917
+
918
+ def deserialize(params)
919
+ unless params['ImageInfoList'].nil?
920
+ @ImageInfoList = []
921
+ params['ImageInfoList'].each do |i|
922
+ imageinfo_tmp = ImageInfo.new
923
+ imageinfo_tmp.deserialize(i)
924
+ @ImageInfoList << imageinfo_tmp
925
+ end
926
+ end
927
+ unless params['HandleParam'].nil?
928
+ @HandleParam = HandleParam.new
929
+ @HandleParam.deserialize(params['HandleParam'])
930
+ end
931
+ @Type = params['Type']
932
+ end
933
+ end
934
+
935
+ # ImageToClass返回参数结构体
936
+ class ImageToClassResponse < TencentCloud::Common::AbstractModel
937
+ # @param TextTypeList: 分类结果
938
+ # 注意:此字段可能返回 null,表示取不到有效值。
939
+ # @type TextTypeList: Array
940
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
941
+ # @type RequestId: String
942
+
943
+ attr_accessor :TextTypeList, :RequestId
944
+
945
+ def initialize(texttypelist=nil, requestid=nil)
946
+ @TextTypeList = texttypelist
947
+ @RequestId = requestid
948
+ end
949
+
950
+ def deserialize(params)
951
+ unless params['TextTypeList'].nil?
952
+ @TextTypeList = []
953
+ params['TextTypeList'].each do |i|
954
+ texttype_tmp = TextType.new
955
+ texttype_tmp.deserialize(i)
956
+ @TextTypeList << texttype_tmp
957
+ end
958
+ end
959
+ @RequestId = params['RequestId']
960
+ end
961
+ end
962
+
963
+ # ImageToObject请求参数结构体
964
+ class ImageToObjectRequest < TencentCloud::Common::AbstractModel
965
+ # @param ImageInfoList: 图片列表,允许传入多张图片,支持传入图片的url或base64编码
966
+ # @type ImageInfoList: Array
967
+ # @param HandleParam: 图片处理参数
968
+ # @type HandleParam: :class:`Tencentcloud::Mrs.v20200910.models.HandleParam`
969
+ # @param Type: 报告类型,目前支持11(检验报告),12(检查报告),15(病理报告),28(出院报告),29(入院报告),210(门诊病历),212(手术记录),218(诊断证明),363(心电图)。如果不清楚报告类型,可以使用分类引擎,该字段传0(同时IsUsedClassify字段必须为True,否则无法输出结果)
970
+ # @type Type: Integer
971
+ # @param IsUsedClassify: 是否使用分类引擎,当不确定报告类型时,可以使用收费的报告分类引擎服务。若该字段为 False,则 Type 字段不能为 0,否则无法输出结果。
972
+ # 注意:当 IsUsedClassify 为True 时,表示使用收费的报告分类服务,将会产生额外的费用,具体收费标准参见 [购买指南的产品价格](https://cloud.tencent.com/document/product/1314/54264)。
973
+ # @type IsUsedClassify: Boolean
974
+
975
+ attr_accessor :ImageInfoList, :HandleParam, :Type, :IsUsedClassify
976
+
977
+ def initialize(imageinfolist=nil, handleparam=nil, type=nil, isusedclassify=nil)
978
+ @ImageInfoList = imageinfolist
979
+ @HandleParam = handleparam
980
+ @Type = type
981
+ @IsUsedClassify = isusedclassify
982
+ end
983
+
984
+ def deserialize(params)
985
+ unless params['ImageInfoList'].nil?
986
+ @ImageInfoList = []
987
+ params['ImageInfoList'].each do |i|
988
+ imageinfo_tmp = ImageInfo.new
989
+ imageinfo_tmp.deserialize(i)
990
+ @ImageInfoList << imageinfo_tmp
991
+ end
992
+ end
993
+ unless params['HandleParam'].nil?
994
+ @HandleParam = HandleParam.new
995
+ @HandleParam.deserialize(params['HandleParam'])
996
+ end
997
+ @Type = params['Type']
998
+ @IsUsedClassify = params['IsUsedClassify']
999
+ end
1000
+ end
1001
+
1002
+ # ImageToObject返回参数结构体
1003
+ class ImageToObjectResponse < TencentCloud::Common::AbstractModel
1004
+ # @param Template: 报告结构化结果
1005
+ # 注意:此字段可能返回 null,表示取不到有效值。
1006
+ # @type Template: :class:`Tencentcloud::Mrs.v20200910.models.Template`
1007
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1008
+ # @type RequestId: String
1009
+
1010
+ attr_accessor :Template, :RequestId
1011
+
1012
+ def initialize(template=nil, requestid=nil)
1013
+ @Template = template
1014
+ @RequestId = requestid
1015
+ end
1016
+
1017
+ def deserialize(params)
1018
+ unless params['Template'].nil?
1019
+ @Template = Template.new
1020
+ @Template.deserialize(params['Template'])
1021
+ end
1022
+ @RequestId = params['RequestId']
1023
+ end
1024
+ end
1025
+
1026
+ # 检验报告
1027
+ class Indicator < TencentCloud::Common::AbstractModel
1028
+ # @param Indicators: 检验指标项
1029
+ # 注意:此字段可能返回 null,表示取不到有效值。
1030
+ # @type Indicators: Array
1031
+
1032
+ attr_accessor :Indicators
1033
+
1034
+ def initialize(indicators=nil)
1035
+ @Indicators = indicators
1036
+ end
1037
+
1038
+ def deserialize(params)
1039
+ unless params['Indicators'].nil?
1040
+ @Indicators = []
1041
+ params['Indicators'].each do |i|
1042
+ indicatoritem_tmp = IndicatorItem.new
1043
+ indicatoritem_tmp.deserialize(i)
1044
+ @Indicators << indicatoritem_tmp
1045
+ end
1046
+ end
1047
+ end
1048
+ end
1049
+
1050
+ # 检验指标项
1051
+ class IndicatorItem < TencentCloud::Common::AbstractModel
1052
+ # @param Code: 英文缩写
1053
+ # 注意:此字段可能返回 null,表示取不到有效值。
1054
+ # @type Code: String
1055
+ # @param Scode: 标准缩写
1056
+ # 注意:此字段可能返回 null,表示取不到有效值。
1057
+ # @type Scode: String
1058
+ # @param Name: 项目名称
1059
+ # 注意:此字段可能返回 null,表示取不到有效值。
1060
+ # @type Name: String
1061
+ # @param Sname: 标准名
1062
+ # 注意:此字段可能返回 null,表示取不到有效值。
1063
+ # @type Sname: String
1064
+ # @param Result: 结果
1065
+ # 注意:此字段可能返回 null,表示取不到有效值。
1066
+ # @type Result: String
1067
+ # @param Unit: 单位
1068
+ # 注意:此字段可能返回 null,表示取不到有效值。
1069
+ # @type Unit: String
1070
+ # @param Range: 参考范围
1071
+ # 注意:此字段可能返回 null,表示取不到有效值。
1072
+ # @type Range: String
1073
+ # @param Arrow: 上下箭头
1074
+ # 注意:此字段可能返回 null,表示取不到有效值。
1075
+ # @type Arrow: String
1076
+ # @param Normal: 是否正常
1077
+ # 注意:此字段可能返回 null,表示取不到有效值。
1078
+ # @type Normal: Boolean
1079
+ # @param ItemString: 项目原文
1080
+ # 注意:此字段可能返回 null,表示取不到有效值。
1081
+ # @type ItemString: String
1082
+
1083
+ attr_accessor :Code, :Scode, :Name, :Sname, :Result, :Unit, :Range, :Arrow, :Normal, :ItemString
1084
+
1085
+ def initialize(code=nil, scode=nil, name=nil, sname=nil, result=nil, unit=nil, range=nil, arrow=nil, normal=nil, itemstring=nil)
1086
+ @Code = code
1087
+ @Scode = scode
1088
+ @Name = name
1089
+ @Sname = sname
1090
+ @Result = result
1091
+ @Unit = unit
1092
+ @Range = range
1093
+ @Arrow = arrow
1094
+ @Normal = normal
1095
+ @ItemString = itemstring
1096
+ end
1097
+
1098
+ def deserialize(params)
1099
+ @Code = params['Code']
1100
+ @Scode = params['Scode']
1101
+ @Name = params['Name']
1102
+ @Sname = params['Sname']
1103
+ @Result = params['Result']
1104
+ @Unit = params['Unit']
1105
+ @Range = params['Range']
1106
+ @Arrow = params['Arrow']
1107
+ @Normal = params['Normal']
1108
+ @ItemString = params['ItemString']
1109
+ end
1110
+ end
1111
+
1112
+ # 侵犯扩散
1113
+ class Invas < TencentCloud::Common::AbstractModel
1114
+ # @param Index: 原文位置
1115
+ # 注意:此字段可能返回 null,表示取不到有效值。
1116
+ # @type Index: Array
1117
+ # @param Part: 部位
1118
+ # 注意:此字段可能返回 null,表示取不到有效值。
1119
+ # @type Part: :class:`Tencentcloud::Mrs.v20200910.models.Part`
1120
+ # @param Positive: 阳性
1121
+ # 注意:此字段可能返回 null,表示取不到有效值。
1122
+ # @type Positive: String
1123
+ # @param Src: 原文
1124
+ # 注意:此字段可能返回 null,表示取不到有效值。
1125
+ # @type Src: String
1126
+
1127
+ attr_accessor :Index, :Part, :Positive, :Src
1128
+
1129
+ def initialize(index=nil, part=nil, positive=nil, src=nil)
1130
+ @Index = index
1131
+ @Part = part
1132
+ @Positive = positive
1133
+ @Src = src
1134
+ end
1135
+
1136
+ def deserialize(params)
1137
+ @Index = params['Index']
1138
+ unless params['Part'].nil?
1139
+ @Part = Part.new
1140
+ @Part.deserialize(params['Part'])
1141
+ end
1142
+ @Positive = params['Positive']
1143
+ @Src = params['Src']
1144
+ end
1145
+ end
1146
+
1147
+ # 淋巴
1148
+ class Lymph < TencentCloud::Common::AbstractModel
1149
+ # @param Src: 原文
1150
+ # 注意:此字段可能返回 null,表示取不到有效值。
1151
+ # @type Src: String
1152
+ # @param Index: 原文位置
1153
+ # 注意:此字段可能返回 null,表示取不到有效值。
1154
+ # @type Index: Array
1155
+ # @param Part: 部位
1156
+ # 注意:此字段可能返回 null,表示取不到有效值。
1157
+ # @type Part: :class:`Tencentcloud::Mrs.v20200910.models.Part`
1158
+ # @param Total: 总数
1159
+ # 注意:此字段可能返回 null,表示取不到有效值。
1160
+ # @type Total: Integer
1161
+ # @param TransferNum: 转移数
1162
+ # 注意:此字段可能返回 null,表示取不到有效值。
1163
+ # @type TransferNum: Integer
1164
+
1165
+ attr_accessor :Src, :Index, :Part, :Total, :TransferNum
1166
+
1167
+ def initialize(src=nil, index=nil, part=nil, total=nil, transfernum=nil)
1168
+ @Src = src
1169
+ @Index = index
1170
+ @Part = part
1171
+ @Total = total
1172
+ @TransferNum = transfernum
1173
+ end
1174
+
1175
+ def deserialize(params)
1176
+ @Src = params['Src']
1177
+ @Index = params['Index']
1178
+ unless params['Part'].nil?
1179
+ @Part = Part.new
1180
+ @Part.deserialize(params['Part'])
1181
+ end
1182
+ @Total = params['Total']
1183
+ @TransferNum = params['TransferNum']
1184
+ end
1185
+ end
1186
+
1187
+ # 医学资料
1188
+ class MedDoc < TencentCloud::Common::AbstractModel
1189
+ # @param Advice: 建议
1190
+ # 注意:此字段可能返回 null,表示取不到有效值。
1191
+ # @type Advice: :class:`Tencentcloud::Mrs.v20200910.models.Advice`
1192
+ # @param Diagnosis: 诊断结果
1193
+ # 注意:此字段可能返回 null,表示取不到有效值。
1194
+ # @type Diagnosis: Array
1195
+ # @param DiseaseMedicalHistory: 疾病史
1196
+ # 注意:此字段可能返回 null,表示取不到有效值。
1197
+ # @type DiseaseMedicalHistory: :class:`Tencentcloud::Mrs.v20200910.models.DiseaseMedicalHistory`
1198
+ # @param PersonalMedicalHistory: 个人史
1199
+ # @type PersonalMedicalHistory: :class:`Tencentcloud::Mrs.v20200910.models.PersonalMedicalHistory`
1200
+ # @param ObstericalMedicalHistory: 婚孕史
1201
+ # @type ObstericalMedicalHistory: :class:`Tencentcloud::Mrs.v20200910.models.ObstericalMedicalHistory`
1202
+ # @param FamilyMedicalHistory: 家族史
1203
+ # @type FamilyMedicalHistory: :class:`Tencentcloud::Mrs.v20200910.models.FamilyMedicalHistory`
1204
+ # @param MenstrualMedicalHistory: 月经史
1205
+ # @type MenstrualMedicalHistory: :class:`Tencentcloud::Mrs.v20200910.models.MenstrualMedicalHistory`
1206
+ # @param TreatmentRecord: 诊疗记录
1207
+ # @type TreatmentRecord: :class:`Tencentcloud::Mrs.v20200910.models.TreatmentRecord`
1208
+
1209
+ attr_accessor :Advice, :Diagnosis, :DiseaseMedicalHistory, :PersonalMedicalHistory, :ObstericalMedicalHistory, :FamilyMedicalHistory, :MenstrualMedicalHistory, :TreatmentRecord
1210
+
1211
+ def initialize(advice=nil, diagnosis=nil, diseasemedicalhistory=nil, personalmedicalhistory=nil, obstericalmedicalhistory=nil, familymedicalhistory=nil, menstrualmedicalhistory=nil, treatmentrecord=nil)
1212
+ @Advice = advice
1213
+ @Diagnosis = diagnosis
1214
+ @DiseaseMedicalHistory = diseasemedicalhistory
1215
+ @PersonalMedicalHistory = personalmedicalhistory
1216
+ @ObstericalMedicalHistory = obstericalmedicalhistory
1217
+ @FamilyMedicalHistory = familymedicalhistory
1218
+ @MenstrualMedicalHistory = menstrualmedicalhistory
1219
+ @TreatmentRecord = treatmentrecord
1220
+ end
1221
+
1222
+ def deserialize(params)
1223
+ unless params['Advice'].nil?
1224
+ @Advice = Advice.new
1225
+ @Advice.deserialize(params['Advice'])
1226
+ end
1227
+ unless params['Diagnosis'].nil?
1228
+ @Diagnosis = []
1229
+ params['Diagnosis'].each do |i|
1230
+ diagcertitem_tmp = DiagCertItem.new
1231
+ diagcertitem_tmp.deserialize(i)
1232
+ @Diagnosis << diagcertitem_tmp
1233
+ end
1234
+ end
1235
+ unless params['DiseaseMedicalHistory'].nil?
1236
+ @DiseaseMedicalHistory = DiseaseMedicalHistory.new
1237
+ @DiseaseMedicalHistory.deserialize(params['DiseaseMedicalHistory'])
1238
+ end
1239
+ unless params['PersonalMedicalHistory'].nil?
1240
+ @PersonalMedicalHistory = PersonalMedicalHistory.new
1241
+ @PersonalMedicalHistory.deserialize(params['PersonalMedicalHistory'])
1242
+ end
1243
+ unless params['ObstericalMedicalHistory'].nil?
1244
+ @ObstericalMedicalHistory = ObstericalMedicalHistory.new
1245
+ @ObstericalMedicalHistory.deserialize(params['ObstericalMedicalHistory'])
1246
+ end
1247
+ unless params['FamilyMedicalHistory'].nil?
1248
+ @FamilyMedicalHistory = FamilyMedicalHistory.new
1249
+ @FamilyMedicalHistory.deserialize(params['FamilyMedicalHistory'])
1250
+ end
1251
+ unless params['MenstrualMedicalHistory'].nil?
1252
+ @MenstrualMedicalHistory = MenstrualMedicalHistory.new
1253
+ @MenstrualMedicalHistory.deserialize(params['MenstrualMedicalHistory'])
1254
+ end
1255
+ unless params['TreatmentRecord'].nil?
1256
+ @TreatmentRecord = TreatmentRecord.new
1257
+ @TreatmentRecord.deserialize(params['TreatmentRecord'])
1258
+ end
1259
+ end
1260
+ end
1261
+
1262
+ # 门诊病历信息
1263
+ class MedicalRecordInfo < TencentCloud::Common::AbstractModel
1264
+ # @param DiagnosisTime: 就诊日期
1265
+ # 注意:此字段可能返回 null,表示取不到有效值。
1266
+ # @type DiagnosisTime: String
1267
+ # @param DiagnosisDepartmentName: 就诊科室
1268
+ # 注意:此字段可能返回 null,表示取不到有效值。
1269
+ # @type DiagnosisDepartmentName: String
1270
+ # @param DiagnosisDoctorName: 就诊医生
1271
+ # 注意:此字段可能返回 null,表示取不到有效值。
1272
+ # @type DiagnosisDoctorName: String
1273
+ # @param ClinicalDiagnosis: 临床诊断
1274
+ # 注意:此字段可能返回 null,表示取不到有效值。
1275
+ # @type ClinicalDiagnosis: String
1276
+ # @param MainNarration: 主述
1277
+ # 注意:此字段可能返回 null,表示取不到有效值。
1278
+ # @type MainNarration: String
1279
+ # @param PhysicalExamination: 体格检查
1280
+ # 注意:此字段可能返回 null,表示取不到有效值。
1281
+ # @type PhysicalExamination: String
1282
+ # @param InspectionFindings: 检查结论
1283
+ # 注意:此字段可能返回 null,表示取不到有效值。
1284
+ # @type InspectionFindings: String
1285
+ # @param TreatmentOpinion: 治疗意见
1286
+ # 注意:此字段可能返回 null,表示取不到有效值。
1287
+ # @type TreatmentOpinion: String
1288
+
1289
+ attr_accessor :DiagnosisTime, :DiagnosisDepartmentName, :DiagnosisDoctorName, :ClinicalDiagnosis, :MainNarration, :PhysicalExamination, :InspectionFindings, :TreatmentOpinion
1290
+
1291
+ def initialize(diagnosistime=nil, diagnosisdepartmentname=nil, diagnosisdoctorname=nil, clinicaldiagnosis=nil, mainnarration=nil, physicalexamination=nil, inspectionfindings=nil, treatmentopinion=nil)
1292
+ @DiagnosisTime = diagnosistime
1293
+ @DiagnosisDepartmentName = diagnosisdepartmentname
1294
+ @DiagnosisDoctorName = diagnosisdoctorname
1295
+ @ClinicalDiagnosis = clinicaldiagnosis
1296
+ @MainNarration = mainnarration
1297
+ @PhysicalExamination = physicalexamination
1298
+ @InspectionFindings = inspectionfindings
1299
+ @TreatmentOpinion = treatmentopinion
1300
+ end
1301
+
1302
+ def deserialize(params)
1303
+ @DiagnosisTime = params['DiagnosisTime']
1304
+ @DiagnosisDepartmentName = params['DiagnosisDepartmentName']
1305
+ @DiagnosisDoctorName = params['DiagnosisDoctorName']
1306
+ @ClinicalDiagnosis = params['ClinicalDiagnosis']
1307
+ @MainNarration = params['MainNarration']
1308
+ @PhysicalExamination = params['PhysicalExamination']
1309
+ @InspectionFindings = params['InspectionFindings']
1310
+ @TreatmentOpinion = params['TreatmentOpinion']
1311
+ end
1312
+ end
1313
+
1314
+ # 月经史
1315
+ class MenstrualMedicalHistory < TencentCloud::Common::AbstractModel
1316
+ # @param LastMenstrualPeriod: 末次月经时间
1317
+ # 注意:此字段可能返回 null,表示取不到有效值。
1318
+ # @type LastMenstrualPeriod: String
1319
+ # @param MenstrualFlow: 经量
1320
+ # 注意:此字段可能返回 null,表示取不到有效值。
1321
+ # @type MenstrualFlow: String
1322
+ # @param MenarcheAge: 月经初潮年龄
1323
+ # 注意:此字段可能返回 null,表示取不到有效值。
1324
+ # @type MenarcheAge: String
1325
+ # @param MenstruationOrNot: 是否来月经
1326
+ # 注意:此字段可能返回 null,表示取不到有效值。
1327
+ # @type MenstruationOrNot: String
1328
+ # @param MenstrualCycles: 月经周期
1329
+ # 注意:此字段可能返回 null,表示取不到有效值。
1330
+ # @type MenstrualCycles: String
1331
+ # @param MenstrualPeriod: 月经持续天数
1332
+ # 注意:此字段可能返回 null,表示取不到有效值。
1333
+ # @type MenstrualPeriod: String
1334
+
1335
+ attr_accessor :LastMenstrualPeriod, :MenstrualFlow, :MenarcheAge, :MenstruationOrNot, :MenstrualCycles, :MenstrualPeriod
1336
+
1337
+ def initialize(lastmenstrualperiod=nil, menstrualflow=nil, menarcheage=nil, menstruationornot=nil, menstrualcycles=nil, menstrualperiod=nil)
1338
+ @LastMenstrualPeriod = lastmenstrualperiod
1339
+ @MenstrualFlow = menstrualflow
1340
+ @MenarcheAge = menarcheage
1341
+ @MenstruationOrNot = menstruationornot
1342
+ @MenstrualCycles = menstrualcycles
1343
+ @MenstrualPeriod = menstrualperiod
1344
+ end
1345
+
1346
+ def deserialize(params)
1347
+ @LastMenstrualPeriod = params['LastMenstrualPeriod']
1348
+ @MenstrualFlow = params['MenstrualFlow']
1349
+ @MenarcheAge = params['MenarcheAge']
1350
+ @MenstruationOrNot = params['MenstruationOrNot']
1351
+ @MenstrualCycles = params['MenstrualCycles']
1352
+ @MenstrualPeriod = params['MenstrualPeriod']
1353
+ end
1354
+ end
1355
+
1356
+ # 多发
1357
+ class Multiple < TencentCloud::Common::AbstractModel
1358
+ # @param Index: 原文位置
1359
+ # 注意:此字段可能返回 null,表示取不到有效值。
1360
+ # @type Index: Array
1361
+ # @param Src: 原文
1362
+ # 注意:此字段可能返回 null,表示取不到有效值。
1363
+ # @type Src: String
1364
+ # @param Value: 值
1365
+ # 注意:此字段可能返回 null,表示取不到有效值。
1366
+ # @type Value: String
1367
+ # @param Count: 数量
1368
+ # 注意:此字段可能返回 null,表示取不到有效值。
1369
+ # @type Count: Integer
1370
+ # @param Name: 名称
1371
+ # 注意:此字段可能返回 null,表示取不到有效值。
1372
+ # @type Name: String
1373
+
1374
+ attr_accessor :Index, :Src, :Value, :Count, :Name
1375
+
1376
+ def initialize(index=nil, src=nil, value=nil, count=nil, name=nil)
1377
+ @Index = index
1378
+ @Src = src
1379
+ @Value = value
1380
+ @Count = count
1381
+ @Name = name
1382
+ end
1383
+
1384
+ def deserialize(params)
1385
+ @Index = params['Index']
1386
+ @Src = params['Src']
1387
+ @Value = params['Value']
1388
+ @Count = params['Count']
1389
+ @Name = params['Name']
1390
+ end
1391
+ end
1392
+
1393
+ # 标准部位
1394
+ class NormPart < TencentCloud::Common::AbstractModel
1395
+ # @param Part: 部位值
1396
+ # 注意:此字段可能返回 null,表示取不到有效值。
1397
+ # @type Part: String
1398
+ # @param PartDirection: 部位方向
1399
+ # 注意:此字段可能返回 null,表示取不到有效值。
1400
+ # @type PartDirection: String
1401
+ # @param Tissue: 组织值
1402
+ # 注意:此字段可能返回 null,表示取不到有效值。
1403
+ # @type Tissue: String
1404
+ # @param TissueDirection: 组织方向
1405
+ # 注意:此字段可能返回 null,表示取不到有效值。
1406
+ # @type TissueDirection: String
1407
+ # @param Upper: 上级部位
1408
+ # 注意:此字段可能返回 null,表示取不到有效值。
1409
+ # @type Upper: String
1410
+
1411
+ attr_accessor :Part, :PartDirection, :Tissue, :TissueDirection, :Upper
1412
+
1413
+ def initialize(part=nil, partdirection=nil, tissue=nil, tissuedirection=nil, upper=nil)
1414
+ @Part = part
1415
+ @PartDirection = partdirection
1416
+ @Tissue = tissue
1417
+ @TissueDirection = tissuedirection
1418
+ @Upper = upper
1419
+ end
1420
+
1421
+ def deserialize(params)
1422
+ @Part = params['Part']
1423
+ @PartDirection = params['PartDirection']
1424
+ @Tissue = params['Tissue']
1425
+ @TissueDirection = params['TissueDirection']
1426
+ @Upper = params['Upper']
1427
+ end
1428
+ end
1429
+
1430
+ # 大小
1431
+ class NormSize < TencentCloud::Common::AbstractModel
1432
+ # @param Number: 数量
1433
+ # 注意:此字段可能返回 null,表示取不到有效值。
1434
+ # @type Number: Array
1435
+ # @param Type: 类型
1436
+ # 注意:此字段可能返回 null,表示取不到有效值。
1437
+ # @type Type: String
1438
+ # @param Unit: 单位
1439
+ # 注意:此字段可能返回 null,表示取不到有效值。
1440
+ # @type Unit: String
1441
+
1442
+ attr_accessor :Number, :Type, :Unit
1443
+
1444
+ def initialize(number=nil, type=nil, unit=nil)
1445
+ @Number = number
1446
+ @Type = type
1447
+ @Unit = unit
1448
+ end
1449
+
1450
+ def deserialize(params)
1451
+ @Number = params['Number']
1452
+ @Type = params['Type']
1453
+ @Unit = params['Unit']
1454
+ end
1455
+ end
1456
+
1457
+ # 孕产史
1458
+ class ObstericalMedicalHistory < TencentCloud::Common::AbstractModel
1459
+ # @param MarriageHistory: 婚史
1460
+ # 注意:此字段可能返回 null,表示取不到有效值。
1461
+ # @type MarriageHistory: String
1462
+ # @param FertilityHistory: 孕史
1463
+ # 注意:此字段可能返回 null,表示取不到有效值。
1464
+ # @type FertilityHistory: String
1465
+
1466
+ attr_accessor :MarriageHistory, :FertilityHistory
1467
+
1468
+ def initialize(marriagehistory=nil, fertilityhistory=nil)
1469
+ @MarriageHistory = marriagehistory
1470
+ @FertilityHistory = fertilityhistory
1471
+ end
1472
+
1473
+ def deserialize(params)
1474
+ @MarriageHistory = params['MarriageHistory']
1475
+ @FertilityHistory = params['FertilityHistory']
1476
+ end
1477
+ end
1478
+
1479
+ # 器官
1480
+ class Organ < TencentCloud::Common::AbstractModel
1481
+ # @param Part: 部位
1482
+ # 注意:此字段可能返回 null,表示取不到有效值。
1483
+ # @type Part: :class:`Tencentcloud::Mrs.v20200910.models.Part`
1484
+ # @param Size: 大小
1485
+ # 注意:此字段可能返回 null,表示取不到有效值。
1486
+ # @type Size: Array
1487
+ # @param Envelope: 包膜
1488
+ # 注意:此字段可能返回 null,表示取不到有效值。
1489
+ # @type Envelope: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
1490
+ # @param Edge: 边缘
1491
+ # 注意:此字段可能返回 null,表示取不到有效值。
1492
+ # @type Edge: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
1493
+ # @param InnerEcho: 内部回声
1494
+ # 注意:此字段可能返回 null,表示取不到有效值。
1495
+ # @type InnerEcho: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
1496
+ # @param Gland: 腺体
1497
+ # 注意:此字段可能返回 null,表示取不到有效值。
1498
+ # @type Gland: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
1499
+ # @param Shape: 形状
1500
+ # 注意:此字段可能返回 null,表示取不到有效值。
1501
+ # @type Shape: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
1502
+ # @param Thickness: 厚度
1503
+ # 注意:此字段可能返回 null,表示取不到有效值。
1504
+ # @type Thickness: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
1505
+ # @param ShapeAttr: 形态
1506
+ # 注意:此字段可能返回 null,表示取不到有效值。
1507
+ # @type ShapeAttr: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
1508
+ # @param CDFI: 血液cdfi
1509
+ # 注意:此字段可能返回 null,表示取不到有效值。
1510
+ # @type CDFI: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
1511
+ # @param SymDesc: 描述信息
1512
+ # 注意:此字段可能返回 null,表示取不到有效值。
1513
+ # @type SymDesc: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
1514
+ # @param SizeStatus: 大小状态
1515
+ # 注意:此字段可能返回 null,表示取不到有效值。
1516
+ # @type SizeStatus: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
1517
+ # @param Outline: 轮廓
1518
+ # 注意:此字段可能返回 null,表示取不到有效值。
1519
+ # @type Outline: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
1520
+ # @param Structure: 结构
1521
+ # 注意:此字段可能返回 null,表示取不到有效值。
1522
+ # @type Structure: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
1523
+ # @param Density: 密度
1524
+ # 注意:此字段可能返回 null,表示取不到有效值。
1525
+ # @type Density: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
1526
+ # @param Vas: 血管
1527
+ # 注意:此字段可能返回 null,表示取不到有效值。
1528
+ # @type Vas: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
1529
+ # @param Cysticwall: 囊壁
1530
+ # 注意:此字段可能返回 null,表示取不到有效值。
1531
+ # @type Cysticwall: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
1532
+ # @param Capsule: 被膜
1533
+ # 注意:此字段可能返回 null,表示取不到有效值。
1534
+ # @type Capsule: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
1535
+ # @param IsthmusThicknese: 峡部厚度
1536
+ # 注意:此字段可能返回 null,表示取不到有效值。
1537
+ # @type IsthmusThicknese: :class:`Tencentcloud::Mrs.v20200910.models.Size`
1538
+ # @param InnerEchoDistribution: 内部回声分布
1539
+ # 注意:此字段可能返回 null,表示取不到有效值。
1540
+ # @type InnerEchoDistribution: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
1541
+ # @param Src: 原文
1542
+ # 注意:此字段可能返回 null,表示取不到有效值。
1543
+ # @type Src: String
1544
+ # @param Index: 原文位置
1545
+ # 注意:此字段可能返回 null,表示取不到有效值。
1546
+ # @type Index: Array
1547
+
1548
+ attr_accessor :Part, :Size, :Envelope, :Edge, :InnerEcho, :Gland, :Shape, :Thickness, :ShapeAttr, :CDFI, :SymDesc, :SizeStatus, :Outline, :Structure, :Density, :Vas, :Cysticwall, :Capsule, :IsthmusThicknese, :InnerEchoDistribution, :Src, :Index
1549
+
1550
+ def initialize(part=nil, size=nil, envelope=nil, edge=nil, innerecho=nil, gland=nil, shape=nil, thickness=nil, shapeattr=nil, cdfi=nil, symdesc=nil, sizestatus=nil, outline=nil, structure=nil, density=nil, vas=nil, cysticwall=nil, capsule=nil, isthmusthicknese=nil, innerechodistribution=nil, src=nil, index=nil)
1551
+ @Part = part
1552
+ @Size = size
1553
+ @Envelope = envelope
1554
+ @Edge = edge
1555
+ @InnerEcho = innerecho
1556
+ @Gland = gland
1557
+ @Shape = shape
1558
+ @Thickness = thickness
1559
+ @ShapeAttr = shapeattr
1560
+ @CDFI = cdfi
1561
+ @SymDesc = symdesc
1562
+ @SizeStatus = sizestatus
1563
+ @Outline = outline
1564
+ @Structure = structure
1565
+ @Density = density
1566
+ @Vas = vas
1567
+ @Cysticwall = cysticwall
1568
+ @Capsule = capsule
1569
+ @IsthmusThicknese = isthmusthicknese
1570
+ @InnerEchoDistribution = innerechodistribution
1571
+ @Src = src
1572
+ @Index = index
1573
+ end
1574
+
1575
+ def deserialize(params)
1576
+ unless params['Part'].nil?
1577
+ @Part = Part.new
1578
+ @Part.deserialize(params['Part'])
1579
+ end
1580
+ unless params['Size'].nil?
1581
+ @Size = []
1582
+ params['Size'].each do |i|
1583
+ size_tmp = Size.new
1584
+ size_tmp.deserialize(i)
1585
+ @Size << size_tmp
1586
+ end
1587
+ end
1588
+ unless params['Envelope'].nil?
1589
+ @Envelope = BlockInfo.new
1590
+ @Envelope.deserialize(params['Envelope'])
1591
+ end
1592
+ unless params['Edge'].nil?
1593
+ @Edge = BlockInfo.new
1594
+ @Edge.deserialize(params['Edge'])
1595
+ end
1596
+ unless params['InnerEcho'].nil?
1597
+ @InnerEcho = BlockInfo.new
1598
+ @InnerEcho.deserialize(params['InnerEcho'])
1599
+ end
1600
+ unless params['Gland'].nil?
1601
+ @Gland = BlockInfo.new
1602
+ @Gland.deserialize(params['Gland'])
1603
+ end
1604
+ unless params['Shape'].nil?
1605
+ @Shape = BlockInfo.new
1606
+ @Shape.deserialize(params['Shape'])
1607
+ end
1608
+ unless params['Thickness'].nil?
1609
+ @Thickness = BlockInfo.new
1610
+ @Thickness.deserialize(params['Thickness'])
1611
+ end
1612
+ unless params['ShapeAttr'].nil?
1613
+ @ShapeAttr = BlockInfo.new
1614
+ @ShapeAttr.deserialize(params['ShapeAttr'])
1615
+ end
1616
+ unless params['CDFI'].nil?
1617
+ @CDFI = BlockInfo.new
1618
+ @CDFI.deserialize(params['CDFI'])
1619
+ end
1620
+ unless params['SymDesc'].nil?
1621
+ @SymDesc = BlockInfo.new
1622
+ @SymDesc.deserialize(params['SymDesc'])
1623
+ end
1624
+ unless params['SizeStatus'].nil?
1625
+ @SizeStatus = BlockInfo.new
1626
+ @SizeStatus.deserialize(params['SizeStatus'])
1627
+ end
1628
+ unless params['Outline'].nil?
1629
+ @Outline = BlockInfo.new
1630
+ @Outline.deserialize(params['Outline'])
1631
+ end
1632
+ unless params['Structure'].nil?
1633
+ @Structure = BlockInfo.new
1634
+ @Structure.deserialize(params['Structure'])
1635
+ end
1636
+ unless params['Density'].nil?
1637
+ @Density = BlockInfo.new
1638
+ @Density.deserialize(params['Density'])
1639
+ end
1640
+ unless params['Vas'].nil?
1641
+ @Vas = BlockInfo.new
1642
+ @Vas.deserialize(params['Vas'])
1643
+ end
1644
+ unless params['Cysticwall'].nil?
1645
+ @Cysticwall = BlockInfo.new
1646
+ @Cysticwall.deserialize(params['Cysticwall'])
1647
+ end
1648
+ unless params['Capsule'].nil?
1649
+ @Capsule = BlockInfo.new
1650
+ @Capsule.deserialize(params['Capsule'])
1651
+ end
1652
+ unless params['IsthmusThicknese'].nil?
1653
+ @IsthmusThicknese = Size.new
1654
+ @IsthmusThicknese.deserialize(params['IsthmusThicknese'])
1655
+ end
1656
+ unless params['InnerEchoDistribution'].nil?
1657
+ @InnerEchoDistribution = BlockInfo.new
1658
+ @InnerEchoDistribution.deserialize(params['InnerEchoDistribution'])
1659
+ end
1660
+ @Src = params['Src']
1661
+ @Index = params['Index']
1662
+ end
1663
+ end
1664
+
1665
+ # 部位信息
1666
+ class Part < TencentCloud::Common::AbstractModel
1667
+ # @param Index: 原文位置
1668
+ # 注意:此字段可能返回 null,表示取不到有效值。
1669
+ # @type Index: Array
1670
+ # @param NormPart: 部位
1671
+ # 注意:此字段可能返回 null,表示取不到有效值。
1672
+ # @type NormPart: :class:`Tencentcloud::Mrs.v20200910.models.NormPart`
1673
+ # @param Src: 原文
1674
+ # 注意:此字段可能返回 null,表示取不到有效值。
1675
+ # @type Src: String
1676
+ # @param Value: 值
1677
+ # 注意:此字段可能返回 null,表示取不到有效值。
1678
+ # @type Value: String
1679
+ # @param Name: 名称
1680
+ # 注意:此字段可能返回 null,表示取不到有效值。
1681
+ # @type Name: String
1682
+
1683
+ attr_accessor :Index, :NormPart, :Src, :Value, :Name
1684
+
1685
+ def initialize(index=nil, normpart=nil, src=nil, value=nil, name=nil)
1686
+ @Index = index
1687
+ @NormPart = normpart
1688
+ @Src = src
1689
+ @Value = value
1690
+ @Name = name
1691
+ end
1692
+
1693
+ def deserialize(params)
1694
+ @Index = params['Index']
1695
+ unless params['NormPart'].nil?
1696
+ @NormPart = NormPart.new
1697
+ @NormPart.deserialize(params['NormPart'])
1698
+ end
1699
+ @Src = params['Src']
1700
+ @Value = params['Value']
1701
+ @Name = params['Name']
1702
+ end
1703
+ end
1704
+
1705
+ # 病理报告
1706
+ class PathologyReport < TencentCloud::Common::AbstractModel
1707
+ # @param CancerPart: 癌症部位
1708
+ # 注意:此字段可能返回 null,表示取不到有效值。
1709
+ # @type CancerPart: :class:`Tencentcloud::Mrs.v20200910.models.Part`
1710
+ # @param CancerSize: 癌症部位大小
1711
+ # 注意:此字段可能返回 null,表示取不到有效值。
1712
+ # @type CancerSize: Array
1713
+ # @param DescText: 描述文本
1714
+ # 注意:此字段可能返回 null,表示取不到有效值。
1715
+ # @type DescText: String
1716
+ # @param HistologyLevel: 组织学等级
1717
+ # 注意:此字段可能返回 null,表示取不到有效值。
1718
+ # @type HistologyLevel: :class:`Tencentcloud::Mrs.v20200910.models.HistologyLevel`
1719
+ # @param HistologyType: 组织学类型
1720
+ # 注意:此字段可能返回 null,表示取不到有效值。
1721
+ # @type HistologyType: :class:`Tencentcloud::Mrs.v20200910.models.HistologyType`
1722
+ # @param IHC: IHC信息
1723
+ # 注意:此字段可能返回 null,表示取不到有效值。
1724
+ # @type IHC: Array
1725
+ # @param InfiltrationDepth: 浸润深度
1726
+ # 注意:此字段可能返回 null,表示取不到有效值。
1727
+ # @type InfiltrationDepth: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
1728
+ # @param Invasive: 肿瘤扩散
1729
+ # 注意:此字段可能返回 null,表示取不到有效值。
1730
+ # @type Invasive: Array
1731
+ # @param LymphNodes: 淋巴结
1732
+ # 注意:此字段可能返回 null,表示取不到有效值。
1733
+ # @type LymphNodes: Array
1734
+ # @param PTNM: PTNM信息
1735
+ # 注意:此字段可能返回 null,表示取不到有效值。
1736
+ # @type PTNM: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
1737
+ # @param PathologicalReportType: 病理报告类型
1738
+ # 注意:此字段可能返回 null,表示取不到有效值。
1739
+ # @type PathologicalReportType: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
1740
+ # @param ReportText: 报告原文
1741
+ # 注意:此字段可能返回 null,表示取不到有效值。
1742
+ # @type ReportText: String
1743
+ # @param SampleType: 标本类型
1744
+ # 注意:此字段可能返回 null,表示取不到有效值。
1745
+ # @type SampleType: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
1746
+ # @param SummaryText: 结论文本
1747
+ # 注意:此字段可能返回 null,表示取不到有效值。
1748
+ # @type SummaryText: String
1749
+
1750
+ attr_accessor :CancerPart, :CancerSize, :DescText, :HistologyLevel, :HistologyType, :IHC, :InfiltrationDepth, :Invasive, :LymphNodes, :PTNM, :PathologicalReportType, :ReportText, :SampleType, :SummaryText
1751
+
1752
+ def initialize(cancerpart=nil, cancersize=nil, desctext=nil, histologylevel=nil, histologytype=nil, ihc=nil, infiltrationdepth=nil, invasive=nil, lymphnodes=nil, ptnm=nil, pathologicalreporttype=nil, reporttext=nil, sampletype=nil, summarytext=nil)
1753
+ @CancerPart = cancerpart
1754
+ @CancerSize = cancersize
1755
+ @DescText = desctext
1756
+ @HistologyLevel = histologylevel
1757
+ @HistologyType = histologytype
1758
+ @IHC = ihc
1759
+ @InfiltrationDepth = infiltrationdepth
1760
+ @Invasive = invasive
1761
+ @LymphNodes = lymphnodes
1762
+ @PTNM = ptnm
1763
+ @PathologicalReportType = pathologicalreporttype
1764
+ @ReportText = reporttext
1765
+ @SampleType = sampletype
1766
+ @SummaryText = summarytext
1767
+ end
1768
+
1769
+ def deserialize(params)
1770
+ unless params['CancerPart'].nil?
1771
+ @CancerPart = Part.new
1772
+ @CancerPart.deserialize(params['CancerPart'])
1773
+ end
1774
+ unless params['CancerSize'].nil?
1775
+ @CancerSize = []
1776
+ params['CancerSize'].each do |i|
1777
+ size_tmp = Size.new
1778
+ size_tmp.deserialize(i)
1779
+ @CancerSize << size_tmp
1780
+ end
1781
+ end
1782
+ @DescText = params['DescText']
1783
+ unless params['HistologyLevel'].nil?
1784
+ @HistologyLevel = HistologyLevel.new
1785
+ @HistologyLevel.deserialize(params['HistologyLevel'])
1786
+ end
1787
+ unless params['HistologyType'].nil?
1788
+ @HistologyType = HistologyType.new
1789
+ @HistologyType.deserialize(params['HistologyType'])
1790
+ end
1791
+ unless params['IHC'].nil?
1792
+ @IHC = []
1793
+ params['IHC'].each do |i|
1794
+ ihcinfo_tmp = IHCInfo.new
1795
+ ihcinfo_tmp.deserialize(i)
1796
+ @IHC << ihcinfo_tmp
1797
+ end
1798
+ end
1799
+ unless params['InfiltrationDepth'].nil?
1800
+ @InfiltrationDepth = BlockInfo.new
1801
+ @InfiltrationDepth.deserialize(params['InfiltrationDepth'])
1802
+ end
1803
+ unless params['Invasive'].nil?
1804
+ @Invasive = []
1805
+ params['Invasive'].each do |i|
1806
+ invas_tmp = Invas.new
1807
+ invas_tmp.deserialize(i)
1808
+ @Invasive << invas_tmp
1809
+ end
1810
+ end
1811
+ unless params['LymphNodes'].nil?
1812
+ @LymphNodes = []
1813
+ params['LymphNodes'].each do |i|
1814
+ lymph_tmp = Lymph.new
1815
+ lymph_tmp.deserialize(i)
1816
+ @LymphNodes << lymph_tmp
1817
+ end
1818
+ end
1819
+ unless params['PTNM'].nil?
1820
+ @PTNM = BlockInfo.new
1821
+ @PTNM.deserialize(params['PTNM'])
1822
+ end
1823
+ unless params['PathologicalReportType'].nil?
1824
+ @PathologicalReportType = BlockInfo.new
1825
+ @PathologicalReportType.deserialize(params['PathologicalReportType'])
1826
+ end
1827
+ @ReportText = params['ReportText']
1828
+ unless params['SampleType'].nil?
1829
+ @SampleType = BlockInfo.new
1830
+ @SampleType.deserialize(params['SampleType'])
1831
+ end
1832
+ @SummaryText = params['SummaryText']
1833
+ end
1834
+ end
1835
+
1836
+ # 患者信息
1837
+ class PatientInfo < TencentCloud::Common::AbstractModel
1838
+ # @param Name: 患者姓名
1839
+ # 注意:此字段可能返回 null,表示取不到有效值。
1840
+ # @type Name: String
1841
+ # @param Sex: 患者性别
1842
+ # 注意:此字段可能返回 null,表示取不到有效值。
1843
+ # @type Sex: String
1844
+ # @param Age: 患者年龄
1845
+ # 注意:此字段可能返回 null,表示取不到有效值。
1846
+ # @type Age: String
1847
+ # @param Phone: 患者手机号码
1848
+ # 注意:此字段可能返回 null,表示取不到有效值。
1849
+ # @type Phone: String
1850
+ # @param Address: 患者地址
1851
+ # 注意:此字段可能返回 null,表示取不到有效值。
1852
+ # @type Address: String
1853
+ # @param IdCard: 患者身份证
1854
+ # 注意:此字段可能返回 null,表示取不到有效值。
1855
+ # @type IdCard: String
1856
+ # @param HealthCardNo: 健康卡号
1857
+ # 注意:此字段可能返回 null,表示取不到有效值。
1858
+ # @type HealthCardNo: String
1859
+ # @param SocialSecurityCardNo: 社保卡号
1860
+ # 注意:此字段可能返回 null,表示取不到有效值。
1861
+ # @type SocialSecurityCardNo: String
1862
+ # @param Birthday: 出生日期
1863
+ # 注意:此字段可能返回 null,表示取不到有效值。
1864
+ # @type Birthday: String
1865
+ # @param Ethnicity: 民族
1866
+ # 注意:此字段可能返回 null,表示取不到有效值。
1867
+ # @type Ethnicity: String
1868
+ # @param Married: 婚姻状况
1869
+ # 注意:此字段可能返回 null,表示取不到有效值。
1870
+ # @type Married: String
1871
+ # @param Profession: 职业
1872
+ # 注意:此字段可能返回 null,表示取不到有效值。
1873
+ # @type Profession: String
1874
+ # @param EducationBackground: 教育程度
1875
+ # 注意:此字段可能返回 null,表示取不到有效值。
1876
+ # @type EducationBackground: String
1877
+ # @param Nationality: 国籍
1878
+ # 注意:此字段可能返回 null,表示取不到有效值。
1879
+ # @type Nationality: String
1880
+ # @param BirthPlace: 籍贯
1881
+ # 注意:此字段可能返回 null,表示取不到有效值。
1882
+ # @type BirthPlace: String
1883
+ # @param MedicalInsuranceType: 医保类型
1884
+ # 注意:此字段可能返回 null,表示取不到有效值。
1885
+ # @type MedicalInsuranceType: String
1886
+ # @param AgeNorm: 标准化年龄
1887
+ # 注意:此字段可能返回 null,表示取不到有效值。
1888
+ # @type AgeNorm: String
1889
+ # @param Nation: 民族
1890
+ # 注意:此字段可能返回 null,表示取不到有效值。
1891
+ # @type Nation: String
1892
+ # @param MarriedCode: 婚姻代码
1893
+ # 注意:此字段可能返回 null,表示取不到有效值。
1894
+ # @type MarriedCode: String
1895
+ # @param ProfessionCode: 职业代码
1896
+ # 注意:此字段可能返回 null,表示取不到有效值。
1897
+ # @type ProfessionCode: String
1898
+ # @param MedicalInsuranceTypeCode: 居民医保代码
1899
+ # 注意:此字段可能返回 null,表示取不到有效值。
1900
+ # @type MedicalInsuranceTypeCode: String
1901
+
1902
+ attr_accessor :Name, :Sex, :Age, :Phone, :Address, :IdCard, :HealthCardNo, :SocialSecurityCardNo, :Birthday, :Ethnicity, :Married, :Profession, :EducationBackground, :Nationality, :BirthPlace, :MedicalInsuranceType, :AgeNorm, :Nation, :MarriedCode, :ProfessionCode, :MedicalInsuranceTypeCode
1903
+
1904
+ def initialize(name=nil, sex=nil, age=nil, phone=nil, address=nil, idcard=nil, healthcardno=nil, socialsecuritycardno=nil, birthday=nil, ethnicity=nil, married=nil, profession=nil, educationbackground=nil, nationality=nil, birthplace=nil, medicalinsurancetype=nil, agenorm=nil, nation=nil, marriedcode=nil, professioncode=nil, medicalinsurancetypecode=nil)
1905
+ @Name = name
1906
+ @Sex = sex
1907
+ @Age = age
1908
+ @Phone = phone
1909
+ @Address = address
1910
+ @IdCard = idcard
1911
+ @HealthCardNo = healthcardno
1912
+ @SocialSecurityCardNo = socialsecuritycardno
1913
+ @Birthday = birthday
1914
+ @Ethnicity = ethnicity
1915
+ @Married = married
1916
+ @Profession = profession
1917
+ @EducationBackground = educationbackground
1918
+ @Nationality = nationality
1919
+ @BirthPlace = birthplace
1920
+ @MedicalInsuranceType = medicalinsurancetype
1921
+ @AgeNorm = agenorm
1922
+ @Nation = nation
1923
+ @MarriedCode = marriedcode
1924
+ @ProfessionCode = professioncode
1925
+ @MedicalInsuranceTypeCode = medicalinsurancetypecode
1926
+ end
1927
+
1928
+ def deserialize(params)
1929
+ @Name = params['Name']
1930
+ @Sex = params['Sex']
1931
+ @Age = params['Age']
1932
+ @Phone = params['Phone']
1933
+ @Address = params['Address']
1934
+ @IdCard = params['IdCard']
1935
+ @HealthCardNo = params['HealthCardNo']
1936
+ @SocialSecurityCardNo = params['SocialSecurityCardNo']
1937
+ @Birthday = params['Birthday']
1938
+ @Ethnicity = params['Ethnicity']
1939
+ @Married = params['Married']
1940
+ @Profession = params['Profession']
1941
+ @EducationBackground = params['EducationBackground']
1942
+ @Nationality = params['Nationality']
1943
+ @BirthPlace = params['BirthPlace']
1944
+ @MedicalInsuranceType = params['MedicalInsuranceType']
1945
+ @AgeNorm = params['AgeNorm']
1946
+ @Nation = params['Nation']
1947
+ @MarriedCode = params['MarriedCode']
1948
+ @ProfessionCode = params['ProfessionCode']
1949
+ @MedicalInsuranceTypeCode = params['MedicalInsuranceTypeCode']
1950
+ end
1951
+ end
1952
+
1953
+ # 个人史
1954
+ class PersonalMedicalHistory < TencentCloud::Common::AbstractModel
1955
+ # @param BirthPlace: 出生史
1956
+ # 注意:此字段可能返回 null,表示取不到有效值。
1957
+ # @type BirthPlace: String
1958
+ # @param LivePlace: 居住史
1959
+ # 注意:此字段可能返回 null,表示取不到有效值。
1960
+ # @type LivePlace: String
1961
+ # @param Job: 工作史
1962
+ # 注意:此字段可能返回 null,表示取不到有效值。
1963
+ # @type Job: String
1964
+ # @param SmokeHistory: 吸烟史
1965
+ # 注意:此字段可能返回 null,表示取不到有效值。
1966
+ # @type SmokeHistory: String
1967
+ # @param AlcoholicHistory: 饮酒史
1968
+ # 注意:此字段可能返回 null,表示取不到有效值。
1969
+ # @type AlcoholicHistory: String
1970
+
1971
+ attr_accessor :BirthPlace, :LivePlace, :Job, :SmokeHistory, :AlcoholicHistory
1972
+
1973
+ def initialize(birthplace=nil, liveplace=nil, job=nil, smokehistory=nil, alcoholichistory=nil)
1974
+ @BirthPlace = birthplace
1975
+ @LivePlace = liveplace
1976
+ @Job = job
1977
+ @SmokeHistory = smokehistory
1978
+ @AlcoholicHistory = alcoholichistory
1979
+ end
1980
+
1981
+ def deserialize(params)
1982
+ @BirthPlace = params['BirthPlace']
1983
+ @LivePlace = params['LivePlace']
1984
+ @Job = params['Job']
1985
+ @SmokeHistory = params['SmokeHistory']
1986
+ @AlcoholicHistory = params['AlcoholicHistory']
1987
+ end
1988
+ end
1989
+
1990
+ # 报告基本信息
1991
+ class ReportInfo < TencentCloud::Common::AbstractModel
1992
+ # @param Hospital: 医院名称
1993
+ # 注意:此字段可能返回 null,表示取不到有效值。
1994
+ # @type Hospital: String
1995
+ # @param DepartmentName: 科室名称
1996
+ # 注意:此字段可能返回 null,表示取不到有效值。
1997
+ # @type DepartmentName: String
1998
+ # @param BillingTime: 申请时间
1999
+ # 注意:此字段可能返回 null,表示取不到有效值。
2000
+ # @type BillingTime: String
2001
+ # @param ReportTime: 报告时间
2002
+ # 注意:此字段可能返回 null,表示取不到有效值。
2003
+ # @type ReportTime: String
2004
+ # @param InspectTime: 检查时间
2005
+ # 注意:此字段可能返回 null,表示取不到有效值。
2006
+ # @type InspectTime: String
2007
+ # @param CheckNum: 检查号
2008
+ # 注意:此字段可能返回 null,表示取不到有效值。
2009
+ # @type CheckNum: String
2010
+ # @param ImageNum: 影像号
2011
+ # 注意:此字段可能返回 null,表示取不到有效值。
2012
+ # @type ImageNum: String
2013
+ # @param RadiationNum: 放射号
2014
+ # 注意:此字段可能返回 null,表示取不到有效值。
2015
+ # @type RadiationNum: String
2016
+ # @param TestNum: 检验号
2017
+ # 注意:此字段可能返回 null,表示取不到有效值。
2018
+ # @type TestNum: String
2019
+ # @param OutpatientNum: 门诊号
2020
+ # 注意:此字段可能返回 null,表示取不到有效值。
2021
+ # @type OutpatientNum: String
2022
+ # @param PathologyNum: 病理号
2023
+ # 注意:此字段可能返回 null,表示取不到有效值。
2024
+ # @type PathologyNum: String
2025
+ # @param InHospitalNum: 住院号
2026
+ # 注意:此字段可能返回 null,表示取不到有效值。
2027
+ # @type InHospitalNum: String
2028
+ # @param SampleNum: 样本号
2029
+ # 注意:此字段可能返回 null,表示取不到有效值。
2030
+ # @type SampleNum: String
2031
+ # @param SampleType: 标本种类
2032
+ # 注意:此字段可能返回 null,表示取不到有效值。
2033
+ # @type SampleType: String
2034
+ # @param MedicalRecordNum: 病历号
2035
+ # 注意:此字段可能返回 null,表示取不到有效值。
2036
+ # @type MedicalRecordNum: String
2037
+ # @param ReportName: 报告名称
2038
+ # 注意:此字段可能返回 null,表示取不到有效值。
2039
+ # @type ReportName: String
2040
+ # @param UltraNum: 超声号
2041
+ # 注意:此字段可能返回 null,表示取不到有效值。
2042
+ # @type UltraNum: String
2043
+ # @param Diagnose: 临床诊断
2044
+ # 注意:此字段可能返回 null,表示取不到有效值。
2045
+ # @type Diagnose: String
2046
+
2047
+ attr_accessor :Hospital, :DepartmentName, :BillingTime, :ReportTime, :InspectTime, :CheckNum, :ImageNum, :RadiationNum, :TestNum, :OutpatientNum, :PathologyNum, :InHospitalNum, :SampleNum, :SampleType, :MedicalRecordNum, :ReportName, :UltraNum, :Diagnose
2048
+
2049
+ def initialize(hospital=nil, departmentname=nil, billingtime=nil, reporttime=nil, inspecttime=nil, checknum=nil, imagenum=nil, radiationnum=nil, testnum=nil, outpatientnum=nil, pathologynum=nil, inhospitalnum=nil, samplenum=nil, sampletype=nil, medicalrecordnum=nil, reportname=nil, ultranum=nil, diagnose=nil)
2050
+ @Hospital = hospital
2051
+ @DepartmentName = departmentname
2052
+ @BillingTime = billingtime
2053
+ @ReportTime = reporttime
2054
+ @InspectTime = inspecttime
2055
+ @CheckNum = checknum
2056
+ @ImageNum = imagenum
2057
+ @RadiationNum = radiationnum
2058
+ @TestNum = testnum
2059
+ @OutpatientNum = outpatientnum
2060
+ @PathologyNum = pathologynum
2061
+ @InHospitalNum = inhospitalnum
2062
+ @SampleNum = samplenum
2063
+ @SampleType = sampletype
2064
+ @MedicalRecordNum = medicalrecordnum
2065
+ @ReportName = reportname
2066
+ @UltraNum = ultranum
2067
+ @Diagnose = diagnose
2068
+ end
2069
+
2070
+ def deserialize(params)
2071
+ @Hospital = params['Hospital']
2072
+ @DepartmentName = params['DepartmentName']
2073
+ @BillingTime = params['BillingTime']
2074
+ @ReportTime = params['ReportTime']
2075
+ @InspectTime = params['InspectTime']
2076
+ @CheckNum = params['CheckNum']
2077
+ @ImageNum = params['ImageNum']
2078
+ @RadiationNum = params['RadiationNum']
2079
+ @TestNum = params['TestNum']
2080
+ @OutpatientNum = params['OutpatientNum']
2081
+ @PathologyNum = params['PathologyNum']
2082
+ @InHospitalNum = params['InHospitalNum']
2083
+ @SampleNum = params['SampleNum']
2084
+ @SampleType = params['SampleType']
2085
+ @MedicalRecordNum = params['MedicalRecordNum']
2086
+ @ReportName = params['ReportName']
2087
+ @UltraNum = params['UltraNum']
2088
+ @Diagnose = params['Diagnose']
2089
+ end
2090
+ end
2091
+
2092
+ # 大小
2093
+ class Size < TencentCloud::Common::AbstractModel
2094
+ # @param Index: 原文位置
2095
+ # 注意:此字段可能返回 null,表示取不到有效值。
2096
+ # @type Index: Array
2097
+ # @param NormSize: 标准大小
2098
+ # 注意:此字段可能返回 null,表示取不到有效值。
2099
+ # @type NormSize: :class:`Tencentcloud::Mrs.v20200910.models.NormSize`
2100
+ # @param Src: 原文
2101
+ # 注意:此字段可能返回 null,表示取不到有效值。
2102
+ # @type Src: String
2103
+ # @param Value: 值
2104
+ # 注意:此字段可能返回 null,表示取不到有效值。
2105
+ # @type Value: String
2106
+
2107
+ attr_accessor :Index, :NormSize, :Src, :Value
2108
+
2109
+ def initialize(index=nil, normsize=nil, src=nil, value=nil)
2110
+ @Index = index
2111
+ @NormSize = normsize
2112
+ @Src = src
2113
+ @Value = value
2114
+ end
2115
+
2116
+ def deserialize(params)
2117
+ @Index = params['Index']
2118
+ unless params['NormSize'].nil?
2119
+ @NormSize = NormSize.new
2120
+ @NormSize.deserialize(params['NormSize'])
2121
+ end
2122
+ @Src = params['Src']
2123
+ @Value = params['Value']
2124
+ end
2125
+ end
2126
+
2127
+ # 结论
2128
+ class Summary < TencentCloud::Common::AbstractModel
2129
+ # @param Symptom: 症状
2130
+ # 注意:此字段可能返回 null,表示取不到有效值。
2131
+ # @type Symptom: Array
2132
+ # @param Text: 文本
2133
+ # 注意:此字段可能返回 null,表示取不到有效值。
2134
+ # @type Text: String
2135
+
2136
+ attr_accessor :Symptom, :Text
2137
+
2138
+ def initialize(symptom=nil, text=nil)
2139
+ @Symptom = symptom
2140
+ @Text = text
2141
+ end
2142
+
2143
+ def deserialize(params)
2144
+ unless params['Symptom'].nil?
2145
+ @Symptom = []
2146
+ params['Symptom'].each do |i|
2147
+ symptominfo_tmp = SymptomInfo.new
2148
+ symptominfo_tmp.deserialize(i)
2149
+ @Symptom << symptominfo_tmp
2150
+ end
2151
+ end
2152
+ @Text = params['Text']
2153
+ end
2154
+ end
2155
+
2156
+ # 手术记录
2157
+ class Surgery < TencentCloud::Common::AbstractModel
2158
+ # @param SurgeryHistory: 手术史
2159
+ # 注意:此字段可能返回 null,表示取不到有效值。
2160
+ # @type SurgeryHistory: :class:`Tencentcloud::Mrs.v20200910.models.SurgeryHistory`
2161
+
2162
+ attr_accessor :SurgeryHistory
2163
+
2164
+ def initialize(surgeryhistory=nil)
2165
+ @SurgeryHistory = surgeryhistory
2166
+ end
2167
+
2168
+ def deserialize(params)
2169
+ unless params['SurgeryHistory'].nil?
2170
+ @SurgeryHistory = SurgeryHistory.new
2171
+ @SurgeryHistory.deserialize(params['SurgeryHistory'])
2172
+ end
2173
+ end
2174
+ end
2175
+
2176
+ # 手术记录属性
2177
+ class SurgeryAttr < TencentCloud::Common::AbstractModel
2178
+ # @param Name: 名称
2179
+ # 注意:此字段可能返回 null,表示取不到有效值。
2180
+ # @type Name: String
2181
+ # @param Value: 值
2182
+ # 注意:此字段可能返回 null,表示取不到有效值。
2183
+ # @type Value: String
2184
+
2185
+ attr_accessor :Name, :Value
2186
+
2187
+ def initialize(name=nil, value=nil)
2188
+ @Name = name
2189
+ @Value = value
2190
+ end
2191
+
2192
+ def deserialize(params)
2193
+ @Name = params['Name']
2194
+ @Value = params['Value']
2195
+ end
2196
+ end
2197
+
2198
+ # 手术史
2199
+ class SurgeryHistory < TencentCloud::Common::AbstractModel
2200
+ # @param SurgeryName: 手术名称
2201
+ # 注意:此字段可能返回 null,表示取不到有效值。
2202
+ # @type SurgeryName: :class:`Tencentcloud::Mrs.v20200910.models.SurgeryAttr`
2203
+ # @param SurgeryDate: 手术日期
2204
+ # 注意:此字段可能返回 null,表示取不到有效值。
2205
+ # @type SurgeryDate: :class:`Tencentcloud::Mrs.v20200910.models.SurgeryAttr`
2206
+ # @param PreoperativePathology: 术前诊断
2207
+ # 注意:此字段可能返回 null,表示取不到有效值。
2208
+ # @type PreoperativePathology: :class:`Tencentcloud::Mrs.v20200910.models.SurgeryAttr`
2209
+ # @param IntraoperativePathology: 术中诊断
2210
+ # 注意:此字段可能返回 null,表示取不到有效值。
2211
+ # @type IntraoperativePathology: :class:`Tencentcloud::Mrs.v20200910.models.SurgeryAttr`
2212
+ # @param PostoperativePathology: 术后诊断
2213
+ # 注意:此字段可能返回 null,表示取不到有效值。
2214
+ # @type PostoperativePathology: :class:`Tencentcloud::Mrs.v20200910.models.SurgeryAttr`
2215
+ # @param DischargeDiagnosis: 出院诊断
2216
+ # 注意:此字段可能返回 null,表示取不到有效值。
2217
+ # @type DischargeDiagnosis: :class:`Tencentcloud::Mrs.v20200910.models.SurgeryAttr`
2218
+
2219
+ attr_accessor :SurgeryName, :SurgeryDate, :PreoperativePathology, :IntraoperativePathology, :PostoperativePathology, :DischargeDiagnosis
2220
+
2221
+ def initialize(surgeryname=nil, surgerydate=nil, preoperativepathology=nil, intraoperativepathology=nil, postoperativepathology=nil, dischargediagnosis=nil)
2222
+ @SurgeryName = surgeryname
2223
+ @SurgeryDate = surgerydate
2224
+ @PreoperativePathology = preoperativepathology
2225
+ @IntraoperativePathology = intraoperativepathology
2226
+ @PostoperativePathology = postoperativepathology
2227
+ @DischargeDiagnosis = dischargediagnosis
2228
+ end
2229
+
2230
+ def deserialize(params)
2231
+ unless params['SurgeryName'].nil?
2232
+ @SurgeryName = SurgeryAttr.new
2233
+ @SurgeryName.deserialize(params['SurgeryName'])
2234
+ end
2235
+ unless params['SurgeryDate'].nil?
2236
+ @SurgeryDate = SurgeryAttr.new
2237
+ @SurgeryDate.deserialize(params['SurgeryDate'])
2238
+ end
2239
+ unless params['PreoperativePathology'].nil?
2240
+ @PreoperativePathology = SurgeryAttr.new
2241
+ @PreoperativePathology.deserialize(params['PreoperativePathology'])
2242
+ end
2243
+ unless params['IntraoperativePathology'].nil?
2244
+ @IntraoperativePathology = SurgeryAttr.new
2245
+ @IntraoperativePathology.deserialize(params['IntraoperativePathology'])
2246
+ end
2247
+ unless params['PostoperativePathology'].nil?
2248
+ @PostoperativePathology = SurgeryAttr.new
2249
+ @PostoperativePathology.deserialize(params['PostoperativePathology'])
2250
+ end
2251
+ unless params['DischargeDiagnosis'].nil?
2252
+ @DischargeDiagnosis = SurgeryAttr.new
2253
+ @DischargeDiagnosis.deserialize(params['DischargeDiagnosis'])
2254
+ end
2255
+ end
2256
+ end
2257
+
2258
+ # 病症描述信息
2259
+ class SymptomInfo < TencentCloud::Common::AbstractModel
2260
+ # @param Grade: 等级
2261
+ # 注意:此字段可能返回 null,表示取不到有效值。
2262
+ # @type Grade: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
2263
+ # @param Part: 部位
2264
+ # 注意:此字段可能返回 null,表示取不到有效值。
2265
+ # @type Part: :class:`Tencentcloud::Mrs.v20200910.models.Part`
2266
+ # @param Index: 原文位置
2267
+ # 注意:此字段可能返回 null,表示取不到有效值。
2268
+ # @type Index: Array
2269
+ # @param Symptom: 病变
2270
+ # 注意:此字段可能返回 null,表示取不到有效值。
2271
+ # @type Symptom: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
2272
+ # @param Attrs: 属性
2273
+ # 注意:此字段可能返回 null,表示取不到有效值。
2274
+ # @type Attrs: Array
2275
+ # @param Src: 原文
2276
+ # 注意:此字段可能返回 null,表示取不到有效值。
2277
+ # @type Src: String
2278
+
2279
+ attr_accessor :Grade, :Part, :Index, :Symptom, :Attrs, :Src
2280
+
2281
+ def initialize(grade=nil, part=nil, index=nil, symptom=nil, attrs=nil, src=nil)
2282
+ @Grade = grade
2283
+ @Part = part
2284
+ @Index = index
2285
+ @Symptom = symptom
2286
+ @Attrs = attrs
2287
+ @Src = src
2288
+ end
2289
+
2290
+ def deserialize(params)
2291
+ unless params['Grade'].nil?
2292
+ @Grade = BlockInfo.new
2293
+ @Grade.deserialize(params['Grade'])
2294
+ end
2295
+ unless params['Part'].nil?
2296
+ @Part = Part.new
2297
+ @Part.deserialize(params['Part'])
2298
+ end
2299
+ @Index = params['Index']
2300
+ unless params['Symptom'].nil?
2301
+ @Symptom = BlockInfo.new
2302
+ @Symptom.deserialize(params['Symptom'])
2303
+ end
2304
+ unless params['Attrs'].nil?
2305
+ @Attrs = []
2306
+ params['Attrs'].each do |i|
2307
+ blockinfo_tmp = BlockInfo.new
2308
+ blockinfo_tmp.deserialize(i)
2309
+ @Attrs << blockinfo_tmp
2310
+ end
2311
+ end
2312
+ @Src = params['Src']
2313
+ end
2314
+ end
2315
+
2316
+ # 报告模板
2317
+ class Template < TencentCloud::Common::AbstractModel
2318
+ # @param PatientInfo: 患者信息
2319
+ # 注意:此字段可能返回 null,表示取不到有效值。
2320
+ # @type PatientInfo: :class:`Tencentcloud::Mrs.v20200910.models.PatientInfo`
2321
+ # @param ReportInfo: 报告信息
2322
+ # 注意:此字段可能返回 null,表示取不到有效值。
2323
+ # @type ReportInfo: :class:`Tencentcloud::Mrs.v20200910.models.ReportInfo`
2324
+ # @param Check: 检查报告
2325
+ # 注意:此字段可能返回 null,表示取不到有效值。
2326
+ # @type Check: :class:`Tencentcloud::Mrs.v20200910.models.Check`
2327
+ # @param Pathology: 病理报告
2328
+ # 注意:此字段可能返回 null,表示取不到有效值。
2329
+ # @type Pathology: :class:`Tencentcloud::Mrs.v20200910.models.PathologyReport`
2330
+ # @param MedDoc: 出院报告,入院报告,门诊病历
2331
+ # 注意:此字段可能返回 null,表示取不到有效值。
2332
+ # @type MedDoc: :class:`Tencentcloud::Mrs.v20200910.models.MedDoc`
2333
+ # @param DiagCert: 诊断证明
2334
+ # 注意:此字段可能返回 null,表示取不到有效值。
2335
+ # @type DiagCert: :class:`Tencentcloud::Mrs.v20200910.models.DiagCert`
2336
+ # @param FirstPage: 病案首页
2337
+ # 注意:此字段可能返回 null,表示取不到有效值。
2338
+ # @type FirstPage: :class:`Tencentcloud::Mrs.v20200910.models.FirstPage`
2339
+ # @param Indicator: 检验报告
2340
+ # 注意:此字段可能返回 null,表示取不到有效值。
2341
+ # @type Indicator: :class:`Tencentcloud::Mrs.v20200910.models.Indicator`
2342
+ # @param ReportType: 报告类型
2343
+ # 注意:此字段可能返回 null,表示取不到有效值。
2344
+ # @type ReportType: String
2345
+ # @param MedicalRecordInfo: 门诊病历信息
2346
+ # 注意:此字段可能返回 null,表示取不到有效值。
2347
+ # @type MedicalRecordInfo: :class:`Tencentcloud::Mrs.v20200910.models.MedicalRecordInfo`
2348
+ # @param Hospitalization: 出入院信息
2349
+ # 注意:此字段可能返回 null,表示取不到有效值。
2350
+ # @type Hospitalization: :class:`Tencentcloud::Mrs.v20200910.models.Hospitalization`
2351
+ # @param Surgery: 手术记录
2352
+ # 注意:此字段可能返回 null,表示取不到有效值。
2353
+ # @type Surgery: :class:`Tencentcloud::Mrs.v20200910.models.Surgery`
2354
+ # @param Electrocardiogram: 心电图报告
2355
+ # 注意:此字段可能返回 null,表示取不到有效值。
2356
+ # @type Electrocardiogram: :class:`Tencentcloud::Mrs.v20200910.models.Electrocardiogram`
2357
+
2358
+ attr_accessor :PatientInfo, :ReportInfo, :Check, :Pathology, :MedDoc, :DiagCert, :FirstPage, :Indicator, :ReportType, :MedicalRecordInfo, :Hospitalization, :Surgery, :Electrocardiogram
2359
+
2360
+ def initialize(patientinfo=nil, reportinfo=nil, check=nil, pathology=nil, meddoc=nil, diagcert=nil, firstpage=nil, indicator=nil, reporttype=nil, medicalrecordinfo=nil, hospitalization=nil, surgery=nil, electrocardiogram=nil)
2361
+ @PatientInfo = patientinfo
2362
+ @ReportInfo = reportinfo
2363
+ @Check = check
2364
+ @Pathology = pathology
2365
+ @MedDoc = meddoc
2366
+ @DiagCert = diagcert
2367
+ @FirstPage = firstpage
2368
+ @Indicator = indicator
2369
+ @ReportType = reporttype
2370
+ @MedicalRecordInfo = medicalrecordinfo
2371
+ @Hospitalization = hospitalization
2372
+ @Surgery = surgery
2373
+ @Electrocardiogram = electrocardiogram
2374
+ end
2375
+
2376
+ def deserialize(params)
2377
+ unless params['PatientInfo'].nil?
2378
+ @PatientInfo = PatientInfo.new
2379
+ @PatientInfo.deserialize(params['PatientInfo'])
2380
+ end
2381
+ unless params['ReportInfo'].nil?
2382
+ @ReportInfo = ReportInfo.new
2383
+ @ReportInfo.deserialize(params['ReportInfo'])
2384
+ end
2385
+ unless params['Check'].nil?
2386
+ @Check = Check.new
2387
+ @Check.deserialize(params['Check'])
2388
+ end
2389
+ unless params['Pathology'].nil?
2390
+ @Pathology = PathologyReport.new
2391
+ @Pathology.deserialize(params['Pathology'])
2392
+ end
2393
+ unless params['MedDoc'].nil?
2394
+ @MedDoc = MedDoc.new
2395
+ @MedDoc.deserialize(params['MedDoc'])
2396
+ end
2397
+ unless params['DiagCert'].nil?
2398
+ @DiagCert = DiagCert.new
2399
+ @DiagCert.deserialize(params['DiagCert'])
2400
+ end
2401
+ unless params['FirstPage'].nil?
2402
+ @FirstPage = FirstPage.new
2403
+ @FirstPage.deserialize(params['FirstPage'])
2404
+ end
2405
+ unless params['Indicator'].nil?
2406
+ @Indicator = Indicator.new
2407
+ @Indicator.deserialize(params['Indicator'])
2408
+ end
2409
+ @ReportType = params['ReportType']
2410
+ unless params['MedicalRecordInfo'].nil?
2411
+ @MedicalRecordInfo = MedicalRecordInfo.new
2412
+ @MedicalRecordInfo.deserialize(params['MedicalRecordInfo'])
2413
+ end
2414
+ unless params['Hospitalization'].nil?
2415
+ @Hospitalization = Hospitalization.new
2416
+ @Hospitalization.deserialize(params['Hospitalization'])
2417
+ end
2418
+ unless params['Surgery'].nil?
2419
+ @Surgery = Surgery.new
2420
+ @Surgery.deserialize(params['Surgery'])
2421
+ end
2422
+ unless params['Electrocardiogram'].nil?
2423
+ @Electrocardiogram = Electrocardiogram.new
2424
+ @Electrocardiogram.deserialize(params['Electrocardiogram'])
2425
+ end
2426
+ end
2427
+ end
2428
+
2429
+ # TextToClass请求参数结构体
2430
+ class TextToClassRequest < TencentCloud::Common::AbstractModel
2431
+ # @param Text: 报告文本
2432
+ # @type Text: String
2433
+
2434
+ attr_accessor :Text
2435
+
2436
+ def initialize(text=nil)
2437
+ @Text = text
2438
+ end
2439
+
2440
+ def deserialize(params)
2441
+ @Text = params['Text']
2442
+ end
2443
+ end
2444
+
2445
+ # TextToClass返回参数结构体
2446
+ class TextToClassResponse < TencentCloud::Common::AbstractModel
2447
+ # @param TextTypeList: 分类结果
2448
+ # @type TextTypeList: Array
2449
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2450
+ # @type RequestId: String
2451
+
2452
+ attr_accessor :TextTypeList, :RequestId
2453
+
2454
+ def initialize(texttypelist=nil, requestid=nil)
2455
+ @TextTypeList = texttypelist
2456
+ @RequestId = requestid
2457
+ end
2458
+
2459
+ def deserialize(params)
2460
+ unless params['TextTypeList'].nil?
2461
+ @TextTypeList = []
2462
+ params['TextTypeList'].each do |i|
2463
+ texttype_tmp = TextType.new
2464
+ texttype_tmp.deserialize(i)
2465
+ @TextTypeList << texttype_tmp
2466
+ end
2467
+ end
2468
+ @RequestId = params['RequestId']
2469
+ end
2470
+ end
2471
+
2472
+ # TextToObject请求参数结构体
2473
+ class TextToObjectRequest < TencentCloud::Common::AbstractModel
2474
+ # @param Text: 报告文本
2475
+ # @type Text: String
2476
+ # @param Type: 报告类型,目前支持12(检查报告),15(病理报告),28(出院报告),29(入院报告),210(门诊病历),212(手术记录),218(诊断证明),363(心电图)。如果不清楚报告类型,可以使用分类引擎,该字段传0(同时IsUsedClassify字段必须为True,否则无法输出结果)
2477
+ # @type Type: Integer
2478
+ # @param IsUsedClassify: 是否使用分类引擎,当不确定报告类型时,可以使用收费的报告分类引擎服务。若该字段为False,则Type字段不能为0,否则无法输出结果。
2479
+ # 注意:当 IsUsedClassify 为True 时,表示使用收费的报告分类服务,将会产生额外的费用,具体收费标准参见 [购买指南的产品价格](https://cloud.tencent.com/document/product/1314/54264)。
2480
+ # @type IsUsedClassify: Boolean
2481
+
2482
+ attr_accessor :Text, :Type, :IsUsedClassify
2483
+
2484
+ def initialize(text=nil, type=nil, isusedclassify=nil)
2485
+ @Text = text
2486
+ @Type = type
2487
+ @IsUsedClassify = isusedclassify
2488
+ end
2489
+
2490
+ def deserialize(params)
2491
+ @Text = params['Text']
2492
+ @Type = params['Type']
2493
+ @IsUsedClassify = params['IsUsedClassify']
2494
+ end
2495
+ end
2496
+
2497
+ # TextToObject返回参数结构体
2498
+ class TextToObjectResponse < TencentCloud::Common::AbstractModel
2499
+ # @param Template: 报告结构化结果
2500
+ # @type Template: :class:`Tencentcloud::Mrs.v20200910.models.Template`
2501
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2502
+ # @type RequestId: String
2503
+
2504
+ attr_accessor :Template, :RequestId
2505
+
2506
+ def initialize(template=nil, requestid=nil)
2507
+ @Template = template
2508
+ @RequestId = requestid
2509
+ end
2510
+
2511
+ def deserialize(params)
2512
+ unless params['Template'].nil?
2513
+ @Template = Template.new
2514
+ @Template.deserialize(params['Template'])
2515
+ end
2516
+ @RequestId = params['RequestId']
2517
+ end
2518
+ end
2519
+
2520
+ # 文本类型
2521
+ class TextType < TencentCloud::Common::AbstractModel
2522
+ # @param Id: 类别Id
2523
+ # 注意:此字段可能返回 null,表示取不到有效值。
2524
+ # @type Id: Integer
2525
+ # @param Level: 类别层级
2526
+ # 注意:此字段可能返回 null,表示取不到有效值。
2527
+ # @type Level: Integer
2528
+ # @param Name: 类别名
2529
+ # 注意:此字段可能返回 null,表示取不到有效值。
2530
+ # @type Name: String
2531
+
2532
+ attr_accessor :Id, :Level, :Name
2533
+
2534
+ def initialize(id=nil, level=nil, name=nil)
2535
+ @Id = id
2536
+ @Level = level
2537
+ @Name = name
2538
+ end
2539
+
2540
+ def deserialize(params)
2541
+ @Id = params['Id']
2542
+ @Level = params['Level']
2543
+ @Name = params['Name']
2544
+ end
2545
+ end
2546
+
2547
+ # 病历
2548
+ class TreatmentRecord < TencentCloud::Common::AbstractModel
2549
+ # @param DmissionCondition: 入院
2550
+ # 注意:此字段可能返回 null,表示取不到有效值。
2551
+ # @type DmissionCondition: String
2552
+ # @param ChiefComplaint: 主诉
2553
+ # 注意:此字段可能返回 null,表示取不到有效值。
2554
+ # @type ChiefComplaint: String
2555
+ # @param DiseasePresent: 现病史
2556
+ # 注意:此字段可能返回 null,表示取不到有效值。
2557
+ # @type DiseasePresent: String
2558
+ # @param SymptomsAndSigns: 主要症状体征
2559
+ # 注意:此字段可能返回 null,表示取不到有效值。
2560
+ # @type SymptomsAndSigns: String
2561
+ # @param AuxiliaryExamination: 辅助检查
2562
+ # 注意:此字段可能返回 null,表示取不到有效值。
2563
+ # @type AuxiliaryExamination: String
2564
+ # @param BodyExamination: 体格检查
2565
+ # 注意:此字段可能返回 null,表示取不到有效值。
2566
+ # @type BodyExamination: String
2567
+ # @param SpecialistExamination: 专科检查
2568
+ # 注意:此字段可能返回 null,表示取不到有效值。
2569
+ # @type SpecialistExamination: String
2570
+ # @param MentalExamination: 精神检查
2571
+ # 注意:此字段可能返回 null,表示取不到有效值。
2572
+ # @type MentalExamination: String
2573
+ # @param CheckRecord: 检查记录
2574
+ # 注意:此字段可能返回 null,表示取不到有效值。
2575
+ # @type CheckRecord: String
2576
+ # @param InspectResult: 化验结果
2577
+ # 注意:此字段可能返回 null,表示取不到有效值。
2578
+ # @type InspectResult: String
2579
+ # @param IncisionHealing: 切口愈合情况
2580
+ # 注意:此字段可能返回 null,表示取不到有效值。
2581
+ # @type IncisionHealing: String
2582
+ # @param TreatmentSuggestion: 处理意见
2583
+ # 注意:此字段可能返回 null,表示取不到有效值。
2584
+ # @type TreatmentSuggestion: String
2585
+ # @param FollowUpRequirements: 门诊随访要求
2586
+ # 注意:此字段可能返回 null,表示取不到有效值。
2587
+ # @type FollowUpRequirements: String
2588
+ # @param CheckAndTreatmentProcess: 诊疗经过
2589
+ # 注意:此字段可能返回 null,表示取不到有效值。
2590
+ # @type CheckAndTreatmentProcess: String
2591
+ # @param SurgeryCondition: 手术经过
2592
+ # 注意:此字段可能返回 null,表示取不到有效值。
2593
+ # @type SurgeryCondition: String
2594
+ # @param ConditionChanges: 入院情况
2595
+ # 注意:此字段可能返回 null,表示取不到有效值。
2596
+ # @type ConditionChanges: String
2597
+ # @param DischargeCondition: 出院情况
2598
+ # 注意:此字段可能返回 null,表示取不到有效值。
2599
+ # @type DischargeCondition: String
2600
+ # @param PTNM: pTNM信息
2601
+ # 注意:此字段可能返回 null,表示取不到有效值。
2602
+ # @type PTNM: String
2603
+ # @param PTNMM: pTNMM信息
2604
+ # 注意:此字段可能返回 null,表示取不到有效值。
2605
+ # @type PTNMM: String
2606
+ # @param PTNMN: pTNMN信息
2607
+ # 注意:此字段可能返回 null,表示取不到有效值。
2608
+ # @type PTNMN: String
2609
+ # @param PTNMT: pTNMT信息
2610
+ # 注意:此字段可能返回 null,表示取不到有效值。
2611
+ # @type PTNMT: String
2612
+ # @param ECOG: ECOG信息
2613
+ # 注意:此字段可能返回 null,表示取不到有效值。
2614
+ # @type ECOG: String
2615
+ # @param NRS: NRS信息
2616
+ # 注意:此字段可能返回 null,表示取不到有效值。
2617
+ # @type NRS: String
2618
+ # @param KPS: KPS信息
2619
+ # 注意:此字段可能返回 null,表示取不到有效值。
2620
+ # @type KPS: String
2621
+ # @param DeathDate: 死亡日期
2622
+ # 注意:此字段可能返回 null,表示取不到有效值。
2623
+ # @type DeathDate: String
2624
+ # @param RelapseDate: 复发日期
2625
+ # 注意:此字段可能返回 null,表示取不到有效值。
2626
+ # @type RelapseDate: String
2627
+ # @param ObservationDays: 观测天数
2628
+ # 注意:此字段可能返回 null,表示取不到有效值。
2629
+ # @type ObservationDays: String
2630
+
2631
+ attr_accessor :DmissionCondition, :ChiefComplaint, :DiseasePresent, :SymptomsAndSigns, :AuxiliaryExamination, :BodyExamination, :SpecialistExamination, :MentalExamination, :CheckRecord, :InspectResult, :IncisionHealing, :TreatmentSuggestion, :FollowUpRequirements, :CheckAndTreatmentProcess, :SurgeryCondition, :ConditionChanges, :DischargeCondition, :PTNM, :PTNMM, :PTNMN, :PTNMT, :ECOG, :NRS, :KPS, :DeathDate, :RelapseDate, :ObservationDays
2632
+
2633
+ def initialize(dmissioncondition=nil, chiefcomplaint=nil, diseasepresent=nil, symptomsandsigns=nil, auxiliaryexamination=nil, bodyexamination=nil, specialistexamination=nil, mentalexamination=nil, checkrecord=nil, inspectresult=nil, incisionhealing=nil, treatmentsuggestion=nil, followuprequirements=nil, checkandtreatmentprocess=nil, surgerycondition=nil, conditionchanges=nil, dischargecondition=nil, ptnm=nil, ptnmm=nil, ptnmn=nil, ptnmt=nil, ecog=nil, nrs=nil, kps=nil, deathdate=nil, relapsedate=nil, observationdays=nil)
2634
+ @DmissionCondition = dmissioncondition
2635
+ @ChiefComplaint = chiefcomplaint
2636
+ @DiseasePresent = diseasepresent
2637
+ @SymptomsAndSigns = symptomsandsigns
2638
+ @AuxiliaryExamination = auxiliaryexamination
2639
+ @BodyExamination = bodyexamination
2640
+ @SpecialistExamination = specialistexamination
2641
+ @MentalExamination = mentalexamination
2642
+ @CheckRecord = checkrecord
2643
+ @InspectResult = inspectresult
2644
+ @IncisionHealing = incisionhealing
2645
+ @TreatmentSuggestion = treatmentsuggestion
2646
+ @FollowUpRequirements = followuprequirements
2647
+ @CheckAndTreatmentProcess = checkandtreatmentprocess
2648
+ @SurgeryCondition = surgerycondition
2649
+ @ConditionChanges = conditionchanges
2650
+ @DischargeCondition = dischargecondition
2651
+ @PTNM = ptnm
2652
+ @PTNMM = ptnmm
2653
+ @PTNMN = ptnmn
2654
+ @PTNMT = ptnmt
2655
+ @ECOG = ecog
2656
+ @NRS = nrs
2657
+ @KPS = kps
2658
+ @DeathDate = deathdate
2659
+ @RelapseDate = relapsedate
2660
+ @ObservationDays = observationdays
2661
+ end
2662
+
2663
+ def deserialize(params)
2664
+ @DmissionCondition = params['DmissionCondition']
2665
+ @ChiefComplaint = params['ChiefComplaint']
2666
+ @DiseasePresent = params['DiseasePresent']
2667
+ @SymptomsAndSigns = params['SymptomsAndSigns']
2668
+ @AuxiliaryExamination = params['AuxiliaryExamination']
2669
+ @BodyExamination = params['BodyExamination']
2670
+ @SpecialistExamination = params['SpecialistExamination']
2671
+ @MentalExamination = params['MentalExamination']
2672
+ @CheckRecord = params['CheckRecord']
2673
+ @InspectResult = params['InspectResult']
2674
+ @IncisionHealing = params['IncisionHealing']
2675
+ @TreatmentSuggestion = params['TreatmentSuggestion']
2676
+ @FollowUpRequirements = params['FollowUpRequirements']
2677
+ @CheckAndTreatmentProcess = params['CheckAndTreatmentProcess']
2678
+ @SurgeryCondition = params['SurgeryCondition']
2679
+ @ConditionChanges = params['ConditionChanges']
2680
+ @DischargeCondition = params['DischargeCondition']
2681
+ @PTNM = params['PTNM']
2682
+ @PTNMM = params['PTNMM']
2683
+ @PTNMN = params['PTNMN']
2684
+ @PTNMT = params['PTNMT']
2685
+ @ECOG = params['ECOG']
2686
+ @NRS = params['NRS']
2687
+ @KPS = params['KPS']
2688
+ @DeathDate = params['DeathDate']
2689
+ @RelapseDate = params['RelapseDate']
2690
+ @ObservationDays = params['ObservationDays']
2691
+ end
2692
+ end
2693
+
2694
+ # 结节
2695
+ class TuberInfo < TencentCloud::Common::AbstractModel
2696
+ # @param Type: 类型
2697
+ # 注意:此字段可能返回 null,表示取不到有效值。
2698
+ # @type Type: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
2699
+ # @param Part: 部位
2700
+ # 注意:此字段可能返回 null,表示取不到有效值。
2701
+ # @type Part: :class:`Tencentcloud::Mrs.v20200910.models.Part`
2702
+ # @param Size: 大小
2703
+ # 注意:此字段可能返回 null,表示取不到有效值。
2704
+ # @type Size: Array
2705
+ # @param Multiple: 多发
2706
+ # 注意:此字段可能返回 null,表示取不到有效值。
2707
+ # @type Multiple: :class:`Tencentcloud::Mrs.v20200910.models.Multiple`
2708
+ # @param AspectRatio: 纵横比
2709
+ # 注意:此字段可能返回 null,表示取不到有效值。
2710
+ # @type AspectRatio: :class:`Tencentcloud::Mrs.v20200910.models.AspectRatio`
2711
+ # @param Edge: 边缘
2712
+ # 注意:此字段可能返回 null,表示取不到有效值。
2713
+ # @type Edge: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
2714
+ # @param InnerEcho: 内部回声
2715
+ # 注意:此字段可能返回 null,表示取不到有效值。
2716
+ # @type InnerEcho: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
2717
+ # @param RearEcho: 外部回声
2718
+ # 注意:此字段可能返回 null,表示取不到有效值。
2719
+ # @type RearEcho: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
2720
+ # @param Elastic: 弹性质地
2721
+ # 注意:此字段可能返回 null,表示取不到有效值。
2722
+ # @type Elastic: :class:`Tencentcloud::Mrs.v20200910.models.Elastic`
2723
+ # @param Shape: 形状
2724
+ # 注意:此字段可能返回 null,表示取不到有效值。
2725
+ # @type Shape: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
2726
+ # @param ShapeAttr: 形态
2727
+ # 注意:此字段可能返回 null,表示取不到有效值。
2728
+ # @type ShapeAttr: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
2729
+ # @param SkinMedulla: 皮髓质信息
2730
+ # 注意:此字段可能返回 null,表示取不到有效值。
2731
+ # @type SkinMedulla: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
2732
+ # @param Trend: 变化趋势
2733
+ # 注意:此字段可能返回 null,表示取不到有效值。
2734
+ # @type Trend: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
2735
+ # @param Calcification: 钙化
2736
+ # 注意:此字段可能返回 null,表示取不到有效值。
2737
+ # @type Calcification: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
2738
+ # @param Envelope: 包膜
2739
+ # 注意:此字段可能返回 null,表示取不到有效值。
2740
+ # @type Envelope: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
2741
+ # @param Enhancement: 强化
2742
+ # 注意:此字段可能返回 null,表示取不到有效值。
2743
+ # @type Enhancement: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
2744
+ # @param LymphEnlargement: 淋巴结
2745
+ # 注意:此字段可能返回 null,表示取不到有效值。
2746
+ # @type LymphEnlargement: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
2747
+ # @param LymphDoor: 淋巴门
2748
+ # 注意:此字段可能返回 null,表示取不到有效值。
2749
+ # @type LymphDoor: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
2750
+ # @param Activity: 活动度
2751
+ # 注意:此字段可能返回 null,表示取不到有效值。
2752
+ # @type Activity: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
2753
+ # @param Operation: 手术情况
2754
+ # 注意:此字段可能返回 null,表示取不到有效值。
2755
+ # @type Operation: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
2756
+ # @param CDFI: 血液cdfi
2757
+ # 注意:此字段可能返回 null,表示取不到有效值。
2758
+ # @type CDFI: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
2759
+ # @param Index: 原文位置
2760
+ # 注意:此字段可能返回 null,表示取不到有效值。
2761
+ # @type Index: Array
2762
+ # @param SizeStatus: 大小状态
2763
+ # 注意:此字段可能返回 null,表示取不到有效值。
2764
+ # @type SizeStatus: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
2765
+ # @param InnerEchoDistribution: 内部回声分布
2766
+ # 注意:此字段可能返回 null,表示取不到有效值。
2767
+ # @type InnerEchoDistribution: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
2768
+ # @param InnerEchoType: 内部回声类型
2769
+ # 注意:此字段可能返回 null,表示取不到有效值。
2770
+ # @type InnerEchoType: Array
2771
+ # @param Outline: 轮廓
2772
+ # 注意:此字段可能返回 null,表示取不到有效值。
2773
+ # @type Outline: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
2774
+ # @param Structure: 结构
2775
+ # 注意:此字段可能返回 null,表示取不到有效值。
2776
+ # @type Structure: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
2777
+ # @param Density: 密度
2778
+ # 注意:此字段可能返回 null,表示取不到有效值。
2779
+ # @type Density: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
2780
+ # @param Vas: 血管
2781
+ # 注意:此字段可能返回 null,表示取不到有效值。
2782
+ # @type Vas: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
2783
+ # @param Cysticwall: 囊壁
2784
+ # 注意:此字段可能返回 null,表示取不到有效值。
2785
+ # @type Cysticwall: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
2786
+ # @param Capsule: 被膜
2787
+ # 注意:此字段可能返回 null,表示取不到有效值。
2788
+ # @type Capsule: :class:`Tencentcloud::Mrs.v20200910.models.BlockInfo`
2789
+ # @param IsthmusThicknese: 峡部厚度
2790
+ # 注意:此字段可能返回 null,表示取不到有效值。
2791
+ # @type IsthmusThicknese: :class:`Tencentcloud::Mrs.v20200910.models.Size`
2792
+ # @param Src: 原文
2793
+ # 注意:此字段可能返回 null,表示取不到有效值。
2794
+ # @type Src: String
2795
+
2796
+ attr_accessor :Type, :Part, :Size, :Multiple, :AspectRatio, :Edge, :InnerEcho, :RearEcho, :Elastic, :Shape, :ShapeAttr, :SkinMedulla, :Trend, :Calcification, :Envelope, :Enhancement, :LymphEnlargement, :LymphDoor, :Activity, :Operation, :CDFI, :Index, :SizeStatus, :InnerEchoDistribution, :InnerEchoType, :Outline, :Structure, :Density, :Vas, :Cysticwall, :Capsule, :IsthmusThicknese, :Src
2797
+
2798
+ def initialize(type=nil, part=nil, size=nil, multiple=nil, aspectratio=nil, edge=nil, innerecho=nil, rearecho=nil, elastic=nil, shape=nil, shapeattr=nil, skinmedulla=nil, trend=nil, calcification=nil, envelope=nil, enhancement=nil, lymphenlargement=nil, lymphdoor=nil, activity=nil, operation=nil, cdfi=nil, index=nil, sizestatus=nil, innerechodistribution=nil, innerechotype=nil, outline=nil, structure=nil, density=nil, vas=nil, cysticwall=nil, capsule=nil, isthmusthicknese=nil, src=nil)
2799
+ @Type = type
2800
+ @Part = part
2801
+ @Size = size
2802
+ @Multiple = multiple
2803
+ @AspectRatio = aspectratio
2804
+ @Edge = edge
2805
+ @InnerEcho = innerecho
2806
+ @RearEcho = rearecho
2807
+ @Elastic = elastic
2808
+ @Shape = shape
2809
+ @ShapeAttr = shapeattr
2810
+ @SkinMedulla = skinmedulla
2811
+ @Trend = trend
2812
+ @Calcification = calcification
2813
+ @Envelope = envelope
2814
+ @Enhancement = enhancement
2815
+ @LymphEnlargement = lymphenlargement
2816
+ @LymphDoor = lymphdoor
2817
+ @Activity = activity
2818
+ @Operation = operation
2819
+ @CDFI = cdfi
2820
+ @Index = index
2821
+ @SizeStatus = sizestatus
2822
+ @InnerEchoDistribution = innerechodistribution
2823
+ @InnerEchoType = innerechotype
2824
+ @Outline = outline
2825
+ @Structure = structure
2826
+ @Density = density
2827
+ @Vas = vas
2828
+ @Cysticwall = cysticwall
2829
+ @Capsule = capsule
2830
+ @IsthmusThicknese = isthmusthicknese
2831
+ @Src = src
2832
+ end
2833
+
2834
+ def deserialize(params)
2835
+ unless params['Type'].nil?
2836
+ @Type = BlockInfo.new
2837
+ @Type.deserialize(params['Type'])
2838
+ end
2839
+ unless params['Part'].nil?
2840
+ @Part = Part.new
2841
+ @Part.deserialize(params['Part'])
2842
+ end
2843
+ unless params['Size'].nil?
2844
+ @Size = []
2845
+ params['Size'].each do |i|
2846
+ size_tmp = Size.new
2847
+ size_tmp.deserialize(i)
2848
+ @Size << size_tmp
2849
+ end
2850
+ end
2851
+ unless params['Multiple'].nil?
2852
+ @Multiple = Multiple.new
2853
+ @Multiple.deserialize(params['Multiple'])
2854
+ end
2855
+ unless params['AspectRatio'].nil?
2856
+ @AspectRatio = AspectRatio.new
2857
+ @AspectRatio.deserialize(params['AspectRatio'])
2858
+ end
2859
+ unless params['Edge'].nil?
2860
+ @Edge = BlockInfo.new
2861
+ @Edge.deserialize(params['Edge'])
2862
+ end
2863
+ unless params['InnerEcho'].nil?
2864
+ @InnerEcho = BlockInfo.new
2865
+ @InnerEcho.deserialize(params['InnerEcho'])
2866
+ end
2867
+ unless params['RearEcho'].nil?
2868
+ @RearEcho = BlockInfo.new
2869
+ @RearEcho.deserialize(params['RearEcho'])
2870
+ end
2871
+ unless params['Elastic'].nil?
2872
+ @Elastic = Elastic.new
2873
+ @Elastic.deserialize(params['Elastic'])
2874
+ end
2875
+ unless params['Shape'].nil?
2876
+ @Shape = BlockInfo.new
2877
+ @Shape.deserialize(params['Shape'])
2878
+ end
2879
+ unless params['ShapeAttr'].nil?
2880
+ @ShapeAttr = BlockInfo.new
2881
+ @ShapeAttr.deserialize(params['ShapeAttr'])
2882
+ end
2883
+ unless params['SkinMedulla'].nil?
2884
+ @SkinMedulla = BlockInfo.new
2885
+ @SkinMedulla.deserialize(params['SkinMedulla'])
2886
+ end
2887
+ unless params['Trend'].nil?
2888
+ @Trend = BlockInfo.new
2889
+ @Trend.deserialize(params['Trend'])
2890
+ end
2891
+ unless params['Calcification'].nil?
2892
+ @Calcification = BlockInfo.new
2893
+ @Calcification.deserialize(params['Calcification'])
2894
+ end
2895
+ unless params['Envelope'].nil?
2896
+ @Envelope = BlockInfo.new
2897
+ @Envelope.deserialize(params['Envelope'])
2898
+ end
2899
+ unless params['Enhancement'].nil?
2900
+ @Enhancement = BlockInfo.new
2901
+ @Enhancement.deserialize(params['Enhancement'])
2902
+ end
2903
+ unless params['LymphEnlargement'].nil?
2904
+ @LymphEnlargement = BlockInfo.new
2905
+ @LymphEnlargement.deserialize(params['LymphEnlargement'])
2906
+ end
2907
+ unless params['LymphDoor'].nil?
2908
+ @LymphDoor = BlockInfo.new
2909
+ @LymphDoor.deserialize(params['LymphDoor'])
2910
+ end
2911
+ unless params['Activity'].nil?
2912
+ @Activity = BlockInfo.new
2913
+ @Activity.deserialize(params['Activity'])
2914
+ end
2915
+ unless params['Operation'].nil?
2916
+ @Operation = BlockInfo.new
2917
+ @Operation.deserialize(params['Operation'])
2918
+ end
2919
+ unless params['CDFI'].nil?
2920
+ @CDFI = BlockInfo.new
2921
+ @CDFI.deserialize(params['CDFI'])
2922
+ end
2923
+ @Index = params['Index']
2924
+ unless params['SizeStatus'].nil?
2925
+ @SizeStatus = BlockInfo.new
2926
+ @SizeStatus.deserialize(params['SizeStatus'])
2927
+ end
2928
+ unless params['InnerEchoDistribution'].nil?
2929
+ @InnerEchoDistribution = BlockInfo.new
2930
+ @InnerEchoDistribution.deserialize(params['InnerEchoDistribution'])
2931
+ end
2932
+ unless params['InnerEchoType'].nil?
2933
+ @InnerEchoType = []
2934
+ params['InnerEchoType'].each do |i|
2935
+ blockinfo_tmp = BlockInfo.new
2936
+ blockinfo_tmp.deserialize(i)
2937
+ @InnerEchoType << blockinfo_tmp
2938
+ end
2939
+ end
2940
+ unless params['Outline'].nil?
2941
+ @Outline = BlockInfo.new
2942
+ @Outline.deserialize(params['Outline'])
2943
+ end
2944
+ unless params['Structure'].nil?
2945
+ @Structure = BlockInfo.new
2946
+ @Structure.deserialize(params['Structure'])
2947
+ end
2948
+ unless params['Density'].nil?
2949
+ @Density = BlockInfo.new
2950
+ @Density.deserialize(params['Density'])
2951
+ end
2952
+ unless params['Vas'].nil?
2953
+ @Vas = BlockInfo.new
2954
+ @Vas.deserialize(params['Vas'])
2955
+ end
2956
+ unless params['Cysticwall'].nil?
2957
+ @Cysticwall = BlockInfo.new
2958
+ @Cysticwall.deserialize(params['Cysticwall'])
2959
+ end
2960
+ unless params['Capsule'].nil?
2961
+ @Capsule = BlockInfo.new
2962
+ @Capsule.deserialize(params['Capsule'])
2963
+ end
2964
+ unless params['IsthmusThicknese'].nil?
2965
+ @IsthmusThicknese = Size.new
2966
+ @IsthmusThicknese.deserialize(params['IsthmusThicknese'])
2967
+ end
2968
+ @Src = params['Src']
2969
+ end
2970
+ end
2971
+
2972
+ # 值
2973
+ class Value < TencentCloud::Common::AbstractModel
2974
+ # @param Grade: 等级
2975
+ # 注意:此字段可能返回 null,表示取不到有效值。
2976
+ # @type Grade: String
2977
+ # @param Percent: 百分比
2978
+ # 注意:此字段可能返回 null,表示取不到有效值。
2979
+ # @type Percent: Array
2980
+ # @param Positive: 阳性
2981
+ # 注意:此字段可能返回 null,表示取不到有效值。
2982
+ # @type Positive: String
2983
+
2984
+ attr_accessor :Grade, :Percent, :Positive
2985
+
2986
+ def initialize(grade=nil, percent=nil, positive=nil)
2987
+ @Grade = grade
2988
+ @Percent = percent
2989
+ @Positive = positive
2990
+ end
2991
+
2992
+ def deserialize(params)
2993
+ @Grade = params['Grade']
2994
+ @Percent = params['Percent']
2995
+ @Positive = params['Positive']
2996
+ end
2997
+ end
2998
+
2999
+ end
3000
+ end
3001
+ end
3002
+