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.
13 lines
279 B
13 lines
279 B
1 month ago
|
package models
|
||
|
|
||
|
type ParamUser struct {
|
||
|
User_id int64 `json:"user_id" bind:"required"`
|
||
|
User_name string `json:"user_name"`
|
||
|
User_gender int `json:"user_gender"`
|
||
|
User_score int64 `json:"user_score"`
|
||
|
}
|
||
|
|
||
|
type ParamNum struct {
|
||
|
Num int `json:"num" bind:"required"`
|
||
|
}
|