eight
2024-12-12 2bc90e242eceb83d9aa80d48ea9f991c0f9b99c6
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 cn.lihu.jh.module.ecg.feign;
 
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
 
public class ExmRequest {
 
    private String authorOrganization;
    private String requestId;
    private String patientType;
    private Item item;
 
    @JacksonXmlProperty(localName = "AuthorOrganization")
    public String getAuthorOrganization() {
        return authorOrganization;
    }
 
    public void setAuthorOrganization(String authorOrganization) {
        this.authorOrganization = authorOrganization;
    }
 
    @JacksonXmlProperty(localName = "RequestId")
    public String getRequestId() {
        return requestId;
    }
 
    public void setRequestId(String requestId) {
        this.requestId = requestId;
    }
 
    @JacksonXmlProperty(localName = "PatientType")
    public String getPatientType() {
        return patientType;
    }
 
    public void setPatientType(String patientType) {
        this.patientType = patientType;
    }
 
    @JacksonXmlProperty(localName = "Item")
    public Item getItem() {
        return item;
    }
 
    public void setItem(Item item) {
        this.item = item;
    }
}