sensor/src/com/fgkj/dto/ImageSize.java
New file @@ -0,0 +1,24 @@ package com.fgkj.dto; public class ImageSize { private int width; private int hight; public int getWidth() { return width; } public void setWidth(int width) { this.width = width; } public int getHight() { return hight; } public void setHight(int hight) { this.hight = hight; } @Override public String toString() { return "ImageSize [width=" + width + ", hight=" + hight + "]"; } }