From 6709d0f8326dab7c4a16b35cf82253a9864641ff Mon Sep 17 00:00:00 2001 From: zouap Date: Mon, 15 Nov 2021 10:58:29 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0openi=E6=8C=87=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: zouap --- models/user_business_analysis.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/models/user_business_analysis.go b/models/user_business_analysis.go index 6c87f8133..ee5f2ccfb 100644 --- a/models/user_business_analysis.go +++ b/models/user_business_analysis.go @@ -1,6 +1,7 @@ package models import ( + "encoding/json" "fmt" "time" @@ -598,6 +599,10 @@ func queryUserRepoOpenIIndex(start_unix int64, end_unix int64) map[int64]float64 } } } + + userMapJson, _ := json.Marshal(userMap) + log.Info("userMapJson=" + string(userMapJson)) + return userMap }