mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-12-25 06:26:35 +08:00
生成账单时只处理用户ID大于0的记录
This commit is contained in:
@@ -710,7 +710,10 @@ func (this *ServerDailyStatDAO) FindDistinctUserIds(tx *dbs.Tx, dayFrom string,
|
||||
return nil, err
|
||||
}
|
||||
for _, one := range ones {
|
||||
userIds = append(userIds, one.GetInt64("userId"))
|
||||
var userId = one.GetInt64("userId")
|
||||
if userId > 0 {
|
||||
userIds = append(userIds, userId)
|
||||
}
|
||||
}
|
||||
return userIds, nil
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user