package com.ks.daylucky.pojo.VO;
|
|
public class ActivityShareInfoVO {
|
private String path;
|
private String title;
|
private String desc;
|
private String content;
|
private String imageUrl;
|
private String bgImgUrl;
|
|
public String getPath() {
|
return path;
|
}
|
|
public void setPath(String path) {
|
this.path = path;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public String getDesc() {
|
return desc;
|
}
|
|
public void setDesc(String desc) {
|
this.desc = desc;
|
}
|
|
public String getContent() {
|
return content;
|
}
|
|
public void setContent(String content) {
|
this.content = content;
|
}
|
|
public String getImageUrl() {
|
return imageUrl;
|
}
|
|
public void setImageUrl(String imageUrl) {
|
this.imageUrl = imageUrl;
|
}
|
|
public String getBgImgUrl() {
|
return bgImgUrl;
|
}
|
|
public void setBgImgUrl(String bgImgUrl) {
|
this.bgImgUrl = bgImgUrl;
|
}
|
}
|