tencentcloud-sdk-mrs 1.0.202 → 1.0.203
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20200910/models.rb +228 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: efdff7489b2a1a67baea9ed95013c044ddbcc9bc
|
4
|
+
data.tar.gz: 2e545d0dbeef3e26ec0f06adf78f1c6def1a4fc4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d7ec61e8404d39178b94e8230c19589a8c58064d47d52700aff5b38b6232a66c1ba48d35656f1f09a8a233e2e2ee1ebfe44b50213b3f0dcf214340ed429c23ee
|
7
|
+
data.tar.gz: dbdbb26d2a26c72c19a157189c71bcc0714852e86edc8882aa5352646df88629e91fdc453ff516ffca70c1531c5ee7fc70a29b98748d6e239746718f30d8611d
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.203
|
data/lib/v20200910/models.rb
CHANGED
@@ -71,6 +71,28 @@ module TencentCloud
|
|
71
71
|
end
|
72
72
|
end
|
73
73
|
|
74
|
+
# 活检部位
|
75
|
+
class BiopsyPart < TencentCloud::Common::AbstractModel
|
76
|
+
# @param Value: 值
|
77
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
78
|
+
# @type Value: String
|
79
|
+
# @param Src: 原文
|
80
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
81
|
+
# @type Src: String
|
82
|
+
|
83
|
+
attr_accessor :Value, :Src
|
84
|
+
|
85
|
+
def initialize(value=nil, src=nil)
|
86
|
+
@Value = value
|
87
|
+
@Src = src
|
88
|
+
end
|
89
|
+
|
90
|
+
def deserialize(params)
|
91
|
+
@Value = params['Value']
|
92
|
+
@Src = params['Src']
|
93
|
+
end
|
94
|
+
end
|
95
|
+
|
74
96
|
# 块信息
|
75
97
|
class BlockInfo < TencentCloud::Common::AbstractModel
|
76
98
|
# @param Index: 原文位置
|
@@ -618,6 +640,118 @@ module TencentCloud
|
|
618
640
|
end
|
619
641
|
end
|
620
642
|
|
643
|
+
# 内窥镜报告
|
644
|
+
class Endoscopy < TencentCloud::Common::AbstractModel
|
645
|
+
# @param BiopsyPart: 活检部位
|
646
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
647
|
+
# @type BiopsyPart: :class:`Tencentcloud::Mrs.v20200910.models.BiopsyPart`
|
648
|
+
# @param Desc: 可见描述
|
649
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
650
|
+
# @type Desc: :class:`Tencentcloud::Mrs.v20200910.models.EndoscopyDesc`
|
651
|
+
# @param Summary: 结论
|
652
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
653
|
+
# @type Summary: :class:`Tencentcloud::Mrs.v20200910.models.Summary`
|
654
|
+
|
655
|
+
attr_accessor :BiopsyPart, :Desc, :Summary
|
656
|
+
|
657
|
+
def initialize(biopsypart=nil, desc=nil, summary=nil)
|
658
|
+
@BiopsyPart = biopsypart
|
659
|
+
@Desc = desc
|
660
|
+
@Summary = summary
|
661
|
+
end
|
662
|
+
|
663
|
+
def deserialize(params)
|
664
|
+
unless params['BiopsyPart'].nil?
|
665
|
+
@BiopsyPart = BiopsyPart.new
|
666
|
+
@BiopsyPart.deserialize(params['BiopsyPart'])
|
667
|
+
end
|
668
|
+
unless params['Desc'].nil?
|
669
|
+
@Desc = EndoscopyDesc.new
|
670
|
+
@Desc.deserialize(params['Desc'])
|
671
|
+
end
|
672
|
+
unless params['Summary'].nil?
|
673
|
+
@Summary = Summary.new
|
674
|
+
@Summary.deserialize(params['Summary'])
|
675
|
+
end
|
676
|
+
end
|
677
|
+
end
|
678
|
+
|
679
|
+
# 内窥镜描述
|
680
|
+
class EndoscopyDesc < TencentCloud::Common::AbstractModel
|
681
|
+
# @param Text: 描述内容
|
682
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
683
|
+
# @type Text: String
|
684
|
+
# @param Organ: 器官
|
685
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
686
|
+
# @type Organ: Array
|
687
|
+
|
688
|
+
attr_accessor :Text, :Organ
|
689
|
+
|
690
|
+
def initialize(text=nil, organ=nil)
|
691
|
+
@Text = text
|
692
|
+
@Organ = organ
|
693
|
+
end
|
694
|
+
|
695
|
+
def deserialize(params)
|
696
|
+
@Text = params['Text']
|
697
|
+
unless params['Organ'].nil?
|
698
|
+
@Organ = []
|
699
|
+
params['Organ'].each do |i|
|
700
|
+
endoscopyorgan_tmp = EndoscopyOrgan.new
|
701
|
+
endoscopyorgan_tmp.deserialize(i)
|
702
|
+
@Organ << endoscopyorgan_tmp
|
703
|
+
end
|
704
|
+
end
|
705
|
+
end
|
706
|
+
end
|
707
|
+
|
708
|
+
# 内窥部位
|
709
|
+
class EndoscopyOrgan < TencentCloud::Common::AbstractModel
|
710
|
+
# @param Part: 部位
|
711
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
712
|
+
# @type Part: :class:`Tencentcloud::Mrs.v20200910.models.Part`
|
713
|
+
# @param Index: 原文位置
|
714
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
715
|
+
# @type Index: Array
|
716
|
+
# @param Src: 原文
|
717
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
718
|
+
# @type Src: String
|
719
|
+
# @param PartAlias: 部位别名
|
720
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
721
|
+
# @type PartAlias: String
|
722
|
+
# @param SymDescList: 症状描述
|
723
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
724
|
+
# @type SymDescList: Array
|
725
|
+
|
726
|
+
attr_accessor :Part, :Index, :Src, :PartAlias, :SymDescList
|
727
|
+
|
728
|
+
def initialize(part=nil, index=nil, src=nil, partalias=nil, symdesclist=nil)
|
729
|
+
@Part = part
|
730
|
+
@Index = index
|
731
|
+
@Src = src
|
732
|
+
@PartAlias = partalias
|
733
|
+
@SymDescList = symdesclist
|
734
|
+
end
|
735
|
+
|
736
|
+
def deserialize(params)
|
737
|
+
unless params['Part'].nil?
|
738
|
+
@Part = Part.new
|
739
|
+
@Part.deserialize(params['Part'])
|
740
|
+
end
|
741
|
+
@Index = params['Index']
|
742
|
+
@Src = params['Src']
|
743
|
+
@PartAlias = params['PartAlias']
|
744
|
+
unless params['SymDescList'].nil?
|
745
|
+
@SymDescList = []
|
746
|
+
params['SymDescList'].each do |i|
|
747
|
+
blockinfo_tmp = BlockInfo.new
|
748
|
+
blockinfo_tmp.deserialize(i)
|
749
|
+
@SymDescList << blockinfo_tmp
|
750
|
+
end
|
751
|
+
end
|
752
|
+
end
|
753
|
+
end
|
754
|
+
|
621
755
|
# 家族疾病史
|
622
756
|
class FamilyMedicalHistory < TencentCloud::Common::AbstractModel
|
623
757
|
# @param RelativeHistory: 家族成员史
|
@@ -1311,6 +1445,58 @@ module TencentCloud
|
|
1311
1445
|
end
|
1312
1446
|
end
|
1313
1447
|
|
1448
|
+
# 药品
|
1449
|
+
class Medicine < TencentCloud::Common::AbstractModel
|
1450
|
+
# @param Name: 药品名
|
1451
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1452
|
+
# @type Name: String
|
1453
|
+
# @param TradeName: 商品名
|
1454
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1455
|
+
# @type TradeName: String
|
1456
|
+
# @param Firm: 厂商
|
1457
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1458
|
+
# @type Firm: String
|
1459
|
+
# @param Category: 医保类型
|
1460
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1461
|
+
# @type Category: String
|
1462
|
+
# @param Specification: 规格
|
1463
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1464
|
+
# @type Specification: String
|
1465
|
+
# @param MinQuantity: 最小包装数量
|
1466
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1467
|
+
# @type MinQuantity: String
|
1468
|
+
# @param DosageUnit: 最小制剂单位
|
1469
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1470
|
+
# @type DosageUnit: String
|
1471
|
+
# @param PackingUnit: 最小包装单位
|
1472
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1473
|
+
# @type PackingUnit: String
|
1474
|
+
|
1475
|
+
attr_accessor :Name, :TradeName, :Firm, :Category, :Specification, :MinQuantity, :DosageUnit, :PackingUnit
|
1476
|
+
|
1477
|
+
def initialize(name=nil, tradename=nil, firm=nil, category=nil, specification=nil, minquantity=nil, dosageunit=nil, packingunit=nil)
|
1478
|
+
@Name = name
|
1479
|
+
@TradeName = tradename
|
1480
|
+
@Firm = firm
|
1481
|
+
@Category = category
|
1482
|
+
@Specification = specification
|
1483
|
+
@MinQuantity = minquantity
|
1484
|
+
@DosageUnit = dosageunit
|
1485
|
+
@PackingUnit = packingunit
|
1486
|
+
end
|
1487
|
+
|
1488
|
+
def deserialize(params)
|
1489
|
+
@Name = params['Name']
|
1490
|
+
@TradeName = params['TradeName']
|
1491
|
+
@Firm = params['Firm']
|
1492
|
+
@Category = params['Category']
|
1493
|
+
@Specification = params['Specification']
|
1494
|
+
@MinQuantity = params['MinQuantity']
|
1495
|
+
@DosageUnit = params['DosageUnit']
|
1496
|
+
@PackingUnit = params['PackingUnit']
|
1497
|
+
end
|
1498
|
+
end
|
1499
|
+
|
1314
1500
|
# 月经史
|
1315
1501
|
class MenstrualMedicalHistory < TencentCloud::Common::AbstractModel
|
1316
1502
|
# @param LastMenstrualPeriod: 末次月经时间
|
@@ -1987,6 +2173,30 @@ module TencentCloud
|
|
1987
2173
|
end
|
1988
2174
|
end
|
1989
2175
|
|
2176
|
+
# 处方单
|
2177
|
+
class Prescription < TencentCloud::Common::AbstractModel
|
2178
|
+
# @param MedicineList: 药品列表
|
2179
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2180
|
+
# @type MedicineList: Array
|
2181
|
+
|
2182
|
+
attr_accessor :MedicineList
|
2183
|
+
|
2184
|
+
def initialize(medicinelist=nil)
|
2185
|
+
@MedicineList = medicinelist
|
2186
|
+
end
|
2187
|
+
|
2188
|
+
def deserialize(params)
|
2189
|
+
unless params['MedicineList'].nil?
|
2190
|
+
@MedicineList = []
|
2191
|
+
params['MedicineList'].each do |i|
|
2192
|
+
medicine_tmp = Medicine.new
|
2193
|
+
medicine_tmp.deserialize(i)
|
2194
|
+
@MedicineList << medicine_tmp
|
2195
|
+
end
|
2196
|
+
end
|
2197
|
+
end
|
2198
|
+
end
|
2199
|
+
|
1990
2200
|
# 报告基本信息
|
1991
2201
|
class ReportInfo < TencentCloud::Common::AbstractModel
|
1992
2202
|
# @param Hospital: 医院名称
|
@@ -2354,10 +2564,16 @@ module TencentCloud
|
|
2354
2564
|
# @param Electrocardiogram: 心电图报告
|
2355
2565
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
2356
2566
|
# @type Electrocardiogram: :class:`Tencentcloud::Mrs.v20200910.models.Electrocardiogram`
|
2567
|
+
# @param Endoscopy: 内窥镜报告
|
2568
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2569
|
+
# @type Endoscopy: :class:`Tencentcloud::Mrs.v20200910.models.Endoscopy`
|
2570
|
+
# @param Prescription: 处方单
|
2571
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2572
|
+
# @type Prescription: :class:`Tencentcloud::Mrs.v20200910.models.Prescription`
|
2357
2573
|
|
2358
|
-
attr_accessor :PatientInfo, :ReportInfo, :Check, :Pathology, :MedDoc, :DiagCert, :FirstPage, :Indicator, :ReportType, :MedicalRecordInfo, :Hospitalization, :Surgery, :Electrocardiogram
|
2574
|
+
attr_accessor :PatientInfo, :ReportInfo, :Check, :Pathology, :MedDoc, :DiagCert, :FirstPage, :Indicator, :ReportType, :MedicalRecordInfo, :Hospitalization, :Surgery, :Electrocardiogram, :Endoscopy, :Prescription
|
2359
2575
|
|
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)
|
2576
|
+
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, endoscopy=nil, prescription=nil)
|
2361
2577
|
@PatientInfo = patientinfo
|
2362
2578
|
@ReportInfo = reportinfo
|
2363
2579
|
@Check = check
|
@@ -2371,6 +2587,8 @@ module TencentCloud
|
|
2371
2587
|
@Hospitalization = hospitalization
|
2372
2588
|
@Surgery = surgery
|
2373
2589
|
@Electrocardiogram = electrocardiogram
|
2590
|
+
@Endoscopy = endoscopy
|
2591
|
+
@Prescription = prescription
|
2374
2592
|
end
|
2375
2593
|
|
2376
2594
|
def deserialize(params)
|
@@ -2423,6 +2641,14 @@ module TencentCloud
|
|
2423
2641
|
@Electrocardiogram = Electrocardiogram.new
|
2424
2642
|
@Electrocardiogram.deserialize(params['Electrocardiogram'])
|
2425
2643
|
end
|
2644
|
+
unless params['Endoscopy'].nil?
|
2645
|
+
@Endoscopy = Endoscopy.new
|
2646
|
+
@Endoscopy.deserialize(params['Endoscopy'])
|
2647
|
+
end
|
2648
|
+
unless params['Prescription'].nil?
|
2649
|
+
@Prescription = Prescription.new
|
2650
|
+
@Prescription.deserialize(params['Prescription'])
|
2651
|
+
end
|
2426
2652
|
end
|
2427
2653
|
end
|
2428
2654
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-mrs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.203
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-11-
|
11
|
+
date: 2021-11-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|