diff --git a/internal/tools/zltx_statistics.go b/internal/tools/zltx_statistics.go index 1956b9a..9cedc12 100644 --- a/internal/tools/zltx_statistics.go +++ b/internal/tools/zltx_statistics.go @@ -58,9 +58,12 @@ func (z ZltxOrderStatisticsTool) Execute(channel chan entitys.ResponseData, c *w } type ZltxOrderStatisticsResponse struct { - Code int `json:"code"` - Data []ZltxOrderStatisticsData `json:"data"` - Error string `json:"error"` + Code int `json:"code"` + Data struct { + RecentThreeDays []ZltxOrderStatisticsData `json:"recentThreeDays"` + RecentOneMonth []ZltxOrderStatisticsData `json:"recentOneMonth"` + } `json:"data"` + Error string `json:"error"` } type ZltxOrderStatisticsData struct {