wanshenmean
2025-03-27 9c4eacfc93f21873f87346ea6e8e825c8d8815dd
CodeManagement/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/TaskController.cs
@@ -215,4 +215,16 @@
    {
        return await Service.SetEmptyOutbyInToOutOneAsync(input);
    }
    /// <summary>
    /// 静置查询实托
    /// </summary>
    /// <param name="ProductLine">产线</param>
    /// <returns></returns>
    [HttpPost, AllowAnonymous, Route("QueryStockInfoForRealTrayJZAsync")]
    [TypeFilter(typeof(ThrottleFilter), Arguments = new object[] { 5 })] // 5秒节流
    public async Task<WebResponseContent> QueryStockInfoForRealTrayJZAsync(string ProductLine)
    {
        return await Service.QueryStockInfoForRealTrayJZAsync(ProductLine);
    }
}