From bf4d67474ff023a7e3ec6fb29b906a698a84f0c5 Mon Sep 17 00:00:00 2001 From: 101captain <237651143@qq.com> Date: 星期四, 09 九月 2021 13:59:05 +0800 Subject: [PATCH] 物业报警相关提交 --- springcloud_k8s_panzhihuazhihuishequ/service_property/src/main/java/com/panzhihua/service_property/service/impl/ComPropertyAlarmServiceImpl.java | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_property/src/main/java/com/panzhihua/service_property/service/impl/ComPropertyAlarmServiceImpl.java b/springcloud_k8s_panzhihuazhihuishequ/service_property/src/main/java/com/panzhihua/service_property/service/impl/ComPropertyAlarmServiceImpl.java index eac3cd2..7281042 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_property/src/main/java/com/panzhihua/service_property/service/impl/ComPropertyAlarmServiceImpl.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_property/src/main/java/com/panzhihua/service_property/service/impl/ComPropertyAlarmServiceImpl.java @@ -30,4 +30,9 @@ IPage<ComPropertyAlarmVO> page=comPropertyAlarmDao.selectList(new Page(commonPage.getPage(), commonPage.getSize()),commonPage); return R.ok(page); } + + @Override + public R selectDetail(Integer id) { + return R.ok(comPropertyAlarmDao.selectById(id)); + } } -- Gitblit v1.7.1