package com.vci.ubcs.example.applybz;
|
|
import com.thoughtworks.xstream.annotations.XStreamAlias;
|
import com.thoughtworks.xstream.annotations.XStreamAsAttribute;
|
|
@XStreamAlias("prop")
|
public class ProppertyBZVO {
|
/**
|
* 属性字段
|
*/
|
@XStreamAsAttribute
|
private String key;
|
/**
|
* 属性显示名称
|
*/
|
@XStreamAsAttribute
|
private String text;
|
/**
|
* 属性值
|
*/
|
@XStreamAsAttribute
|
private String value;
|
|
public String getKey() {
|
return key;
|
}
|
|
public void setKey(String key) {
|
this.key = key;
|
}
|
|
public String getText() {
|
return text;
|
}
|
|
public void setText(String text) {
|
this.text = text;
|
}
|
|
public String getValue() {
|
return value;
|
}
|
|
public void setValue(String value) {
|
this.value = value;
|
}
|
|
@Override
|
public String toString() {
|
return "ProppertyVO{" +
|
"key='" + key + '\'' +
|
", text='" + text + '\'' +
|
", value='" + value + '\'' +
|
'}';
|
}
|
}
|