Files
HouseProperty/ninegridview/src/main/java/com/lzy/ninegrid/ImageInfo.java

92 lines
2.1 KiB
Java
Raw Normal View History

2020-08-11 14:48:10 +08:00
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 +
'}';
}
}