| | |
| | | package org.springblade.modules.house.mapper; |
| | | |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springblade.common.node.TreeNode; |
| | | import org.springblade.common.node.TreeStringNode; |
| | | import org.springblade.modules.house.entity.HouseholdEntity; |
| | | import org.springblade.modules.house.vo.HouseholdOtherVO; |
| | | import org.springblade.modules.house.vo.HouseholdVO; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import org.springblade.modules.house.excel.HouseHoldExcel; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * 住户 Mapper 接口 |
| | |
| | | * @param userId |
| | | * @return |
| | | */ |
| | | List<TreeNode> selectHouseNodeList(@Param("userId") Long userId); |
| | | List<TreeStringNode> selectHouseNodeList(@Param("userId") Long userId); |
| | | |
| | | /** |
| | | * 查询房屋人员情况 |
| | |
| | | * @param household |
| | | * @return |
| | | */ |
| | | List<HouseHoldExcel> export(HouseholdVO household); |
| | | List<HouseHoldExcel> export(@Param("household") HouseholdVO household); |
| | | |
| | | Integer statistics(Long userId); |
| | | |
| | | /** |
| | | * 查询物业 |
| | | * @param household |
| | | * @return |
| | | */ |
| | | HouseholdOtherVO getProperty(@Param("household") HouseholdVO household); |
| | | |
| | | /** |
| | | * 查询网格 |
| | | * @param household |
| | | * @return |
| | | */ |
| | | HouseholdOtherVO getGrid(@Param("household") HouseholdVO household); |
| | | |
| | | /** |
| | | * 查询公安信息 |
| | | * @param household |
| | | * @return |
| | | */ |
| | | HouseholdOtherVO getSecurity(@Param("household") HouseholdVO household); |
| | | |
| | | List<Map<String, Object>> getHouseHoldStatistics(String code, Long userId,String roleType); |
| | | |
| | | List<Map<String, Object>> getHouseHoldStatisticsAge(String code, Long userId,String roleType); |
| | | } |