using System; using System.Collections.Generic; using System.Text; namespace Shentun.Peis.LisRequests { public class LisRequestDto { /// /// LisRequest的ID /// public Guid Id { get; set; } /// /// 姓名 /// public string PatientName { get; set; } /// /// 检验申请单号 /// public string LisRequestNo { get; set; } /// /// 档案号 /// public string PatientNo { get; set; } /// /// 登记人员条码号 /// public string PatientRegisterNo { get; set; } /// /// 性别 /// public string? SexName { get; set; } /// /// 年龄 /// public short? Age { get; set; } /// /// 标本类型名称 /// public string SampleTypeName { get; set; } /// /// 标本容器名称 /// public string SampleContainerName { get; set; } /// /// 颜色值 /// public int ContainerColor { get; set; } /// /// 标本容器备注 /// public string? SampleContainerRemark { get; set; } /// /// 组合项目简称(多个“,”号隔开) /// public string AsbitemNames { get; set; } /// /// 单位名称 /// public string CustomerOrgName { get; set; } /// /// 部门名称 /// public string DepartmentName { get; set; } } }