fin-check-api/db/payment.go

22 lines
286 B
Go
Raw Normal View History

2024-08-01 23:02:55 +02:00
package db
import (
"time"
"gorm.io/gorm"
)
// For grocery payment
type Payment struct {
gorm.Model
2024-08-03 07:05:46 +02:00
CardID uint
Card *Card
2024-08-01 23:02:55 +02:00
CategoryID uint
Category *Category
Name string
Descr string
Note string
Items []ItemBought
Date time.Time
}