| | |
| | | /// </summary> |
| | | /// <param name="saveModel">ä»»å¡å·</param> |
| | | /// <returns>æåæå¤±è´¥</returns> |
| | | //[HttpGet, Route("CompleteTaskByStation"), AllowAnonymous] |
| | | //public async Task<WebResponseContent> CompleteTaskByStation(int taskNum) |
| | | //{ |
| | | // return await _taskService.CompleteTaskByStation(taskNum); |
| | | //} |
| | | [HttpGet, Route("confirmTask"), AllowAnonymous] |
| | | public WebResponseContent confirmTask(int taskNum) |
| | | { |
| | | return _taskService.confirmTask(taskNum); |
| | | } |
| | | |
| | | /// <summary> |
| | | /// æ£æ¥æ¯å¦éè¦è¿è¡ç§»åº |
| | |
| | | |
| | | |
| | | /// <summary> |
| | | /// 请æ±ä»»å¡å··é |
| | | /// 请æ±ä»»å¡å
¥åº |
| | | /// </summary> |
| | | /// <param name="input">è¯·æ±æ°æ®</param> |
| | | /// <returns></returns> |
| | | [HttpPost, AllowAnonymous, Route("RequestInTask")] |
| | | public async Task<WebResponseContent> RequestInTask([FromBody] RequestTaskDto input) |
| | | [HttpPost, AllowAnonymous, Route("CreateInboundTask")] |
| | | public async Task<WebResponseContent> RequestInTask([FromBody] SaveModel input) |
| | | { |
| | | return await Service.RequestInTask(input); |
| | | } |