liusheng
2 天以前 5ba25cb53dab2ef0f8052a93796ef67a8a2ee820
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
 
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;
    }
 
}