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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
package com.yeshi.fanli.vo.user;
 
import java.io.Serializable;
import java.util.List;
import java.util.Map;
 
import com.google.gson.annotations.Expose;
import com.yeshi.fanli.entity.bus.user.UserSystemCouponRecord;
import com.yeshi.common.vo.ClientTextStyleVO;
import com.yeshi.fanli.vo.order.CommonOrderVO;
 
import net.sf.json.JSONObject;
 
public class UserSystemCouponRecordVO extends UserSystemCouponRecord implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    // 券名称 /返利多少
    @Expose
     private String couponName;
 
    // 顶部返利金额信息
    @Expose
     private String couponEffect;
    
    // 是否到账
    @Expose
     private String couponMoneyState;
    
    // 订单信息
    @Expose
     private CommonOrderVO commonOrder;
    
    // 状态栏按钮
    @Expose
     private Map<String, Object> jumpWelfare;
    
    // 券规则按钮
    @Expose
     private String ruleLink;
    
    // 备注
    private JSONObject remark;
    
    // 进度状态
    @Expose
     private Integer progressState;
        
    // 上方文字
    @Expose
     private ClientTextStyleVO progressMsg;
   
     // 实付款
     @Expose
     private ClientTextStyleVO payMoney;
  
     // 返利
     @Expose
     private ClientTextStyleVO fanMoney;
     
     @Expose
     private List<Object> progressList;
     
 
    public String getCouponName() {
        return couponName;
    }
 
    public void setCouponName(String couponName) {
        this.couponName = couponName;
    }
 
    public String getCouponEffect() {
        return couponEffect;
    }
 
    public void setCouponEffect(String couponEffect) {
        this.couponEffect = couponEffect;
    }
 
    public String getCouponMoneyState() {
        return couponMoneyState;
    }
 
    public void setCouponMoneyState(String couponMoneyState) {
        this.couponMoneyState = couponMoneyState;
    }
 
    public CommonOrderVO getCommonOrder() {
        return commonOrder;
    }
 
    public void setCommonOrder(CommonOrderVO commonOrder) {
        this.commonOrder = commonOrder;
    }
 
    public Map<String, Object> getJumpWelfare() {
        return jumpWelfare;
    }
 
    public void setJumpWelfare(Map<String, Object> jumpWelfare) {
        this.jumpWelfare = jumpWelfare;
    }
 
    public String getRuleLink() {
        return ruleLink;
    }
 
    public void setRuleLink(String ruleLink) {
        this.ruleLink = ruleLink;
    }
 
    public JSONObject getRemark() {
        return remark;
    }
 
    public void setRemark(JSONObject remark) {
        this.remark = remark;
    }
 
    public ClientTextStyleVO getProgressMsg() {
        return progressMsg;
    }
 
    public void setProgressMsg(ClientTextStyleVO progressMsg) {
        this.progressMsg = progressMsg;
    }
 
    public ClientTextStyleVO getPayMoney() {
        return payMoney;
    }
 
    public void setPayMoney(ClientTextStyleVO payMoney) {
        this.payMoney = payMoney;
    }
 
    public ClientTextStyleVO getFanMoney() {
        return fanMoney;
    }
 
    public void setFanMoney(ClientTextStyleVO fanMoney) {
        this.fanMoney = fanMoney;
    }
 
    public List<Object> getProgressList() {
        return progressList;
    }
 
    public void setProgressList(List<Object> progressList) {
        this.progressList = progressList;
    }
 
    public Integer getProgressState() {
        return progressState;
    }
 
    public void setProgressState(Integer progressState) {
        this.progressState = progressState;
    }
 
}