From 2ce35cb8d146582b32fd8867ef27ac2930da6ae3 Mon Sep 17 00:00:00 2001
From: 吴学文 <wuxuewen@wuxuewendeMacBook-Pro.local>
Date: 星期二, 09 七月 2019 23:11:49 +0800
Subject: [PATCH] 根据师延俊建议将菜单改为折叠方式
---
java110-core/src/main/java/com/java110/core/context/PageData.java | 15 ++++++++++++++-
1 files changed, 14 insertions(+), 1 deletions(-)
diff --git a/java110-core/src/main/java/com/java110/core/context/PageData.java b/java110-core/src/main/java/com/java110/core/context/PageData.java
index a261c57..0fae25b 100644
--- a/java110-core/src/main/java/com/java110/core/context/PageData.java
+++ b/java110-core/src/main/java/com/java110/core/context/PageData.java
@@ -24,6 +24,9 @@
private String userId ;
+ //浼氳瘽ID
+ private String sessionId;
+
private String transactionId;
private String requestTime;
@@ -99,6 +102,15 @@
this.token = token;
}
+ @Override
+ public String getSessionId() {
+ return sessionId;
+ }
+
+ public void setSessionId(String sessionId) {
+ this.sessionId = sessionId;
+ }
+
public void setReqData(String reqData) {
this.reqData = reqData;
}
@@ -138,7 +150,7 @@
return this;
}
- public IPageData builder(String userId,String token,String reqData,String componentCode,String componentMethod,String url)
+ public IPageData builder(String userId,String token,String reqData,String componentCode,String componentMethod,String url,String sessionId)
throws IllegalArgumentException{
this.setComponentCode(componentCode);
this.setComponentMethod(componentMethod);
@@ -147,6 +159,7 @@
this.setUserId(userId);
this.setToken(token);
this.setUrl(url);
+ this.setSessionId(sessionId);
return this;
}
--
Gitblit v1.8.0