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
61375970
Commit
61375970
authored
Nov 23, 2021
by
tianbo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
隐患bug修改
parent
1c44822a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
LatentDangerExcuteTypeEnum.java
.../amos/patrol/common/enums/LatentDangerExcuteTypeEnum.java
+1
-1
LatentDangerServiceImpl.java
...patrol/business/service/impl/LatentDangerServiceImpl.java
+4
-4
No files found.
amos-boot-module/amos-boot-module-api/amos-boot-module-patrol-api/src/main/java/com/yeejoin/amos/patrol/common/enums/LatentDangerExcuteTypeEnum.java
View file @
61375970
...
...
@@ -109,7 +109,7 @@ public enum LatentDangerExcuteTypeEnum {
public
static
LatentDangerExcuteTypeEnum
getByCode
(
Integer
code
)
{
for
(
LatentDangerExcuteTypeEnum
e
:
LatentDangerExcuteTypeEnum
.
values
())
{
if
(
code
.
equals
(
e
.
getCode
()
))
{
if
(
e
.
getCode
().
equals
(
code
))
{
return
e
;
}
}
...
...
amos-boot-module/amos-boot-module-biz/amos-boot-module-patrol-biz/src/main/java/com/yeejoin/amos/patrol/business/service/impl/LatentDangerServiceImpl.java
View file @
61375970
...
...
@@ -1240,14 +1240,14 @@ public class LatentDangerServiceImpl implements ILatentDangerService {
latentDangerBo
.
setReformType
(
LatentDangerReformTypeEnum
.
常规整改
.
getCode
().
toString
());
latentDangerBo
.
setReformJson
(
executeParam
.
getFlowJson
().
toJSONString
());
latentDangerBo
.
setInferOtherThings
(
executeParam
.
getInferOtherThings
());
latentDangerBo
.
setProblemDescription
(
executeParam
.
getRe
asonAnalysis
());
latentDangerBo
.
setReasonAnalysis
(
executeParam
.
getRe
mark
());
latentDangerBo
.
setProblemDescription
(
executeParam
.
getRe
mark
());
latentDangerBo
.
setReasonAnalysis
(
executeParam
.
getRe
asonAnalysis
());
}
else
if
(
executeTypeEnum
.
equals
(
LatentDangerExcuteTypeEnum
.
隐患延期治理
))
{
latentDangerBo
.
setReformType
(
LatentDangerReformTypeEnum
.
延期治理
.
getCode
().
toString
());
latentDangerBo
.
setReformJson
(
executeParam
.
getFlowJson
().
toJSONString
());
latentDangerBo
.
setInferOtherThings
(
executeParam
.
getInferOtherThings
());
latentDangerBo
.
setProblemDescription
(
executeParam
.
getRe
asonAnalysis
());
latentDangerBo
.
setReasonAnalysis
(
executeParam
.
getRe
mark
());
latentDangerBo
.
setProblemDescription
(
executeParam
.
getRe
mark
());
latentDangerBo
.
setReasonAnalysis
(
executeParam
.
getRe
asonAnalysis
());
latentDangerBo
.
setDelayLimitDate
(
DateUtil
.
str2Date
(
executeParam
.
getDelayLimitDate
(),
DateUtil
.
DATETIME_DEFAULT_FORMAT
));
}
if
(
executeTypeEnum
.
equals
(
LatentDangerExcuteTypeEnum
.
隐患评审通过
))
{
...
...
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