app-cloudep-member-server/pkg/domain/repository/verify_code.go

10 lines
305 B
Go
Raw Normal View History

2024-12-30 03:58:14 +00:00
package repository
import "context"
type VerifyCodeRepository interface {
IsVerifyCodeExist(ctx context.Context, loginID, checkType string) (string, error)
SetVerifyCode(ctx context.Context, loginID, checkType, code string) error
DelVerifyCode(ctx context.Context, loginID, checkType string) error
}