From 44c4adfadb5cb6674595d5de6ba342d911432644 Mon Sep 17 00:00:00 2001 From: Aiee <18348405+Aiee@users.noreply.github.com> Date: Tue, 21 Dec 2021 15:20:32 +0800 Subject: [PATCH] Fix TimeCost type --- service/dao/dao.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service/dao/dao.go b/service/dao/dao.go index 238f423..d311edf 100644 --- a/service/dao/dao.go +++ b/service/dao/dao.go @@ -14,7 +14,7 @@ import ( type ExecuteResult struct { Headers []string `json:"headers"` Tables []map[string]common.Any `json:"tables"` - TimeCost int32 `json:"timeCost"` + TimeCost int64 `json:"timeCost"` } type list []common.Any