package com.yeshi.buwan.dto.order;
|
|
import java.math.BigDecimal;
|
|
/**
|
* PPTV单片价格
|
*/
|
public class PPTVVideoPrice {
|
//原价
|
private BigDecimal price;
|
//真实价格
|
private BigDecimal actualPrice;
|
//标签
|
private String tag;
|
|
public PPTVVideoPrice(BigDecimal price, BigDecimal actualPrice, String tag) {
|
this.price = price;
|
this.actualPrice = actualPrice;
|
this.tag = tag;
|
}
|
|
public BigDecimal getPrice() {
|
return price;
|
}
|
|
public void setPrice(BigDecimal price) {
|
this.price = price;
|
}
|
|
public BigDecimal getActualPrice() {
|
return actualPrice;
|
}
|
|
public void setActualPrice(BigDecimal actualPrice) {
|
this.actualPrice = actualPrice;
|
}
|
|
public String getTag() {
|
return tag;
|
}
|
|
public void setTag(String tag) {
|
this.tag = tag;
|
}
|
}
|