|
|
@ -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"` |
|
|
|
} |