opt:1.完善外部API接口。

This commit is contained in:
2026-03-06 16:53:22 +08:00
parent 97dab61f8c
commit 0acfa13002
8 changed files with 39 additions and 10 deletions

View File

@@ -66,4 +66,17 @@ public interface TaskAPI {
* @return
*/
boolean queryTaskInfoByDestination(String destination);
/**
* 根据任务号查询任务
* @param taskCode
* @return
*/
WebResponse queryTaskInfoByTaskCode(String taskCode);
/**
* 查询当前未完成任务
* @return
*/
WebResponse queryNotFinishTaskInfos();
}