| | |
| | | package com.vci.ubcs.code.vo.webserviceModel.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 + '\'' + |
| | | '}'; |
| | | } |
| | | } |