package
Version:
v0.0.0-...-d24a92c
Opens a new window with list of versions in this module.
Published: Jan 4, 2023
License: MIT
Opens a new window with license information.
Imports: 1
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Payment struct {
ID uint `json:"id" gorm:"primarykey"`
ProductID uint `json:"product_id" gorm:"foreignkey:ProductID"`
Price uint `json:"price"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
}
type Product struct {
ID uint `json:"id" gorm:"primarykey"`
Name string `json:"name" gorm:"unique;not null"`
Price uint `json:"price"`
CreatedAt time.Time
UpdatedAt time.Time
}
type User struct {
ID uint `json:"id" gorm:"primarykey"`
FirstName string `json:"first_name"`
LastName string `json:"last_name"`
Email string `json:"email"`
Password string `json:"password"`
CreatedAt time.Time `json:"created_at"`
LastLogin time.Time `json:"last_login"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.