Files
lablesys_backend/src/main/java/com/labelsys/backend/enums/ConfigMode.java
2026-04-29 14:02:01 +08:00

10 lines
271 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.labelsys.backend.enums;
import io.swagger.v3.oas.annotations.media.Schema;
@Schema(description = "模型配置模式枚举值SELECT:选择已有模型配置、MANUAL手动录入新模型")
public enum ConfigMode {
SELECT,
MANUAL
}