| | |
| | | 锘縰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; |
| | |
| | | public Inventory_BatchController(IInventory_BatchServices service) : base(service) |
| | | { |
| | | } |
| | | |
| | | [HttpPost,Route("TransferInventory"),AllowAnonymous] |
| | | public WebResponseContent TransferInventory([FromBody]int[] keys) |
| | | { |
| | | return Service.TransferInventory(keys); |
| | | } |
| | | } |
| | | } |