From 572972dad24077679a83800e691176afcacdb162 Mon Sep 17 00:00:00 2001 From: zhangxin Date: Thu, 11 Mar 2021 19:08:26 +0800 Subject: [PATCH] =?UTF-8?q?=E6=A0=B9=E6=8D=AE=E9=9C=80=E6=B1=82=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=E8=BF=94=E5=9B=9Edata=E7=9A=84=E7=BB=93=E6=9E=84?= =?UTF-8?q?=E4=BD=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/models/response/chargeallocationtab.go | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/web/models/response/chargeallocationtab.go b/web/models/response/chargeallocationtab.go index 9cd8b33..0411e2d 100644 --- a/web/models/response/chargeallocationtab.go +++ b/web/models/response/chargeallocationtab.go @@ -9,13 +9,9 @@ ******************************************************************************/ package response -type StatisticData struct { +type ChargeStatisticResponse struct { + Cid int `json:"cid"` + Court string `json:"court"` Type string `json:"type"` Count float64 `json:"count"` } - -type ChargeStatisticResponse struct { - Cid int `json:"cid"` - Court string `json:"court"` - Items []*StatisticData `json:"items"` -}