후원랭킹 기간 선택 반영

프로필 업데이트에 후원랭킹 기간 선택을 추가하고
프로필 후원랭킹 조회가 선택한 기간을 사용한다
This commit is contained in:
2026-02-03 15:48:42 +09:00
parent 5eca3f770c
commit f1f80ae386
6 changed files with 99 additions and 11 deletions

View File

@@ -47,6 +47,9 @@ data class Member(
var isVisibleDonationRank: Boolean = true,
@Enumerated(value = EnumType.STRING)
var donationRankingPeriod: DonationRankingPeriod? = DonationRankingPeriod.CUMULATIVE,
var isActive: Boolean = true,
var container: String = "web",
@@ -178,3 +181,7 @@ enum class MemberRole {
enum class MemberProvider {
EMAIL, KAKAO, GOOGLE, APPLE, LINE
}
enum class DonationRankingPeriod {
WEEKLY, CUMULATIVE
}