wanshenmean
2025-03-24 eaf30f88591d78699fdacf489e4aa45ac6775272
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);
    }
}