15 lines
198 B
Go
15 lines
198 B
Go
package user
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type User struct {
|
|
Id int64
|
|
CreateTime time.Time
|
|
LastUpdateTime time.Time
|
|
Name string
|
|
Account string
|
|
Passwd string
|
|
}
|