package cn.lihu.jh.module.ecg.webservice.ws; 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 javax.xml.bind.annotation.XmlType; @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "jhfwtyrkResult" }) @XmlRootElement(name = "JHFWTYRKResponse") public class JHFWTYRKResponse { @XmlElement(name = "JHFWTYRKResult", required = true) protected String jhfwtyrkResult; public String getJHFWTYRKResult() { return jhfwtyrkResult; } public void setJHFWTYRKResult(String value) { this.jhfwtyrkResult = value; } }