models_gen.go 510 字节
// Code generated by github.com/99designs/gqlgen, DO NOT EDIT.

package model

type CreateUsersInput struct {
	Name  string `json:"name"`
	Phone string `json:"phone"`
}

type GetUsersInput struct {
	ID int `json:"id"`
}

type ListUsersInput struct {
	Offset int `json:"offset"`
	Limit  int `json:"limit"`
}

type MenuAccessInput struct {
	Name *string `json:"name"`
}

type RemoveUsersInput struct {
	ID int `json:"id"`
}

type UpdateUsersInput struct {
	ID   int     `json:"id"`
	Name *string `json:"name"`
}