From 82c1e7ced425f43781b0cd01290fad298f51e623 Mon Sep 17 00:00:00 2001
From: whyclj <1525436766@qq.com>
Date: 星期六, 29 六月 2019 13:27:41 +0800
Subject: [PATCH] Merge branch 'dev_lxw' of http://whyclj@118.89.139.230:10101/r/~whyclxw/sensor.git into dev_lxw

---
 sensor/src/com/fgkj/dto/ImageSize.java |   24 ++++++++++++++++++++++++
 1 files changed, 24 insertions(+), 0 deletions(-)

diff --git a/sensor/src/com/fgkj/dto/ImageSize.java b/sensor/src/com/fgkj/dto/ImageSize.java
new file mode 100644
index 0000000..6b469f3
--- /dev/null
+++ b/sensor/src/com/fgkj/dto/ImageSize.java
@@ -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 + "]";
+	}
+	
+}

--
Gitblit v1.9.1