2024-12-14 14:52:01 +00:00
|
|
|
package database
|
|
|
|
|
2024-12-14 16:21:31 +00:00
|
|
|
import "time"
|
|
|
|
|
2024-12-14 14:52:01 +00:00
|
|
|
type Account struct {
|
2024-12-14 16:21:31 +00:00
|
|
|
ID uint
|
|
|
|
Name string
|
|
|
|
Kind string
|
2024-12-14 14:52:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type Transaction struct {
|
2024-12-14 16:21:31 +00:00
|
|
|
ID uint
|
2024-12-14 14:52:01 +00:00
|
|
|
Amount float32
|
|
|
|
Debit bool
|
2024-12-14 16:21:31 +00:00
|
|
|
OffsetAccount uint
|
|
|
|
Account uint
|
|
|
|
Time time.Time
|
2024-12-14 14:52:01 +00:00
|
|
|
Description string
|
|
|
|
}
|
|
|
|
|
|
|
|
type User struct {
|
2024-12-14 16:21:31 +00:00
|
|
|
ID uint
|
2024-12-14 14:52:01 +00:00
|
|
|
Name string
|
|
|
|
Password string
|
|
|
|
}
|