| | |
| | | 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; |
| | |
| | | * @param userId |
| | | * @return |
| | | */ |
| | | List<TreeNode> selectHouseNodeList(@Param("userId") Long userId); |
| | | List<TreeStringNode> selectHouseNodeList(@Param("userId") Long userId); |
| | | |
| | | /** |
| | | * 查询房屋人员情况 |
| | |
| | | List<HouseHoldExcel> export(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); |
| | | } |