mirror of
https://github.com/tencentmusic/supersonic.git
synced 2025-12-14 22:25:19 +00:00
[knowledge](improve) add knowledge base dimension value task manage (#88)
This commit is contained in:
@@ -2,13 +2,15 @@ package com.tencent.supersonic.common.pojo.enums;
|
||||
|
||||
public enum TaskStatusEnum {
|
||||
|
||||
RUNNING("running", 0),
|
||||
|
||||
SUCCESS("success", 1),
|
||||
|
||||
ERROR("error", -1),
|
||||
|
||||
UNKNOWN("UNKNOWN", 2);
|
||||
PENDING("pending", 0),
|
||||
|
||||
RUNNING("running", 1),
|
||||
|
||||
SUCCESS("success", 2),
|
||||
|
||||
UNKNOWN("UNKNOWN", 3);
|
||||
|
||||
private String status;
|
||||
private Integer code;
|
||||
|
||||
Reference in New Issue
Block a user