linwe
2024-07-29 ade9cc120afc0fbd73f1b2a906cb2cb5c391e6c6
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);
}