TASK:模特相关接口;

This commit is contained in:
shahaibo
2023-10-04 06:47:48 +08:00
parent 612fb61ac1
commit ee32111599
15 changed files with 127 additions and 43 deletions

View File

@@ -0,0 +1,28 @@
package com.ai.da.model.enums;
import com.fasterxml.jackson.annotation.JsonValue;
/**
* @Author: SHAHAIBO
* @Date: 2023/08/01 17:21
* @Description: 模特类型枚举类
*/
public enum ModelType implements IEnumDisplay {
SYSTEM("System"),
LIBRARY("Library")
;
private String value;
ModelType(String value) {
this.value = value;
}
@Override
@JsonValue
public String getValue() {
return this.value;
}
}