ilk
This commit is contained in:
20
svc/models/users.go
Normal file
20
svc/models/users.go
Normal file
@@ -0,0 +1,20 @@
|
||||
package models
|
||||
|
||||
type User struct {
|
||||
ID int `json:"id"`
|
||||
Username string `json:"username"`
|
||||
|
||||
IsActive bool `json:"is_active"`
|
||||
Email string `json:"email"`
|
||||
|
||||
RoleID int `json:"role_id"`
|
||||
RoleCode string `json:"role_code"`
|
||||
FullName string
|
||||
Mobile string
|
||||
Address string
|
||||
V3Username string `json:"v3_username"`
|
||||
V3UserGroup int `json:"v3_usergroup"`
|
||||
ForcePasswordChange bool `json:"force_password_change"`
|
||||
|
||||
Upass string // 🔐 dfusr.upass (TEK KAYNAK)
|
||||
}
|
||||
Reference in New Issue
Block a user