新增基础请求

This commit is contained in:
qiyunfanbo126.com 2024-05-08 11:54:08 +08:00
parent 8ce86e4621
commit 35c9dbdd95
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
package entities
type IdRequest struct {
Id int64 `json:"id"`
}
type PageRequest struct {
Page int64 `json:"page"`
PageSize int64 `json:"pageSize"`
}
type PageRsp struct {
Total int64 `json:"total"`
Data []interface{} `json:"data"`
}