fin-check-api/db/income.go

16 lines
159 B
Go
Raw Normal View History

2024-08-01 23:02:55 +02:00
package db
import (
"time"
"gorm.io/gorm"
)
type Income struct {
gorm.Model
AccountID uint
Account *Account
Value uint64
Date time.Time
}