package com.matrix.system.app.vo;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
|
import java.math.BigDecimal;
|
import java.util.List;
|
|
/**
|
* @author wzy
|
* @date 2020-12-23
|
**/
|
@ApiModel(value = "OrderDetailItemVo", description = "订单详情明细表")
|
public class OrderDetailItemVo {
|
|
@ApiModelProperty(value = "id")
|
private Long id;
|
|
@ApiModelProperty(value = "商品名称")
|
private String goodsName;
|
|
@ApiModelProperty(value = "数量")
|
private String count;
|
|
@ApiModelProperty(value = "现金支付")
|
private BigDecimal cashPay;
|
|
@ApiModelProperty(value = "储值卡支付")
|
private BigDecimal cardPay;
|
|
@ApiModelProperty(value = "欠款")
|
private BigDecimal arrears;
|
|
@ApiModelProperty(value = "原价")
|
private BigDecimal price;
|
|
@ApiModelProperty(value = "折扣价格")
|
private BigDecimal zkPrice;
|
|
@ApiModelProperty(value = "支付状态")
|
private String status;
|
|
@ApiModelProperty(value = "订单业绩")
|
private List<OrderDetailAchieveItemVo> achieves;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public List<OrderDetailAchieveItemVo> getAchieves() {
|
return achieves;
|
}
|
|
public void setAchieves(List<OrderDetailAchieveItemVo> achieves) {
|
this.achieves = achieves;
|
}
|
|
public String getGoodsName() {
|
return goodsName;
|
}
|
|
public void setGoodsName(String goodsName) {
|
this.goodsName = goodsName;
|
}
|
|
public String getCount() {
|
return count;
|
}
|
|
public void setCount(String count) {
|
this.count = count;
|
}
|
|
public BigDecimal getCashPay() {
|
return cashPay;
|
}
|
|
public void setCashPay(BigDecimal cashPay) {
|
this.cashPay = cashPay;
|
}
|
|
public BigDecimal getCardPay() {
|
return cardPay;
|
}
|
|
public void setCardPay(BigDecimal cardPay) {
|
this.cardPay = cardPay;
|
}
|
|
public BigDecimal getPrice() {
|
return price;
|
}
|
|
public void setPrice(BigDecimal price) {
|
this.price = price;
|
}
|
|
public BigDecimal getZkPrice() {
|
return zkPrice;
|
}
|
|
public void setZkPrice(BigDecimal zkPrice) {
|
this.zkPrice = zkPrice;
|
}
|
|
public String getStatus() {
|
return status;
|
}
|
|
public void setStatus(String status) {
|
this.status = status;
|
}
|
|
public BigDecimal getArrears() {
|
return arrears;
|
}
|
|
public void setArrears(BigDecimal arrears) {
|
this.arrears = arrears;
|
}
|
}
|