Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
JungYoonShin committed Aug 20, 2023
2 parents 8f319cf + 82b3d80 commit ce0c9da
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
@Data
@AllArgsConstructor
public class Expense {
public Integer transactionCategory;
public TransactionCategory transactionCategory;
public long price;
}
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ public Memo toEntity(AccountBook accountBook){
return Memo.builder()
.accountBook(accountBook)
.memo(memo)
.done(done)
.build();
}
}
Expand Down

0 comments on commit ce0c9da

Please sign in to comment.