Compare commits

..

2 Commits

Author SHA1 Message Date
lxj
9897bb8db7 Merge branch 'master' of http://47.109.37.87:3000/by2025/SmartParks
All checks were successful
Build and Push to Target Registry / 构建并推送镜像到目标仓库 (push) Successful in 6m25s
2025-08-22 18:14:28 +08:00
lxj
4a62ad17c3 修改详情逻辑 2025-08-22 18:14:17 +08:00
2 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ public class SisAlarmEventProcessVo implements Serializable {
private String solveName;
/**
* 工单问题回复内容
* 问题回复内容
*/
@ExcelProperty(value = "工单问题回复内容")
private String workReply;

View File

@ -148,7 +148,7 @@ public class SisAlarmEventProcessServiceImpl implements ISisAlarmEventProcessSer
LambdaQueryWrapper<SisAlarmEventProcess> lqw = Wrappers.lambdaQuery();
lqw.eq(SisAlarmEventProcess::getAlarmId, alarmId);
lqw.eq(SisAlarmEventProcess::getState, 40);
SisAlarmEventProcessVo sisAlarmEventProcessVo = baseMapper.selectVoById(alarmId);
SisAlarmEventProcessVo sisAlarmEventProcessVo = baseMapper.selectVoOne(lqw);
if (sisAlarmEventProcessVo == null) {
return null;
}