待提现

This commit is contained in:
苏尹岚
2020-11-16 16:31:28 +08:00
parent 5d62f14378
commit 641e05cfd7
4 changed files with 48 additions and 11 deletions

View File

@@ -246,7 +246,7 @@ func GetMessageGroupMembers(db *DaoDB, groupID, groupType int, memberUserID stri
FROM message_group_member a
`
if groupType != 0 {
sql += ` JOIN message_group b ON b.group_id = a.group_id AND b.group_type = ?`
sql += ` JOIN message_group b ON b.group_id = a.group_id AND b.type = ?`
sqlParams = append(sqlParams, groupType)
}
sql += `