| | |
| | | package org.springblade.modules.category.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.springblade.modules.category.dto.CategoryLabelDTO; |
| | | import org.springblade.modules.category.entity.CategoryLabelEntity; |
| | | import org.springblade.modules.category.vo.CategoryLabelVO; |
| | | import org.springblade.core.mp.base.BaseService; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 场所标签临时表 服务类 |
| | |
| | | */ |
| | | IPage<CategoryLabelVO> selectCategoryLabelPage(IPage<CategoryLabelVO> page, CategoryLabelVO categoryLabel); |
| | | |
| | | /** |
| | | * 查询场所标签临时表列表 |
| | | * |
| | | * @param categoryLabelDTO 场所标签临时表 |
| | | * @return 场所标签临时表集合 |
| | | */ |
| | | public List<CategoryLabelDTO> selectCategoryLabelList(CategoryLabelDTO categoryLabelDTO); |
| | | |
| | | |
| | | } |