xiejun
2023-10-19 37dab8c3b3a9072d5fb9475e3c671ca591231505
Source/UBCS/ubcs-service-api/ubcs-code-api/src/main/java/com/vci/ubcs/code/vo/webserviceModel/apply/SectionsVO.java
@@ -0,0 +1,26 @@
package com.vci.ubcs.code.vo.webserviceModel.apply;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamImplicit;
import java.util.List;
@XStreamAlias("sections")
public class SectionsVO {
    @XStreamImplicit
    private List<SectionVO> section;
    public List<SectionVO> getSection() {
        return section;
    }
    public void setSection(List<SectionVO> section) {
        this.section = section;
    }
    @Override
    public String toString() {
        return "SectionsVO{" +
                "section=" + section +
                '}';
    }
}