using System; using System.Collections.Generic; namespace Model { /// /// 三库事故事件上报 /// public class SankuReportAccident { /// /// 分包单位社会统一信用码 /// public string CollCropCode { get; set; } /// /// 上报方式【自动上报、手动上报】 /// public string OpType { get; set; } /// /// 上报人 /// public string Operator { get; set; } /// /// 分包单位Id /// public string UnitId { get; set; } /// /// 分包单位名称 /// public string UnitName { get; set; } /// /// 业务数据集合 /// public List Items { get; set; } } /// /// 三库事故事件数据 /// public class SankuAccident { public string ACCIDENT_ID { get; set; } public string PROJECT_CODE { get; set; } public string PROJECT_NAME { get; set; } public string ACCIDENT_NAME { get; set; } public DateTime ACCIDENT_TIME { get; set; } public string ACCIDENT_LEVEL { get; set; } public string ACCIDENT_TYPE { get; set; } public string ACCIDENT_LOCATION { get; set; } public string ACCIDENT_DESCRIPTION { get; set; } public int DEATH_COUNT { get; set; } public int SERIOUS_INJURY_COUNT { get; set; } public int MINOR_INJURY_COUNT { get; set; } public decimal DIRECT_ECONOMIC_LOSS { get; set; } public decimal INDIRECT_ECONOMIC_LOSS { get; set; } public string CONTRACTING_RESPONSIBILITY { get; set; } public string SUBCONTRACTOR_ID { get; set; } public string SUBCONTRACTOR_CODE { get; set; } public string SUBCONTRACTOR_NAME { get; set; } public string POSITION_NAME { get; set; } public string RESPONSIBILITY_TYPE { get; set; } public string RESPONSIBILITY_DESC { get; set; } public string PERSONNEL_ID_NUMBER { get; set; } public string PERSONNEL_NAME { get; set; } public string SUBMITTER_ID_NUMBER { get; set; } public string SUBMITTER_NAME { get; set; } public DateTime UPDATE_TIME { get; set; } public DateTime CREATE_TIME { get; set; } } }