| | |
| | | using WIDESEA_IAllocateService; |
| | | using WIDESEA_IInboundService; |
| | | using WIDESEA_Model.Models; |
| | | using WIDESEA_WMSServer.Controllers.Check; |
| | | |
| | | |
| | | namespace WIDESEA_WMSServer.Controllers.Allocate |
| | |
| | | [ApiController] |
| | | public class AllocateOrderController : ApiBaseController<IAllocateService, Dt_AllocateOrder> |
| | | { |
| | | public AllocateOrderController(IAllocateService service) : base(service) |
| | | private readonly ILogger<AllocateOrderController> _logger; |
| | | public AllocateOrderController(IAllocateService service, ILogger<AllocateOrderController> logger) : base(service) |
| | | { |
| | | _logger = logger; |
| | | } |
| | | |
| | | [HttpPost, Route("ReceiveAllocateOrder"), MethodParamsValidate, AllowAnonymous] |