19 lines
288 B
Go
19 lines
288 B
Go
package dto
|
|
|
|
type CommonListReq struct {
|
|
PageNo int `json:"page_no"`
|
|
PageLen int `json:"page_len"`
|
|
}
|
|
|
|
type CommonPostReq struct {
|
|
Dto *CommonDtoValues `json:"dto"`
|
|
}
|
|
|
|
type CommonPutReq struct {
|
|
Dto *CommonDtoValues `json:"dto"`
|
|
}
|
|
|
|
type CommonDeleteReq struct {
|
|
Id int `json:"id"`
|
|
}
|