package com.ks.daylucky.pojo.VO;
|
|
import com.google.gson.annotations.Expose;
|
|
/**
|
* 活动详情
|
*/
|
public class UserActivityUnRecievedAwardVO {
|
|
@Expose
|
private String id;
|
@Expose
|
private String title;
|
|
@Expose
|
private ActivityAwardVO award;
|
|
@Expose
|
private Long activityId;
|
@Expose
|
private Integer type;
|
@Expose
|
private String desc;
|
|
|
public String getDesc() {
|
return desc;
|
}
|
|
public void setDesc(String desc) {
|
this.desc = desc;
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public Integer getType() {
|
return type;
|
}
|
|
public void setType(Integer type) {
|
this.type = type;
|
}
|
|
public Long getActivityId() {
|
return activityId;
|
}
|
|
public void setActivityId(Long activityId) {
|
this.activityId = activityId;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public ActivityAwardVO getAward() {
|
return award;
|
}
|
|
public void setAward(ActivityAwardVO award) {
|
this.award = award;
|
}
|
}
|