request_params.go 311 B

12345678910111213141516
  1. package hobby
  2. import (
  3. "git.sxidc.com/go-framework/baize/framework/core/api/request"
  4. )
  5. type (
  6. UpdateStudentsOfHobbyJsonBody struct {
  7. request.IDJsonBody
  8. StudentIDs []string `json:"studentIds" assign:"toField:StudentIDs"`
  9. }
  10. QueryStudentsOfHobbyQueryParams struct {
  11. request.BaseQueryWithIDParams
  12. }
  13. )