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
ecfcf673
Commit
ecfcf673
authored
Aug 04, 2022
by
suhuiguang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.雀景页面左上角列表bug
parent
f9e1923f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
13 deletions
+1
-13
EquipmentAlarmController.java
...join/equipmanage/controller/EquipmentAlarmController.java
+1
-1
ConfirmAlarmServiceImpl.java
...oin/equipmanage/service/impl/ConfirmAlarmServiceImpl.java
+0
-1
EquipmentSpecificAlarmMapper.xml
...rc/main/resources/mapper/EquipmentSpecificAlarmMapper.xml
+0
-11
No files found.
amos-boot-module/amos-boot-module-biz/amos-boot-module-equip-biz/src/main/java/com/yeejoin/equipmanage/controller/EquipmentAlarmController.java
View file @
ecfcf673
...
...
@@ -255,7 +255,7 @@ public class EquipmentAlarmController extends AbstractBaseController {
request3
.
setValue
(
StringUtil
.
isNotEmpty
(
equipCode
)
?
StringUtils
.
trimToNull
(
equipCode
)
:
null
);
queryRequests
.
add
(
request3
);
CommonRequest
request6
=
new
CommonRequest
();
// confirmType: '' 为全部数据 0 为未确认 1为已确认
// confirmType: '' 为全部数据 0 为未确认 1为已确认
2未消除 3已消除
request6
.
setName
(
"confirmType"
);
request6
.
setValue
(
StringUtil
.
isNotEmpty
(
confirmType
)
?
StringUtils
.
trimToNull
(
confirmType
)
:
null
);
queryRequests
.
add
(
request6
);
...
...
amos-boot-module/amos-boot-module-biz/amos-boot-module-equip-biz/src/main/java/com/yeejoin/equipmanage/service/impl/ConfirmAlarmServiceImpl.java
View file @
ecfcf673
...
...
@@ -160,7 +160,6 @@ public class ConfirmAlarmServiceImpl extends ServiceImpl<ConfirmAlarmMapper, Equ
ent
.
setEquipmentSpecificId
(
alarmLog
.
getEquipmentSpecificId
());
ent
.
setEquipmentSpecificIndexKey
(
alarmLog
.
getEquipmentSpecificIndexKey
());
String
cleanType
=
equipmentSpecificMapper
.
getEquipmentBySpecificId
(
alarmLog
.
getEquipmentSpecificId
());
int
i
=
0
;
// 是否成功标识
if
(
StringUtil
.
isNotEmpty
(
cleanType
)
&&
AlarmCleanTypeEnum
.
QRXC
.
getCode
().
equals
(
cleanType
))
{
EquipmentSpecificAlarm
alarm
=
equipmentSpecificAlarmMapper
.
selectById
(
alarmLog
.
getEquipmentSpecificAlarmId
());
alarm
.
setStatus
(
AlarmStatusEnum
.
HF
.
getCode
());
...
...
amos-boot-system-equip/src/main/resources/mapper/EquipmentSpecificAlarmMapper.xml
View file @
ecfcf673
...
...
@@ -352,17 +352,6 @@
LEFT JOIN wl_equipment_specific_alarm wlesa ON wlesa.id = wlesal.equipment_specific_alarm_id
LEFT JOIN wl_equipment_specific wls ON wls.id = wlesal.equipment_specific_id
<where>
<choose>
<when
test=
"param.confirmType != null and param.confirmType == 0"
>
wlesal.confirm_type is NULL
</when>
<when
test=
"param.confirmType != null and param.confirmType == 1"
>
wlesal.clean_time is NULL
</when>
<when
test=
"param.confirmType == null"
>
wlesal.clean_time is NULL
</when>
</choose>
<if
test=
"param.bizOrgCode != null and param.bizOrgCode != ''"
>
AND
wls.biz_org_code like concat (#{param.bizOrgCode},'%')
</if>
...
...
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