using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HL_FristAidPlatform_DTO { public class T_Service_Apoplexy_TransferDTO { /// /// GUID /// public string GUID { get; set; } /// /// 患者GUID /// public string PatientGuid { get; set; } /// /// 接受医院名称 /// public string nameOuthospital { get; set; } /// /// 转出本院时间 /// public string timeOuthospital { get; set; } /// /// 转院原因 /// public string reasonOuthospital { get; set; } /// /// 出院诊断 /// public string diagnosis { get; set; } /// /// 创建人 /// public string createId { get; set; } /// /// 删除标记 0未删除 1已删除 /// public int DeleteFlag { get; set; } } }