1、车辆交易安全管理,现场车辆管理:补充批量退场和导入功能;

2、危大工程方案调整
3、企业安全检查调整
4、安全活动调整
This commit is contained in:
2026-03-16 14:38:56 +08:00
parent 2c1f892dec
commit 13364fcbf7
69 changed files with 4291 additions and 746 deletions
+8 -2
View File
@@ -112,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; }
}
}