namespace HL_FristAidPlatform_DTO { /// ///肌酐蛋白 V2.1版 /// public class T_Service_ChestPain_CTNTDTO { /// /// 编号 /// public long ID { get; set; } /// /// GUID /// public string GUID { get; set; } /// /// 病人编号 /// public string PatientGuid { get; set; } /// /// 类型 /// 1:TnT /// 2:Tnl /// public string Type { get; set; } = ""; /// /// 数值最多保留 8 位小数 /// public string Value { get; set; } = ""; /// /// 单位 /// 1:ng/mL /// 2:ug/L /// 3:ng/L /// 4:pg/mL /// 5:mg/L /// public string Unit { get; set; } = ""; /// /// 状态 /// 1:阳性 /// 2:阴性 /// public string Status { get; set; } = ""; /// /// 抽血完成时间 /// public string Blood_Time { get; set; } = ""; /// /// 获得报告时间 /// public string Report_Time { get; set; } = ""; /// /// 删除标记0未删除1已删除 /// public int DeleteFlag { get; set; } /// /// 创建时间 /// public string CreationDate { get; set; } = ""; /// /// 创建人编号 /// public long CreatorID { get; set; } /// /// 创建人 /// public string Creator { get; set; } = ""; /// /// 最后编辑时间 /// public string EditTime { get; set; } = ""; /// /// 最后编辑人编号 /// public long EditorID { get; set; } /// /// 最后编辑人 /// public string Editor { get; set; } = ""; } }