1
hutongqing
2024-12-29 89051aef8a2c1a85d457914cf6317fe70e0e321c
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Outbound/OutboundOrderController.cs
@@ -11,6 +11,9 @@
namespace WIDESEA_WMSServer.Controllers.Outbound
{
    /// <summary>
    /// å‡ºåº“单
    /// </summary>
    [Route("api/OutboundOrder")]
    [ApiController]
    public class OutboundOrderController : ApiBaseController<IOutboundOrderService, Dt_OutboundOrder>
@@ -19,16 +22,11 @@
        {
        }
        [HttpPost,Route("TestOutUpload"),AllowAnonymous]
        public WebResponseContent TestOutUpload(int id)
        {
            return Service.TestOutUpload(id);
        }
        [HttpPost, Route("GetOutboundOrder"), AllowAnonymous]
        public WebResponseContent GetOutboundOrder([FromBody] OutboundOrderGetDTO outboundOrderGetDTO)
        {
            return Service.GetOutboundOrder(outboundOrderGetDTO);
        }
        [HttpPost, Route("GetOutboundOrderDetail"), AllowAnonymous]
        public WebResponseContent GetOutboundOrderDetail([FromBody] string OrderNo)
        {
            return Service.GetOutboundOrderDetail(OrderNo);
        }
    }
}