新版推送

This commit is contained in:
dell
2023-12-20 15:51:03 +08:00
parent 0ed29a90d4
commit 6025fb75a3
15 changed files with 4399 additions and 316 deletions

View File

@ -86,6 +86,17 @@ namespace HT.Cloud.Web.Areas.ReportManage.Controllers
return Content(data);
}
[HttpPost]
public async Task<ActionResult> GetAlarmHistory(Alarm_History_Params alarm_History_Params)
{
string systemName = "喷煤系统";
var StartTime = Gettime(alarm_History_Params.StartTime);
var EndTime = Gettime(alarm_History_Params.EndTime);
var data = await _historyAlarmService.GetAlarmHistory(StartTime, EndTime, systemName);
return Content(data);
}
[HttpPost]
public async Task<ActionResult> GetAlarmSubSystem(SubSystem_Params subSystem_Params)
{
string systemName = "喷煤系统";
@ -214,7 +225,11 @@ namespace HT.Cloud.Web.Areas.ReportManage.Controllers
{
public string Hhour { get; set; }
}
public class Alarm_History_Params
{
public string StartTime { get; set; }
public string EndTime { get; set; }
}
public class Alarm_ACC_Params