diff --git a/soul-api/internal/handler/match_records.go b/soul-api/internal/handler/match_records.go index 35c9133e..852fffda 100644 --- a/soul-api/internal/handler/match_records.go +++ b/soul-api/internal/handler/match_records.go @@ -139,7 +139,7 @@ func DBMatchPoolCounts(c *gin.Context) { db.Model(&model.User{}).Where("is_vip = 1 AND vip_expire_date > NOW()").Count(&vipCount) var completeCount int64 db.Model(&model.User{}).Where( - "(phone IS NOT NULL AND phone != '') AND (nickname IS NOT NULL AND nickname != '')", + "(phone IS NOT NULL AND phone != '') AND (nickname IS NOT NULL AND nickname != '' AND nickname != '微信用户') AND (avatar IS NOT NULL AND avatar != '')", ).Count(&completeCount) var allCount int64 db.Model(&model.User{}).Where(