服务端的TigerApi 框架,基于.NET6 2024 版本
Rodney Chen
2024-04-10 5d639c50896850ee8065ee9b54b986dffd4593e2
Tiger.Api/Controllers/WMS/T100ToWMS/MaterialInfoController.cs
@@ -9,7 +9,6 @@
using Tiger.Model;
using Tiger.Model.Entitys.WMS.DTOS;
using Tiger.Model.Minsun;
using Web.Core.Entities.Response;
namespace Tiger.Api.Controllers.WMS.T00ToWMS
{
@@ -242,15 +241,5 @@
            return Ok(response);
        }
        /// <summary>
        /// 获取超期物料
        /// </summary>
        /// <returns></returns>
        [HttpPost]
        [Route("[Controller]/[Action]")]
        public async Task<PageListModel<MaterialInfoDTO>> GetExtendedMaterial(PageInput<NullDTO> input)
        {
            return await _materialBus.GetExtendedMaterialAsync(input);
        }
    }
}