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;
|
}
|
}
|