-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add TransactionModel and function for value generation
- Loading branch information
1 parent
e9ebaa5
commit 596fad3
Showing
3 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
12 changes: 12 additions & 0 deletions
12
src/main/kotlin/io/github/arieldossantos/cuddlytrain/models/TransactionModel.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package io.github.arieldossantos.cuddlytrain.models | ||
|
||
import java.sql.Timestamp | ||
|
||
/** | ||
* Transaction model | ||
* | ||
* @param descricao Descrição da transação | ||
* @param data Data da transação | ||
* @param valor Valor da transação | ||
*/ | ||
class TransactionModel(val descricao: String, val data: Timestamp, val valor: Int) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters