From e57e32fc43da31917912eebb4e47d4e50df1a9e9 Mon Sep 17 00:00:00 2001
From: shiyj1101 <1098226878@qq.com>
Date: 星期四, 05 八月 2021 22:56:15 +0800
Subject: [PATCH] 完善格式化功能

---
 service-community/src/main/java/com/java110/community/api/BigScreenApi.java |   43 +++++++++++++++++++++++++++++++++++++++----
 1 files changed, 39 insertions(+), 4 deletions(-)

diff --git a/service-community/src/main/java/com/java110/community/api/BigScreenApi.java b/service-community/src/main/java/com/java110/community/api/BigScreenApi.java
old mode 100644
new mode 100755
index 87919c3..35d2638
--- a/service-community/src/main/java/com/java110/community/api/BigScreenApi.java
+++ b/service-community/src/main/java/com/java110/community/api/BigScreenApi.java
@@ -1,9 +1,6 @@
 package com.java110.community.api;
 
-import com.java110.community.bmo.assets.IQueryAssetsBMO;
-import com.java110.community.bmo.assets.IQueryAssetsFeeBMO;
-import com.java110.community.bmo.assets.IQueryAssetsRepairBMO;
-import com.java110.community.bmo.assets.IQueryAssetsRoomBMO;
+import com.java110.community.bmo.assets.*;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.http.ResponseEntity;
 import org.springframework.web.bind.annotation.RequestMapping;
@@ -27,6 +24,12 @@
 
     @Autowired
     private IQueryAssetsFeeBMO queryAssetsFeeBMOImpl;
+
+    @Autowired
+    private IQueryAssetsInspectionBMO queryAssetsInspectionBMOImpl;
+
+    @Autowired
+    private IQueryAssetsOpenDoorBMO queryAssetsOpenDoorBMOImpl;
 
 
     /**
@@ -79,4 +82,36 @@
     public ResponseEntity<String> getAssetsFee(@RequestParam(value = "communityId") String communityId) {
         return queryAssetsFeeBMOImpl.query(communityId);
     }
+
+    /**
+     * 浠婃棩宸℃
+     *
+     * @param communityId
+     * @return
+     * @Service /bigScreen/getAssetInspection
+     * @path /app/bigScreen/getAssetInspection
+     */
+    @RequestMapping(value = "/getAssetInspection", method = RequestMethod.GET)
+    public ResponseEntity<String> getAssetInspection(@RequestParam(value = "communityId") String communityId) {
+        return queryAssetsInspectionBMOImpl.query(communityId);
+    }
+
+    /**
+     * 寮�闂�
+     *
+     * @param communityId
+     * @return
+     * @Service /bigScreen/getAssetOpenDoor
+     * @path /app/bigScreen/getAssetOpenDoor
+     */
+    @RequestMapping(value = "/getAssetOpenDoor", method = RequestMethod.GET)
+    public ResponseEntity<String> getAssetOpenDoor(@RequestParam(value = "communityId") String communityId) {
+        return queryAssetsOpenDoorBMOImpl.query(communityId);
+    }
+
+    @RequestMapping(value = "/getAssetOpenDoorImage", method = RequestMethod.GET)
+    public ResponseEntity<String> getAssetOpenDoorImage(@RequestParam(value = "communityId") String communityId) {
+        return queryAssetsOpenDoorBMOImpl.queryImage(communityId);
+
+    }
 }

--
Gitblit v1.8.0