Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type User ¶
type User struct { ID guuid.UUID `gorm:"primaryKey" json:"-"` Username string `json:"username"` Email string `json:"email"` Password string `json:"-"` Sessions []Session `gorm:"foreignKey:UserRefer; constraint:OnUpdate:CASCADE, OnDelete:CASCADE;" json:"-"` Products []Product `gorm:"foreignKey:UserRefer; constraint:OnUpdate:CASCADE, OnDelete:CASCADE;" json:"-"` CreatedAt int64 `gorm:"autoCreateTime" json:"-" ` UpdatedAt int64 `gorm:"autoUpdateTime:milli" json:"-"` }
Click to show internal directories.
Click to hide internal directories.