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;
|
}
|
}
|