|
@@ -95,7 +95,6 @@ func (l *GetWxsLogic) GetWxs(req *types.WxReq) (resp *types.WxResp, err error) {
|
|
|
}
|
|
|
|
|
|
var wxList []types.WxData
|
|
|
-
|
|
|
if isCurrentDay {
|
|
|
// 返回当日每小时的数据
|
|
|
var predicatesH []predicate.UsageStatisticHour
|
|
@@ -128,9 +127,13 @@ func (l *GetWxsLogic) GetWxs(req *types.WxReq) (resp *types.WxResp, err error) {
|
|
|
resp.Data.Total = usageStatisticHour.PageDetails.Total
|
|
|
for _, hourData := range usageStatisticHour.List {
|
|
|
if wxSet[hourData.BotID] != nil {
|
|
|
+ rate := float32(0)
|
|
|
+ if hourData.TotalFriend != 0 {
|
|
|
+ rate = float32(hourData.ActiveUser) / float32(hourData.TotalFriend)
|
|
|
+ }
|
|
|
wxList = append(wxList, types.WxData{
|
|
|
Nickname: wxSet[hourData.BotID].Nickname,
|
|
|
- InteractionRate: float32(hourData.ActiveUser) / float32(hourData.TotalFriend),
|
|
|
+ InteractionRate: rate,
|
|
|
TotalFriend: hourData.TotalFriend,
|
|
|
TotalGroup: hourData.TotalGroup,
|
|
|
})
|
|
@@ -158,11 +161,11 @@ func (l *GetWxsLogic) GetWxs(req *types.WxReq) (resp *types.WxResp, err error) {
|
|
|
if usageStatisticDay != nil && usageStatisticDay.List != nil {
|
|
|
resp.Data.Total = usageStatisticDay.PageDetails.Total
|
|
|
for _, dayData := range usageStatisticDay.List {
|
|
|
- rate := float32(0)
|
|
|
- if dayData.TotalFriend != 0 {
|
|
|
- rate = float32(dayData.ActiveUser) / float32(dayData.TotalFriend)
|
|
|
- }
|
|
|
if wxSet[dayData.BotID] != nil {
|
|
|
+ rate := float32(0)
|
|
|
+ if dayData.TotalFriend != 0 {
|
|
|
+ rate = float32(dayData.ActiveUser) / float32(dayData.TotalFriend)
|
|
|
+ }
|
|
|
wxList = append(wxList, types.WxData{
|
|
|
Nickname: wxSet[dayData.BotID].Nickname,
|
|
|
InteractionRate: rate,
|
|
@@ -173,6 +176,7 @@ func (l *GetWxsLogic) GetWxs(req *types.WxReq) (resp *types.WxResp, err error) {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
resp.Data.Data = wxList
|
|
|
|
|
|
return resp, nil
|