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;
|
}
|
}
|