Skip to content

Commit

Permalink
완성
Browse files Browse the repository at this point in the history
  • Loading branch information
qlido committed Dec 12, 2023
1 parent d91f8ab commit 1b32706
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/setkies/sinp/domain/wallet/Wallet.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class Wallet {
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;

private Long money = 0L;
private Long money = 100000L;

public void addMoney(Long addMoney){
this.money += addMoney;
Expand Down

0 comments on commit 1b32706

Please sign in to comment.