2020-01-14 18:22:34 -09:00
|
|
|
package model
|
2020-01-14 12:11:27 -09:00
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
|
|
|
|
|
type User struct {
|
2020-01-19 16:40:18 -09:00
|
|
|
ID string
|
|
|
|
|
Name string
|
|
|
|
|
Password string
|
|
|
|
|
IsAdmin bool
|
2020-01-19 17:39:37 -09:00
|
|
|
LastLoginAt *time.Time
|
|
|
|
|
LastAccessAt *time.Time
|
2020-01-19 16:40:18 -09:00
|
|
|
CreatedAt time.Time
|
|
|
|
|
UpdatedAt time.Time
|
2020-01-14 12:11:27 -09:00
|
|
|
}
|