可视化修改
Some checks failed
CodeQL / Analyze (csharp) (push) Has been cancelled
CodeQL / Analyze (javascript) (push) Has been cancelled

This commit is contained in:
dell
2025-10-17 09:15:31 +08:00
parent 84800d2d6e
commit c15babafd3
49 changed files with 649 additions and 40 deletions

View File

@ -67,5 +67,12 @@ namespace HT.Cloud.Web.Areas.DevicesManage.Controllers
var data = _realTimeDeviceState.GetRealDeviceTag(systemDescription);
return Content(data.Result);
}
}
[HttpPost]
public async Task<ActionResult> GetRealTableData(string[] grouptype)
{
var data = _realTimeDeviceState.GetRealTableData(grouptype[0]);
return Content(data.Result);
}
}
}