package entities

type IdRequest struct {
	Id uint `json:"id" form:"id"`
}

type PageRequest struct {
	Page  int `json:"page"`
	Limit int `json:"limit"`
}

type PageRsp struct {
	Total int64       `json:"total"`
	Data  interface{} `json:"data"`
}