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"`
|
|
|
|
}
|
|
|
|
)
|