fix:任务拆解

This commit is contained in:
2026-07-15 14:59:05 +08:00
parent a066ec3637
commit 90c4a9e8e9
16 changed files with 206 additions and 9 deletions

View File

@@ -44,6 +44,11 @@
<optional>true</optional>
</dependency>
<dependency>
<groupId>cn.nl.cloud</groupId>
<artifactId>nl-spring-boot-starter-execute</artifactId>
</dependency>
</dependencies>
</project>

View File

@@ -20,19 +20,17 @@ public enum TransportTaskStatusEnum {
EXECUTING("60", "执行中"),
PICKED("61", "已取货搬运中"),
PICKED("65", "已取货搬运中"),
FINISHED_CALLBACK_PENDING("67", "外部完成待业务处理"),
FINISHED_CALLBACK_PENDING("75", "外部完成待业务处理"),
CANCEL_EXTERNAL_PENDING("68", "外部取消"),
CANCEL_CALLBACK_PENDING("85", "外部取消待业务处理"),
CANCEL_CALLBACK_PENDING("69", "外部取消待业务处理"),
FINISHED("79", "完成"),
FINISHED("70", "完成"),
CANCELLED("89", "取消"),
CANCELLED("80", "取消"),
FAILED("90", "失败");
FAILED("99", "失败");
private final String code;
private final String name;