Commit 0a13d2b0 authored by 喻春霖's avatar 喻春霖

fixed

parent 3f54b5c3
......@@ -70,7 +70,7 @@ public class LogStatisticsController {
statClients.addAll(oauthClient.getClients());
};
Map<String,Object> param = new HashMap<>();
param.put("getUserInfoSuccessFlag", true);
param.put("loginSuccessFlag", true);
if (null != year){
param.put("year", year);
}
......@@ -101,7 +101,7 @@ public class LogStatisticsController {
public MapMessage environments(@RequestParam(value = "clientId", required = false) String clientId, @RequestParam(value = "year", required = false) String year, @RequestParam(value = "month", required = false) String month) {
Map<String, List<StatItem>> result = new HashMap<>();
Map<String,Object> param = new HashMap<>();
param.put("getUserInfoSuccessFlag", true);
param.put("loginSuccessFlag", true);
if (clientId != null){
param.put("clientId",clientId);
}
......@@ -160,7 +160,7 @@ public class LogStatisticsController {
Map<String, Object> result = new HashMap<>();
Map<String,Object> param = new HashMap<>();
param.put("getUserInfoSuccessFlag", true);
param.put("loginSuccessFlag", true);
if (clientId != null){
param.put("clientId",clientId);
}
......@@ -221,7 +221,7 @@ public class LogStatisticsController {
Map<String,Object> param = new HashMap<>();
param.put("getUserInfoSuccessFlag", true);
param.put("loginSuccessFlag", true);
if (clientId != null){
param.put("clientId",clientId);
}
......@@ -276,7 +276,7 @@ public class LogStatisticsController {
public MapMessage authUserTypes(@RequestParam(value = "clientId", required = false) String clientId, @RequestParam(value = "year", required = false) String year, @RequestParam(value = "month", required = false) String month) {
Map<String,Object> param = new HashMap<>();
param.put("getUserInfoSuccessFlag", true);
param.put("loginSuccessFlag", true);
if (clientId != null){
param.put("clientId",clientId);
}
......@@ -316,7 +316,7 @@ public class LogStatisticsController {
@ResponseBody
public MapMessage authHotOrgs(@RequestParam(value = "clientId", required = false) String clientId, @RequestParam(value = "year", required = false) String year, @RequestParam(value = "month", required = false) String month) {
Map<String,Object> param = new HashMap<>();
param.put("getUserInfoSuccessFlag", true);
param.put("loginSuccessFlag", true);
if (clientId != null){
param.put("clientId",clientId);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment