Skip to content

Commit

Permalink
Merge pull request #148 from Meetfolio-Project-CodeZ-Team/develop
Browse files Browse the repository at this point in the history
Merge: Main Merge 32차
  • Loading branch information
kylo-dev authored May 19, 2024
2 parents 062f417 + 9e96467 commit 317378f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public static class ModelItem {
@Schema(description = "모델 id")
private Long modelId;
@Schema(description = "모델 버전")
private double version;
private String version;
@Schema(description = "모델명")
private String modelName;
@Schema(description = "성능")
Expand All @@ -71,7 +71,7 @@ public static class ModelResult {
@Schema(description = "모델 id")
private Long modelId;
@Schema(description = "모델 버전")
private double version;
private String version;
@Schema(description = "모델명")
private String modelName;
@Schema(description = "파일명")
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/codez4/meetfolio/domain/model/Model.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class Model extends BaseTimeEntity {
private String name;

@Column(nullable = false)
private Double version;
private String version;

@Column(nullable = false)
private String fileName;
Expand Down

0 comments on commit 317378f

Please sign in to comment.