add
wangpengfei
2023-07-13 a35c7eb12dcce7c650025ba4d801d6ad6f1053c4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package request
 
type PageInfo struct {
    Page     int `json:"page" form:"page"`         // 页码
    PageSize int `json:"pageSize" form:"pageSize"` // 每页大小
}
 
type GetById struct {
    ID uint `json:"id"` // 主键ID
}
 
type GetByUserId struct {
    UserId string `json:"userId"` // 用户ID
}