| | |
| | | 锘縰sing Microsoft.AspNetCore.Http; |
| | | using Microsoft.AspNetCore.Mvc; |
| | | using WIDESEA_DTO.SquareCabin; |
| | | using WIDESEA_ISquareCabinServices; |
| | | using WIDESEA_Model.Models.SquareCabin; |
| | | using static WIDESEA_DTO.SquareCabin.TowcsDto; |
| | | |
| | | namespace WIDESEA_WMSServer.Controllers |
| | | { |
| | |
| | | public InventoryController(IInventoryServices service) : base(service) |
| | | { |
| | | } |
| | | |
| | | [HttpPost,Route("OrderFeedback"),AllowAnonymous] |
| | | public ApiResponse<Dt_Inventory> OrderFeedback([FromBody]EdiOrderCallbackRequest request) |
| | | { |
| | | return Service.OrderFeedback(request); |
| | | } |
| | | } |
| | | } |