This commit is contained in:
redkale
2024-05-27 11:51:46 +08:00
parent 7f05b61ad9
commit db048652cc
2 changed files with 12 additions and 3 deletions

View File

@@ -7,7 +7,11 @@ package org.redkale.test.rest;
import org.redkale.convert.json.JsonFactory; import org.redkale.convert.json.JsonFactory;
/** @author zhangjx */ /**
* LoginBean
*
* @author zhangjx
*/
public class LoginBean { public class LoginBean {
private String account = ""; private String account = "";

View File

@@ -14,7 +14,12 @@ import org.redkale.service.*;
*/ */
public class UserService implements Service { public class UserService implements Service {
// 根据登录态获取当前用户信息 /**
* 根据登录态获取当前用户信息
*
* @param sessionid
* @return
*/
public UserInfo current(String sessionid) { public UserInfo current(String sessionid) {
return new UserInfo(); return new UserInfo();
} }