This commit is contained in:
geh
2026-03-23 15:22:29 +08:00
parent 94584d242b
commit c38590add8
173 changed files with 19679 additions and 4413 deletions
@@ -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; }
@@ -4,6 +4,7 @@ namespace Model
{
public class EduTrainOutput:BaseEntities
{
public string TrainUnitName { get; set; }
public string TrainTitle { get; set; }
public DateTime? TrainStartDate { get; set; }
public DateTime? TrainEndDate { 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; }
}
}
@@ -7,6 +7,7 @@ namespace Model
/// </summary>
public class LicenseOutput:BaseEntities
{
public string LicenseTypeId { get; set; }
public string LicenseTypeName { get; set; }
public string UnitTypeName { get; set; }
public string WorkAreaName { get; set; }
@@ -14,6 +15,7 @@ namespace Model
public DateTime? CompileDate { get; set; }
public DateTime? StartDate { get; set; }
public DateTime? EndDate { get; set; }
public string WorkStates { get; set; }
public string WorkStatesStr { get; set; }
}
@@ -10,5 +10,6 @@ namespace Model
public string Id { get; set; }
public string WEDCode { get; set; }
public string WEDName { get; set; }
public string WEDWorkCode { get; set; }
}
}