邮箱激活码的发送

This commit is contained in:
2023-12-19 21:48:38 +08:00
parent 8677b21928
commit 0631af1ac5
13 changed files with 529 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package com.lovenav.service;
import com.lovenav.entity.User;
public interface UserService {
public void sendEmailActivecode(User user,String activecode);
}