publish 0.7.4

This commit is contained in:
曾文豪
2023-02-28 11:32:45 +08:00
parent c3edb50e80
commit 07136a6679
14 changed files with 53 additions and 27 deletions

View File

@@ -6,7 +6,7 @@
<parent>
<groupId>com.tiesheng.springboot-parent</groupId>
<artifactId>springboot-parent</artifactId>
<version>0.7.3</version>
<version>0.7.4</version>
</parent>
<artifactId>springboot-ademo</artifactId>

View File

@@ -20,7 +20,10 @@ public class DemoWebConfigurer implements TieshengWebConfigurer {
@Override
public RequestUserInfo getCurrentUserName(TokenBean tokenBean) {
return null;
RequestUserInfo info = new RequestUserInfo();
info.setId("1");
info.setName("test");
return info;
}
@Override