20 lines
373 B
Go
20 lines
373 B
Go
package basic
|
|
|
|
// PageDataResponse 分页数据
|
|
type PageDataResponse struct {
|
|
Data interface{} `json:"data"`
|
|
Count int64 `json:"count"`
|
|
}
|
|
|
|
type (
|
|
CommonIDString struct {
|
|
ID string `json:"id"`
|
|
}
|
|
CommonArea struct {
|
|
Province string `json:"province"`
|
|
City string `json:"city"`
|
|
District string `json:"district"`
|
|
Address string `json:"address"`
|
|
}
|
|
)
|