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