Create & Init Project...

This commit is contained in:
2019-04-22 18:49:16 +08:00
commit fc4fa37393
25440 changed files with 4054998 additions and 0 deletions

View File

@ -0,0 +1,27 @@
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"`
}