[update] 模型版本号字段添加

This commit is contained in:
Liuyang 2025-01-17 19:16:56 +08:00
parent 1f03ba5abe
commit e765907cd0
4 changed files with 22 additions and 0 deletions

View File

@ -43,4 +43,10 @@ public class ModelServicePageReqVO extends PageParam {
@Schema(description = "apiUrl", example = "www.sdada.com")
private String apiUrl;
/**
* 模型版本号
*/
@Schema(description = "模型版本号", example = "1.0.0")
private String version;
}

View File

@ -65,4 +65,11 @@ public class ModelServiceRespVO {
@Schema(description = "apiUrl", example = "www.sdada.com")
private String apiUrl;
/**
* 模型版本号
*/
@Schema(description = "模型版本号", example = "1.0.0")
@ExcelProperty("版本号")
private String version;
}

View File

@ -40,4 +40,9 @@ public class ModelServiceSaveReqVO {
private String apiUrl;
/**
* 模型版本号
*/
@Schema(description = "模型版本号", example = "1.0.0")
private String version;
}

View File

@ -68,4 +68,8 @@ public class ModelServiceDO extends BaseDO {
private String apiUrl;
/**
* 模型版本号
*/
private String version;
}