yanjinhui
昨天 8cdcf8cb6fecf101bd7dd1db2e44f0cf5ddc0fd4
新建文件夹/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/WMSInfo/Inventory_BatchController.cs
@@ -1,5 +1,7 @@
锘縰sing Microsoft.AspNetCore.Http;
锘縰sing Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using WIDESEA_Core;
using WIDESEA_Core.BaseController;
using WIDESEA_IWMsInfoServices;
using WIDESEA_Model.Models;
@@ -13,5 +15,11 @@
        public Inventory_BatchController(IInventory_BatchServices service) : base(service)
        {
        }
        [HttpPost,Route("TransferInventory"),AllowAnonymous]
        public WebResponseContent TransferInventory([FromBody]int[] keys)
        {
            return Service.TransferInventory(keys);
        }
    }
}