admin
2025-02-25 30d8e227e8d823b6c38c3b9c90ac2df03b63befe
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
package com.yeshi.fanli.vo.goods;
 
import java.io.Serializable;
import java.math.BigDecimal;
 
import com.google.gson.annotations.Expose;
import com.yeshi.fanli.vo.tlj.ReduceHongBao;
import com.yeshi.fanli.vo.tlj.SpreadHongBao;
 
/**
 * 其他信息
 * 
 * @author Administrator
 *
 */
public class OtherInfo implements Serializable {
 
    /**
     * 
     */
    private static final long serialVersionUID = 1L;
    // 推广红包
    @Expose
    private SpreadHongBao spreadHongBao;
    // 自购立减
    @Expose
    private ReduceHongBao reduceHongBao;
 
    @Expose
    private RewardCouponVO rewardCoupon;
 
    @Expose
    private String fanliMoneyPlus;
    
    @Expose // 实付款金额
    private BigDecimal actualPay;
 
    @Expose // 补齐金额
    private BigDecimal mendMoney;
    
    
    public RewardCouponVO getRewardCoupon() {
        return rewardCoupon;
    }
 
    public void setRewardCoupon(RewardCouponVO rewardCoupon) {
        this.rewardCoupon = rewardCoupon;
    }
 
    public SpreadHongBao getSpreadHongBao() {
        return spreadHongBao;
    }
 
    public void setSpreadHongBao(SpreadHongBao spreadHongBao) {
        this.spreadHongBao = spreadHongBao;
    }
 
    public ReduceHongBao getReduceHongBao() {
        return reduceHongBao;
    }
 
    public void setReduceHongBao(ReduceHongBao reduceHongBao) {
        this.reduceHongBao = reduceHongBao;
    }
 
    public String getFanliMoneyPlus() {
        return fanliMoneyPlus;
    }
 
    public void setFanliMoneyPlus(String fanliMoneyPlus) {
        this.fanliMoneyPlus = fanliMoneyPlus;
    }
 
    public BigDecimal getActualPay() {
        return actualPay;
    }
 
    public void setActualPay(BigDecimal actualPay) {
        this.actualPay = actualPay;
    }
 
    public BigDecimal getMendMoney() {
        return mendMoney;
    }
 
    public void setMendMoney(BigDecimal mendMoney) {
        this.mendMoney = mendMoney;
    }
    
}