using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HL_FristAidPlatform_DTO { public class T_Service_Trauma_FaceAISDTO { /// /// GUID /// public string GUID { get; set; } /// /// 患者编号(GUID) /// public string PatientGuid { get; set; } public string ISSGUID { get; set; } /// /// 删除标记0未删除1已删除 /// public int DeleteFlag { get; set; } /// /// 创建人编号 CreationDate /// public long CreatorID { get; set; } /// /// 创建日期 /// public DateTime? CreationDate { get; set; } = DateTime.Now; /// /// 血管 /// public string BloodVessel { get; set; } /// /// 神经 /// public string Nerve { get; set; } /// /// 器官 /// public string Organ { get; set; } /// /// 穿透伤 /// public string PenetratingWound { get; set; } /// /// 骨骼 /// public string Bones { get; set; } /// /// 面部AIS评分总分 /// public string FaceAISSum { get; set; } } }