admin
2019-12-06 cd637932a970e7935b17d41568fe89c92775bccc
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
package com.yeshi.fanli.dto.order;
 
import java.util.Date;
 
public class OrderHongBaoRateParams {
 
    private int level;// 0-产生订单本级 1-产生订单的上级 2-产生订单的上上级
    private int orderType;// 订单类型 分享/自购
    private boolean subsidy;// 是否为补贴
    private boolean vip;// 是否为vip
    private Boolean lastVIP;// 上级是否为VIP
    private Boolean superLastVIP;// 上上级是否为vip
    private Date orderCreateTime;// 订单创建时间
 
    // public RateParams(int level, int orderType, boolean subsidy, boolean
    // vip, Boolean lastVIP, Boolean superLastVIP,
    // Date orderCreateTime) {
    // this.level = level;
    // this.orderType = orderType;
    // this.subsidy = subsidy;
    // this.vip = vip;
    // this.lastVIP = lastVIP;
    // this.superLastVIP = superLastVIP;
    // this.orderCreateTime = orderCreateTime;
    // }
 
    public OrderHongBaoRateParams(int level, int orderType, boolean subsidy, boolean vip, Date orderCreateTime) {
        this.level = level;
        this.orderType = orderType;
        this.subsidy = subsidy;
        this.vip = vip;
        this.orderCreateTime = orderCreateTime;
    }
 
    public OrderHongBaoRateParams() {
 
    }
 
    public Date getOrderCreateTime() {
        return orderCreateTime;
    }
 
    public void setOrderCreateTime(Date orderCreateTime) {
        this.orderCreateTime = orderCreateTime;
    }
 
    public int getLevel() {
        return level;
    }
 
    public void setLevel(int level) {
        this.level = level;
    }
 
    public int getOrderType() {
        return orderType;
    }
 
    public void setOrderType(int orderType) {
        this.orderType = orderType;
    }
 
    public boolean isSubsidy() {
        return subsidy;
    }
 
    public void setSubsidy(boolean subsidy) {
        this.subsidy = subsidy;
    }
 
    public boolean isVip() {
        return vip;
    }
 
    public void setVip(boolean vip) {
        this.vip = vip;
    }
 
    public Boolean isLastVIP() {
        return lastVIP;
    }
 
    public void setLastVIP(Boolean lastVIP) {
        this.lastVIP = lastVIP;
    }
 
    public Boolean isSuperLastVIP() {
        return superLastVIP;
    }
 
    public void setSuperLastVIP(Boolean superLastVIP) {
        this.superLastVIP = superLastVIP;
    }
 
}