大更新,添加喷煤历史报表历史趋势实时趋势等界面实体控制器服务类等等
This commit is contained in:
@ -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);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user