Commit c7fa4eda by chenweisong

更新

parent 0e08cee3
......@@ -192,7 +192,8 @@ public class TemplateController {
// }
User user = sessionService.getLoginUser();
Map org = feignAuthService.getUserOrgById(user.getId());
String key = org.get("fullname").toString().split(",")[1];
String fullName = org.get("fullName").toString();
String key = fullName.split(",")[1];
logger.info("bank name {}", key);
List<BankData> bankDataList = breakResultMap.get(key);
List<List<String>> listArrayList = new ArrayList<>();
......
......@@ -67,7 +67,7 @@ public class UserController {
}
@ApiOperation(value = "根据用户组id获取用户")
@ApiOperation(value = "根据用户组id获取用户", hidden = true)
@ApiImplicitParams({
@ApiImplicitParam(name = "userId", value = "用户id", paramType = "query", required = true, dataType = "long")
})
......
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