tencentcloud-sdk-mrs 1.0.340 → 1.0.343
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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20200910/models.rb +120 -6
- 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: 2aaa6b335254a0de2b5d8422a6446c6129510e67
|
4
|
+
data.tar.gz: 7db4ac71a2fb5c59a5df22c538096bd64932b602
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 05e05bbd04a9999cede9288c41b9b9b2041d978dc7039e7cf52e2d93cd635e8e256344dd8282abf912b5392fc9ab517232b21c4e3cd5087c39583b0b9afc2229
|
7
|
+
data.tar.gz: 00c82ff7f929fcdbb5e7817d1d726c45bc5c17d6bbca4f04663215bfec8dd7bf23b64690d0df0b3c52fea26c295598ac871e12643d678ed2b7b495b3405c6f9b
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.343
|
data/lib/v20200910/models.rb
CHANGED
@@ -163,6 +163,38 @@ module TencentCloud
|
|
163
163
|
end
|
164
164
|
end
|
165
165
|
|
166
|
+
# 坐标
|
167
|
+
class Coordinate < TencentCloud::Common::AbstractModel
|
168
|
+
# @param X: 左上角x坐标
|
169
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
170
|
+
# @type X: Integer
|
171
|
+
# @param Y: 左上角y坐标
|
172
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
173
|
+
# @type Y: Integer
|
174
|
+
# @param Width: 宽度,单位像素
|
175
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
176
|
+
# @type Width: Integer
|
177
|
+
# @param Height: 高度,单位像素
|
178
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
179
|
+
# @type Height: Integer
|
180
|
+
|
181
|
+
attr_accessor :X, :Y, :Width, :Height
|
182
|
+
|
183
|
+
def initialize(x=nil, y=nil, width=nil, height=nil)
|
184
|
+
@X = x
|
185
|
+
@Y = y
|
186
|
+
@Width = width
|
187
|
+
@Height = height
|
188
|
+
end
|
189
|
+
|
190
|
+
def deserialize(params)
|
191
|
+
@X = params['X']
|
192
|
+
@Y = params['Y']
|
193
|
+
@Width = params['Width']
|
194
|
+
@Height = params['Height']
|
195
|
+
end
|
196
|
+
end
|
197
|
+
|
166
198
|
# 描述
|
167
199
|
class Desc < TencentCloud::Common::AbstractModel
|
168
200
|
# @param Text: 描述
|
@@ -1225,10 +1257,16 @@ module TencentCloud
|
|
1225
1257
|
# @param ItemString: 项目原文
|
1226
1258
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1227
1259
|
# @type ItemString: String
|
1260
|
+
# @param Id: 指标项ID
|
1261
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1262
|
+
# @type Id: Integer
|
1263
|
+
# @param Coords: 指标项坐标位置
|
1264
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1265
|
+
# @type Coords: :class:`Tencentcloud::Mrs.v20200910.models.Coordinate`
|
1228
1266
|
|
1229
|
-
attr_accessor :Code, :Scode, :Name, :Sname, :Result, :Unit, :Range, :Arrow, :Normal, :ItemString
|
1267
|
+
attr_accessor :Code, :Scode, :Name, :Sname, :Result, :Unit, :Range, :Arrow, :Normal, :ItemString, :Id, :Coords
|
1230
1268
|
|
1231
|
-
def initialize(code=nil, scode=nil, name=nil, sname=nil, result=nil, unit=nil, range=nil, arrow=nil, normal=nil, itemstring=nil)
|
1269
|
+
def initialize(code=nil, scode=nil, name=nil, sname=nil, result=nil, unit=nil, range=nil, arrow=nil, normal=nil, itemstring=nil, id=nil, coords=nil)
|
1232
1270
|
@Code = code
|
1233
1271
|
@Scode = scode
|
1234
1272
|
@Name = name
|
@@ -1239,6 +1277,8 @@ module TencentCloud
|
|
1239
1277
|
@Arrow = arrow
|
1240
1278
|
@Normal = normal
|
1241
1279
|
@ItemString = itemstring
|
1280
|
+
@Id = id
|
1281
|
+
@Coords = coords
|
1242
1282
|
end
|
1243
1283
|
|
1244
1284
|
def deserialize(params)
|
@@ -1252,6 +1292,11 @@ module TencentCloud
|
|
1252
1292
|
@Arrow = params['Arrow']
|
1253
1293
|
@Normal = params['Normal']
|
1254
1294
|
@ItemString = params['ItemString']
|
1295
|
+
@Id = params['Id']
|
1296
|
+
unless params['Coords'].nil?
|
1297
|
+
@Coords = Coordinate.new
|
1298
|
+
@Coords.deserialize(params['Coords'])
|
1299
|
+
end
|
1255
1300
|
end
|
1256
1301
|
end
|
1257
1302
|
|
@@ -2096,10 +2141,13 @@ module TencentCloud
|
|
2096
2141
|
# @param MedicalInsuranceTypeCode: 居民医保代码
|
2097
2142
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
2098
2143
|
# @type MedicalInsuranceTypeCode: String
|
2144
|
+
# @param BedNo: 床号
|
2145
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2146
|
+
# @type BedNo: String
|
2099
2147
|
|
2100
|
-
attr_accessor :Name, :Sex, :Age, :Phone, :Address, :IdCard, :HealthCardNo, :SocialSecurityCardNo, :Birthday, :Ethnicity, :Married, :Profession, :EducationBackground, :Nationality, :BirthPlace, :MedicalInsuranceType, :AgeNorm, :Nation, :MarriedCode, :ProfessionCode, :MedicalInsuranceTypeCode
|
2148
|
+
attr_accessor :Name, :Sex, :Age, :Phone, :Address, :IdCard, :HealthCardNo, :SocialSecurityCardNo, :Birthday, :Ethnicity, :Married, :Profession, :EducationBackground, :Nationality, :BirthPlace, :MedicalInsuranceType, :AgeNorm, :Nation, :MarriedCode, :ProfessionCode, :MedicalInsuranceTypeCode, :BedNo
|
2101
2149
|
|
2102
|
-
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)
|
2150
|
+
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, bedno=nil)
|
2103
2151
|
@Name = name
|
2104
2152
|
@Sex = sex
|
2105
2153
|
@Age = age
|
@@ -2121,6 +2169,7 @@ module TencentCloud
|
|
2121
2169
|
@MarriedCode = marriedcode
|
2122
2170
|
@ProfessionCode = professioncode
|
2123
2171
|
@MedicalInsuranceTypeCode = medicalinsurancetypecode
|
2172
|
+
@BedNo = bedno
|
2124
2173
|
end
|
2125
2174
|
|
2126
2175
|
def deserialize(params)
|
@@ -2145,6 +2194,7 @@ module TencentCloud
|
|
2145
2194
|
@MarriedCode = params['MarriedCode']
|
2146
2195
|
@ProfessionCode = params['ProfessionCode']
|
2147
2196
|
@MedicalInsuranceTypeCode = params['MedicalInsuranceTypeCode']
|
2197
|
+
@BedNo = params['BedNo']
|
2148
2198
|
end
|
2149
2199
|
end
|
2150
2200
|
|
@@ -2265,10 +2315,31 @@ module TencentCloud
|
|
2265
2315
|
# @param Diagnose: 临床诊断
|
2266
2316
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
2267
2317
|
# @type Diagnose: String
|
2318
|
+
# @param CheckItem: 检查项目
|
2319
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2320
|
+
# @type CheckItem: String
|
2321
|
+
# @param CheckMethod: 检查方法
|
2322
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2323
|
+
# @type CheckMethod: String
|
2324
|
+
# @param DiagnoseTime: 诊断时间
|
2325
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2326
|
+
# @type DiagnoseTime: String
|
2327
|
+
# @param HealthCheckupNum: 体检号
|
2328
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2329
|
+
# @type HealthCheckupNum: String
|
2330
|
+
# @param OtherTime: 其它时间
|
2331
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2332
|
+
# @type OtherTime: String
|
2333
|
+
# @param PrintTime: 打印时间
|
2334
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2335
|
+
# @type PrintTime: String
|
2336
|
+
# @param Times: 未归类时间
|
2337
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2338
|
+
# @type Times: Array
|
2268
2339
|
|
2269
|
-
attr_accessor :Hospital, :DepartmentName, :BillingTime, :ReportTime, :InspectTime, :CheckNum, :ImageNum, :RadiationNum, :TestNum, :OutpatientNum, :PathologyNum, :InHospitalNum, :SampleNum, :SampleType, :MedicalRecordNum, :ReportName, :UltraNum, :Diagnose
|
2340
|
+
attr_accessor :Hospital, :DepartmentName, :BillingTime, :ReportTime, :InspectTime, :CheckNum, :ImageNum, :RadiationNum, :TestNum, :OutpatientNum, :PathologyNum, :InHospitalNum, :SampleNum, :SampleType, :MedicalRecordNum, :ReportName, :UltraNum, :Diagnose, :CheckItem, :CheckMethod, :DiagnoseTime, :HealthCheckupNum, :OtherTime, :PrintTime, :Times
|
2270
2341
|
|
2271
|
-
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)
|
2342
|
+
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, checkitem=nil, checkmethod=nil, diagnosetime=nil, healthcheckupnum=nil, othertime=nil, printtime=nil, times=nil)
|
2272
2343
|
@Hospital = hospital
|
2273
2344
|
@DepartmentName = departmentname
|
2274
2345
|
@BillingTime = billingtime
|
@@ -2287,6 +2358,13 @@ module TencentCloud
|
|
2287
2358
|
@ReportName = reportname
|
2288
2359
|
@UltraNum = ultranum
|
2289
2360
|
@Diagnose = diagnose
|
2361
|
+
@CheckItem = checkitem
|
2362
|
+
@CheckMethod = checkmethod
|
2363
|
+
@DiagnoseTime = diagnosetime
|
2364
|
+
@HealthCheckupNum = healthcheckupnum
|
2365
|
+
@OtherTime = othertime
|
2366
|
+
@PrintTime = printtime
|
2367
|
+
@Times = times
|
2290
2368
|
end
|
2291
2369
|
|
2292
2370
|
def deserialize(params)
|
@@ -2308,6 +2386,20 @@ module TencentCloud
|
|
2308
2386
|
@ReportName = params['ReportName']
|
2309
2387
|
@UltraNum = params['UltraNum']
|
2310
2388
|
@Diagnose = params['Diagnose']
|
2389
|
+
@CheckItem = params['CheckItem']
|
2390
|
+
@CheckMethod = params['CheckMethod']
|
2391
|
+
@DiagnoseTime = params['DiagnoseTime']
|
2392
|
+
@HealthCheckupNum = params['HealthCheckupNum']
|
2393
|
+
@OtherTime = params['OtherTime']
|
2394
|
+
@PrintTime = params['PrintTime']
|
2395
|
+
unless params['Times'].nil?
|
2396
|
+
@Times = []
|
2397
|
+
params['Times'].each do |i|
|
2398
|
+
time_tmp = Time.new
|
2399
|
+
time_tmp.deserialize(i)
|
2400
|
+
@Times << time_tmp
|
2401
|
+
end
|
2402
|
+
end
|
2311
2403
|
end
|
2312
2404
|
end
|
2313
2405
|
|
@@ -2800,6 +2892,28 @@ module TencentCloud
|
|
2800
2892
|
end
|
2801
2893
|
end
|
2802
2894
|
|
2895
|
+
# 时间
|
2896
|
+
class Time < TencentCloud::Common::AbstractModel
|
2897
|
+
# @param Name: 具体时间类型
|
2898
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2899
|
+
# @type Name: String
|
2900
|
+
# @param Value: 时间值
|
2901
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2902
|
+
# @type Value: String
|
2903
|
+
|
2904
|
+
attr_accessor :Name, :Value
|
2905
|
+
|
2906
|
+
def initialize(name=nil, value=nil)
|
2907
|
+
@Name = name
|
2908
|
+
@Value = value
|
2909
|
+
end
|
2910
|
+
|
2911
|
+
def deserialize(params)
|
2912
|
+
@Name = params['Name']
|
2913
|
+
@Value = params['Value']
|
2914
|
+
end
|
2915
|
+
end
|
2916
|
+
|
2803
2917
|
# 病历
|
2804
2918
|
class TreatmentRecord < TencentCloud::Common::AbstractModel
|
2805
2919
|
# @param DmissionCondition: 入院
|
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.343
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-06-
|
11
|
+
date: 2022-06-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|