pg_auth_reset_phone_service.go 257 字节
package service

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

// PgAuthResetPhoneService 重置手机号服务
type PgAuthResetPhoneService interface {
	ResetPhone(optUser *domain.User, oldPhone, newPhone string) error
}