package com.whyc.webService.dto.request;
|
|
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlRootElement;
|
import java.util.List;
|
|
@XmlRootElement(name = "info")
|
@XmlAccessorType(XmlAccessType.FIELD)
|
public class RequestParam {
|
|
@XmlElement(name = "CorporationCode")
|
private String corporationCode;
|
|
@XmlElement(name = "Time")
|
private String time;
|
|
@XmlElement(name = "api")
|
private List<Api> apis;
|
|
public String getCorporationCode() {
|
return corporationCode;
|
}
|
|
public void setCorporationCode(String corporationCode) {
|
this.corporationCode = corporationCode;
|
}
|
|
public String getTime() {
|
return time;
|
}
|
|
public void setTime(String time) {
|
this.time = time;
|
}
|
|
public List<Api> getApis() {
|
return apis;
|
}
|
|
public void setApis(List<Api> apis) {
|
this.apis = apis;
|
}
|
|
@Override
|
public String toString() {
|
return "RequestParam{" +
|
"corporationCode='" + corporationCode + '\'' +
|
", time='" + time + '\'' +
|
", apis=" + apis +
|
'}';
|
}
|
}
|