소스 검색

fix:logutil增加了用户id信息

xuxiaopang 2 년 전
부모
커밋
ed03fe3e24
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      web/src/main/java/cn/seecoder/web/model/po/user/UserPO.java

+ 4 - 0
web/src/main/java/cn/seecoder/web/model/po/user/UserPO.java

@@ -63,4 +63,8 @@ public class UserPO implements UserDetails {
 	public boolean isEnabled() {
 		return true;
 	}
+
+	public Integer getId(){
+		return this.id;
+	}
 }