Skip to content

Commit

Permalink
#88 refactor: 속성 코멘트 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
JeongUijeong committed Dec 4, 2023
1 parent 7d794a4 commit a13fb67
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ public class Member extends BaseTimeEntity {

@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Comment("식별자")
@Comment("회원 식별자")
private Long id;
@Column(unique = true, nullable = false, length = 30)
@Comment("이메일")
@Comment("회원 이메일")
private String email;
@Column(nullable = false, length = 30)
@Comment("이름")
@Comment("회원 이름")
private String name;
@Column(nullable = false)
@Comment("암호화된 비밀번호")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
public class RefreshToken {

@Id
@Comment("회원 식별자")
@Comment("Refresh 토큰 식별자(회원 식별자)")
private Long id;
@Comment("Refresh 토큰")
private String token;
Expand Down

0 comments on commit a13fb67

Please sign in to comment.