using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using WIDESEA_Core; using WIDESEA_Core.BaseController; using WIDESEA_ISquareCabinServices; using WIDESEA_Model.Models; namespace WIDESEA_WMSServer.Controllers { [Route("api/DeliveryOrder")] [ApiController] public class DeliveryOrderController : ApiBaseController { public DeliveryOrderController(IDeliveryOrderServices service) : base(service) { } [HttpPost,Route("GetUpstreamOutOrder"),AllowAnonymous] public WebResponseContent GetUpstreamOutOrder() { return Service.GetUpstreamOutOrder(); } /// /// 盘点出库接口 /// /// /// [HttpPost, Route("InventoryGood"), AllowAnonymous] public WebResponseContent InventoryGood(string externalOrderNo) { return Service.InventoryGood(externalOrderNo); } } }