using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; using WIDESEA_Core; using WIDESEA_Core.Attributes; using WIDESEA_Core.BaseController; using WIDESEA_IOutboundService; using WIDESEA_Model.Models; namespace WIDESEA_WMSServer.Controllers.Outbound { /// /// MES成品提库单 /// [Route("api/MesRworkOutboundOrder")] [ApiController] public class MesRworkOutboundOrderController : ApiBaseController { public MesRworkOutboundOrderController(IMesRworkOutboundOrderService service) : base(service) { } /// /// 成品MES提库出库完后一包一包拣选 /// /// [HttpPost, Route("ProductDeliveryOrder"), AllowAnonymous] public WebResponseContent MesRworkOutPick(int OrderId, string InrPKCode, int Count = 0) { return Service.MesRworkOutPick(OrderId, InrPKCode, Count); } } }