From c1bb3dd69c4d68f3f0787b59881ca258707b8cea Mon Sep 17 00:00:00 2001
From: Administrator <15274802129@163.com>
Date: Thu, 14 Aug 2025 10:34:36 +0800
Subject: [PATCH] feat(websocket): 添加 Netty WebSocket 聊天功能基础版本,URL:http://localhost:8085/febs/pages/websocket/chat.html
---
src/main/java/cc/mrbird/febs/mall/mapper/ClothesTypeClothMapper.java | 7 +++++++
1 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/src/main/java/cc/mrbird/febs/mall/mapper/ClothesTypeClothMapper.java b/src/main/java/cc/mrbird/febs/mall/mapper/ClothesTypeClothMapper.java
index cd7e5c9..a7a7d6f 100644
--- a/src/main/java/cc/mrbird/febs/mall/mapper/ClothesTypeClothMapper.java
+++ b/src/main/java/cc/mrbird/febs/mall/mapper/ClothesTypeClothMapper.java
@@ -1,7 +1,14 @@
package cc.mrbird.febs.mall.mapper;
+import cc.mrbird.febs.mall.dto.clothes.ApiClothesClothPageDto;
import cc.mrbird.febs.mall.entity.ClothesTypeCloth;
+import cc.mrbird.febs.mall.vo.clothes.ApiClothesClothVo;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
+import org.apache.ibatis.annotations.Param;
public interface ClothesTypeClothMapper extends BaseMapper<ClothesTypeCloth> {
+
+ Page<ApiClothesClothVo> selectPageInCloth(Page<ApiClothesClothVo> page, @Param("record")ApiClothesClothPageDto dto);
+
}
--
Gitblit v1.9.1