123456789101112131415161718192021222324252627 |
- package model
- type Page struct {
- Num int `json:"num"`
- Size int `json:"size"`
- Total int `json:"total"`
- }
- type CommonResponse struct {
- Code int `json:"code"`
- Message string `json:"message"`
- TTL int `json:"ttl"`
- }
- type CommonExtraDataResponse struct {
- *CommonResponse
- Data map[string]interface{} `json:"data"`
- }
- type SourceQueryResponse struct {
- *CommonResponse
- Data map[string]interface{} `json:"data"`
- }
|