IinitializeBuildingUnitSMO.java 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. package com.java110.intf.community;
  2. import com.java110.config.feign.FeignConfiguration;
  3. import com.java110.dto.CommunityMemberDto;
  4. import com.java110.dto.community.CommunityAttrDto;
  5. import com.java110.dto.community.CommunityDto;
  6. import org.springframework.cloud.openfeign.FeignClient;
  7. import org.springframework.web.bind.annotation.RequestBody;
  8. import org.springframework.web.bind.annotation.RequestMapping;
  9. import org.springframework.web.bind.annotation.RequestMethod;
  10. import java.util.List;
  11. import java.util.Map;
  12. /**
  13. * @ClassName IFloorInnerServiceSMO
  14. * @Description 小区楼接口类
  15. * @Author wuxw
  16. * @Date 2019/4/24 9:04
  17. * @Version 1.0
  18. * add by wuxw 2019/4/24
  19. **/
  20. @FeignClient(name = "community-service", configuration = {FeignConfiguration.class})
  21. @RequestMapping("/initializeApi")
  22. public interface IinitializeBuildingUnitSMO {
  23. /**
  24. * 查询<p>小区楼</p>总记录数
  25. *
  26. * @param floorIds 数据对象分享
  27. * @return 小区下的小区楼记录数
  28. */
  29. @RequestMapping(value = "/deleteBuildingUnit", method = RequestMethod.POST)
  30. int deleteBuildingUnit(@RequestBody Map floorIds);
  31. /**
  32. * 查询<p>小区楼</p>总记录数
  33. *
  34. * @param communityId 数据对象分享
  35. * @return 小区下的小区楼记录数
  36. */
  37. @RequestMapping(value = "/deletefFloor", method = RequestMethod.POST)
  38. int deletefFloor(@RequestBody Map communityId);
  39. /**
  40. * 查询<p>小区楼</p>总记录数
  41. *
  42. * @param communityId 数据对象分享
  43. * @return 小区下的小区楼记录数
  44. */
  45. @RequestMapping(value = "/deleteBuildingRoom", method = RequestMethod.POST)
  46. int deleteBuildingRoom(@RequestBody Map communityId);
  47. /**
  48. * 查询<p>小区楼</p>总记录数
  49. *
  50. * @param communityId 数据对象分享
  51. * @return 小区下的小区楼记录数
  52. */
  53. @RequestMapping(value = "/deleteParkingArea", method = RequestMethod.POST)
  54. int deleteParkingArea(@RequestBody Map communityId);
  55. /**
  56. * 查询<p>小区楼</p>总记录数
  57. *
  58. * @param communityId 数据对象分享
  59. * @return 小区下的小区楼记录数
  60. */
  61. @RequestMapping(value = "/deleteParkingSpace", method = RequestMethod.POST)
  62. int deleteParkingSpace(@RequestBody Map communityId);
  63. }