package com.ishop.model.vo;
|
|
import java.io.Serializable;
|
|
public class OrderNoVo implements Serializable {
|
|
public String getOrderNo() {
|
return orderNo;
|
}
|
|
public void setOrderNo(String orderNo) {
|
this.orderNo = orderNo;
|
}
|
|
public Integer getOrderType() {
|
return orderType;
|
}
|
|
public void setOrderType(Integer orderType) {
|
this.orderType = orderType;
|
}
|
|
public Double getPayPrice() {
|
return payPrice;
|
}
|
|
public void setPayPrice(Double payPrice) {
|
this.payPrice = payPrice;
|
}
|
|
// @ApiModelProperty(value = "订单号(预下单时为预下单单号)")
|
private String orderNo;
|
|
// @ApiModelProperty(value = "订单类型:0-普通订单,1-视频号订单,2-秒杀订单")
|
private Integer orderType;
|
|
// @ApiModelProperty(value = "支付金额")
|
private Double payPrice;
|
|
@Override
|
public String toString() {
|
return "OrderNoVo{" +
|
"orderNo='" + orderNo + '\'' +
|
", orderType=" + orderType +
|
", payPrice=" + payPrice +
|
'}';
|
}
|
}
|