ludc
2024-10-15 aecacfb404d19749260189ab1d4ee90efc92ae24
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
package com.vci.web.xmlmodel;
 
import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamImplicit;
 
import java.util.ArrayList;
import java.util.List;
 
/**
 * 组件的详细配置信息
 * @author weidy
 * @date 2021/2/24
 */
@XStreamAlias("JD_DATASET")
public class UIComponentDetailXO implements java.io.Serializable{
 
    /**
     * 序列化
     */
    private static final long serialVersionUID = 755576513136805971L;
    /**
     * 显示的列数
     */
    @XStreamAlias("JD_SHOWCOLS")
    private String showColsCount;
 
    /**
     * 查询模板
     */
    @XStreamAlias("JD_FORMQTNAME")
    private String formQueryTemplateName;
 
    /**
     * 包含的明细
     */
    @XStreamImplicit
    private List<UIComponentItemXO> items = new ArrayList();
 
    public String getShowColsCount() {
        return showColsCount;
    }
 
    public void setShowColsCount(String showColsCount) {
        this.showColsCount = showColsCount;
    }
 
    public String getFormQueryTemplateName() {
        return formQueryTemplateName;
    }
 
    public void setFormQueryTemplateName(String formQueryTemplateName) {
        this.formQueryTemplateName = formQueryTemplateName;
    }
 
    public List<UIComponentItemXO> getItems() {
        return items;
    }
 
    public void setItems(List<UIComponentItemXO> items) {
        this.items = items;
    }
 
    @Override
    public String toString() {
        return "UIComponentDetailXO{" +
                "showColsCount='" + showColsCount + '\'' +
                ", formQueryTemplateName='" + formQueryTemplateName + '\'' +
                ", items=" + items +
                '}';
    }
}