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
06703467
Commit
06703467
authored
Apr 24, 2025
by
鲁鸿波
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev_2.6.0' of
http://120.46.174.3:8099/zlmy/zlmy-cloud
into dev_2.6.0
parents
78604d7d
3322bdcc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
8 deletions
+12
-8
WorkTypeEnum.java
...va/com/testor/module/hazard/model/enums/WorkTypeEnum.java
+7
-7
THazardWorkPlanServiceImpl.java
...odule/hazard/service/impl/THazardWorkPlanServiceImpl.java
+5
-1
No files found.
zlmy-modules/zlmy-boot/src/main/java/com/testor/module/hazard/model/enums/WorkTypeEnum.java
View file @
06703467
...
...
@@ -30,37 +30,37 @@ public enum WorkTypeEnum {
/**
* 临时用电作业
*/
TEMPORARY_ELECTRICITY_WORK
(
"
5
"
,
"临时用电作业"
),
TEMPORARY_ELECTRICITY_WORK
(
"
16
"
,
"临时用电作业"
),
/**
* 吊装作业
*/
LIFTING_WORK
(
"
6
"
,
"吊装作业"
),
LIFTING_WORK
(
"
9
"
,
"吊装作业"
),
/**
* 动土作业
*/
EARTHWORK
(
"
7
"
,
"动土作业"
),
EARTHWORK
(
"
10
"
,
"动土作业"
),
/**
* 断路作业
*/
DISCONNECTION_WORK
(
"
8
"
,
"断路作业"
),
DISCONNECTION_WORK
(
"
11
"
,
"断路作业"
),
/**
* 液氨接卸作业
*/
AMMONIA_UNLOADING
(
"9"
,
"液氨接卸作业"
),
AMMONIA_UNLOADING
(
"
1
9"
,
"液氨接卸作业"
),
/**
* 熏蒸作业
*/
FUMIGATION_WORK
(
"1
0
"
,
"熏蒸作业"
),
FUMIGATION_WORK
(
"1
7
"
,
"熏蒸作业"
),
/**
* 环流熏蒸作业
*/
CIRCULATING_FUMIGATION
(
"1
1
"
,
"环流熏蒸作业"
),
CIRCULATING_FUMIGATION
(
"1
8
"
,
"环流熏蒸作业"
),
/**
* 进仓
...
...
zlmy-modules/zlmy-boot/src/main/java/com/testor/module/hazard/service/impl/THazardWorkPlanServiceImpl.java
View file @
06703467
...
...
@@ -254,7 +254,11 @@ public class THazardWorkPlanServiceImpl extends SuperServiceImpl<THazardWorkPlan
if
(
sysOrgVo
!=
null
)
{
tHazardWorkPlanDTO
.
setOrgName
(
sysOrgVo
.
getSubSectorPath
());
}
tHazardWorkPlanDTO
.
setBuildWorkStatus
(
buildWorkStatus
(
tHazardWorkPlanDTO
));
String
buildWorkStatus
=
buildWorkStatus
(
tHazardWorkPlanDTO
);
tHazardWorkPlanDTO
.
setBuildWorkStatus
(
buildWorkStatus
);
if
(
buildWorkStatus
.
equals
(
WorkPlanStatusEnum
.
TO_BE_CLOSED
.
getValue
())){
tHazardWorkPlanDTO
.
setWorkStatus
(
WorkPlanStatusEnum
.
TO_BE_CLOSED
.
getDescription
());
}
tHazardWorkPlanDTO
.
setCheckCount
(
tHazardWorkPlanCheckDao
.
countByPlanId
(
tHazardWorkPlanDTO
.
getId
()));
}
Page
<
THazardWorkPlanDTO
>
planPage
=
new
Page
<>();
...
...
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