using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
using System.Text;
namespace Shentun.Peis.OccupationalDiseases
{
public class PatientOccupationalHistoryDto : AuditedEntityDtoName
{
///
/// 单位
///
public string Org { get; set; }
///
/// 开始日期
///
public DateTime? BeginDate { get; set; }
///
/// 结束日期
///
[Column("end_date")]
public DateTime? EndDate { get; set; }
///
/// 车间
///
public string WorkShop { get; set; }
///
/// 工种
///
public string WorkType { get; set; }
///
/// 毒害因素
///
public string Poison { get; set; }
///
/// 防护措施
///
public string ProtectiveMeasures { get; set; }
}
}