| | |
| | | */ |
| | | package org.springblade.modules.category.mapper; |
| | | |
| | | import org.apache.ibatis.annotations.MapKey; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springblade.common.node.TreeIntegerNode; |
| | | import org.springblade.modules.category.dto.CategoryDTO; |
| | | import org.springblade.modules.category.entity.CategoryEntity; |
| | | import org.springblade.modules.category.vo.CategoryVO; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * 天地图poi 分类表 Mapper 接口 |
| | |
| | | * @return |
| | | */ |
| | | List<CategoryDTO> selectCategoryList(@Param("category") CategoryDTO categoryDTO); |
| | | |
| | | @MapKey("id") |
| | | Map<Integer, TreeIntegerNode> getTreeList(CategoryVO category); |
| | | } |