From 5745a87f3a139ea2bbdaf4704978e4c151ecc45a Mon Sep 17 00:00:00 2001 From: linwei <872216696@qq.com> Date: Tue, 23 Jan 2024 17:39:48 +0800 Subject: [PATCH] 物业管理管和项目经理数据过滤 --- 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