old mode 100644
new mode 100755
| | |
| | | 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; |
| | |
| | | |
| | | @Autowired |
| | | private IQueryAssetsFeeBMO queryAssetsFeeBMOImpl; |
| | | |
| | | @Autowired |
| | | private IQueryAssetsInspectionBMO queryAssetsInspectionBMOImpl; |
| | | |
| | | @Autowired |
| | | private IQueryAssetsOpenDoorBMO queryAssetsOpenDoorBMOImpl; |
| | | |
| | | |
| | | /** |
| | |
| | | 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); |
| | | |
| | | } |
| | | } |