admin
2020-12-05 8ac93bd9b45e3d25783798e1fe8cfc26bedd57d2
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
package com.ks.daylucky.pojo.VO;
 
public class ActivityLuckyCouponVO {
    private String title;
    private int count;
    private String time;
 
 
    public ActivityLuckyCouponVO(String title, int count, String time) {
        this.title = title;
        this.count = count;
        this.time = time;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public int getCount() {
        return count;
    }
 
    public void setCount(int count) {
        this.count = count;
    }
 
    public String getTime() {
        return time;
    }
 
    public void setTime(String time) {
        this.time = time;
    }
}