集团三库

This commit is contained in:
2026-09-10 18:51:12 +08:00
parent dc6abc4cbb
commit 5be709c0e6
131 changed files with 25364 additions and 970 deletions
+70
View File
@@ -0,0 +1,70 @@
using System;
using System.Collections.Generic;
namespace Model
{
/// <summary>
/// 三库事故事件上报
/// </summary>
public class SankuReportAccident
{
/// <summary>
/// 分包单位社会统一信用码
/// </summary>
public string CollCropCode { get; set; }
/// <summary>
/// 上报方式【自动上报、手动上报】
/// </summary>
public string OpType { get; set; }
/// <summary>
/// 上报人
/// </summary>
public string Operator { get; set; }
/// <summary>
/// 分包单位Id
/// </summary>
public string UnitId { get; set; }
/// <summary>
/// 分包单位名称
/// </summary>
public string UnitName { get; set; }
/// <summary>
/// 业务数据集合
/// </summary>
public List<SANKU_ACCIDENT_RECORD> Items { get; set; }
}
/// <summary>
/// 三库事故事件数据
/// </summary>
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; }
}
}