| | |
| | | package com.ruoyi.order.vo; |
| | | |
| | | import com.ruoyi.account.api.model.UserAddress; |
| | | import com.ruoyi.account.api.vo.CouponInfoVo; |
| | | import com.ruoyi.account.api.vo.PaymentUserCouponVo; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | private Integer earnPoint; |
| | | @ApiModelProperty("支付金额") |
| | | private BigDecimal payMoney; |
| | | @ApiModelProperty("订单总金额") |
| | | @ApiModelProperty("订单总积分") |
| | | private Integer orderPoint; |
| | | @ApiModelProperty("剩余积分") |
| | | private Integer residualPoint; |
| | | @ApiModelProperty("收货地址") |
| | | private UserAddress userAddress; |
| | | @ApiModelProperty("快递费") |
| | | private BigDecimal expressFee; |
| | | @ApiModelProperty("支付方式(1=现金,2=积分)") |
| | | private Integer paymentType; |
| | | @ApiModelProperty("活动是否可以和优惠券同时使用") |
| | | private Boolean useSimultaneously; |
| | | @ApiModelProperty("优惠券列表") |
| | | private List<CouponInfoVo> coupon; |
| | | private List<PaymentUserCouponVo> coupon; |
| | | } |