添加项目文件。

This commit is contained in:
dell
2023-03-03 16:07:50 +08:00
parent 2c462551b6
commit 011039960e
585 changed files with 362460 additions and 0 deletions

View File

@ -0,0 +1,33 @@
using System;
using System.Linq;
using System.Threading.Tasks;
using System.Collections.Generic;
using Microsoft.AspNetCore.Mvc;
using HT.Cloud.Code;
using HT.Cloud.Domain.ChartsManage;
using HT.Cloud.Service;
using Microsoft.AspNetCore.Authorization;
using HT.Cloud.Service.DevicesManage;
namespace HT.Cloud.Web.Areas.DevicesManage.Controllers
{
/// <summary>
/// 创 建cdl
/// 日 期2023-03-01 15:05
/// 描 述:变量信息控制器类
/// </summary>
[Area("DevicesManage")]
public class MetaTagController : BaseController
{
public MetaTagService _metaTagService { get;set;}
[HttpGet]
public async Task<ActionResult> GetAllNode()
{
var data = await _metaTagService.GetALLNode();
return Content(data);
}
}
}