基本上,如果用户再次上传相同的c-cda文档或包含相同条目的其他文档,例如药物,生命体征,过敏,手术等,那么我想确保它们不会在数据库中得到复制,并希望跳过这些再次插入。
发布于 2015-02-07 00:56:07
Act内的每个条目都可以具有id属性,该属性的定义形式为: 3.1.1.3 Act.id ::SET (0..N) definition :行为的唯一标识符。
使用它来唯一地标识您的条目,并避免重复。
此元素不是必需的,但如果您正在实现C-CDA,则物质管理的此模板指定此元素是必需的,因此您应该要求文档发送者通知它。以下是C-CDA表的物质管理示例:
<substanceAdministration classCode="SBADM" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.16"/>
<id root="cdbd33f0-6cde-11db-9fe1-0800200c9a66"/>
<text>
<reference value="#med1/>
Proventil 0.09 MG/ACTUAT inhalant solution, 2 puffs QID PRN wheezing
</text>
<statusCode code="completed"/>
<effectiveTime xsi:type="IVL_TS">
<low value="20110301"/>
<high value="20120301"/>
</effectiveTime>
<effectiveTime xsi:type="PIVL_TS" institutionSpecified="true" operator="A">
<period value="6" unit="h"/>
</effectiveTime>
...Martímartipamies@vico.org
https://stackoverflow.com/questions/28346439
复制相似问题