| | |
| | | package com.java110.intf.community; |
| | | |
| | | import com.java110.config.feign.FeignConfiguration; |
| | | import com.java110.dto.CommunityMemberDto; |
| | | import com.java110.dto.community.CommunityAttrDto; |
| | | import com.java110.dto.community.CommunityDto; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RequestMethod; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | |
| | | */ |
| | | @RequestMapping(value = "/deleteParkingSpace", method = RequestMethod.POST) |
| | | int deleteParkingSpace(@RequestBody Map communityId); |
| | | |
| | | @RequestMapping(value = "/deleteOwnerCar", method = RequestMethod.POST) |
| | | int deleteOwnerCar(@RequestBody Map communityIds); |
| | | } |