yanjinhui
3 天以前 c034f4a7282f8b8d49e8468b6fd0acb60d8dfcc0
新建文件夹/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/SquareCabin/InventoryController.cs
@@ -25,9 +25,9 @@
        }
        [HttpPost,Route("GetInventoryList"),AllowAnonymous]
        public WebResponseContent GetInventoryList(string goods_no, string batch_num)
        public WebResponseContent GetInventoryList([FromBody]int[] key)
        {
            return Service.GetInventoryList(goods_no, batch_num);
            return Service.GetInventoryList(key);
        }
    }
}