yujian
2020-06-02 770ede03b2e532ff3729a8f447bdb4351637ca63
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
package com.yeshi.fanli.vo.goods;
 
import java.io.Serializable;
 
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 String cloudPic;
    // 云发单文字
    @Expose
    private String cloudText;
 
    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 String getCloudPic() {
        return cloudPic;
    }
 
    public void setCloudPic(String cloudPic) {
        this.cloudPic = cloudPic;
    }
 
    public String getCloudText() {
        return cloudText;
    }
 
    public void setCloudText(String cloudText) {
        this.cloudText = cloudText;
    }
 
}