|
@@ -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
|
|
|
}
|