This commit is contained in:
2024-09-03 16:24:17 +08:00
416 changed files with 39470 additions and 4178 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
}
}