SIMController.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. using Business.ResourceExamineManagement;
  2. using Business.ResourceExamineManagement.Dto;
  3. using Microsoft.AspNetCore.Mvc;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using Volo.Abp;
  10. using Volo.Abp.AspNetCore.Mvc;
  11. namespace Business.Controllers.SIM
  12. {
  13. /// <summary>
  14. /// SIM系统示例,具体接口名称和接口设计请参考具体需求文档
  15. /// </summary>
  16. [RemoteService]
  17. [Area("Business")]
  18. [Route("api/business/sim")]
  19. public class SIMController : AbpController
  20. {
  21. //private readonly IResourceExamineAppService _ResourceExamineAppService;
  22. public SIMController(IResourceExamineAppService ResourceExamineAppService)
  23. {
  24. //_ResourceExamineAppService = ResourceExamineAppService;
  25. }
  26. /// <summary>
  27. /// 异常问题升级规则
  28. /// </summary>
  29. /// <param name="input"></param>
  30. /// <returns></returns>
  31. [HttpGet]
  32. [Route("demo")]
  33. public Task<string> Demo()
  34. {
  35. //升级规则维护
  36. throw new NotImplementedException();
  37. }
  38. }
  39. }