1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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 + "]";
| }
|
| }
|
|