Skip to content

Commit

Permalink
Merge pull request #33 from Team-Wable/fix/#32
Browse files Browse the repository at this point in the history
[FIX] 사용자 경험치 획득량 조정
  • Loading branch information
Hong0329 authored Nov 11, 2024
2 parents 3205610 + d435b82 commit bcb6525
Showing 1 changed file with 4 additions and 4 deletions.
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;}
}

0 comments on commit bcb6525

Please sign in to comment.