Cron_Admin/app/http/entities/common.go

16 lines
242 B
Go

package entities
type IdRequest struct {
Id int64 `json:"id"`
}
type PageRequest struct {
Page int `json:"page"`
Limit int `json:"limit"`
}
type PageRsp struct {
Total int64 `json:"total"`
Data []interface{} `json:"data"`
}