| | |
| | | 锘縰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; |
| | |
| | | public OutboundOrderController(IOutboundOrderService service) : base(service) |
| | | { |
| | | } |
| | | |
| | | //MES涓嬪彂鍑哄簱璁㈠崟 |
| | | [HttpPost, HttpGet, Route("addOutboundOrder"), AllowAnonymous] |
| | | public Messages addOutboundOrder([FromBody] OutBound OutBound) |
| | | { |
| | | return Service.addOutboundOrder(OutBound); |
| | | } |
| | | } |
| | | } |