You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
567 B
27 lines
567 B
package model |
|
|
|
// Page common page struct for list api |
|
type Page struct { |
|
Num int `json:"num"` |
|
Size int `json:"size"` |
|
Total int `json:"total"` |
|
} |
|
|
|
// CommonResponse . |
|
type CommonResponse struct { |
|
Code int `json:"code"` |
|
Message string `json:"message"` |
|
TTL int `json:"ttl"` |
|
} |
|
|
|
// CommonExtraDataResponse . |
|
type CommonExtraDataResponse struct { |
|
*CommonResponse |
|
Data map[string]interface{} `json:"data"` //map[gid]interface{} |
|
} |
|
|
|
// SourceQueryResponse |
|
type SourceQueryResponse struct { |
|
*CommonResponse |
|
Data map[string]interface{} `json:"data"` |
|
}
|
|
|