gc-shop/src/main/java/com/xzx/gc/shop/dto/XcxGoodsListDto.java
@@ -32,4 +32,7 @@ @ApiModelProperty(value="每页显示记录数") private int pageSize=10; @ApiModelProperty(value = "排序 1-综合 2-销量 3-价格") private int sort = 1; } gc-shop/src/main/resources/mapper/shop/ScoreGoodsMapper.xml
@@ -59,7 +59,15 @@ </if> </where> group by a.id <if test="record.sort == 1"> order by a.id desc </if> <if test="record.sort == 2"> order by quantity desc </if> <if test="record.sort == 3"> order by a.present_price desc </if> </select> <resultMap id="goodsDetailsMap" type="com.xzx.gc.shop.vo.XcxGoodsDetailVo">