14 lines
210 B
Go
14 lines
210 B
Go
package basic
|
|
|
|
// PageDataResponse 分页数据
|
|
type PageDataResponse struct {
|
|
Data interface{} `json:"data"`
|
|
Count int64 `json:"count"`
|
|
}
|
|
|
|
type (
|
|
CommonIDString struct {
|
|
ID string `json:"id"`
|
|
}
|
|
)
|