28 lines
739 B
C#
28 lines
739 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
using System;
|
|
using System.Threading.Tasks;
|
|
using HT.Cloud.Service.ChartsManage;
|
|
using HT.Cloud.Service.ReportManage;
|
|
using HT.Cloud.Code;
|
|
|
|
namespace HT.Cloud.Web.Areas.ReportManage.Controllers
|
|
{
|
|
[Area("ReportManage")]
|
|
public class RtReportController : BaseController
|
|
{
|
|
public RtReportService _rtReportService { get; set; }
|
|
/// <summary>
|
|
/// 绑定数据仓库的数据库ID
|
|
/// </summary>
|
|
private string systemDescription = GlobalContext.SystemConfig.SystemDescription;
|
|
[HttpGet]
|
|
public async Task<ActionResult> GetRtData()
|
|
{
|
|
var data = await _rtReportService.GetRtSubsysTagValue();
|
|
return Content(data);
|
|
}
|
|
|
|
|
|
}
|
|
}
|