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/dto/MallGoodsQueryDto.java | 17 +++++++++++++----
1 files changed, 13 insertions(+), 4 deletions(-)
diff --git a/src/main/java/cc/mrbird/febs/mall/dto/MallGoodsQueryDto.java b/src/main/java/cc/mrbird/febs/mall/dto/MallGoodsQueryDto.java
index ba61cd9..cac256b 100644
--- a/src/main/java/cc/mrbird/febs/mall/dto/MallGoodsQueryDto.java
+++ b/src/main/java/cc/mrbird/febs/mall/dto/MallGoodsQueryDto.java
@@ -26,12 +26,21 @@
@ApiModelProperty(value = "分类ID")
private Long categoryId;
-// @ApiModelProperty(value = "排序字段, 默认created_time")
-// private String order = "created_time";
+ @ApiModelProperty(value = "排序类型 1-综合排序 2-销量 3-价格 4-新品优先")
+ private Integer sortType;
//
-// @ApiModelProperty(value = "升序/降序", example = "asc/desc")
-// private String sort = "desc";
+ @ApiModelProperty(value = "升序/降序", example = "asc/desc")
+ private String sort = "desc";
@ApiModelProperty(value = "是否热卖", example = "1是2否")
private Integer isHot;
+
+ @ApiModelProperty(value = "是否套餐 1-普通商品 2-套餐 3-微信小店", example = "2")
+ private Integer isNormal;
+
+ @ApiModelProperty(value = "1-付费商品 2-积分商品")
+ private Integer goodsType;
+
+ @ApiModelProperty(hidden = true)
+ private Long memberId;
}
--
Gitblit v1.9.1