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 { /// /// 安灯系统示例,具体接口名称和接口设计请参考具体需求文档 /// [RemoteService] [Area("Business")] [Route("api/business/andon")] public class AndonController : AbpController { //private readonly IResourceExamineAppService _ResourceExamineAppService; public AndonController(IResourceExamineAppService ResourceExamineAppService) { //_ResourceExamineAppService = ResourceExamineAppService; } /// /// 待收货看板 /// /// /// [HttpGet] [Route("demo")] public Task Demo() { //收货通知组织、收货通知日期、收货通知单号、收货申请人、单据类型、供应商编码、供应商名称、已等待收货时间、物料编码、物料名称、规格型号、数量 throw new NotImplementedException(); } } }