Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
datacollector
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
chenweisong
datacollector
Commits
c7fa4eda
Commit
c7fa4eda
authored
Apr 24, 2020
by
chenweisong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
更新
parent
0e08cee3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
TemplateController.java
...ava/com/keymobile/rest/controller/TemplateController.java
+2
-1
UserController.java
...in/java/com/keymobile/rest/controller/UserController.java
+1
-1
No files found.
src/main/java/com/keymobile/rest/controller/TemplateController.java
View file @
c7fa4eda
...
@@ -192,7 +192,8 @@ public class TemplateController {
...
@@ -192,7 +192,8 @@ public class TemplateController {
// }
// }
User
user
=
sessionService
.
getLoginUser
();
User
user
=
sessionService
.
getLoginUser
();
Map
org
=
feignAuthService
.
getUserOrgById
(
user
.
getId
());
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
);
logger
.
info
(
"bank name {}"
,
key
);
List
<
BankData
>
bankDataList
=
breakResultMap
.
get
(
key
);
List
<
BankData
>
bankDataList
=
breakResultMap
.
get
(
key
);
List
<
List
<
String
>>
listArrayList
=
new
ArrayList
<>();
List
<
List
<
String
>>
listArrayList
=
new
ArrayList
<>();
...
...
src/main/java/com/keymobile/rest/controller/UserController.java
View file @
c7fa4eda
...
@@ -67,7 +67,7 @@ public class UserController {
...
@@ -67,7 +67,7 @@ public class UserController {
}
}
@ApiOperation
(
value
=
"根据用户组id获取用户"
)
@ApiOperation
(
value
=
"根据用户组id获取用户"
,
hidden
=
true
)
@ApiImplicitParams
({
@ApiImplicitParams
({
@ApiImplicitParam
(
name
=
"userId"
,
value
=
"用户id"
,
paramType
=
"query"
,
required
=
true
,
dataType
=
"long"
)
@ApiImplicitParam
(
name
=
"userId"
,
value
=
"用户id"
,
paramType
=
"query"
,
required
=
true
,
dataType
=
"long"
)
})
})
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment