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
e4168d68
Commit
e4168d68
authored
Feb 25, 2022
by
tangwei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改bug
parent
d256d797
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
DataDictionaryServiceImpl.java
...ot/biz/common/service/impl/DataDictionaryServiceImpl.java
+3
-1
FireExpertsController.java
...t/module/common/biz/controller/FireExpertsController.java
+1
-1
No files found.
amos-boot-biz-common/src/main/java/com/yeejoin/amos/boot/biz/common/service/impl/DataDictionaryServiceImpl.java
View file @
e4168d68
...
@@ -160,7 +160,9 @@ public class DataDictionaryServiceImpl extends BaseService<DataDictionaryDto, Da
...
@@ -160,7 +160,9 @@ public class DataDictionaryServiceImpl extends BaseService<DataDictionaryDto, Da
LambdaQueryWrapper
<
DataDictionary
>
wrapper
=
new
LambdaQueryWrapper
<
DataDictionary
>();
LambdaQueryWrapper
<
DataDictionary
>
wrapper
=
new
LambdaQueryWrapper
<
DataDictionary
>();
wrapper
.
eq
(
DataDictionary:
:
getIsDelete
,
false
);
wrapper
.
eq
(
DataDictionary:
:
getIsDelete
,
false
);
wrapper
.
eq
(
DataDictionary:
:
getType
,
type
);
wrapper
.
eq
(
DataDictionary:
:
getType
,
type
);
wrapper
.
eq
(
DataDictionary:
:
getParent
,
parent
);
if
(
parent
!=
null
){
wrapper
.
eq
(
DataDictionary:
:
getParent
,
parent
);
}
return
this
.
baseMapper
.
selectList
(
wrapper
);
return
this
.
baseMapper
.
selectList
(
wrapper
);
}
}
}
}
amos-boot-module/amos-boot-module-biz/amos-boot-module-common-biz/src/main/java/com/yeejoin/amos/boot/module/common/biz/controller/FireExpertsController.java
View file @
e4168d68
...
@@ -167,7 +167,7 @@ public class FireExpertsController extends BaseController {
...
@@ -167,7 +167,7 @@ public class FireExpertsController extends BaseController {
String
expertCode
=
fireExpertsDto
.
getExpertCode
();
String
expertCode
=
fireExpertsDto
.
getExpertCode
();
List
<
String
>
expertCodeArr
=
new
ArrayList
<
String
>();
List
<
String
>
expertCodeArr
=
new
ArrayList
<
String
>();
expertCodeArr
.
add
(
expertCode
);
expertCodeArr
.
add
(
expertCode
);
List
<
DataDictionary
>
detaList
=
dataDictionaryService
.
getAllChildNodes
(
"ZJLY"
,
Long
.
parseLong
(
fireExpertsDto
.
getExpertCode
())
);
List
<
DataDictionary
>
detaList
=
dataDictionaryService
.
getAllChildNodes
(
"ZJLY"
,
fireExpertsDto
.
getExpertCode
()!=
null
?
Long
.
parseLong
(
fireExpertsDto
.
getExpertCode
()):
null
);
if
(
detaList
!=
null
&&
detaList
.
size
()>
0
)
{
if
(
detaList
!=
null
&&
detaList
.
size
()>
0
)
{
for
(
DataDictionary
i
:
detaList
)
{
for
(
DataDictionary
i
:
detaList
)
{
...
...
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