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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
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 +
                '}';
    }
}