12345678910111213141516171819202122232425262728293031 |
- using System.Threading.Tasks;
- using GxPress.Result.DataCenter;
- using Microsoft.AspNetCore.Authorization;
- using Microsoft.AspNetCore.Mvc;
- namespace GxPress.Api.AdminControllers
- {
- /// <summary>
- /// 平台数据
- /// </summary>
- [Route("api/admin/platform")]
- [ApiController]
- [Authorize]
- public class AdminPlatformDataController : Controller
- {
- public AdminPlatformDataController()
- {
- }
- /// <summary>
- /// 平台数据
- /// </summary>
- /// <returns></returns>
- [HttpGet("data")]
- public async Task<PlatformDataResult> GetPlatformDataResult()
- {
- var result = new PlatformDataResult();
- return result;
- }
- }
- }
|