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.
18 lines
394 B
18 lines
394 B
package model |
|
|
|
// UpInfoActiveReq req |
|
type UpInfoActiveReq struct { |
|
Mid int64 `form:"mid" validate:"required"` |
|
} |
|
|
|
// UpsInfoActiveReq req |
|
type UpsInfoActiveReq struct { |
|
Mids []int64 `form:"mids,split" validate:"required,dive,gt=0"` |
|
} |
|
|
|
// UpInfoActiveReply Reply |
|
type UpInfoActiveReply struct { |
|
ID int64 `json:"id"` |
|
MID int64 `json:"mid"` |
|
ActiveTid int16 `json:"active_tid"` |
|
}
|
|
|