[测评系统]--测评系统核心代码库
linzhijie
2023-02-14 07b356ba6331e4a0be8558d64bb3b5db804c4389
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
27
28
29
30
31
32
33
34
35
36
37
package com.ots.common.utils.poi.consultation;
import static com.ots.common.utils.poi.consultation.ImageUtils.ImageType.PNG;
 
public class ImageEntity {
    
    private int width = 400;
    
    private int height = 300;
    
    private String url;
    
    private ImageUtils.ImageType typeId = PNG;
    public int getWidth() {
        return width;
    }
    public void setWidth(int width) {
        this.width = width;
    }
    public int getHeight() {
        return height;
    }
    public void setHeight(int height) {
        this.height = height;
    }
    public String getUrl() {
        return url;
    }
    public void setUrl(String url) {
        this.url = url;
    }
    public ImageUtils.ImageType getTypeId() {
        return typeId;
    }
    public void setTypeId(ImageUtils.ImageType typeId) {
        this.typeId = typeId;
    }
}