Skip to content

Commit

Permalink
fix : member exp logic
Browse files Browse the repository at this point in the history
  • Loading branch information
Hong0329 committed Nov 11, 2024
1 parent 3205610 commit d435b82
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 d435b82

Please sign in to comment.