package
Version:
v0.0.0-...-8647d6b
Opens a new window with list of versions in this module.
Published: Nov 20, 2021
License: GPL-3.0
Opens a new window with license information.
Imports: 0
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Card struct {
ID string `gorm:"column:card_id;type:uuid"`
Brand string `gorm:"column:brand;type:text"`
CardBrand CardBrand `gorm:"foreignKey:Brand;references:Brand"`
}
Card is the model of cards
type CardBrand struct {
Brand string `gorm:"type:text;primaryKey"`
}
CardBrand is the model of card_brands
type Parameter struct {
ID int
Funds int
Btc int
}
Parameter is model
type Payment struct {
OrderID string `gorm:"type:uuid;primaryKey"`
CardID string `gorm:"type:uuid"`
Card Card
}
Payment is the model of payments
Source Files
¶
Click to show internal directories.
Click to hide internal directories.