package
Version:
v0.0.0-...-90e23d6
Opens a new window with list of versions in this module.
Published: Jun 13, 2024
License: MIT
Opens a new window with license information.
Imports: 2
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type BlackList struct {
CardNumber string `gorm:"primaryKey"`
DeletedById uint `gorm:"index"`
DeletedBy User `gorm:"foreignKey:DeletedById"`
CreatedAt time.Time
UpdatedAt time.Time
}
type CardActivity struct {
gorm.Model
CardNumber string `json:"cardNumber"`
CardType string `json:"cardType"`
Event string `json:"event"`
}
type User struct {
gorm.Model
Email string `json:"email" gorm:"type:varchar(255);unique;index;not null"`
Username string `json:"username"`
Password string `json:"-"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.