|  |  | 
 |  |  | using Microsoft.AspNetCore.Http; | 
 |  |  | using Microsoft.AspNetCore.Authorization; | 
 |  |  | using Microsoft.AspNetCore.Http; | 
 |  |  | using Microsoft.AspNetCore.Mvc; | 
 |  |  | using WIDESEA_Core; | 
 |  |  | using WIDESEA_Core.BaseController; | 
 |  |  | 
 |  |  |  | 
 |  |  | namespace WIDESEA_WMSServer.Controllers.Inbound | 
 |  |  | { | 
 |  |  |     /// <summary> | 
 |  |  |     /// æ¶è´§å | 
 |  |  |     /// </summary> | 
 |  |  |     [Route("api/[controller]")] | 
 |  |  |     [ApiController] | 
 |  |  |     public class ReceiveOrderController : ApiBaseController<IReceiveOrderService, Dt_ReceiveOrder> | 
 |  |  | 
 |  |  |         /// <summary> | 
 |  |  |         /// æ ¹æ®æ¶è´§åå建å
¥åºå | 
 |  |  |         /// </summary> | 
 |  |  |         /// <param name="receiveOrderId"></param> | 
 |  |  |         /// <param name="receiveOrderId">æ¶è´§åç¼å·</param> | 
 |  |  |         /// <returns></returns> | 
 |  |  |         [HttpPost, HttpGet, Route("CreateInboundOrder")] | 
 |  |  |         public WebResponseContent CreateInboundOrder(int receiveOrderId) | 
 |  |  | 
 |  |  |         /// </summary> | 
 |  |  |         /// <returns></returns> | 
 |  |  |         [HttpPost, HttpGet, Route("GetReceiveOrders")] | 
 |  |  |         public WebResponseContent GetReceiveOrders([FromBody]SaveModel saveModel) | 
 |  |  |         public WebResponseContent GetReceiveOrders([FromBody] SaveModel saveModel) | 
 |  |  |         { | 
 |  |  |             return Service.GetReceiveOrders(saveModel); | 
 |  |  |         } |