CodeManagement/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/TaskController.cs
@@ -222,9 +222,8 @@
    /// <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)
    public async Task<WebResponseContent> QueryStockInfoForRealTrayJZAsync(string ProductLine, string PalletCode)
    {
        return await Service.QueryStockInfoForRealTrayJZAsync(ProductLine);
        return await Service.QueryStockInfoForRealTrayJZAsync(ProductLine,PalletCode);
    }
}