修改名称或参数

This commit is contained in:
wanggeng888 2021-05-02 10:17:37 +08:00
parent 6c5b4aac24
commit 077a05f31b
2 changed files with 9 additions and 4 deletions

View File

@ -2,6 +2,8 @@ package ink.wgink.interfaces.expand.login;
import ink.wgink.pojo.bos.LoginUser;
import java.io.Serializable;
/**
* When you feel like quitting. Think about why you started
* 当你想要放弃的时候想想当初你为何开始
@ -12,7 +14,7 @@ import ink.wgink.pojo.bos.LoginUser;
* @Date: 2021/5/1 10:02 下午
* @Version: 1.0
*/
public interface ILoginHandler {
public interface ILoginHandlerService {
/**
* 登录处理

View File

@ -1,5 +1,7 @@
package ink.wgink.interfaces.expand.register;
import java.util.Map;
/**
* When you feel like quitting. Think about why you started
* 当你想要放弃的时候想想当初你为何开始
@ -10,14 +12,15 @@ package ink.wgink.interfaces.expand.register;
* @Date: 2021/5/1 10:02 下午
* @Version: 1.0
*/
public interface IRegisterHandler {
public interface IRegisterHandlerService {
/**
* 注册处理
*
* @param userId 注册成功的用户ID
* @param userId 注册成功的用户ID
* @param requestParams 请求参数
* @throws Exception
*/
void handler(String userId) throws Exception;
void handler(String userId, Map<String, Object> requestParams) throws Exception;
}