Added completed user. Some fixes and more more more...
This commit is contained in:
parent
b96dd39795
commit
ea8ab7c0ed
33 changed files with 576 additions and 212 deletions
|
|
@ -1,11 +1,24 @@
|
|||
package common
|
||||
|
||||
import "github.com/google/uuid"
|
||||
import (
|
||||
"time"
|
||||
|
||||
"github.com/google/uuid"
|
||||
)
|
||||
|
||||
type UserResult struct {
|
||||
Id uuid.UUID
|
||||
UserName string
|
||||
Password string
|
||||
Id uuid.UUID
|
||||
UserName string
|
||||
Password string
|
||||
Name string
|
||||
Role string
|
||||
Speciality string
|
||||
Description string
|
||||
Skills string
|
||||
Avatar string
|
||||
JoinDate time.Time
|
||||
Projects string
|
||||
Motto string
|
||||
}
|
||||
|
||||
type UserResultList struct {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue