KKSU
2025-02-12 c014190d15b41704085d2e96b3fb51d39d8c2016
src/main/java/cc/mrbird/febs/mall/dto/MallGoodsQueryDto.java
@@ -4,8 +4,6 @@
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import javax.validation.constraints.NotNull;
/**
 * @author wzy
 * @date 2021-09-17
@@ -26,12 +24,24 @@
    @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 = "活动ID ", example = "2")
    private Long activityId;
    @ApiModelProperty(value = "1-付费商品 2-积分商品")
    private Integer goodsType;
    @ApiModelProperty(hidden = true)
    private Long memberId;
}