using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HL_FristAidPlatform_DTO { /// /// /// public class ScreenLifeStyleDTO { /// /// /// public string PatientGUID { get; set; } /// /// 是否吸烟 0 否 1 是 /// public string IsSmoke { get; set; } /// /// 吸烟状态 1 正在吸烟 2 已经戒烟 /// public string SmokingStatus { get; set; } /// /// 吸烟年限 /// public string SmokeYears { get; set; } /// /// 支/每天 /// public string Quantity { get; set; } /// /// 戒烟年限 /// public string QuitSmokingYears { get; set; } /// /// 烟龄 /// public string SmokerLength { get; set; } /// /// 是否饮酒 0 不饮酒 1 少量饮酒 2 经常大量饮酒(白酒≥3次/周,每次≥2两) /// public string Drink { get; set; } /// /// 运动习惯 /// 1 经常运动(相当于快步走的中等强度运动,且每周≥3次、每次≥30分钟,包含中度、重度体力劳动者) /// 2 缺乏运动 (不符合上述经常运动标准者) /// public string ExerciseHabits { get; set; } /// /// 口味 1 偏咸 2 偏淡 3 适中 /// public string Taste { get; set; } /// /// 荤素 1 偏荤 2 偏素 3 均衡 /// public string Omnivorous { get; set; } /// /// 吃蔬菜 1 ≥5天/周 2 3-4天/周 3 ≤2天/周 /// public string Vegetable { get; set; } /// /// 吃水果 1 ≥5天/周 2 3-4天/周 3 ≤2天/周 /// public string Fruit { get; set; } /// /// 筛查员 /// public string Screener { get; set; } /// /// 1 筛查 2 干预 /// public string Flag { get; set; } /// /// 创建人 /// public long CreateID { get; set; } } }