blob: cd73452ca470a4124ce864c49d22947fb8815d70 [file] [log] [blame]
22301102d526daa2025-06-07 10:53:27 +08001package com.pt.service;
2
3import com.pt.repository.InvitedCoedRepository;
4import org.springframework.beans.factory.annotation.Autowired;
5import org.springframework.stereotype.Service;
6
7@Service
8public class InvitedCodeService {
9
10 @Autowired
11 private InvitedCoedRepository invitedCodeRepository;
12
13 public boolean isCodeValid(String code) {
14 return invitedCodeRepository.findByCode(code) != null;
15 }
16}