开发雷杜rac 050全自动凝血分析仪lis监听中,PT=25,INR = 2.161如何写进去
时间: 2024-09-24 21:05:07 浏览: 33
雷杜全自动凝血分析仪HL7接口使用说明书V1.0
在开发雷杜瑞拓(Redus)系列如050全自动凝血分析仪的LIS (实验室信息系统) 监听程序时,当接收到PT(部分凝血酶时间)值为25秒,国际标准化比(INR)为2.161的数据,通常需要按照LIS系统规定的数据结构或API来插入这些结果。
下面是一个简化版的伪代码示例:
```python
# 假设我们有一个用于存储检验结果的数据结构
class LabResult:
def __init__(self):
self.pt = None
self.inr = None
def insert_result(result):
new_entry = LabResult()
new_entry.pt = 25 # PT值
new_entry.inr = 2.161 # INR值
# 将新的结果添加到LIS数据库或发送到服务器
lis_system.insert(new_entry)
# 创建一个新的结果实例并插入
pt_inr_data = {'pt': 25, 'inr': 2.161}
insert_result(pt_inr_data)
#
阅读全文