fin-check-api/db/income.go
2024-08-03 15:50:03 +03:00

17 lines
164 B
Go

package db
import (
"time"
"gorm.io/gorm"
)
type Income struct {
gorm.Model
CardID uint
Card *Card
Value uint64
Comment string
Date time.Time
}