大更新,添加喷煤历史报表历史趋势实时趋势等界面实体控制器服务类等等

This commit is contained in:
dell
2023-08-11 16:04:39 +08:00
parent 361c3db5f3
commit 2587fe7fa3
22 changed files with 6699 additions and 27 deletions

View File

@ -0,0 +1,23 @@
using Microsoft.AspNetCore.Mvc;
using System;
using System.Threading.Tasks;
using HT.Cloud.Service.ChartsManage;
using HT.Cloud.Service.ReportManage;
namespace HT.Cloud.Web.Areas.PenMeiReportManage.Controllers
{
[Area("PenMeiReportManage")]
public class RtReportController : BaseController
{
public RtReportService _rtReportService { get; set; }
[HttpGet]
public async Task<ActionResult> GetRtData()
{
var data = await _rtReportService.GetRtSubsysTagValue();
return Content(data);
}
}
}