search_game_conf_params.go 313 B

123456789101112131415
  1. package request
  2. import (
  3. "log-server/model/common/request"
  4. "log-server/model/newCentralControl"
  5. )
  6. type SearchGameConfParams struct {
  7. newCentralControl.GameConf
  8. request.PageInfo
  9. OrderKey string `json:"orderKey"` // 排序
  10. Desc bool `json:"desc"` // 排序方式:升序false(默认)|降序true
  11. }