ludc
2023-03-27 82a410d9ec7a5d15eed27e9990cff371feab43a1
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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 + '\'' +
                '}';
    }
}