using SqlSugar; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HL_FristAidPlatform_Models { /// /// 患者时间进程 /// public class T_Service_CriticalPregnan_Time { /// /// ID /// [SugarColumn(IsIdentity = true)] public int ID { get; set; } /// /// GUID /// [Key] [SugarColumn(IsPrimaryKey = true)] public string GUID { get; set; } /// ///病人编号(GUID) /// public string PatientGuid { get; set; } /// /// 出车单位 /// public string Departure { get; set; } /// /// 出诊医生 /// public string OutPatient { get; set; } /// /// 出诊时间 /// public string VisitTime { get; set; } /// /// 到达现场 /// public string ArriveTime { get; set; } /// /// 离开现场 /// public string LeaveTime { get; set; } /// /// 接诊医生 /// public string AttendingDoctor { get; set; } /// /// 接诊时间 /// public string AttendingTime { get; set; } /// /// 进入抢救室时间 /// public string InRescueRoomTime { get; set; } /// /// 离开抢救室时间 /// public string OutRescueRoomTime { get; set; } /// /// 决定转院时间 /// public string TransferTime { get; set; } /// /// 转诊原因 /// public string TransferReason { get; set; } /// /// 转入科室 /// public string TransferDepartment { get; set; } /// /// /// public DateTime CreationDate { get; set; } /// /// /// public long CreatorID { get; set; } /// /// /// public int DeleteFlag { get; set; } } }