24 lines
570 B
C#
24 lines
570 B
C#
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.ReportManage.Controllers
|
|
{
|
|
[Area("ReportManage")]
|
|
public class RtReportController : BaseController
|
|
{
|
|
public RtReportService _rtReportService { get; set; }
|
|
|
|
[HttpGet]
|
|
public async Task<ActionResult> GetRtData()
|
|
{
|
|
var data = await _rtReportService.GetRtSubsysTagValue();
|
|
return Content(data);
|
|
}
|
|
|
|
|
|
}
|
|
}
|