package com.ks.daylucky.pojo.VO.admin;
|
|
import com.ks.daylucky.pojo.DO.ActivityTag;
|
|
import java.math.BigDecimal;
|
import java.util.List;
|
|
public class ActivityAdminVo {
|
|
private Long id;
|
private ActivityBean activity;
|
private JoinInfoBean joinInfo;
|
private OpenInfoBean openInfo;
|
private List<AwardInfoBean> awardInfo;
|
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public ActivityBean getActivity() {
|
return activity;
|
}
|
|
public void setActivity(ActivityBean activity) {
|
this.activity = activity;
|
}
|
|
public JoinInfoBean getJoinInfo() {
|
return joinInfo;
|
}
|
|
public void setJoinInfo(JoinInfoBean joinInfo) {
|
this.joinInfo = joinInfo;
|
}
|
|
public OpenInfoBean getOpenInfo() {
|
return openInfo;
|
}
|
|
public void setOpenInfo(OpenInfoBean openInfo) {
|
this.openInfo = openInfo;
|
}
|
|
public List<AwardInfoBean> getAwardInfo() {
|
return awardInfo;
|
}
|
|
public void setAwardInfo(List<AwardInfoBean> awardInfo) {
|
this.awardInfo = awardInfo;
|
}
|
|
public static class ActivityBean {
|
/**
|
* poster : https://daylucky-1255749512.cos.ap-nanjing.myqcloud.com/image/activity/poster/4dad5e05-9fa8-4f47-8b40-f5b5255ee4fc.png
|
*/
|
private Long id;
|
private String poster;
|
private List<BannerBean> bannerList;
|
private List<ActivityTag> tags;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public List<BannerBean> getBannerList() {
|
return bannerList;
|
}
|
|
public void setBannerList(List<BannerBean> bannerList) {
|
this.bannerList = bannerList;
|
}
|
|
public String getPoster() {
|
return poster;
|
}
|
|
public void setPoster(String poster) {
|
this.poster = poster;
|
}
|
|
public List<ActivityTag> getTags() {
|
return tags;
|
}
|
|
public void setTags(List<ActivityTag> tags) {
|
this.tags = tags;
|
}
|
|
public static class BannerBean {
|
private String id;
|
private String url;
|
|
public String getUrl() {
|
return url;
|
}
|
|
public void setUrl(String url) {
|
this.url = url;
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
}
|
}
|
|
public static class JoinInfoBean {
|
/**
|
* adInfo : {"data":{"icon":"https://daylucky-1255749512.cos.ap-nanjing.myqcloud.com/image/activity/sponsorad/79e3c033-ac7c-4b7d-9aa2-5dbce85ee6ea.png","name":"2133322222","sceneId":"213213321","desc":""},"type":"alipayLife"}
|
* must : 0
|
* desc : 参与条件说明
|
*/
|
|
private Long id;
|
private AdInfoBean adInfo;
|
private Integer must;
|
private String desc;
|
|
public AdInfoBean getAdInfo() {
|
return adInfo;
|
}
|
|
public void setAdInfo(AdInfoBean adInfo) {
|
this.adInfo = adInfo;
|
}
|
|
public Integer getMust() {
|
return must;
|
}
|
|
public void setMust(Integer must) {
|
this.must = must;
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getDesc() {
|
return desc;
|
}
|
|
public void setDesc(String desc) {
|
this.desc = desc;
|
}
|
|
public static class AdInfoBean {
|
/**
|
* data : {"icon":"https://daylucky-1255749512.cos.ap-nanjing.myqcloud.com/image/activity/sponsorad/79e3c033-ac7c-4b7d-9aa2-5dbce85ee6ea.png","name":"2133322222","sceneId":"213213321","desc":""}
|
* type : alipayLife
|
*/
|
|
private DataBean data;
|
private String type;
|
|
public DataBean getData() {
|
return data;
|
}
|
|
public void setData(DataBean data) {
|
this.data = data;
|
}
|
|
public String getType() {
|
return type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
public static class DataBean {
|
/**
|
* icon : https://daylucky-1255749512.cos.ap-nanjing.myqcloud.com/image/activity/sponsorad/79e3c033-ac7c-4b7d-9aa2-5dbce85ee6ea.png
|
* name : 2133322222
|
* sceneId : 213213321
|
* desc :
|
*/
|
|
private String icon;
|
private String name;
|
private String sceneId;
|
private String desc;
|
|
public String getIcon() {
|
return icon;
|
}
|
|
public void setIcon(String icon) {
|
this.icon = icon;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getSceneId() {
|
return sceneId;
|
}
|
|
public void setSceneId(String sceneId) {
|
this.sceneId = sceneId;
|
}
|
|
public String getDesc() {
|
return desc;
|
}
|
|
public void setDesc(String desc) {
|
this.desc = desc;
|
}
|
}
|
}
|
}
|
|
public static class OpenInfoBean {
|
/**
|
* minPersonCount : 1000
|
* day : 2
|
*/
|
private Long id;
|
private Integer minPersonCount;
|
private Integer maxPersonCount;
|
private Integer day;
|
private String desc;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Integer getMaxPersonCount() {
|
return maxPersonCount;
|
}
|
|
public void setMaxPersonCount(Integer maxPersonCount) {
|
this.maxPersonCount = maxPersonCount;
|
}
|
|
public String getDesc() {
|
return desc;
|
}
|
|
public void setDesc(String desc) {
|
this.desc = desc;
|
}
|
|
public Integer getMinPersonCount() {
|
return minPersonCount;
|
}
|
|
public void setMinPersonCount(Integer minPersonCount) {
|
this.minPersonCount = minPersonCount;
|
}
|
|
public Integer getDay() {
|
return day;
|
}
|
|
public void setDay(Integer day) {
|
this.day = day;
|
}
|
}
|
|
public static class AwardInfoBean {
|
/**
|
* title : 奖项一
|
* data : {"total":"100","count":"1000","type":2}
|
* selected : true
|
*/
|
private Long id;
|
private String title;
|
private DataBeanX data;
|
private String type;
|
private boolean selected;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getType() {
|
return type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public DataBeanX getData() {
|
return data;
|
}
|
|
public void setData(DataBeanX data) {
|
this.data = data;
|
}
|
|
public boolean isSelected() {
|
return selected;
|
}
|
|
public void setSelected(boolean selected) {
|
this.selected = selected;
|
}
|
|
public static class DataBeanX {
|
/**
|
* total : 100
|
* count : 1000
|
* type : 2
|
*/
|
|
private BigDecimal total;
|
private Integer count;
|
private int type;
|
|
public BigDecimal getTotal() {
|
return total;
|
}
|
|
public void setTotal(BigDecimal total) {
|
this.total = total;
|
}
|
|
public Integer getCount() {
|
return count;
|
}
|
|
public void setCount(Integer count) {
|
this.count = count;
|
}
|
|
public int getType() {
|
return type;
|
}
|
|
public void setType(int type) {
|
this.type = type;
|
}
|
}
|
}
|
}
|