| | |
| | | */ |
| | | package org.springblade.modules.house.service; |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.springblade.modules.house.entity.HouseEntity; |
| | | import org.springblade.modules.house.excel.HouseAndHoldExcel; |
| | | import org.springblade.modules.house.excel.HouseExcel; |
| | | import org.springblade.modules.house.vo.HouseParam; |
| | | import org.springblade.modules.house.vo.HouseTree; |
| | | import org.springblade.modules.house.vo.HouseVO; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import org.springblade.modules.house.excel.HouseExcel; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | |
| | | * @param houseParam |
| | | * @return |
| | | */ |
| | | List<HouseTree> getHouseTree(HouseParam houseParam); |
| | | List<HouseTree> getHouseTree(HouseParam houseParam); |
| | | |
| | | /** |
| | | * 人房数据导入 |
| | | * |
| | | * @param data |
| | | * @param isCovered |
| | | */ |
| | | void importHouseAndHold(List<HouseAndHoldExcel> data, Boolean isCovered); |
| | | |
| | | Map<String, Object> getHouseStatistics(String code, String roleType); |
| | | Map<String, Object> getHouseStatistics(String code, String roleType, String aoiCode, String buildingCode, String unitCode); |
| | | |
| | | List<String> getHouseBuilding(String districtCode); |
| | | |
| | | List<String> getHouseUnit(String districtCode, String building); |
| | | } |