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 { /// /// SIM系统示例,具体接口名称和接口设计请参考具体需求文档 /// [RemoteService] [Area("Business")] [Route("api/business/sim")] public class SIMController : AbpController { //private readonly IResourceExamineAppService _ResourceExamineAppService; public SIMController(IResourceExamineAppService ResourceExamineAppService) { //_ResourceExamineAppService = ResourceExamineAppService; } /// /// 异常问题升级规则 /// /// /// [HttpGet] [Route("demo")] public Task Demo() { //升级规则维护 throw new NotImplementedException(); } } }