| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using Business.ResourceExamineManagement;
- using Business.ResourceExamineManagement.Dto;
- using Microsoft.AspNetCore.Mvc;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using Volo.Abp;
- using Volo.Abp.AspNetCore.Mvc;
- namespace Business.Controllers.SIM
- {
- /// <summary>
- /// SIM系统示例,具体接口名称和接口设计请参考具体需求文档
- /// </summary>
- [RemoteService]
- [Area("Business")]
- [Route("api/business/sim")]
- public class SIMController : AbpController
- {
- //private readonly IResourceExamineAppService _ResourceExamineAppService;
- public SIMController(IResourceExamineAppService ResourceExamineAppService)
- {
- //_ResourceExamineAppService = ResourceExamineAppService;
- }
- /// <summary>
- /// 异常问题升级规则
- /// </summary>
- /// <param name="input"></param>
- /// <returns></returns>
- [HttpGet]
- [Route("demo")]
- public Task<string> Demo()
- {
- //升级规则维护
- throw new NotImplementedException();
- }
- }
- }
|