package com.iailab.common.enums; /** * @author PanZhibao * @Description * @createTime 2023年07月20日 08:47:00 */ public enum ModelTypeEnum { Python("Python"), MATLAB("MATLAB"); private String value; ModelTypeEnum(String value) { this.value = value; } public String value() { return this.value; } }