whycrzg
2021-02-23 351b9a53cb9ecebdf8f79db0117f540d9c42c2a4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.fgkj.dto;
 
import org.apache.ibatis.type.Alias;
@Alias("ImageSize")
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 + "]";
    }
    
}