admin
2025-02-20 f537abe9f3646c739beaf15076246a2f71a347e9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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;
    }
}