|
|
|
@@ -1,6 +1,7 @@ |
|
|
|
package models |
|
|
|
|
|
|
|
import ( |
|
|
|
"encoding/json" |
|
|
|
"fmt" |
|
|
|
"time" |
|
|
|
|
|
|
|
@@ -298,6 +299,11 @@ func queryCreateIssuePublic(start_unix int64, end_unix int64, publicAllRepo map[ |
|
|
|
break |
|
|
|
} |
|
|
|
} |
|
|
|
resultMapJson, _ := json.Marshal(resultMap) |
|
|
|
log.Info("issue resultMapJson=" + string(resultMapJson)) |
|
|
|
|
|
|
|
publicRepoIssueIdMapJson, _ := json.Marshal(publicRepoIssueIdMap) |
|
|
|
log.Info("issue publicRepoIssueIdMapJson=" + string(publicRepoIssueIdMapJson)) |
|
|
|
return resultMap, publicRepoIssueIdMap |
|
|
|
|
|
|
|
} |
|
|
|
@@ -334,6 +340,9 @@ func queryCommentPublic(start_unix int64, end_unix int64, publicRepoIssueIdMap m |
|
|
|
break |
|
|
|
} |
|
|
|
} |
|
|
|
resultMapJson, _ := json.Marshal(resultMap) |
|
|
|
log.Info("Comment resultMapJson=" + string(resultMapJson)) |
|
|
|
|
|
|
|
return resultMap |
|
|
|
} |
|
|
|
|
|
|
|
|