Files
HouseProperty/ninegridview/src/main/java/com/lzy/ninegrid/ImageInfo.java
jinyuer fa1413fc30 1
2020-08-11 14:48:10 +08:00

92 lines
2.1 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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 +
'}';
}
}