接口Swagger调用参数问题修复

This commit is contained in:
macro
2022-02-09 10:49:47 +08:00
parent c075e116b5
commit eac446b46e
2 changed files with 11 additions and 45 deletions

View File

@@ -62,7 +62,7 @@ public class UmsMemberCouponController {
@ApiOperation("获取登录会员购物车的相关优惠券")
@ApiImplicitParam(name = "type", value = "使用可用:0->不可用1->可用",
defaultValue = "1", allowableValues = "0,1", paramType = "query", dataType = "integer")
defaultValue = "1", allowableValues = "0,1", paramType = "path", dataType = "integer")
@RequestMapping(value = "/list/cart/{type}", method = RequestMethod.GET)
@ResponseBody
public CommonResult<List<SmsCouponHistoryDetail>> listCart(@PathVariable Integer type) {

View File

@@ -1,6 +1,9 @@
package com.macro.mall.portal.domain;
import com.macro.mall.model.OmsCartItem;
import io.swagger.annotations.ApiModelProperty;
import lombok.Getter;
import lombok.Setter;
import java.math.BigDecimal;
@@ -8,54 +11,17 @@ import java.math.BigDecimal;
* 购物车中促销信息的封装
* Created by macro on 2018/8/27.
*/
@Getter
@Setter
public class CartPromotionItem extends OmsCartItem{
//促销活动信息
@ApiModelProperty("促销活动信息")
private String promotionMessage;
//促销活动减去的金额,针对每个商品
@ApiModelProperty("促销活动减去的金额,针对每个商品")
private BigDecimal reduceAmount;
//商品的真实库存(剩余库存-锁定库存
@ApiModelProperty("剩余库存-锁定库存")
private Integer realStock;
//购买商品赠送积分
@ApiModelProperty("购买商品赠送积分")
private Integer integration;
//购买商品赠送成长值
@ApiModelProperty("购买商品赠送成长值")
private Integer growth;
public String getPromotionMessage() {
return promotionMessage;
}
public void setPromotionMessage(String promotionMessage) {
this.promotionMessage = promotionMessage;
}
public BigDecimal getReduceAmount() {
return reduceAmount;
}
public void setReduceAmount(BigDecimal reduceAmount) {
this.reduceAmount = reduceAmount;
}
public Integer getRealStock() {
return realStock;
}
public void setRealStock(Integer realStock) {
this.realStock = realStock;
}
public Integer getIntegration() {
return integration;
}
public void setIntegration(Integer integration) {
this.integration = integration;
}
public Integer getGrowth() {
return growth;
}
public void setGrowth(Integer growth) {
this.growth = growth;
}
}