You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
806 B
43 lines
806 B
3 years ago
|
package com.fr.plugin.lzljgdmap.ui;
|
||
|
|
||
|
import java.io.Serializable;
|
||
|
|
||
|
public class ImageEntity implements Serializable {
|
||
|
private String imagestr;
|
||
|
private String imagetype;
|
||
|
private int width;
|
||
|
private int height;
|
||
|
|
||
|
public String getImagestr() {
|
||
|
return imagestr;
|
||
|
}
|
||
|
|
||
|
public void setImagestr(String imagestr) {
|
||
|
this.imagestr = imagestr;
|
||
|
}
|
||
|
|
||
|
public String getImagetype() {
|
||
|
return imagetype;
|
||
|
}
|
||
|
|
||
|
public void setImagetype(String imagetype) {
|
||
|
this.imagetype = imagetype;
|
||
|
}
|
||
|
|
||
|
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;
|
||
|
}
|
||
|
}
|