| | |
| | | public class ConfirmOrder { |
| | | @ApiModelProperty(value = "购买方式(1=购物车,2=商品详情)", required = true) |
| | | private Integer position; |
| | | @ApiModelProperty(value = "购物车数据id,数量 JSON[{id:1212,num:2}]", required = true) |
| | | @ApiModelProperty(value = "购物车数据id,数量 JSON[{id:1212,num:2,type:1}]", required = true, notes = "type值取值范围(1=普通商品,2=秒杀商品)") |
| | | private String goodsJson; |
| | | @ApiModelProperty(value = "支付方式(1=现金,2=积分)", required = true) |
| | | private Integer paymentType; |
| | |
| | | private Integer shopId; |
| | | @ApiModelProperty(value = "商品类型(1=服务商品,2=单品商品)", required = true) |
| | | private Integer type; |
| | | @ApiModelProperty("优惠券id") |
| | | private Long couponId; |
| | | } |