| | |
| | | _locationService = locationService; |
| | | } |
| | | |
| | | |
| | | /// <summary> |
| | | /// æ£æ¥æ¯å¦éè¦è¿è¡ç§»åº |
| | | /// </summary> |
| | | /// <param name="taskNum">ä»»å¡å·</param> |
| | | /// <returns>ä»»å¡</returns> |
| | | [HttpPost, Route("TransferCheckAsync"), AllowAnonymous] |
| | | public async Task<WebResponseContent> TransferCheckAsync([FromBody] RequestTaskDto input) |
| | | { |
| | | 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> |
| | | /// åå²ä»»å¡åæ» |
| | | /// </summary> |
| | | /// <param name="input">è¯·æ±æ°æ®</param> |
| | | /// <returns></returns> |
| | | [HttpGet, AllowAnonymous, Route("TaskRollback")] |
| | | public WebResponseContent TaskRollback(int input) |
| | | { |
| | | return _task_HtyService.TaskRollback(input); |
| | | } |
| | | |
| | | } |