Skip to content

Commit

Permalink
feat : create updateOwnerMemberId for photo entity
Browse files Browse the repository at this point in the history
  • Loading branch information
gmkim20713 committed Jul 27, 2024
1 parent 7367384 commit 4b20ec0
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,11 @@ public String getId() {
return photoId;
}

public PhotoEntity updateOwnerMemberId(String ownerMemberId) {
this.ownerMemberId = ownerMemberId;
return this;
}

public PhotoEntity updateAlbumId(String albumId) {
this.albumId = albumId;
return this;
Expand Down

0 comments on commit 4b20ec0

Please sign in to comment.