fin-check-api/db/income.go

19 lines
193 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
2024-08-03 14:50:03 +02:00
CardID uint
Card *Card
Value uint64
Comment string
Date time.Time
2024-08-08 19:14:50 +02:00
UserID uint
User *User
2024-08-01 23:02:55 +02:00
}