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
package com.vci.ubcs.code.dto.datapush.data;
 
import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamAsAttribute;
 
@XStreamAlias("pro")
public class NodeProDTO {
    @XStreamAsAttribute
    private String filedName;
    @XStreamAsAttribute
    private String outname;
    @XStreamAsAttribute
    private String filedValue;
 
    public String getFiledName() {
        return filedName;
    }
 
    public void setFiledName(String filedName) {
        this.filedName = filedName;
    }
 
    public String getOutname() {
        return outname;
    }
 
    public void setOutname(String outname) {
        this.outname = outname;
    }
 
    public String getFiledValue() {
        return filedValue;
    }
 
    public void setFiledValue(String filedValue) {
        this.filedValue = filedValue;
    }
 
    @Override
    public String toString() {
        return "NodeProDTO{" +
                "filedName='" + filedName + '\'' +
                ", outname='" + outname + '\'' +
                ", filedValue='" + filedValue + '\'' +
                '}';
    }
}