회원탈퇴 API 추가

This commit is contained in:
2023-08-02 16:57:26 +09:00
parent baad5653e8
commit d9f6ac01f4
6 changed files with 65 additions and 0 deletions

View File

@@ -41,6 +41,9 @@ data class Member(
@OneToMany(mappedBy = "creator")
var follower: MutableList<CreatorFollowing> = mutableListOf()
@OneToMany(mappedBy = "member", cascade = [CascadeType.ALL])
val signOutReasons: MutableList<SignOut> = mutableListOf()
@OneToOne(mappedBy = "member", fetch = FetchType.LAZY)
var notification: MemberNotification? = null