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

16 lines
457 B
Java

package com.yunan.service;
import com.yunan.dto.RegisterDTO;
import com.yunan.pojo.User;
import org.springframework.http.ResponseEntity;
import javax.mail.MessagingException;
import javax.mail.internet.AddressException;
import java.io.UnsupportedEncodingException;
public interface AuthService {
ResponseEntity<Object> register(RegisterDTO registerDTO, String rightCode) throws UnsupportedEncodingException, AddressException, MessagingException;
}