Files
go-gin-api/internal/graph/model/generated.go
T
2021-01-31 14:51:41 +08:00

16 lines
312 B
Go

// Code generated by github.com/99designs/gqlgen, DO NOT EDIT.
package model
type User struct {
ID string `json:"id"`
Name string `json:"name"`
Sex string `json:"sex"`
Mobile string `json:"mobile"`
}
type UpdateUserMobileInput struct {
ID string `json:"id"`
Mobile string `json:"mobile"`
}