新版推送
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user