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
1aaa64b5
Commit
1aaa64b5
authored
Jan 02, 2024
by
李秀明
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(故障案例): 故障案例更新参数修改、查询列表增加排序
parent
4e5df7cd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
FaultCaseController.java
...m/yeejoin/equipmanage/controller/FaultCaseController.java
+2
-2
FaultCaseMapper.xml
...ystem-equip/src/main/resources/mapper/FaultCaseMapper.xml
+2
-0
No files found.
amos-boot-module/amos-boot-module-biz/amos-boot-module-equip-biz/src/main/java/com/yeejoin/equipmanage/controller/FaultCaseController.java
View file @
1aaa64b5
...
...
@@ -51,7 +51,7 @@ public class FaultCaseController extends AbstractBaseController {
@Autowired
ISignalClassifyService
signalClassifyService
;
@Autowired
IFireFightingSystemService
fireFightingSystemService
;
...
...
@@ -84,7 +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
())
:
""
);
//
model.setFaultLevel(StringUtil.isNotEmpty(model.getFaultLevel()) ? EmergencyLevelEum.getCodeByName(model.getFaultLevel()) : "");
faultCaseService
.
updateById
(
model
);
return
ResponseHelper
.
buildResponse
(
model
);
}
...
...
amos-boot-system-equip/src/main/resources/mapper/FaultCaseMapper.xml
View file @
1aaa64b5
...
...
@@ -23,6 +23,8 @@
AND (equip_name LIKE concat('%', #{dto.searchName},'%') OR system_name LIKE concat('%', #{dto.searchName},'%') OR fault_describe LIKE concat('%', #{dto.searchName},'%'))
</if>
</where>
ORDER BY
wfc.create_date DESC
</select>
<select
id=
"getFaultCaseList"
resultType=
"Map"
>
...
...
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