| | |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import org.apache.ibatis.annotations.MapKey; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springblade.common.node.TreeNode; |
| | | import org.springblade.modules.doorplateAddress.entity.DoorplateAddressEntity; |
| | | import org.springblade.modules.doorplateAddress.vo.DoorplateAddressVOTree; |
| | | import org.springblade.modules.doorplateAddress.vo.DoorplateAddressVO; |
| | | import org.springblade.modules.doorplateAddress.vo.FuncNode; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * 门牌地址表(总台账数据) Mapper 接口 |
| | |
| | | * 查询区域数据 |
| | | * @return |
| | | */ |
| | | List<TreeNode> getRegionListByGrouyTwon(); |
| | | List<TreeNode> getRegionListByGroupTwon(); |
| | | |
| | | /** |
| | | * 查询区域数据 |
| | | * @return |
| | | */ |
| | | List<TreeNode> getRegionListByGrouyNei(); |
| | | List<TreeNode> getRegionListByGroupNei(); |
| | | |
| | | /** |
| | | * 根据社区名称查询小区集合 |
| | |
| | | * @return |
| | | */ |
| | | DoorplateAddressVO getDoorplateAddressDetailByCode(@Param("code") String code); |
| | | |
| | | List<DoorplateAddressVOTree> getTownStreetVOTreeList(); |
| | | |
| | | List<DoorplateAddressVOTree> getNeiVOTreeList(@Param("code") String code); |
| | | |
| | | List<DoorplateAddressVOTree> getStreetRuVOTreeList(@Param("code") String code); |
| | | |
| | | |
| | | List<DoorplateAddressVOTree> getDistrictVOTreeList(@Param("code") String code); |
| | | |
| | | List<DoorplateAddressVOTree> getBuildingVOTreeList(@Param("code") String code); |
| | | } |