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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
package com.vci.server.portal.entity;
 
import java.io.Serializable;
import java.util.Date;
 
import com.vci.common.annotaion.CustomAnnotaion;
import com.vci.common.objects.AbstractHistorizable;
 
@CustomAnnotaion(CustomDescription = "用来定义当前类型的一个布局")
public class PLUILayoutEntity extends AbstractHistorizable implements Serializable{
    
    /**
     * 
     */
    private static final long serialVersionUID = -2514292915409188335L;
    private String plOId = ""; 
    private String plCode = "";
    private String plName = "";
    private String plRelatedType = "";
    private String plStyle = "";
    private String plDesc = ""; 
    private short plIsShowTab = 0;
    private short plIsShowForm = 0;
    private short plIsShowNavigator = 0;
    private Date plCreateTime = new Date();
    private String plCreateUser = "";
    private Date plModifyTime = new Date();
    private String plModifyUser = "";
    private String plLicensOrs = "";
    
    @Override
    public String getId() {
        return plOId;
    }
 
    public String getPlOId() {
        return plOId;
    }
 
    public void setPlOId(String plOId) {
        this.plOId = plOId;
    }
 
    public String getPlCode() {
        return plCode;
    }
 
    public void setPlCode(String plCode) {
        this.plCode = plCode;
    }
 
    public String getPlName() {
        return plName;
    }
 
    public void setPlName(String plName) {
        this.plName = plName;
    }
 
    public String getPlRelatedType() {
        return plRelatedType;
    }
 
    public void setPlRelatedType(String plRelatedType) {
        this.plRelatedType = plRelatedType;
    }
 
    /**
     * @return the plStyle
     */
    public String getPlStyle() {
        return plStyle;
    }
 
    /**
     * @param plStyle the plStyle to set
     */
    public void setPlStyle(String plStyle) {
        this.plStyle = plStyle;
    }
 
    public String getPlDesc() {
        return plDesc;
    }
 
    public void setPlDesc(String plDesc) {
        this.plDesc = plDesc;
    }
 
    public short getPlIsShowTab() {
        return plIsShowTab;
    }
 
    public void setPlIsShowTab(short plIsShowTab) {
        this.plIsShowTab = plIsShowTab;
    }
 
    public short getPlIsShowForm() {
        return plIsShowForm;
    }
 
    public void setPlIsShowForm(short plIsShowForm) {
        this.plIsShowForm = plIsShowForm;
    }
 
    public short getPlIsShowNavigator() {
        return plIsShowNavigator;
    }
 
    public void setPlIsShowNavigator(short plIsShowNavigator) {
        this.plIsShowNavigator = plIsShowNavigator;
    }
 
    public Date getPlCreateTime() {
        return plCreateTime;
    }
 
    public void setPlCreateTime(Date plCreateTime) {
        this.plCreateTime = plCreateTime;
    }
 
    public String getPlCreateUser() {
        return plCreateUser;
    }
 
    public void setPlCreateUser(String plCreateUser) {
        this.plCreateUser = plCreateUser;
    }
 
    public Date getPlModifyTime() {
        return plModifyTime;
    }
 
    public void setPlModifyTime(Date plModifyTime) {
        this.plModifyTime = plModifyTime;
    }
 
    public String getPlModifyUser() {
        return plModifyUser;
    }
 
    public void setPlModifyUser(String plModifyUser) {
        this.plModifyUser = plModifyUser;
    }
 
    public String getPlLicensOrs() {
        return plLicensOrs;
    }
 
    public void setPlLicensOrs(String plLicensOrs) {
        this.plLicensOrs = plLicensOrs;
    }
}