You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package model |
|
|
|
// UNameParams search params. |
|
type UNameParams struct { |
|
Bsp *BasicSearchParams |
|
MIds []int64 `form:"mids,split" params:"mids"` |
|
Sex int64 `form:"sex" params:"sex" default:"-1"` |
|
Ranks []int64 `form:"ranks,split" params:"ranks"` |
|
}
|
|
|