ludc
2024-05-17 58e1c4e2bdc8e4f8b647d7c2b9e5e5656a00b445
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.vci.ubcs.example.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 +
                '}';
    }
}