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
88fb5570
Commit
88fb5570
authored
Jul 29, 2025
by
tianyiming
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 增加气瓶分类枚举并处理信息情况和气瓶类别转换逻辑
parent
3e2e70ea
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
ComprehensiveStatisticalAnalysisServiceImpl.java
...ice/impl/ComprehensiveStatisticalAnalysisServiceImpl.java
+10
-10
No files found.
amos-boot-system-tzs/amos-boot-module-statistics/amos-boot-module-statistics-biz/src/main/java/com/yeejoin/amos/boot/module/statistcs/biz/service/impl/ComprehensiveStatisticalAnalysisServiceImpl.java
View file @
88fb5570
...
@@ -2412,7 +2412,7 @@ public class ComprehensiveStatisticalAnalysisServiceImpl {
...
@@ -2412,7 +2412,7 @@ public class ComprehensiveStatisticalAnalysisServiceImpl {
public
JSONArray
queryXK
(
String
type
)
{
public
JSONArray
queryXK
(
String
type
)
{
JSONArray
result
=
new
JSONArray
();
JSONArray
result
=
new
JSONArray
();
if
(
null
==
type
||
""
.
equals
(
type
))
{
if
(
ObjectUtils
.
isEmpty
(
type
))
{
List
<
DataDictionary
>
xkxm
=
dataDictionaryService
.
lambdaQuery
()
List
<
DataDictionary
>
xkxm
=
dataDictionaryService
.
lambdaQuery
()
.
and
(
wrapper
->
wrapper
.
like
(
DataDictionary:
:
getType
,
"XKXM"
)
.
and
(
wrapper
->
wrapper
.
like
(
DataDictionary:
:
getType
,
"XKXM"
)
.
or
()
.
or
()
...
@@ -2422,15 +2422,15 @@ public class ComprehensiveStatisticalAnalysisServiceImpl {
...
@@ -2422,15 +2422,15 @@ public class ComprehensiveStatisticalAnalysisServiceImpl {
result
=
deployDictionary
(
xkxm
);
result
=
deployDictionary
(
xkxm
);
}
else
{
}
else
{
List
<
DataDictionary
>
childrenxkxm
=
new
ArrayList
<>();
List
<
DataDictionary
>
childrenxkxm
=
new
ArrayList
<>();
// if ("
".equals(type)) {
if
(
"null
"
.
equals
(
type
))
{
//
childrenxkxm = dataDictionaryService.lambdaQuery()
childrenxkxm
=
dataDictionaryService
.
lambdaQuery
()
//
.likeRight(DataDictionary::getCode, "XK")
.
likeRight
(
DataDictionary:
:
getCode
,
"XK"
)
//
.isNotNull(DataDictionary::getTypeDesc)
.
isNotNull
(
DataDictionary:
:
getTypeDesc
)
//
.eq(BaseEntity::getIsDelete, false).list();
.
eq
(
BaseEntity:
:
getIsDelete
,
false
).
list
();
//
} else {
}
else
{
//
childrenxkxm
=
dataDictionaryService
.
lambdaQuery
().
eq
(
DataDictionary:
:
getTypeDesc
,
type
).
eq
(
BaseEntity:
:
getIsDelete
,
false
).
list
();
// }
childrenxkxm
=
dataDictionaryService
.
lambdaQuery
().
eq
(
DataDictionary:
:
getTypeDesc
,
type
).
eq
(
BaseEntity:
:
getIsDelete
,
false
).
list
();
}
result
=
deployDictionary
(
childrenxkxm
);
result
=
deployDictionary
(
childrenxkxm
);
}
}
// if (ValidationUtil.isEmpty(type)) {
// if (ValidationUtil.isEmpty(type)) {
...
...
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