feat(app): update
This commit is contained in:
18
pkg/dto/request/GeneralRankRequest.go
Normal file
18
pkg/dto/request/GeneralRankRequest.go
Normal file
@ -0,0 +1,18 @@
|
||||
package request
|
||||
|
||||
type GeneralRankRequest struct {
|
||||
BasePageRequest
|
||||
}
|
||||
|
||||
func (r *GeneralRankRequest) CheckParameter() (err error) {
|
||||
err = r.BasePageRequest.CheckParameter()
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
type GeneralGiftRequest struct {
|
||||
BaseRequest
|
||||
RankCode string
|
||||
}
|
||||
Reference in New Issue
Block a user