using SqlSugar; using System; using System.ComponentModel.DataAnnotations; namespace HL_FristAidPlatform_Models { public class T_Service_CriticalPregnant_BasicInfo { /// /// 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 NativePlaceProvince { get; set; } /// /// 籍贯市 /// public string NativePlaceCity { get; set; } /// /// 籍贯县区 /// public string NativePlaceArea { get; set; } ///// ///// 职业 ///// //public string Occupation { get; set; } /// /// ABO血型 /// public string ABOBloodType { get; set; } /// /// Rh血型 /// public string RhBloodType { get; set; } /// /// 孕周 /// public string GestationalWeeks { get; set; } /// /// 未次月经 /// public string NonsecondaryMenstruation { get; set; } /// /// 预产期 /// public string ExpectedDateOfConfinement { get; set; } /// /// 床位号 /// public string BedNumber { get; set; } /// /// 丈夫姓名 /// public string HusbandName { get; set; } /// /// 病情记录 /// public string Pathography { get; set; } /// /// 删除标记0未删除1已删除 /// public int DeleteFlag { get; set; } /// /// 来院方式 1 呼救120 2 自行来院 3 转院 4 院内发病 /// public string ComeHospitalWay { get; set; } /// /// 高危等级 /// public string Grade { get; set; } /// /// 高危时间 /// public string Attack_Time { get; set; } } }