田源
2024-03-25 5dd6f4aa2123671e95907ee19f5925a98983cdc8
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
43
44
45
46
47
48
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 + '\'' +
                '}';
    }
}