增强HSE检查的功能

This commit is contained in:
2024-07-17 14:35:47 +08:00
parent e3286e45d8
commit b503c6f706
46 changed files with 1404 additions and 386 deletions
+21
View File
@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
public class DropDownItem
{
public string Text { get; set; }
public string Values { get; set; }
public string Counts { get; set; }
public string Mtype { get; set; }
public string Ttype { get; set; }
}
}
@@ -124,7 +124,7 @@ namespace Model
set;
}
/// <summary>
/// 隐患
/// 隐患
/// </summary>
public string HiddenHazardType
{
@@ -132,7 +132,7 @@ namespace Model
set;
}
/// <summary>
/// 隐患别名称
/// 隐患别名称
/// </summary>
public string HiddenHazardTypeName
{
@@ -207,5 +207,15 @@ namespace Model
/// 处理意见
/// </summary>
public string CheckOpinions { get; set; }
/// <summary>
/// 隐患类型
/// </summary>
public string HiddenType
{
get;
set;
}
}
}
+10 -1
View File
@@ -361,12 +361,21 @@ namespace Model
set;
}
/// <summary>
/// 风险等级
/// 隐患级别
/// </summary>
public string Risk_Level
{
get;
set;
}
/// <summary>
/// 隐患类型
/// </summary>
public string HiddenType
{
get;
set;
}
}
}
@@ -82,5 +82,23 @@ namespace Model
get;
set;
}
/// <summary>
/// 隐患级别
/// </summary>
public string HiddenType
{
get;
set;
}
/// <summary>
/// 隐患类型
/// </summary>
public string HiddenHazardType
{
get;
set;
}
}
}