Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gic-platform-auth
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
base_platform_enterprise
gic-platform-auth
Commits
647ec3ef
Commit
647ec3ef
authored
Feb 05, 2021
by
guojuxing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
审核员新增接口返回ID
parent
01185519
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
AuditorApiServiceImpl.java
...om/gic/auth/service/outer/impl/AuditorApiServiceImpl.java
+2
-2
No files found.
gic-platform-auth-service/src/main/java/com/gic/auth/service/outer/impl/AuditorApiServiceImpl.java
View file @
647ec3ef
...
...
@@ -99,7 +99,7 @@ public class AuditorApiServiceImpl implements AuditorApiService {
}
}
auditorDTO
.
setIsUse
(
auditorDTO
.
getUserId
()
==
null
?
0
:
1
);
auditorDTO
.
setIsUse
(
StringUtils
.
isBlank
(
auditorDTO
.
getOpenid
())
?
0
:
1
);
if
(
StringUtils
.
isNotBlank
(
auditorDTO
.
getOpenid
()))
{
boolean
repeat
=
this
.
auditorService
.
validOpenidIsRepeat
(
auditorDTO
.
getEnterpriseId
(),
auditorDTO
.
getOpenid
(),
auditorDTO
.
getAuditorId
());
...
...
@@ -123,7 +123,7 @@ public class AuditorApiServiceImpl implements AuditorApiService {
auditorProjectItemRelService
.
addOrUpdateRel
(
auditorDTO
.
getEnterpriseId
(),
auditorDTO
.
getAuditorId
(),
auditorDTO
.
getProjectItemList
());
// 受审组
auditorAuditedGroupRelService
.
addOrUpdateRel
(
auditorDTO
.
getEnterpriseId
(),
auditorDTO
.
getAuditorId
(),
auditorDTO
.
getAuditedGroupIdList
());
return
ServiceResponse
.
success
();
return
ServiceResponse
.
success
(
auditorDTO
.
getAuditorId
().
toString
()
);
}
private
boolean
validProjectItemIsNotExist
(
List
<
Integer
>
projectItemList
)
{
...
...
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