using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations; using System.Text; namespace Shentun.Peis.OccupationalDiseases { public class PatientOccupationalDiseaseDto : AuditedEntityDtoName { /// /// 职业病检查类别 /// public Guid OcCheckTypeId { get; set; } /// /// 工种 /// public string JobType { get; set; } /// /// 总工龄 /// public string TotalWorkTime { get; set; } /// /// 接害工龄 /// public string PoisonWorkTime { get; set; } /// /// 接害因素 /// public string RiskFactors { get; set; } /// /// 家族遗传病史 /// public string FamilyGeneticHistory { get; set; } /// /// 末次月经日期 /// public DateTime? LastMenstrualPeriodDate { get; set; } /// /// 初潮多少岁 /// public int? FirstMenstruation { get; set; } /// /// 经期多少天 /// public int? MenstruationTimeLength { get; set; } /// /// 周期多少天 /// public int? MenstruationCycle { get; set; } /// /// 停经多少岁 /// public int? MenstruationEndAge { get; set; } /// /// 经期 /// public char? MenstruationFlag { get; set; } /// /// 现有子女人数 /// public int? ChildrenNum { get; set; } /// /// 流产次数 /// public int? AbortionTimes { get; set; } /// /// 早产次数 /// public int? PrematureBirthTimes { get; set; } /// /// 死产次数 /// public int? StillbirthTimes { get; set; } /// /// 异常胎次数 /// public int? AbnormalTimes { get; set; } /// /// 抽烟史 /// public char? SmokeFlag { get; set; } /// /// 每天多少支 /// public int? SmokeNum { get; set; } /// /// 抽烟年限 /// public int? SmokeYears { get; set; } /// /// 饮酒史 /// public char? DrinkFlag { get; set; } /// /// 每次多少ml /// public int? DrinkNum { get; set; } /// /// 饮酒年限 /// public int? DrinkYears { get; set; } /// /// 其他 /// public string Other { get; set; } /// /// 职业性异常 /// public string OccupationalAbnormal { get; set; } /// /// 非职业性异常 /// public string NoOccupationalAbnormal { get; set; } /// /// 职业性异常建议 /// public string OccupationalAbSuggestion { get; set; } /// /// 非职业性异常建议 /// public string NoOccupAbSuggestion { get; set; } /// /// 处理意见 /// public string HandleSuggestion { get; set; } } }