Created
December 26, 2022 04:42
-
-
Save OMGZui/fa79fe2c01b6aab04bc6ce5139b98e13 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(UserInfo user){ | |
...... | |
return new Response(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment