package com.example.qyh.joe.bean; import java.io.Serializable; /** * Created by admin on 2016/8/12. */ public class ThreeDataBean implements Serializable { private static final long serialVersionUID = 1L; private String title; private String thumburl; private String sourceurl; private int height; private int width; public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getThumburl() { return thumburl; } public void setThumburl(String thumburl) { this.thumburl = thumburl; } public String getSourceurl() { return sourceurl; } public void setSourceurl(String sourceurl) { this.sourceurl = sourceurl; } public int getHeight() { return height; } public void setHeight(int height) { this.height = height; } public int getWidth() { return width; } public void setWidth(int width) { this.width = width; } @Override public String toString() { return "SecondDataBean{" + "title='" + title + '\'' + ", thumburl='" + thumburl + '\'' + ", sourceurl='" + sourceurl + '\'' + ", height=" + height + ", width=" + width + '}'; } }