优化操作系统和浏览器统计相关程序

This commit is contained in:
刘祥超
2022-11-11 17:48:30 +08:00
parent 99e1658fdf
commit ae14ff4f9f
24 changed files with 1055 additions and 127 deletions

View File

@@ -31,13 +31,13 @@ func (this *ServerClientSystemMonthlyStatService) FindTopServerClientSystemMonth
if err != nil {
return nil, err
}
pbStats := []*pb.FindTopServerClientSystemMonthlyStatsResponse_Stat{}
var pbStats = []*pb.FindTopServerClientSystemMonthlyStatsResponse_Stat{}
for _, stat := range statList {
pbStat := &pb.FindTopServerClientSystemMonthlyStatsResponse_Stat{
Count: int64(stat.Count),
Version: stat.Version,
}
system, err := models.SharedClientSystemDAO.FindEnabledClientSystem(tx, int64(stat.SystemId))
system, err := models.SharedFormalClientSystemDAO.FindEnabledFormalClientSystem(tx, int64(stat.SystemId))
if err != nil {
return nil, err
}