package com.tejia.lijin.app.entity.trends;
|
|
public class SendCircleImage {
|
private int type;//类型:(1, "图片"), (2, "商品"),(3, "视频"),(4, "活动");
|
private String url;//图片链接
|
private String urlHD;//图片高清链接
|
private int w;//宽
|
private int h;//高
|
private boolean large;//是否是大图
|
private String videoUrl;//视频链接
|
private SendCircleImageGoods goods;//商品信息
|
private String activityUrl;//活动链接
|
|
|
public int getType() {
|
return type;
|
}
|
|
public void setType(int type) {
|
this.type = type;
|
}
|
|
public String getUrl() {
|
return url;
|
}
|
|
public void setUrl(String url) {
|
this.url = url;
|
}
|
|
public String getUrlHD() {
|
return urlHD;
|
}
|
|
public void setUrlHD(String urlHD) {
|
this.urlHD = urlHD;
|
}
|
|
public int getW() {
|
return w;
|
}
|
|
public void setW(int w) {
|
this.w = w;
|
}
|
|
public int getH() {
|
return h;
|
}
|
|
public void setH(int h) {
|
this.h = h;
|
}
|
|
public boolean isLarge() {
|
return large;
|
}
|
|
public void setLarge(boolean large) {
|
this.large = large;
|
}
|
|
public String getVideoUrl() {
|
return videoUrl;
|
}
|
|
public void setVideoUrl(String videoUrl) {
|
this.videoUrl = videoUrl;
|
}
|
|
public SendCircleImageGoods getGoods() {
|
return goods;
|
}
|
|
public void setGoods(SendCircleImageGoods goods) {
|
this.goods = goods;
|
}
|
|
public String getActivityUrl() {
|
return activityUrl;
|
}
|
|
public void setActivityUrl(String activityUrl) {
|
this.activityUrl = activityUrl;
|
}
|
|
}
|