- package hobby
- import (
- "git.sxidc.com/go-framework/baize/convenient/binding/request"
- )
- type (
- UpdateStudentsOfHobbyJsonBody struct {
- request.IDJsonBody
- StudentIDs []string `json:"studentIds" assign:"toField:StudentIDs"`
- }
- QueryStudentsOfHobbyQueryParams struct {
- request.BaseQueryWithID
- }
- )
|