Add PROCESSING to Tool.ReviewType

This commit is contained in:
2024-01-31 18:07:01 +08:00
parent 7aca58f1de
commit 1ce60d1bfb

View File

@@ -21,7 +21,7 @@ class Tool {
* @since 1.0.0 * @since 1.0.0
*/ */
enum class ReviewType(@field:EnumValue @field:JsonValue val code: String) { enum class ReviewType(@field:EnumValue @field:JsonValue val code: String) {
NONE("NONE"), PASS("PASS"), REJECT("REJECT") NONE("NONE"), PROCESSING("PROCESSING"), PASS("PASS"), REJECT("REJECT")
} }
/** /**