| | |
| | | using WIDESEA_DTO; |
| | | using static WIDESEA_DTO.RequestTaskDto; |
| | | |
| | | namespace WIDESEA_WMSServer.Controllers; |
| | | |
| | |
| | | return new WebResponseContent().OK(data: await _locationService.TransferCheckAsync(input)); |
| | | } |
| | | |
| | | /// <summary> |
| | | /// æ£æ¥å
¥åºæ¯å¦éè¦è¿è¡ç§»åº |
| | | /// </summary> |
| | | /// <param name="taskNum">ä»»å¡å·</param> |
| | | /// <returns>ä»»å¡</returns> |
| | | [HttpPost, Route("InTransferCheckAsync"), AllowAnonymous] |
| | | public async Task<WebResponseContent> InTransferCheckAsync([FromBody] RequestTaskDto input) |
| | | { |
| | | return new WebResponseContent().OK(data: await _locationService.InTransferCheckAsync(input)); |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 请æ±ä»»å¡å··é |
| | |
| | | { |
| | | return Service.CreateAndSendOutboundTask(saveModel); |
| | | } |
| | | |
| | | /// <summary> |
| | | /// ä¿®æ¹è½¦è½®å»å |
| | | /// </summary> |
| | | /// <param name="input">è¯·æ±æ°æ®</param> |
| | | /// <returns></returns> |
| | | [HttpPost, AllowAnonymous, Route("UpWheelsFlow")] |
| | | public WebResponseContent UpWheelsFlow([FromBody] SaveModel saveModel) |
| | | { |
| | | return Service.UpWheelsFlow(saveModel); |
| | | } |
| | | } |