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_LimbsAISDTO { /// /// 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 SoftTissue { get; set; } /// /// 肌肉肌腱韧带 /// public string MuscleTendon { get; set; } /// /// 关节 /// public string Joint { get; set; } /// /// 骨骼 /// public string Bones { get; set; } /// /// 四肢盆骨臀部AIS评分总分 /// public string LimbsAISSum { get; set; } } }