ECS-CMD/YuNan-demo/src/main/java/com/yunan/service/AuthService.java

16 lines
457 B
Java
Raw Normal View History

2024-11-05 17:10:26 +08:00
package com.yunan.service;
import com.yunan.dto.RegisterDTO;
import com.yunan.pojo.User;
2024-11-06 18:47:00 +08:00
import org.springframework.http.ResponseEntity;
2024-11-05 17:10:26 +08:00
2024-11-06 18:47:00 +08:00
import javax.mail.MessagingException;
2024-11-05 17:10:26 +08:00
import javax.mail.internet.AddressException;
import java.io.UnsupportedEncodingException;
public interface AuthService {
2024-11-06 18:47:00 +08:00
ResponseEntity<Object> register(RegisterDTO registerDTO, String rightCode) throws UnsupportedEncodingException, AddressException, MessagingException;
2024-11-05 17:10:26 +08:00
}