| | |
| | | @Data |
| | | @ApiModel |
| | | public class ShoppingCartPayment { |
| | | @ApiModelProperty(value = "购物商品id JSON", required = true) |
| | | @ApiModelProperty(value = "购物车数据id,数量 JSON[{id:1212,num:2}]", required = true) |
| | | private String goodsJson; |
| | | @ApiModelProperty(value = "支付方式(1=现金,2=积分)", required = true) |
| | | @ApiModelProperty(value = "支付方式(1=微信,2=账户余额,3=积分)", required = true) |
| | | private Integer paymentType; |
| | | @ApiModelProperty(value = "核销门店id", required = true) |
| | | private Integer shopId; |
| | | @ApiModelProperty(value = "优惠券id", required = false) |
| | | private String userCouponId; |
| | | private Long userCouponId; |
| | | @ApiModelProperty(value = "配送方式(1=自提,2=快递)", required = false) |
| | | private Integer distributionMode; |
| | | @ApiModelProperty(value = "配送地址id", required = false) |
| | | private Integer userAddressId; |
| | | } |