- SyncJdStoreProducts

This commit is contained in:
gazebo
2019-06-13 15:22:32 +08:00
parent 35caf649c7
commit ca62926d3f
6 changed files with 103 additions and 2 deletions

View File

@@ -559,3 +559,12 @@ func UploadExportContent(content []byte, key string) (downloadURL string, err er
}
return downloadURL, err
}
func TaskResult2Hint(resultList []interface{}) (hint string) {
strList := make([]string, len(resultList))
for k, v := range resultList {
strList[k] = fmt.Sprint(v)
}
hint = strings.Join(strList, ",")
return hint
}