94 lines
1.8 KiB
Java
94 lines
1.8 KiB
Java
package com.xscm.moduleutil.bean;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.List;
|
|
|
|
public class PhotoWallResp implements Serializable {
|
|
|
|
public String getVedio() {
|
|
return vedio;
|
|
}
|
|
|
|
public void setVedio(String vedio) {
|
|
this.vedio = vedio;
|
|
}
|
|
|
|
public String getAvatar() {
|
|
return avatar;
|
|
}
|
|
|
|
public void setAvatar(String avatar) {
|
|
this.avatar = avatar;
|
|
}
|
|
|
|
public String getVedio_cover() {
|
|
return vedio_cover;
|
|
}
|
|
|
|
public void setVedio_cover(String vedio_cover) {
|
|
this.vedio_cover = vedio_cover;
|
|
}
|
|
|
|
public List<GiftResp> getList() {
|
|
return list;
|
|
}
|
|
|
|
public void setList(List<GiftResp> list) {
|
|
this.list = list;
|
|
}
|
|
|
|
private String vedio;
|
|
private String avatar;
|
|
private String vedio_cover;
|
|
private List<GiftResp> list;
|
|
|
|
public static class GiftResp implements Serializable {
|
|
public GiftResp(String id, String url, int width, int height) {
|
|
this.id = id;
|
|
this.url = url;
|
|
this.width = width;
|
|
this.height = height;
|
|
}
|
|
|
|
public String getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(String id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getUrl() {
|
|
return url;
|
|
}
|
|
|
|
public void setUrl(String url) {
|
|
this.url = url;
|
|
}
|
|
|
|
public int getWidth() {
|
|
return width;
|
|
}
|
|
|
|
public void setWidth(int width) {
|
|
this.width = width;
|
|
}
|
|
|
|
public int getHeight() {
|
|
return height;
|
|
}
|
|
|
|
public void setHeight(int height) {
|
|
this.height = height;
|
|
}
|
|
|
|
private String id;
|
|
private String url;
|
|
private int width;
|
|
private int height;
|
|
|
|
}
|
|
|
|
|
|
}
|