| | |
| | | package org.springblade.modules.category.service.impl; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import org.springblade.modules.category.dto.CategoryDTO; |
| | | import org.springblade.modules.category.entity.CategoryEntity; |
| | | import org.springblade.modules.category.vo.CategoryVO; |
| | | import org.springblade.modules.category.mapper.CategoryMapper; |
| | |
| | | import org.springblade.core.mp.base.BaseServiceImpl; |
| | | import org.springframework.stereotype.Service; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 天地图poi 分类表 服务实现类 |
| | |
| | | return page.setRecords(baseMapper.selectCategoryPage(page, category)); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 天地图poi 分类获取 |
| | | */ |
| | | @Override |
| | | public Object getCategory(CategoryVO category) { |
| | | return baseMapper.getCategory(category); |
| | | } |
| | | /** |
| | | * 查询场所标签 |
| | | * @param categoryDTO |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<CategoryDTO> selectCategoryLabelList(CategoryDTO categoryDTO) { |
| | | return this.baseMapper.selectCategoryList(categoryDTO); |
| | | } |
| | | } |