chore: 报告状态统一

This commit is contained in:
fit2-zhao 2024-05-16 14:33:27 +08:00 committed by Craftsman
parent dd97da9e43
commit d59eade541
2 changed files with 48 additions and 0 deletions

View File

@ -0,0 +1,27 @@
package io.metersphere.sdk.constants;
/**
* 报告执行状态
*/
public enum ReportExecStatus {
/**
* 未执行
*/
PENDING,
/**
* 执行中
*/
RUNNING,
/**
* 重新执行
*/
RERUNNING,
/**
* 已停止
*/
STOPPED,
/**
* 已完成
*/
COMPLETED
}

View File

@ -0,0 +1,21 @@
package io.metersphere.sdk.constants;
/**
* 报告状态
*/
public enum ReportStatus {
/**
* 成功
*/
SUCCESS,
/**
* 错误
*/
ERROR,
/**
* 误报
*/
FAKE_ERROR
}