Skip to content

Commit

Permalink
fix: gpa 데이터타입 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
ay-eonii committed Aug 17, 2023
1 parent 1298865 commit 66da4be
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class Application extends BaseTimeEntity {
private String name;

@Column(nullable = false)
private float gpa;
private String gpa;

@Column(nullable = false)
private String major;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class ApplicationRequest {
private String name;
private String sid;
private String phone;
private float gpa;
private String gpa;
private String major;
private int grade;
private String project;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class ApplicationResponse {

private Long id;
private String name;
private float gpa;
private String gpa;
private int grade;
private Position position;
private String career;
Expand Down

0 comments on commit 66da4be

Please sign in to comment.