增强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
@@ -171,5 +171,28 @@ namespace WebAPI.Controllers
return responeData;
}
#endregion
#region
/// <summary>
/// 隐患类型下拉
/// </summary>
/// <returns></returns>
public Model.ResponeData getHiddenTypeList()
{
var responeData = new Model.ResponeData();
try
{
var getDataList = BLL.ConstValue.getHiddenTypeList("Hiddendangertype");
responeData.data = new { getDataList };
}
catch (Exception ex)
{
responeData.code = 0;
responeData.message = ex.Message;
}
return responeData;
}
#endregion
}
}