| | |
| | | 锘縰sing Microsoft.AspNetCore.Mvc; |
| | | using WIDESEA_BusinessServices; |
| | | using WIDESEA_Core.BaseController; |
| | | using WIDESEA_DTO.Order; |
| | | using WIDESEA_IBusinessServices; |
| | | using WIDESEA_IOrderServices; |
| | | using WIDESEA_Model.Models; |
| | |
| | | _httpContextAccessor = httpContextAccessor; |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 鑾峰彇鍑哄簱鍗曟嵁淇℃伅 |
| | | /// </summary> |
| | | /// <param name="outboundOrderGetDTO"></param> |
| | | /// <returns></returns> |
| | | [HttpPost, AllowAnonymous, Route("GetOutboundOrder")] |
| | | public WebResponseContent GetOutboundOrder([FromBody]OutboundOrderGetDTO outboundOrderGetDTO) |
| | | { |
| | | return Service.GetOutboundOrder(outboundOrderGetDTO); |
| | | } |
| | | |
| | | [HttpPost, AllowAnonymous, Route("GetOutboundOrderDetail")] |
| | | public WebResponseContent GetOutboundOrder(int id) |
| | | { |
| | | return Service.GetOutboundOrder(id); |
| | | } |
| | | } |
| | | } |