潘志宝
2024-09-09 ed81b7371e376df35448b81531d30dd9024bd44a
提交 | 用户 | 时间
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 }