diff --git a/business/jxstore/cms/user.go b/business/jxstore/cms/user.go index be013ebce..ae8647ca3 100644 --- a/business/jxstore/cms/user.go +++ b/business/jxstore/cms/user.go @@ -133,7 +133,7 @@ func verifyMobileIsBlank(db *dao.DaoDB, mobile string) (user *model.WeiXins, err func verifyMobileHasNoMembers(db *dao.DaoDB, mobile string) (err error) { countInfo := &struct{ Ct int }{} - if err = dao.GetRows(db, countInfo, ` + if err = dao.GetRow(db, countInfo, ` SELECT COUNT(*) ct FROM weixins t1 JOIN weixins t2 ON t1.parent_id = t2.id AND t2.mobile = ?