whycxzp
2024-10-21 13d2d9bc303a793d47198de8416447be113d7bbc
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
package com.whyc.webService.dto.response.response1;
 
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlAccessorType;
 
@XmlAccessorType(XmlAccessType.FIELD)
public class Api {
    @XmlAttribute(name = "name")
    private String name;
 
    @XmlElement(name = "value")
    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;
    }
}