fin-check-api/db/income.go

16 lines
144 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 07:05:46 +02:00
CardID uint
Card *Card
Value uint64
Date time.Time
2024-08-01 23:02:55 +02:00
}