package user import ( "time" ) type User struct { Id int64 CreateTime time.Time LastUpdateTime time.Time Name string Account string Passwd string }