You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.1 KiB
47 lines
1.1 KiB
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
|
|
{
|
|
|
|
/// <summary>
|
|
/// 单位
|
|
/// </summary>
|
|
public string Org { get; set; }
|
|
/// <summary>
|
|
/// 开始日期
|
|
/// </summary>
|
|
public DateTime? BeginDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 结束日期
|
|
/// </summary>
|
|
[Column("end_date")]
|
|
public DateTime? EndDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 车间
|
|
/// </summary>
|
|
public string WorkShop { get; set; }
|
|
|
|
/// <summary>
|
|
/// 工种
|
|
/// </summary>
|
|
public string WorkType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 毒害因素
|
|
/// </summary>
|
|
public string Poison { get; set; }
|
|
|
|
/// <summary>
|
|
/// 防护措施
|
|
/// </summary>
|
|
public string ProtectiveMeasures { get; set; }
|
|
}
|
|
}
|