using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HL_FristAidPlatform_DTO { public class ProposalDTO { /// /// /// public string PatientGUID { get; set; } /// /// 指导及建议 /// 1. 生活方式指导 2. 饮食指导 3 .运动指导 4. 劳物干预及进一步完西区学检查 分号拼接,且分号开头,分号结尾 /// public string Proposal { get; set; } /// /// 患者去向 /// public string Destination { get; set; } /// /// 住院治疗 /// public string IsHospitalized { get; set; } /// /// 当前筛查人 /// public string ScreenName { get; set; } } }