| | |
| | | using Microsoft.AspNetCore.Http; |
| | | using Microsoft.AspNetCore.Authorization; |
| | | using Microsoft.AspNetCore.Http; |
| | | using Microsoft.AspNetCore.Mvc; |
| | | using WIDESEA_Core; |
| | | using WIDESEA_Core.BaseController; |
| | |
| | | public OutboundOrderDetailController(IOutboundOrderDetailService service) : base(service) |
| | | { |
| | | } |
| | | |
| | | /// <summary> |
| | | /// è·ååºåºå详æ
|
| | | /// </summary> |
| | | /// <param name="saveModel"></param> |
| | | /// <returns></returns> |
| | | [HttpPost, Route("GetOutboundOrderDetails"), AllowAnonymous] |
| | | public WebResponseContent GetOutboundOrderDetails([FromBody] SaveModel saveModel) |
| | | { |
| | | return Service.GetOutboundOrderDetails(saveModel); |
| | | } |
| | | } |
| | | } |