Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
YeeAmosFireAutoSysRoot
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
station
YeeAmosFireAutoSysRoot
Commits
2ea0f093
Commit
2ea0f093
authored
May 13, 2020
by
吴江
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改安全升级问题
parent
6eba2d2a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
AccidentTypeServiceImpl.java
...os/fas/business/service/impl/AccidentTypeServiceImpl.java
+2
-2
RiskFactorServiceImpl.java
...amos/fas/business/service/impl/RiskFactorServiceImpl.java
+2
-2
dbTemplate_risk_factor.xml
...t/src/main/resources/db/mapper/dbTemplate_risk_factor.xml
+1
-1
No files found.
YeeAmosFireAutoSysService/src/main/java/com/yeejoin/amos/fas/business/service/impl/AccidentTypeServiceImpl.java
View file @
2ea0f093
...
...
@@ -85,11 +85,11 @@ public class AccidentTypeServiceImpl implements IAccidentTypeService {
{
String
userId
=
String
.
valueOf
(
map
.
get
(
"createBy"
));
String
deptId
=
String
.
valueOf
(
map
.
get
(
"deptId"
));
if
(
userId
!=
null
)
if
(
userId
!=
null
&&!
userIdList
.
contains
(
userId
)
)
{
userIdList
.
add
(
userId
);
}
if
(
deptId
!=
null
)
if
(
deptId
!=
null
&&!
deptIdList
.
contains
(
deptId
)
)
{
deptIdList
.
add
(
deptId
);
}
...
...
YeeAmosFireAutoSysService/src/main/java/com/yeejoin/amos/fas/business/service/impl/RiskFactorServiceImpl.java
View file @
2ea0f093
...
...
@@ -52,11 +52,11 @@ public class RiskFactorServiceImpl implements IRiskFactorService {
{
String
userId
=
String
.
valueOf
(
map
.
get
(
"createBy"
));
String
deptId
=
String
.
valueOf
(
map
.
get
(
"deptId"
));
if
(
userId
!=
null
)
if
(
userId
!=
null
&&!
userIdList
.
contains
(
userId
)
)
{
userIdList
.
add
(
userId
);
}
if
(
deptId
!=
null
)
if
(
deptId
!=
null
&&!
deptIdList
.
contains
(
deptId
)
)
{
deptIdList
.
add
(
deptId
);
}
...
...
YeeAmosFireAutoSysStart/src/main/resources/db/mapper/dbTemplate_risk_factor.xml
View file @
2ea0f093
...
...
@@ -20,7 +20,7 @@
a.accident_type_id as accidentTypeId,
d.name as accidentName,
a.type,
a.dept_id as deptId,
,
a.dept_id as deptId,
a.create_by as createBy,
a.create_date as createDate,
a.remark
...
...
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