|
@@ -423,8 +423,7 @@ func BuyerPortraitSearch(buyer string) (map[string]interface{}, error) {
|
|
|
}
|
|
|
}
|
|
|
go func() {
|
|
|
- bytes, _ := json.Marshal(returnData)
|
|
|
- fmt.Printf("BuyerPortraitSearch: %s spend time %fs\n doSearchSql: %s\n searchFormatResult %s\n", buyer, time.Since(tBegin).Seconds(), doSearchSql, string(bytes))
|
|
|
+ fmt.Printf("BuyerPortraitSearch: %s spend time %fs\n doSearchSql: %s\n", buyer, time.Since(tBegin).Seconds(), doSearchSql)
|
|
|
}()
|
|
|
return returnData, nil
|
|
|
}
|
|
@@ -596,8 +595,7 @@ func GetWithEntPortraitData(listDataItf interface{}, province string) (map[strin
|
|
|
returnData["withEstablishData"] = establishData
|
|
|
}
|
|
|
go func() {
|
|
|
- bytes, _ := json.Marshal(returnData)
|
|
|
- fmt.Printf("GetWithEntPortraitData: spend time %fs\n doSearchSql: %s\n searchFormatResult %s\n", time.Since(tBegin).Seconds(), doSearchSql, string(bytes))
|
|
|
+ fmt.Printf("GetWithEntPortraitData: spend time %fs\n doSearchSql: %s\n", time.Since(tBegin).Seconds(), doSearchSql)
|
|
|
}()
|
|
|
return returnData, thisProvinceWinnerCount, nil
|
|
|
}
|