2026-04-01 00:58:42 +08:00
|
|
|
package domain
|
|
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
|
|
|
|
|
type User struct {
|
|
|
|
|
ID int64
|
2026-04-29 00:01:36 +08:00
|
|
|
Email *string
|
|
|
|
|
Phone string
|
2026-04-01 00:58:42 +08:00
|
|
|
PasswordHash string
|
2026-04-29 00:01:36 +08:00
|
|
|
Name *string
|
2026-04-01 00:58:42 +08:00
|
|
|
AvatarURL *string
|
|
|
|
|
Status string
|
|
|
|
|
CreatedAt time.Time
|
|
|
|
|
UpdatedAt time.Time
|
|
|
|
|
}
|