AdminPlatformDataController.cs 740 B

12345678910111213141516171819202122232425262728293031
  1. using System.Threading.Tasks;
  2. using GxPress.Result.DataCenter;
  3. using Microsoft.AspNetCore.Authorization;
  4. using Microsoft.AspNetCore.Mvc;
  5. namespace GxPress.Api.AdminControllers
  6. {
  7. /// <summary>
  8. /// 平台数据
  9. /// </summary>
  10. [Route("api/admin/platform")]
  11. [ApiController]
  12. [Authorize]
  13. public class AdminPlatformDataController : Controller
  14. {
  15. public AdminPlatformDataController()
  16. {
  17. }
  18. /// <summary>
  19. /// 平台数据
  20. /// </summary>
  21. /// <returns></returns>
  22. [HttpGet("data")]
  23. public async Task<PlatformDataResult> GetPlatformDataResult()
  24. {
  25. var result = new PlatformDataResult();
  26. return result;
  27. }
  28. }
  29. }