admin
2021-05-28 5965c01b38a2e83cecd7616daa11185fc2499303
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
package com.tejia.lijin.app.entity;
 
import com.alibaba.fastjson.JSONObject;
import com.google.gson.annotations.Expose;
 
import java.io.Serializable;
 
public class RewardCoupon implements Serializable {
    @Expose
    String maxMoney;
    @Expose
    String desc;
    @Expose
    JumpDetail jumpDetail;
    @Expose
    JSONObject params;
    @Expose
    String  maxMoneyPlus;//京东plus会员最高返利金额
 
    public String getMaxMoneyPlus() {
        return maxMoneyPlus;
    }
 
    public void setMaxMoneyPlus(String maxMoneyPlus) {
        this.maxMoneyPlus = maxMoneyPlus;
    }
 
 
 
    public String getMaxMoney() {
        return maxMoney;
    }
 
    public void setMaxMoney(String maxMoney) {
        this.maxMoney = maxMoney;
    }
 
    public String getDesc() {
        return desc;
    }
 
    public void setDesc(String desc) {
        this.desc = desc;
    }
 
    public JumpDetail getJumpDetail() {
        return jumpDetail;
    }
 
    public void setJumpDetail(JumpDetail jumpDetail) {
        this.jumpDetail = jumpDetail;
    }
 
    public JSONObject getParams() {
        return params;
    }
 
    public void setParams(JSONObject params) {
        this.params = params;
    }
 
}