Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FIX] 사용자 경험치 획득량 조정 #33

Merged
merged 1 commit into from
Nov 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public class Member extends BaseTimeEntity {
@Column(name = "member_lck_years")
private int memberLckYears;

@Column(name = "member_exp", columnDefinition = "INTEGER DEFAULT 0")
@Column(name = "member_exp", columnDefinition = "DOUBLE DEFAULT 0")
private double memberExp;

@OneToMany(mappedBy = "notificationTargetMember",cascade = ALL)
Expand Down Expand Up @@ -161,9 +161,9 @@ public void softDelete() {

public void updateMemberLckYears(int memberLckYears) { this.memberLckYears = memberLckYears;}

public void increaseExpPostContent() { this.memberExp += 0.6;}
public void increaseExpPostContent() { this.memberExp += 3.0;}

public void increaseExpPostComment() { this.memberExp += 3.0;}
public void increaseExpPostComment() { this.memberExp += 1.0;}

public void increaseExpPostLike() { this.memberExp += 1.0;}
public void increaseExpPostLike() { this.memberExp += 0.6;}
}
Loading