新增基础请求
This commit is contained in:
parent
8ce86e4621
commit
35c9dbdd95
|
@ -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"`
|
||||
}
|
Loading…
Reference in New Issue