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
fc0f8c0d
Commit
fc0f8c0d
authored
Nov 21, 2023
by
KeYong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改故障案例更新bug
parent
303beff8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
0 deletions
+14
-0
EmergencyLevelEum.java
...m/yeejoin/equipmanage/common/enums/EmergencyLevelEum.java
+13
-0
FaultCaseController.java
...m/yeejoin/equipmanage/controller/FaultCaseController.java
+1
-0
No files found.
amos-boot-module/amos-boot-module-api/amos-boot-module-equip-api/src/main/java/com/yeejoin/equipmanage/common/enums/EmergencyLevelEum.java
View file @
fc0f8c0d
...
...
@@ -46,4 +46,17 @@ public enum EmergencyLevelEum {
return
str
;
}
public
static
String
getCodeByName
(
String
name
)
{
String
str
=
""
;
if
(
StringUtils
.
isNotEmpty
(
name
))
{
for
(
EmergencyLevelEum
eum
:
EmergencyLevelEum
.
values
())
{
if
(
name
.
equalsIgnoreCase
(
eum
.
getName
()))
{
str
=
eum
.
getName
();
break
;
}
}
}
return
str
;
}
}
amos-boot-module/amos-boot-module-biz/amos-boot-module-equip-biz/src/main/java/com/yeejoin/equipmanage/controller/FaultCaseController.java
View file @
fc0f8c0d
...
...
@@ -84,6 +84,7 @@ public class FaultCaseController extends AbstractBaseController {
@PutMapping
(
value
=
"/update"
)
@ApiOperation
(
httpMethod
=
"PUT"
,
value
=
"根据id更新故障案例"
,
notes
=
"根据id更新故障案例"
)
public
ResponseModel
<
FaultCase
>
updateByIdWlFaultCase
(
@RequestBody
FaultCase
model
)
{
model
.
setFaultLevel
(
StringUtil
.
isNotEmpty
(
model
.
getFaultLevel
())
?
EmergencyLevelEum
.
getCodeByName
(
model
.
getFaultLevel
())
:
""
);
faultCaseService
.
updateById
(
model
);
return
ResponseHelper
.
buildResponse
(
model
);
}
...
...
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