fin-check-api/db/payment.go

22 lines
286 B
Go

package db
import (
"time"
"gorm.io/gorm"
)
// For grocery payment
type Payment struct {
gorm.Model
CardID uint
Card *Card
CategoryID uint
Category *Category
Name string
Descr string
Note string
Items []ItemBought
Date time.Time
}