namespace HL_FristAidPlatform_DTO { /// /// 提交医单 /// public class MedicalForm { /// /// 请求头 /// //public Header header { get; set; } /// /// 单ID /// public string formId { get; set; } /// /// 项目类型 /// public string itemType { get; set; } /// /// 项目代码 /// public string itemCode { get; set; } /// /// 项目名称 /// public string itemName { get; set; } /// /// 动态 心电附加项目 /// public string dyAdditionalItems { get; set; } /// /// 动态 分析选项 /// public string dyAnalyseOption { get; set; } /// /// 设备型号 /// public string eqmtTypeNo { get; set; } /// /// 设备号 /// public string eqmtNo { get; set; } /// /// 档案 Id /// public string archivesId { get; set; } /// /// 住院/门诊 /// public string ifInHospital { get; set; } /// /// 科室号 /// public string techOfficeNo { get; set; } /// /// 科室名称 /// public string techOfficeName { get; set; } /// /// 就诊卡号 /// public string medCardNo { get; set; } /// /// 就诊单号 /// public string medFormNo { get; set; } /// /// 发票/收据号 /// public string billNo { get; set; } /// /// 用户姓名 /// public string userName { get; set; } /// /// 性别 /// public string sex { get; set; } /// /// 年龄 /// public string year { get; set; } /// /// 出生日期 /// public string birthDay { get; set; } /// /// 身份证号 /// public string certNo { get; set; } /// /// 联系电话 /// public string phone { get; set; } /// /// 服务 开始时间 /// public string serviceBeginTime { get; set; } /// /// 时长 /// public string serviceLength { get; set; } /// /// 时间单位 /// public string timeUnite { get; set; } /// /// 床位号 /// public string bedNo { get; set; } /// /// 门诊号 /// public string outPatientNo { get; set; } /// /// 住院号 /// public string admNo { get; set; } /// /// 病房号 /// public string roomNo { get; set; } /// /// 就诊号 /// public string treatNo { get; set; } /// /// 医嘱号 /// public string ordNo { get; set; } /// /// 检查号 /// public string examNo { get; set; } /// /// 报告标题 /// public string reportTitle { get; set; } /// /// 急救标志 /// public string aidFlag { get; set; } /// /// 提交动作 /// public string postAction { get; set; } /// /// 数据格式 /// public string dataFormat { get; set; } /// /// 数据 /// public string data { get; set; } /// /// 备注 /// public string memo { get; set; } /// /// 异步 的报告通知响应 url地址 /// public string reportNotifyUrl { get; set; } } }