Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-biz
Project
Project
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
项目统一框架
amos-boot-biz
Commits
c2e09d4d
Commit
c2e09d4d
authored
Jul 08, 2022
by
chenzhao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加接口
parent
1def55f8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
+13
-0
OrgUsrController.java
...s/boot/module/common/biz/controller/OrgUsrController.java
+13
-0
No files found.
amos-boot-module/amos-boot-module-biz/amos-boot-module-common-biz/src/main/java/com/yeejoin/amos/boot/module/common/biz/controller/OrgUsrController.java
View file @
c2e09d4d
...
...
@@ -935,4 +935,16 @@ public class OrgUsrController extends BaseController {
List
<
OrgUsr
>
listByBizOrgTypeCode
=
iOrgUsrService
.
getListByBizOrgTypeCode
(
orgType
,
bizOrgCode
);
return
ResponseHelper
.
buildResponse
(
listByBizOrgTypeCode
);
}
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"根据amosId返回单位code"
,
notes
=
"根据amosId返回单位code"
)
@GetMapping
(
value
=
"/getBizByAmos"
)
public
ResponseModel
<
String
>
getBizByAmos
()
throws
Exception
{
ReginParams
selectedOrgInfo
=
getSelectedOrgInfo
();
String
userId
=
selectedOrgInfo
.
getUserModel
().
getUserId
();
String
parentId
=
iOrgUsrService
.
getParentId
(
userId
);
OrgUsr
orgUsr
=
iOrgUsrService
.
getById
(
parentId
);
return
ResponseHelper
.
buildResponse
(
orgUsr
.
getBizOrgCode
());
}
}
\ No newline at end of file
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