uniugm/admin/apps/game/model/dto/request.go

19 lines
288 B
Go
Raw Normal View History

2025-04-18 17:17:23 +08:00
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"`
}