Helius
2021-06-29 9e560392543d3db3f269bbc0cb1f2c75e8f7f436
modify
2 files modified
13 ■■■■■ changed files
gc-shop/src/main/java/com/xzx/gc/shop/dto/XcxGoodsListDto.java 3 ●●●●● patch | view | raw | blame | history
gc-shop/src/main/resources/mapper/shop/ScoreGoodsMapper.xml 10 ●●●●● patch | view | raw | blame | history
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
        order by a.id desc
        <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">