ludc
2025-01-16 986aa62ed00bee39363bab41b4eeb8259d446efd
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.server.query.refquery.objects;
 
import com.vci.corba.omd.atm.AttribItem;
import com.vci.corba.omd.btm.BtmItem;
import com.vci.corba.omd.ltm.LinkType;
 
 
public class MetaData  {
    // 参照层次
    private Integer level;
 
    // 属性定义信息
    private AttribItem attribItem;
    // 类型定义信息
    private BtmItem refType;
    // 链接定义信息
    private LinkType refLink;
    // 是否是业务类型
    private boolean isType;
    
    private int queryEnum;
 
    public int getQueryEnum() {
        return queryEnum;
    }
 
    public void setQueryEnum(int queryEnum) {
        this.queryEnum = queryEnum;
    }
 
    public boolean isType() {
        return isType;
    }
 
    public void setType(boolean isType) {
        this.isType = isType;
    }
 
    public LinkType getRefLink() {
        return refLink;
    }
 
    public void setRefLink(LinkType refLink) {
        this.refLink = refLink;
    }
 
    public void setRefType(BtmItem refType) {
        this.refType = refType;
    }
 
    public void setAttribItem(AttribItem attribItem) {
        this.attribItem = attribItem;
    }
 
    public Integer getLevel() {
        return level;
    }
 
    public void setLevel(Integer level) {
        this.level = level;
    }
 
    public BtmItem getRefType() {
        return refType;
    }
 
    public AttribItem getAttributeDef() {
        return attribItem;
    }
 
}