92 lines
2.1 KiB
Java
92 lines
2.1 KiB
Java
package com.lzy.ninegrid;
|
||
|
||
import java.io.Serializable;
|
||
|
||
/**
|
||
* ================================================
|
||
* 作 者:廖子尧
|
||
* 版 本:1.0
|
||
* 创建日期:2016/3/21
|
||
* 描 述:
|
||
* 修订历史:
|
||
* ================================================
|
||
*/
|
||
public class ImageInfo implements Serializable {
|
||
public String thumbnailUrl;
|
||
public String bigImageUrl;
|
||
public int imageViewHeight;
|
||
public int imageViewWidth;
|
||
public int imageViewX;
|
||
public int imageViewY;
|
||
public int type;
|
||
|
||
public int getType() {
|
||
return type;
|
||
}
|
||
|
||
public void setType(int type) {
|
||
this.type = type;
|
||
}
|
||
|
||
public String getThumbnailUrl() {
|
||
return thumbnailUrl;
|
||
}
|
||
|
||
public void setThumbnailUrl(String thumbnailUrl) {
|
||
this.thumbnailUrl = thumbnailUrl;
|
||
}
|
||
|
||
public String getBigImageUrl() {
|
||
return bigImageUrl;
|
||
}
|
||
|
||
public void setBigImageUrl(String bigImageUrl) {
|
||
this.bigImageUrl = bigImageUrl;
|
||
}
|
||
|
||
public int getImageViewHeight() {
|
||
return imageViewHeight;
|
||
}
|
||
|
||
public void setImageViewHeight(int imageViewHeight) {
|
||
this.imageViewHeight = imageViewHeight;
|
||
}
|
||
|
||
public int getImageViewWidth() {
|
||
return imageViewWidth;
|
||
}
|
||
|
||
public void setImageViewWidth(int imageViewWidth) {
|
||
this.imageViewWidth = imageViewWidth;
|
||
}
|
||
|
||
public int getImageViewX() {
|
||
return imageViewX;
|
||
}
|
||
|
||
public void setImageViewX(int imageViewX) {
|
||
this.imageViewX = imageViewX;
|
||
}
|
||
|
||
public int getImageViewY() {
|
||
return imageViewY;
|
||
}
|
||
|
||
public void setImageViewY(int imageViewY) {
|
||
this.imageViewY = imageViewY;
|
||
}
|
||
|
||
@Override
|
||
public String toString() {
|
||
return "ImageInfo{" +
|
||
"thumbnailUrl='" + thumbnailUrl + '\'' +
|
||
", bigImageUrl='" + bigImageUrl + '\'' +
|
||
", imageViewHeight=" + imageViewHeight +
|
||
", imageViewWidth=" + imageViewWidth +
|
||
", imageViewX=" + imageViewX +
|
||
", imageViewY=" + imageViewY +
|
||
", type=" + type +
|
||
'}';
|
||
}
|
||
}
|