reset_password.go 218 字节
package command

import "gitlab.fjmaimaimai.com/allied-creation/allied-creation-gateway/pkg/domain"

type ResetPasswordCommand struct {
	Operator domain.Operator `json:"-"`
	Account  string          `json:"account"`
}