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 v1 |
|
|
|
// ViewsAddRequest . |
|
type ViewsAddRequest struct { |
|
Svid int64 `json:"svid" form:"svid" validate:"required"` |
|
Views int `json:"views" form:"views"` |
|
} |
|
|
|
// ViewsAddResponse . |
|
type ViewsAddResponse struct { |
|
Affected int64 `json:"affected"` |
|
}
|
|
|