package com.vci.server.portal.entity;
|
|
import java.io.Serializable;
|
|
import com.vci.common.objects.AbstractHistorizable;
|
|
/**
|
* 按钮参数对象
|
* @author VCI-STGK006
|
*
|
*/
|
public class PLActionParamEntity extends AbstractHistorizable implements Serializable{
|
|
/**
|
* serialVersionUID
|
*/
|
private static final long serialVersionUID = 952652357001409277L;
|
/**
|
* id
|
*/
|
private String oid = "";
|
/**
|
* 参数名称
|
*/
|
private String name = "";
|
/**
|
* 参数默认值
|
*/
|
private String defaultValue = "";
|
/**
|
* 参数描述
|
*/
|
private String description = "";
|
|
/**
|
* 所属action
|
*/
|
private String action = "";
|
|
public String getOid() {
|
return oid;
|
}
|
public void setOid(String oid) {
|
this.oid = oid;
|
}
|
public String getName() {
|
return name;
|
}
|
public void setName(String name) {
|
this.name = name;
|
}
|
public String getDefaultValue() {
|
return defaultValue;
|
}
|
public void setDefaultValue(String defaultValue) {
|
this.defaultValue = defaultValue;
|
}
|
public String getDescription() {
|
return description;
|
}
|
public void setDescription(String description) {
|
this.description = description;
|
}
|
|
public String getAction() {
|
return action;
|
}
|
public void setAction(String action) {
|
this.action = action;
|
}
|
// public String getNotNullString(String str) {
|
// if(str == null) {
|
// return "";
|
// }
|
// return str.trim();
|
// }
|
//
|
@Override
|
public String getId() {
|
return this.oid;
|
}
|
}
|