潘志宝
2024-08-26 368beb362d7ffb017174d7d79a16032d0647776f
提交 | 用户 | 时间
a6de49 1 package com.iailab.common.enums;
H 2
3 /**
4  * @author PanZhibao
5  * @Description
6  * @createTime 2023年07月20日 08:47:00
7  */
8 public enum ModelTypeEnum {
9     Python("Python"),
10     MATLAB("MATLAB");
11
12     private String value;
13
14     ModelTypeEnum(String value) {
15         this.value = value;
16     }
17
18     public String value() {
19         return this.value;
20     }
21 }