wanshenmean
2025-03-27 0d9fb6555efa42e27de4d57d3fb7b8d82a78ef45
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);
    }
}