Skip to content

Commit

Permalink
BE: [fix] User Entity에서 SessionId조회 오타 수정 #6
Browse files Browse the repository at this point in the history
  • Loading branch information
JongbeomLee623 committed Nov 2, 2024
1 parent 1d36f40 commit fe8f583
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ public class User {
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer userId;

@Column(name = "sessionID", nullable = false)
private int sessionID; // 세션 ID (int 타입)
@Column(name = "sessionId", nullable = false)
private int sessionId; // 세션 ID (int 타입)

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

0 comments on commit fe8f583

Please sign in to comment.