Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func New ¶
func New(db *gorm.DB) repository_intf.UserRepository
Types ¶
type UserModel ¶
type UserModel struct { Id int `gorm:"column:id"` Email string `gorm:"column:email"` Password string `gorm:"column:password"` UserType string `gorm:"column:usertype"` Name string `gorm:"column:name"` Token string `gorm:"column:token"` Status bool `gorm:"column:status"` CreatedAt *time.Time `gorm:"column:created_at"` UpdatedAt *time.Time `gorm:"column:updated_at"` }
func (*UserModel) ToUserEntity ¶
Click to show internal directories.
Click to hide internal directories.