This commit is contained in:
2026-03-23 14:33:54 +08:00
parent 1454442fd8
commit 58f23e59d1
68 changed files with 5316 additions and 432 deletions
+4
View File
@@ -23,6 +23,10 @@
/// </summary>
public string ProjectName { get; set; }
/// <summary>
/// 项目简称
/// </summary>
public string ShortName { get; set; }
/// <summary>
/// 单位id
/// </summary>
public string UnitId { get; set; }
+11 -2
View File
@@ -57,6 +57,9 @@ namespace Model
public int? GeneralNotClosedNum { get; set; }
public string GeneralRate { get; set; }
public int? GeneralRiskNum { get; set; }
public int? LargerClosedNum { get; set; }
public int? LargerNotClosedNum { get; set; }
public string LargerRate { get; set; }
public int? HeadOfficeFullTimeNum { get; set; }
public int? HeadOfficeInspectorGeneralNum { get; set; }
public int? HighRiskNum { get; set; }
@@ -109,13 +112,19 @@ namespace Model
public int? SuperConstructionNum { get; set; }
public int? SuperFinishedNum { get; set; }
public int? SuperTrainPersonNum { get; set; }
public int? OperativesNum { get; set; }
public int? SuperOperativesNum { get; set; }
public int? AwaitApprovalNum { get; set; }
public int? PendingApprovalNum { get; set; }
public int? CompletedApprovalNum { get; set; }
public int? SuperAwaitApprovalNum { get; set; }
public int? SuperPendingApprovalNum { get; set; }
public int? SuperCompletedApprovalNum { get; set; }
public decimal? TotalEnergyConsumption { get; set; }
public int? TotalWorkingHour { get; set; }
public int? TrainPersonNum { get; set; }
public string UnitId { get; set; }
public int? UseEquipmentNum { get; set; }
public int? OperativesNum { get; set; }
public int? SuperOperativesNum { get; set; }
public List<HSSEDataHiddenDangerDetailItem> HiddenDangerDetailItems { get; set; }
}
@@ -50,5 +50,29 @@
/// 超危大工程作业人员数
/// </summary>
public int SuperOperativesNum { get; set; }
/// <summary>
/// 危大工程待审核个数
/// </summary>
public int AwaitApprovalNum { get; set; }
/// <summary>
/// 危大工程审核中个数
/// </summary>
public int PendingApprovalNum { get; set; }
/// <summary>
/// 危大工程已完成个数
/// </summary>
public int CompletedApprovalNum { get; set; }
/// <summary>
/// 超危大工程待审核个数
/// </summary>
public int SuperAwaitApprovalNum { get; set; }
/// <summary>
/// 超危大工程审核中个数
/// </summary>
public int SuperPendingApprovalNum { get; set; }
/// <summary>
/// 超危大工程已完成个数
/// </summary>
public int SuperCompletedApprovalNum { get; set; }
}
}