| | |
| | | */ |
| | | package org.springblade.modules.category.service.impl; |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import org.springblade.modules.category.dto.CategoryLabelDTO; |
| | | import org.springblade.modules.category.entity.CategoryLabelEntity; |
| | | import org.springblade.modules.category.vo.CategoryLabelVO; |
| | | import org.springblade.modules.category.mapper.CategoryLabelMapper; |
| | | import org.springblade.modules.category.service.ICategoryLabelService; |
| | | import org.springblade.core.mp.base.BaseServiceImpl; |
| | | import org.springblade.modules.category.vo.CategoryLabelVO; |
| | | import org.springframework.stereotype.Service; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 场所标签临时表 服务实现类 |
| | |
| | | return page.setRecords(baseMapper.selectCategoryLabelPage(page, categoryLabel)); |
| | | } |
| | | |
| | | /** |
| | | * 查询场所标签临时表列表 |
| | | * |
| | | * @param categoryLabelDTO 场所标签临时表 |
| | | * @return 场所标签临时表集合 |
| | | */ |
| | | @Override |
| | | public List<CategoryLabelDTO> selectCategoryLabelList(CategoryLabelDTO categoryLabelDTO) { |
| | | return this.baseMapper.selectCategoryLabelList(categoryLabelDTO); |
| | | } |
| | | |
| | | |
| | | } |