|
@@ -358,7 +358,10 @@ func (this *dataExportPackStruct) GetDataExportRecordList(userId, memberPid, use
|
|
|
returnRow["search"] = getSearchValueById(queryId)
|
|
|
}
|
|
|
}
|
|
|
- returnRow["personal_name"], _ = row["operator"].(string)
|
|
|
+ operator, _ := row["operator"].(string)
|
|
|
+ operator = strings.ReplaceAll(operator, "(", " ")
|
|
|
+ operator = strings.ReplaceAll(operator, ")", "")
|
|
|
+ returnRow["personal_name"] = operator
|
|
|
//导出时间
|
|
|
returnRow["export_timestamp"] = row["date"]
|
|
|
//数据来源
|