|
@@ -282,7 +282,7 @@ func (tableRow *TableRow) FromDSPInfoData(infoData *response.InfoData) error {
|
|
typeStr := column.Value.Type
|
|
typeStr := column.Value.Type
|
|
|
|
|
|
if typeStr == "Time" {
|
|
if typeStr == "Time" {
|
|
- timeObj := time.Unix(0, int64(column.Value.GetUint64Value()*1000))
|
|
+ timeObj := time.UnixMicro(int64(column.Value.GetUint64Value()))
|
|
tableRow.row[column.Name] = timeObj
|
|
tableRow.row[column.Name] = timeObj
|
|
} else if typeStr == "string" {
|
|
} else if typeStr == "string" {
|
|
tableRow.row[column.Name] = column.Value.GetStringValue()
|
|
tableRow.row[column.Name] = column.Value.GetStringValue()
|