package user import ( ecore "simrs-vx/internal/domain/base-entities/core" erc "simrs-vx/internal/domain/references/common" ) type User struct { ecore.Main // adjust this according to the needs Name string `json:"name" gorm:"not null;size:25"` Password string `json:"password" gorm:"not null;size:255"` Status_Code erc.StatusCode `json:"status_code" gorm:"not null;size:12"` FailedLoginCount uint8 `json:"failedLoginCount" gorm:"type:smallint"` }