wpc
2018-11-27 680fbc9e73da3e11988557cf88fd935efd3e0b1e
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
package com.haicaojie.android.entity;
 
import com.google.gson.annotations.Expose;
 
import java.io.Serializable;
 
/**
 * Created by weikou2015 on 2018/5/15.
 */
 
public class CouponInfo implements Serializable {
 
    @Expose
    String couponPrice;
    @Expose
    String couponUrl;
    @Expose
    String couponAmount;
    @Expose
    String couponTime;
 
    public String getCouponPrice() {
        return couponPrice;
    }
 
    public void setCouponPrice(String couponPrice) {
        this.couponPrice = couponPrice;
    }
 
    public String getCouponUrl() {
        return couponUrl;
    }
 
    public void setCouponUrl(String couponUrl) {
        this.couponUrl = couponUrl;
    }
 
    public String getCouponAmount() {
        return couponAmount;
    }
 
    public void setCouponAmount(String couponAmount) {
        this.couponAmount = couponAmount;
    }
 
    public String getCouponTime() {
        return couponTime;
    }
 
    public void setCouponTime(String couponTime) {
        this.couponTime = couponTime;
    }
}