| | |
| | | import org.springblade.modules.house.vo.HouseParam; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import sun.rmi.runtime.Log; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | */ |
| | | @GetMapping("/getHouseRentInfo") |
| | | @ApiLog("查询房屋及出租详情信息") |
| | | public R getHouseRentInfo(String code) { |
| | | public R getHouseRentInfo(String code, Long houseId) { |
| | | bladeLogger.info("获取楼盘相关集合数据", JsonUtil.toJson(code)); |
| | | return R.data(doorplateAddressService.getHouseRentInfo(code)); |
| | | return R.data(doorplateAddressService.getHouseRentInfo(code,houseId)); |
| | | } |
| | | |
| | | /** |