dengjunjie
2025-10-28 dd05ce0fe597c0f4c9e3a02228e1b4f6188546aa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using WIDESEA_DTO.SquareCabin;
using WIDESEA_ISquareCabinServices;
using static WIDESEA_DTO.SquareCabin.TowcsDto;
 
namespace WIDESEA_WMSServer.Controllers
{
    [Route("api/Inventory")]
    [ApiController]
    public class InventoryController : ApiBaseController<IInventoryServices, Dt_Inventory>
    {
        public InventoryController(IInventoryServices service) : base(service)
        {
        }
 
        [HttpPost,Route("OrderFeedback"),AllowAnonymous]
        public ApiResponse<Dt_Inventory> OrderFeedback([FromBody]EdiOrderCallbackRequest request)
        {
            return Service.OrderFeedback(request);
        }
    }
}