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