package org.springblade.code.vo.universalInter.apply;
|
|
import com.thoughtworks.xstream.annotations.XStreamAlias;
|
import com.thoughtworks.xstream.annotations.XStreamAsAttribute;
|
|
@XStreamAlias("section")
|
public class SectionVO {
|
/**
|
* 码段名称
|
*/
|
@XStreamAsAttribute
|
private String name;
|
/***
|
* 码段值
|
*/
|
@XStreamAsAttribute
|
private String value;
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getValue() {
|
return value;
|
}
|
|
public void setValue(String value) {
|
this.value = value;
|
}
|
|
@Override
|
public String toString() {
|
return "SectionVO{" +
|
"name='" + name + '\'' +
|
", value='" + value + '\'' +
|
'}';
|
}
|
}
|