package com.ots.common.utils.poi.consultation;
|
import static com.ots.common.utils.poi.consultation.ImageUtils.ImageType.PNG;
|
|
public class ImageEntity {
|
|
private int width = 400;
|
|
private int height = 300;
|
|
private String url;
|
|
private ImageUtils.ImageType typeId = PNG;
|
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;
|
}
|
public String getUrl() {
|
return url;
|
}
|
public void setUrl(String url) {
|
this.url = url;
|
}
|
public ImageUtils.ImageType getTypeId() {
|
return typeId;
|
}
|
public void setTypeId(ImageUtils.ImageType typeId) {
|
this.typeId = typeId;
|
}
|
}
|