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.
42 lines
804 B
42 lines
804 B
package com.fr.plugin.shdcmap.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; |
|
} |
|
}
|
|
|