package com.vci.ubcs.example.apply;
|
|
import com.thoughtworks.xstream.annotations.XStreamAlias;
|
import com.thoughtworks.xstream.annotations.XStreamAsAttribute;
|
import lombok.AllArgsConstructor;
|
import lombok.Data;
|
import lombok.NoArgsConstructor;
|
|
@XStreamAlias("section")
|
@AllArgsConstructor
|
@NoArgsConstructor
|
@Data
|
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 + '\'' +
|
'}';
|
}
|
}
|