hongze hace 7 meses
padre
commit
bb644e7b9a
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      models/user/template_user.go

+ 1 - 1
models/user/template_user.go

@@ -44,6 +44,6 @@ func RegisterTemplateUser(user *TemplateUser) (err error) {
 }
 
 func BindMobile(userId int, mobile string) (err error) {
-	err = models.Main().Where("id = ?", userId).Updates(map[string]interface{}{"mobile": mobile, "updated_time": time.Now()}).Error
+	err = models.Main().Table("template_users").Where("id = ?", userId).Updates(map[string]interface{}{"mobile": mobile, "updated_time": time.Now()}).Error
 	return
 }