添加购物车增加砍价等增加默认参数,修复添加同一个商品添加了新记录

This commit is contained in:
hupeng
2020-09-07 21:08:04 +08:00
parent dd0447bbb2
commit de40df72f8

View File

@ -36,11 +36,11 @@ public class CartParam {
private String uniqueId;
@ApiModelProperty(value = "产品拼团ID")
private Long combinationId;
private Long combinationId = 0L;
@ApiModelProperty(value = "产品秒杀ID")
private Long secKillId;
private Long secKillId = 0L;
@ApiModelProperty(value = "产品砍价ID")
private Long bargainId;
private Long bargainId = 0L;
}