hongze 7 月之前
父节点
当前提交
bb644e7b9a
共有 1 个文件被更改,包括 1 次插入1 次删除
  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
 }