Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
Z
zlmy-cloud
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
zlmy
zlmy-cloud
Commits
f626aa38
Commit
f626aa38
authored
Apr 27, 2025
by
鲁鸿波
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
关键字修改
parent
03046a6d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
TSafeHazardOrgController.java
...stor/module/safe/controller/TSafeHazardOrgController.java
+2
-2
No files found.
zlmy-modules/zlmy-boot/src/main/java/com/testor/module/safe/controller/TSafeHazardOrgController.java
View file @
f626aa38
...
...
@@ -397,13 +397,13 @@ public class TSafeHazardOrgController extends SuperController {
//一般危险隐患
QueryWrapper
<
TSafeHazardOrg
>
generallyQueryWrapper
=
new
QueryWrapper
<
TSafeHazardOrg
>().
in
(
"org_id"
,
subInstitutionIds
)
.
ne
(
"status"
,
BizConstants
.
STATUS_DELETE
).
ne
(
"process_status"
,
5
).
ne
(
"process_status"
,
4
)
.
eq
(
"
`level`
"
,
1
);
.
eq
(
"
\"level\"
"
,
1
);
int
generallyCount
=
tSafeHazardOrgService
.
count
(
generallyQueryWrapper
);
hiddenDangerVO
.
setGenerally
(
generallyCount
);
//重大危险隐患
QueryWrapper
<
TSafeHazardOrg
>
majorQueryWrapper
=
new
QueryWrapper
<
TSafeHazardOrg
>().
in
(
"org_id"
,
subInstitutionIds
)
.
ne
(
"status"
,
BizConstants
.
STATUS_DELETE
).
ne
(
"process_status"
,
5
).
ne
(
"process_status"
,
4
)
.
eq
(
"
`level`
"
,
2
);
.
eq
(
"
\"level\"
"
,
2
);
int
majorCount
=
tSafeHazardOrgService
.
count
(
majorQueryWrapper
);
hiddenDangerVO
.
setMajor
(
majorCount
);
}
...
...
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