From 59e1a8ff7dfd9af5244ae5448d8af745a9720d13 Mon Sep 17 00:00:00 2001
From: linwe <872216996@qq.com>
Date: Wed, 29 Nov 2023 18:04:34 +0800
Subject: [PATCH] bug修复

---
 src/main/java/org/springblade/modules/category/mapper/CategoryLabelMapper.java |   17 +++++++++++++++++
 1 files changed, 17 insertions(+), 0 deletions(-)

diff --git a/src/main/java/org/springblade/modules/category/mapper/CategoryLabelMapper.java b/src/main/java/org/springblade/modules/category/mapper/CategoryLabelMapper.java
index f0c0435..ecaacc0 100644
--- a/src/main/java/org/springblade/modules/category/mapper/CategoryLabelMapper.java
+++ b/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);
+
 
 }

--
Gitblit v1.9.3