Changeset ad4243e in Git for src/main/java/com/wediscussmovies/project/model/primarykeys/UserGenresPK.java
- Timestamp:
- 02/07/22 21:26:03 (3 years ago)
- Branches:
- main
- Children:
- 0226942
- Parents:
- 7f36551 (diff), 3c0f9a9 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - git-author:
- Mato-77 <56981531+Mato-77@…> (02/07/22 21:26:03)
- git-committer:
- GitHub <noreply@…> (02/07/22 21:26:03)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/java/com/wediscussmovies/project/model/primarykeys/UserGenresPK.java
r7f36551 rad4243e 1 1 package com.wediscussmovies.project.model.primarykeys; 2 3 import lombok.Data; 2 4 3 5 import javax.persistence.Column; … … 6 8 import java.io.Serializable; 7 9 10 @Data 8 11 @Embeddable 9 12 public class UserGenresPK implements Serializable { … … 30 33 UserGenresPK that = (UserGenresPK) o; 31 34 32 33 34 35 return userId == that.userId && genreId == that.genreId; 35 36 }
Note:
See TracChangeset
for help on using the changeset viewer.