zhanghonglin
10 天以前 cfb3f2c7e9cde8cc2eb2a19263d0802c0c5410a3
项目代码/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Basic/OutboundOrderController.cs
@@ -1,5 +1,8 @@
锘縰sing Microsoft.AspNetCore.Mvc;
锘縰sing Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using WIDESEA_Core;
using WIDESEA_Core.BaseController;
using WIDESEA_DTO.MES;
using WIDESEA_IBasicService;
using WIDESEA_Model.Models.Outbound;
using WIDESEAWCS_ITaskInfoService;
@@ -14,5 +17,12 @@
        public OutboundOrderController(IOutboundOrderService service) : base(service)
        {
        }
        //MES涓嬪彂鍑哄簱璁㈠崟
        [HttpPost, HttpGet, Route("addOutboundOrder"), AllowAnonymous]
        public Messages addOutboundOrder([FromBody] OutBound OutBound)
        {
            return Service.addOutboundOrder(OutBound);
        }
    }
}