admin
2022-03-29 fac5d01bfcddfc8edef0a5fd3d401b1fe383fe16
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package org.yeshi.utils.generater.vo.xmlconfig.admin.form;
 
import org.yeshi.utils.generater.vo.xmlconfig.base.ApiData;
import org.yeshi.utils.generater.vo.xmlconfig.base.FormComponent;
 
/**
 * @author hxh
 * @title: FormComponentSelect
 * @description: 图片控件
 * @date 2022/3/28 13:56
 */
public class FormComponentImg extends FormComponent {
 
    //图片上传链接
    private ApiData api;
    //是否可编辑图片链接
    private boolean editLink;
    private Integer width;
    private Integer height;
 
    public ApiData getApi() {
        return api;
    }
 
    public void setApi(ApiData api) {
        this.api = api;
    }
 
    public boolean isEditLink() {
        return editLink;
    }
 
    public void setEditLink(boolean editLink) {
        this.editLink = editLink;
    }
 
    public Integer getWidth() {
        return width;
    }
 
    public void setWidth(Integer width) {
        this.width = width;
    }
 
    public Integer getHeight() {
        return height;
    }
 
    public void setHeight(Integer height) {
        this.height = height;
    }
}