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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
package org.yeshi.utils.generater.vo.xmlconfig.admin;
 
import org.yeshi.utils.generater.annotation.admin.Show;
import org.yeshi.utils.generater.vo.xmlconfig.base.FormComponent;
 
/**
 * @author hxh
 * @title: ColumnData
 * @description: 列信息
 * @date 2022/3/28 14:05
 */
public class ColumnData {
    //显示标题
    private String title;
    //属性字段
    private String property;
    //排序字段
    private Integer order;
 
    //显示类型
    private Show.ShowType showType;
 
    private int imgWidth;
 
    private int imgHeight;
 
    //编辑控件
    private FormComponent component;
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getProperty() {
        return property;
    }
 
    public void setProperty(String property) {
        this.property = property;
    }
 
    public Integer getOrder() {
        return order;
    }
 
    public void setOrder(Integer order) {
        this.order = order;
    }
 
    public FormComponent getComponent() {
        return component;
    }
 
    public void setComponent(FormComponent component) {
        this.component = component;
    }
 
    public Show.ShowType getShowType() {
        return showType;
    }
 
    public void setShowType(Show.ShowType showType) {
        this.showType = showType;
    }
 
 
    public int getImgWidth() {
        return imgWidth;
    }
 
    public void setImgWidth(int imgWidth) {
        this.imgWidth = imgWidth;
    }
 
    public int getImgHeight() {
        return imgHeight;
    }
 
    public void setImgHeight(int imgHeight) {
        this.imgHeight = imgHeight;
    }
}