From 82c69b99bb31dede23cde31eaf09f12f3e79f297 Mon Sep 17 00:00:00 2001
From: lidongdong <1459917685@qq.com>
Date: 星期四, 24 八月 2023 16:58:49 +0800
Subject: [PATCH] 新增小程序积分列表  修改积分发放流程

---
 springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/ComPropertyApi.java |   15 +++++++++++++++
 1 files changed, 15 insertions(+), 0 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/ComPropertyApi.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/ComPropertyApi.java
index 665b295..1d065a8 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/ComPropertyApi.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/ComPropertyApi.java
@@ -73,4 +73,19 @@
     public R delete(@RequestParam("id") Long id) {
         return this.comPropertyService.delete(id);
     }
+
+    /**
+     * 物业公司详情
+     * @param id
+     * @return
+     */
+    @GetMapping("/detail")
+    public R detailProperty(@RequestParam("id") Long id) {
+        return comPropertyService.detailProperty(id);
+    }
+
+    @GetMapping("/noticeList")
+    public R noticeList(@RequestParam("page")Integer page,@RequestParam("size")Integer size,@RequestParam("propertyId")Long propertyId){
+        return comPropertyService.noticeList(page,size,propertyId);
+    }
 }

--
Gitblit v1.7.1