81041
2019-06-20 e4efa2387409d35e1fc5e566b84e2065aafa30a6
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 + "]";
   }
}