提交 | 用户 | 时间 | ||
7fd198 | 1 | package com.iailab.module.model.mdk.common.enums; |
潘 | 2 | |
3 | import org.jetbrains.annotations.Contract; | |
4 | ||
5 | /** | |
6 | * 预测项的预测状态 | |
7 | */ | |
8 | public enum ItemPredictStatus { | |
9 | ||
10 | PREDICTING(1), | |
11 | ||
12 | SUCCESS(2), | |
13 | ||
14 | FAILED(3); | |
15 | ||
16 | private Integer value; | |
17 | ||
18 | @Contract(pure = true) | |
19 | ItemPredictStatus(Integer value) { | |
20 | this.value = value; | |
21 | } | |
22 | ||
23 | @Contract(pure = true) | |
24 | public Integer getValue() { | |
25 | return value; | |
26 | } | |
27 | } |