linwe
2023-11-29 59e1a8ff7dfd9af5244ae5448d8af745a9720d13
src/main/java/org/springblade/modules/category/mapper/CategoryLabelMapper.java
@@ -16,6 +16,7 @@
 */
package org.springblade.modules.category.mapper;
import org.springblade.modules.category.dto.CategoryLabelDTO;
import org.springblade.modules.category.entity.CategoryLabelEntity;
import org.springblade.modules.category.vo.CategoryLabelVO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
@@ -39,5 +40,21 @@
    */
   List<CategoryLabelVO> selectCategoryLabelPage(IPage page, CategoryLabelVO categoryLabel);
   /**
    * 查询场所标签临时表
    *
    * @param id 场所标签临时表ID
    * @return 场所标签临时表
    */
   public CategoryLabelDTO selectCategoryLabelById(Integer id);
   /**
    * 查询场所标签临时表列表
    *
    * @param categoryLabelDTO 场所标签临时表
    * @return 场所标签临时表集合
    */
   public List<CategoryLabelDTO> selectCategoryLabelList(CategoryLabelDTO categoryLabelDTO);
}