This commit is contained in:
苏尹岚
2020-11-20 15:30:19 +08:00
parent ecc068f976
commit 52db66616e

View File

@@ -2,6 +2,7 @@ package dao
import (
"errors"
"fmt"
"git.rosy.net.cn/baseapi/utils"
"git.rosy.net.cn/jx-callback/business/model"
@@ -61,6 +62,8 @@ func GetUserBindAuthInfo(db *DaoDB, userID string, bindType int, typeList []stri
sqlParams = append(sqlParams, typeID)
}
sql += " ORDER BY t1.type"
fmt.Println(sql)
fmt.Println(sqlParams)
err = GetRows(db, &authList, sql, sqlParams...)
return authList, err
}