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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
package com.vci.server.portal.entity;
 
import java.io.Serializable;
 
import com.vci.common.annotaion.CustomAnnotaion;
import com.vci.common.objects.AbstractHistorizable;
 
/**
 * PortalVI Hibernate Object
 * @author zhouhui
 *
 */
@CustomAnnotaion(CustomDescription = "门户视图")
public class PortalVIEntity extends AbstractHistorizable implements Serializable{
 
    /**
     * 
     */
    private static final long serialVersionUID = 7554567180053172375L;
    
    @CustomAnnotaion(CustomDescription = "ID")
    private String id = "";
    
    @CustomAnnotaion(CustomDescription = "类型标志: 0:业务类型; 1:链接类型")
    private short typeFlag = 0;
    
    @CustomAnnotaion(CustomDescription = "类型名")
    private String typeName = "";
    
    @CustomAnnotaion(CustomDescription = "表单或列表名")
    private String viName = "";
    
    @CustomAnnotaion(CustomDescription = "视图类型: 0:表单; 1:列表")
    private short viType = 0;
    
    @CustomAnnotaion(CustomDescription = "视图xml")
    private String prm = "";
 
    @Override
    public String getId() {
        return this.id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
    
    public short getTypeFlag() {
        return typeFlag;
    }
 
    public void setTypeFlag(short typeFlag) {
        this.typeFlag = typeFlag;
    }
 
    public String getTypeName() {
        return typeName;
    }
 
    public void setTypeName(String typeName) {
        this.typeName = typeName;
    }
 
    public String getViName() {
        return viName;
    }
 
    public void setViName(String viName) {
        this.viName = viName;
    }
 
    public short getViType() {
        return viType;
    }
 
    public void setViType(short viType) {
        this.viType = viType;
    }
 
    public String getPrm() {
        return prm;
    }
 
    public void setPrm(String prm) {
        this.prm = prm;
    }
}