package com.ruoyi.common.core.dto;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
@Data
|
public class ExchangeDto {
|
@ApiModelProperty("商品id")
|
Integer goodId;
|
@ApiModelProperty("地址id")
|
Long addressId;
|
@ApiModelProperty("备注")
|
String remark;
|
@ApiModelProperty(hidden = true)
|
Long userId;
|
|
@ApiModelProperty("1商品2优惠卷")
|
Integer goodType;
|
@ApiModelProperty(hidden = true)
|
Integer point;
|
@ApiModelProperty("购买数量")
|
Integer num;
|
@ApiModelProperty("优惠卷id")
|
Long couponId;
|
|
@ApiModelProperty("1微信2支付宝")
|
Integer payMethod;
|
|
@ApiModelProperty(hidden =true)
|
BigDecimal orderPrice;
|
@ApiModelProperty(hidden =true)
|
BigDecimal payPrice;
|
@ApiModelProperty(hidden =true)
|
BigDecimal discountPrice;
|
@ApiModelProperty(hidden =true)
|
BigDecimal vipDiscount;
|
@ApiModelProperty(hidden =true)
|
String title;
|
@ApiModelProperty(hidden =true)
|
String phone;
|
|
|
}
|