From 58cb71c9539a0835ab8ff571e93de912e26eb958 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8B=8F=E5=B0=B9=E5=B2=9A?= <770236076@qq.com> Date: Sat, 26 Sep 2020 09:39:56 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B5=8B=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- business/model/dao/dao_user.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/business/model/dao/dao_user.go b/business/model/dao/dao_user.go index 94724564a..bb2fac270 100644 --- a/business/model/dao/dao_user.go +++ b/business/model/dao/dao_user.go @@ -303,7 +303,6 @@ func GetUserMember(db *DaoDB, userID, vendorOrderID string, memberType, isPay in sql += " AND is_pay = ?" sqlParams = append(sqlParams, isPay) } - fmt.Println(sql) - fmt.Println(sqlParams) + err = GetRows(db, &userMembers, sql, sqlParams) return userMembers, err }