整合多次更改 #1

Merged
zhouxy108 merged 22 commits from dev into main 2023-03-29 18:54:04 +08:00
50 changed files with 254 additions and 174 deletions
Showing only changes of commit 67313938e1 - Show all commits

View File

@@ -1,5 +1,7 @@
package xyz.zhouxy.plusone;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import javax.annotation.Resource;
import org.junit.jupiter.api.Test;
@@ -25,6 +27,7 @@ class TestAop {
command.setPrincipal("Code108");
command.setPassword("2333");
command.setRememberMe(false);
assertNotNull(service);
LoginInfoViewObject loginInfo = service.loginByPassword(command);
System.err.println(loginInfo);
}