mirror of
https://github.com/xinliangnote/go-gin-api.git
synced 2024-04-21 12:31:46 +00:00
16 lines
312 B
Go
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"`
|
|
}
|