2021-11-02 16:22:07 +08:00
|
|
|
package basic
|
|
|
|
|
2021-11-02 17:01:04 +08:00
|
|
|
// PageDataResponse 分页数据
|
|
|
|
type PageDataResponse struct {
|
2021-11-02 16:22:07 +08:00
|
|
|
Data interface{} `json:"data"`
|
|
|
|
Count int64 `json:"count"`
|
|
|
|
}
|
2021-11-03 14:51:14 +08:00
|
|
|
|
|
|
|
type (
|
|
|
|
CommonIDString struct {
|
|
|
|
ID string `json:"id"`
|
|
|
|
}
|
2021-11-04 15:15:11 +08:00
|
|
|
CommonArea struct {
|
|
|
|
Province string `json:"province"`
|
|
|
|
City string `json:"city"`
|
|
|
|
District string `json:"district"`
|
|
|
|
Address string `json:"address"`
|
|
|
|
}
|
2021-11-03 14:51:14 +08:00
|
|
|
)
|