Skip to content

Commit

Permalink
fix: AlertMessage Equals&HashCode 추가
Browse files Browse the repository at this point in the history
- 테스트 정상화를 위해 AlertMessage Equals&HashCode 추가
  • Loading branch information
devholic22 committed Jul 13, 2024
1 parent 976ea50 commit 734c23c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/java/com/atwoz/alert/domain/vo/AlertMessage.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@
import jakarta.persistence.Embeddable;
import lombok.AccessLevel;
import lombok.AllArgsConstructor;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.NoArgsConstructor;

@Getter
@EqualsAndHashCode
@AllArgsConstructor(access = AccessLevel.PRIVATE)
@NoArgsConstructor(access = AccessLevel.PROTECTED)
@Embeddable
Expand Down

0 comments on commit 734c23c

Please sign in to comment.