[update] 模型版本号字段添加
This commit is contained in:
parent
1f03ba5abe
commit
e765907cd0
@ -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;
|
||||
}
|
||||
|
@ -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;
|
||||
}
|
||||
|
@ -40,4 +40,9 @@ public class ModelServiceSaveReqVO {
|
||||
private String apiUrl;
|
||||
|
||||
|
||||
/**
|
||||
* 模型版本号
|
||||
*/
|
||||
@Schema(description = "模型版本号", example = "1.0.0")
|
||||
private String version;
|
||||
}
|
||||
|
@ -68,4 +68,8 @@ public class ModelServiceDO extends BaseDO {
|
||||
|
||||
private String apiUrl;
|
||||
|
||||
/**
|
||||
* 模型版本号
|
||||
*/
|
||||
private String version;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user