我有以下结构typeAccountstruct{IDprimitive.ObjectID`json:"id"bson:"_id"`Emailstring`json:"email"`Passwordstring`json:"password"`}和下面的函数func(a*Account)Create()map[string]interface{}{ifresp,ok:=a.Validate();!ok{returnresp}hashedPassword,_:=bcrypt.GenerateFromPassword([]byte(a.Password),bcrypt.DefaultCost