Created
December 26, 2022 04:42
-
-
Save OMGZui/bfc31ee3cd379b996bc95f34acc9c1eb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public Response test(Session session){ | |
UserInfo user = UserDao.queryByUserId(session.getUserId()); | |
if(user==null){ | |
reutrn new Response(); | |
} | |
return do(session.getUserId()); | |
} | |
public Response do(String UserId) | |
UserInfo user = UserDao.queryByUserId(session.getUserId()); | |
...... | |
return new Response(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment