parent
d97ba4e3b2
commit
35b4e1c5d5
@ -0,0 +1,34 @@
|
|||||||
|
package com.emr.entity;
|
||||||
|
|
||||||
|
public class MergePDFItem {
|
||||||
|
public MergePDFItem()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
public MergePDFItem(String pdfPath, Archive_Detail obj)
|
||||||
|
{
|
||||||
|
this.pdfPath = pdfPath;
|
||||||
|
this.dObj = obj;
|
||||||
|
}
|
||||||
|
public String pdfPath;
|
||||||
|
|
||||||
|
public String getPdfPath() {
|
||||||
|
return pdfPath;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPdfPath(String pdfPath) {
|
||||||
|
this.pdfPath = pdfPath;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Archive_Detail getdObj() {
|
||||||
|
return dObj;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setdObj(Archive_Detail dObj) {
|
||||||
|
this.dObj = dObj;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Archive_Detail dObj;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,9 @@
|
|||||||
|
package com.emr.util;
|
||||||
|
|
||||||
|
|
||||||
|
public class ExSys extends Exception {
|
||||||
|
public ExSys(String message, Object... args)
|
||||||
|
{
|
||||||
|
super(String.format(message, args));
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,114 @@
|
|||||||
|
package com.emr.util;
|
||||||
|
|
||||||
|
import com.sun.org.apache.xalan.internal.lib.ExsltBase;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.FileInputStream;
|
||||||
|
import java.io.FileOutputStream;
|
||||||
|
import java.nio.file.Path;
|
||||||
|
|
||||||
|
public class FileHelper {
|
||||||
|
public static String getAssemblyFolder() throws Exception {
|
||||||
|
String ret = System.getProperty("user.dir");
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static boolean File_IsExist(String file) {
|
||||||
|
File f = new File(file);
|
||||||
|
return f.exists();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static boolean Fold_IsExist(String folder) {
|
||||||
|
File f = new File(folder);
|
||||||
|
if (f.isDirectory()) {
|
||||||
|
return f.exists();
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static String GetTempFile() throws Exception {
|
||||||
|
String folder = getAssemblyFolder();
|
||||||
|
folder = String.format("%s/%s", folder, "TmpFiles");
|
||||||
|
File fFolder = new File(folder);
|
||||||
|
fFolder.mkdirs();
|
||||||
|
|
||||||
|
String file = String.format("%s/%s", folder, IDHelper.NewID()+"");
|
||||||
|
File ffile = new File(file);
|
||||||
|
ffile.createNewFile();
|
||||||
|
return file;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static String GetTempFile_TempFolder(String tempFolder) throws Exception {
|
||||||
|
File folder = new File(tempFolder);
|
||||||
|
if (!folder.isDirectory()) {
|
||||||
|
throw new ExSys("无效的文件路径 %s", tempFolder);
|
||||||
|
}
|
||||||
|
if (!folder.exists()) {
|
||||||
|
folder.mkdirs();
|
||||||
|
}
|
||||||
|
|
||||||
|
String tmpFile = String.format("%s/%l", tempFolder, IDHelper.NewID());
|
||||||
|
DeleteFile(tmpFile);
|
||||||
|
return tmpFile;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void DeleteFile(String filePath) throws Exception {
|
||||||
|
File file = new File(filePath);
|
||||||
|
if (!file.exists()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
boolean ret = file.delete();
|
||||||
|
int timeout = 45*1000;
|
||||||
|
while(true)
|
||||||
|
{
|
||||||
|
if(timeout<0)
|
||||||
|
{
|
||||||
|
throw new ExSys("无法删除文件 %s", filePath);
|
||||||
|
}
|
||||||
|
if(ret)
|
||||||
|
{
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
Thread.sleep(1000);
|
||||||
|
timeout-=1000;
|
||||||
|
ret = file.delete();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void CopyFile(String old, String newFle) throws Exception {
|
||||||
|
File nf = new File(newFle);
|
||||||
|
if (nf.isDirectory()) {
|
||||||
|
throw new ExSys("无效的目标文件路径 %s", newFle);
|
||||||
|
}
|
||||||
|
if (nf.exists()) {
|
||||||
|
throw new ExSys("目标文件路径存在 %s", newFle);
|
||||||
|
}
|
||||||
|
File of = new File(old);
|
||||||
|
if (of.isDirectory()) {
|
||||||
|
throw new ExSys("无效的源文件路径 %s", old);
|
||||||
|
}
|
||||||
|
if (!of.exists()) {
|
||||||
|
throw new ExSys("源文件路径不存在 %s", old);
|
||||||
|
}
|
||||||
|
|
||||||
|
File pfile = nf.getParentFile();
|
||||||
|
if (!pfile.exists()) {
|
||||||
|
pfile.mkdirs();
|
||||||
|
}
|
||||||
|
|
||||||
|
FileInputStream fis = new FileInputStream(old);//创建输入流对象
|
||||||
|
FileOutputStream fos = new FileOutputStream(newFle); //创建输出流对象
|
||||||
|
try {
|
||||||
|
byte datas[] = new byte[1024 * 8];//创建搬运工具
|
||||||
|
int len = 0;//创建长度
|
||||||
|
while ((len = fis.read(datas)) != -1)//循环读取数据
|
||||||
|
{
|
||||||
|
fos.write(datas, 0, len);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
finally {
|
||||||
|
fis.close();//释放资源
|
||||||
|
fos.close();//释放资源
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,24 @@
|
|||||||
|
package com.emr.util;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
public class Main {
|
||||||
|
|
||||||
|
public static void main(String[] args) throws IOException {
|
||||||
|
// write your code here
|
||||||
|
String f1 ="c:/1.pdf";
|
||||||
|
String f2 = "c:/2.pdf";
|
||||||
|
String f3 = "c:/1212cpy.pdf";
|
||||||
|
List<String> fs = new ArrayList<>();
|
||||||
|
fs.add(f1);
|
||||||
|
fs.add(f2);
|
||||||
|
try {
|
||||||
|
PDFHelper.Append(fs, f3);
|
||||||
|
} catch (Exception e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
System.out.println("enter any key..");
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,8 @@
|
|||||||
|
package com.emr.util;
|
||||||
|
|
||||||
|
public class common
|
||||||
|
{
|
||||||
|
public static boolean isEmpty(String str) {
|
||||||
|
return (str == null || str.equals("") || str.length() == 0);
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,60 @@
|
|||||||
|
|
||||||
|
package com.emr.webservice.HomepageDictionary;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>CheckData complex type的 Java 类。
|
||||||
|
*
|
||||||
|
* <p>以下模式片段指定包含在此类中的预期内容。
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="CheckData">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="masterId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "CheckData", propOrder = {
|
||||||
|
"masterId"
|
||||||
|
})
|
||||||
|
public class CheckData {
|
||||||
|
|
||||||
|
protected String masterId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取masterId属性的值。
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getMasterId() {
|
||||||
|
return masterId;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设置masterId属性的值。
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMasterId(String value) {
|
||||||
|
this.masterId = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,62 @@
|
|||||||
|
|
||||||
|
package com.emr.webservice.HomepageDictionary;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>CheckDataResponse complex type的 Java 类。
|
||||||
|
*
|
||||||
|
* <p>以下模式片段指定包含在此类中的预期内容。
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="CheckDataResponse">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="return" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "CheckDataResponse", propOrder = {
|
||||||
|
"_return"
|
||||||
|
})
|
||||||
|
public class CheckDataResponse {
|
||||||
|
|
||||||
|
@XmlElement(name = "return")
|
||||||
|
protected String _return;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取return属性的值。
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getReturn() {
|
||||||
|
return _return;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设置return属性的值。
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setReturn(String value) {
|
||||||
|
this._return = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,40 @@
|
|||||||
|
|
||||||
|
package com.emr.webservice.HomepageDictionary;
|
||||||
|
|
||||||
|
import javax.jws.WebMethod;
|
||||||
|
import javax.jws.WebParam;
|
||||||
|
import javax.jws.WebResult;
|
||||||
|
import javax.jws.WebService;
|
||||||
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
|
import javax.xml.ws.RequestWrapper;
|
||||||
|
import javax.xml.ws.ResponseWrapper;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This class was generated by the JAX-WS RI.
|
||||||
|
* JAX-WS RI 2.2.9-b130926.1035
|
||||||
|
* Generated source version: 2.2
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@WebService(name = "HomepageDictionary", targetNamespace = "http://interfaces.demo.ann.com/")
|
||||||
|
@XmlSeeAlso({
|
||||||
|
ObjectFactory.class
|
||||||
|
})
|
||||||
|
public interface HomepageDictionary {
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param masterId
|
||||||
|
* @return
|
||||||
|
* returns java.lang.String
|
||||||
|
*/
|
||||||
|
@WebMethod(operationName = "CheckData")
|
||||||
|
@WebResult(targetNamespace = "")
|
||||||
|
@RequestWrapper(localName = "CheckData", targetNamespace = "http://interfaces.demo.ann.com/", className = "com.emr.webservice.HomepageDictionary.CheckData")
|
||||||
|
@ResponseWrapper(localName = "CheckDataResponse", targetNamespace = "http://interfaces.demo.ann.com/", className = "com.emr.webservice.HomepageDictionary.CheckDataResponse")
|
||||||
|
public String checkData(
|
||||||
|
@WebParam(name = "masterId", targetNamespace = "")
|
||||||
|
String masterId);
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,56 @@
|
|||||||
|
<?xml version='1.0' encoding='UTF-8'?><wsdl:definitions xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:tns="http://interfaces.demo.ann.com/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:ns1="http://schemas.xmlsoap.org/soap/http" name="HomepageDictionary" targetNamespace="http://interfaces.demo.ann.com/">
|
||||||
|
<wsdl:types>
|
||||||
|
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://interfaces.demo.ann.com/" elementFormDefault="unqualified" targetNamespace="http://interfaces.demo.ann.com/" version="1.0">
|
||||||
|
|
||||||
|
<xs:element name="CheckData" type="tns:CheckData"/>
|
||||||
|
|
||||||
|
<xs:element name="CheckDataResponse" type="tns:CheckDataResponse"/>
|
||||||
|
|
||||||
|
<xs:complexType name="CheckData">
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element minOccurs="0" name="masterId" type="xs:string"/>
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
|
||||||
|
<xs:complexType name="CheckDataResponse">
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element minOccurs="0" name="return" type="xs:string"/>
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
|
||||||
|
</xs:schema>
|
||||||
|
</wsdl:types>
|
||||||
|
<wsdl:message name="CheckDataResponse">
|
||||||
|
<wsdl:part element="tns:CheckDataResponse" name="parameters">
|
||||||
|
</wsdl:part>
|
||||||
|
</wsdl:message>
|
||||||
|
<wsdl:message name="CheckData">
|
||||||
|
<wsdl:part element="tns:CheckData" name="parameters">
|
||||||
|
</wsdl:part>
|
||||||
|
</wsdl:message>
|
||||||
|
<wsdl:portType name="HomepageDictionary">
|
||||||
|
<wsdl:operation name="CheckData">
|
||||||
|
<wsdl:input message="tns:CheckData" name="CheckData">
|
||||||
|
</wsdl:input>
|
||||||
|
<wsdl:output message="tns:CheckDataResponse" name="CheckDataResponse">
|
||||||
|
</wsdl:output>
|
||||||
|
</wsdl:operation>
|
||||||
|
</wsdl:portType>
|
||||||
|
<wsdl:binding name="HomepageDictionarySoapBinding" type="tns:HomepageDictionary">
|
||||||
|
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
|
||||||
|
<wsdl:operation name="CheckData">
|
||||||
|
<soap:operation soapAction="" style="document"/>
|
||||||
|
<wsdl:input name="CheckData">
|
||||||
|
<soap:body use="literal"/>
|
||||||
|
</wsdl:input>
|
||||||
|
<wsdl:output name="CheckDataResponse">
|
||||||
|
<soap:body use="literal"/>
|
||||||
|
</wsdl:output>
|
||||||
|
</wsdl:operation>
|
||||||
|
</wsdl:binding>
|
||||||
|
<wsdl:service name="HomepageDictionary">
|
||||||
|
<wsdl:port binding="tns:HomepageDictionarySoapBinding" name="HomepageDictionaryImplPort">
|
||||||
|
<soap:address location="http://127.0.0.1:8080/WholeCheckInterface/services/HomepageDictionary"/>
|
||||||
|
</wsdl:port>
|
||||||
|
</wsdl:service>
|
||||||
|
</wsdl:definitions>
|
@ -0,0 +1,94 @@
|
|||||||
|
|
||||||
|
package com.emr.webservice.HomepageDictionary;
|
||||||
|
|
||||||
|
import java.net.MalformedURLException;
|
||||||
|
import java.net.URL;
|
||||||
|
import javax.xml.namespace.QName;
|
||||||
|
import javax.xml.ws.Service;
|
||||||
|
import javax.xml.ws.WebEndpoint;
|
||||||
|
import javax.xml.ws.WebServiceClient;
|
||||||
|
import javax.xml.ws.WebServiceException;
|
||||||
|
import javax.xml.ws.WebServiceFeature;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This class was generated by the JAX-WS RI.
|
||||||
|
* JAX-WS RI 2.2.9-b130926.1035
|
||||||
|
* Generated source version: 2.2
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@WebServiceClient(name = "HomepageDictionary", targetNamespace = "http://interfaces.demo.ann.com/", wsdlLocation = "http://127.0.0.1:8080/WholeCheckInterface/services/HomepageDictionary?wsdl")
|
||||||
|
public class HomepageDictionary_Service
|
||||||
|
extends Service
|
||||||
|
{
|
||||||
|
|
||||||
|
private final static URL HOMEPAGEDICTIONARY_WSDL_LOCATION;
|
||||||
|
private final static WebServiceException HOMEPAGEDICTIONARY_EXCEPTION;
|
||||||
|
private final static QName HOMEPAGEDICTIONARY_QNAME = new QName("http://interfaces.demo.ann.com/", "HomepageDictionary");
|
||||||
|
|
||||||
|
static {
|
||||||
|
URL url = null;
|
||||||
|
WebServiceException e = null;
|
||||||
|
try {
|
||||||
|
url = new URL("http://127.0.0.1:8080/WholeCheckInterface/services/HomepageDictionary?wsdl");
|
||||||
|
} catch (MalformedURLException ex) {
|
||||||
|
e = new WebServiceException(ex);
|
||||||
|
}
|
||||||
|
HOMEPAGEDICTIONARY_WSDL_LOCATION = url;
|
||||||
|
HOMEPAGEDICTIONARY_EXCEPTION = e;
|
||||||
|
}
|
||||||
|
|
||||||
|
public HomepageDictionary_Service() {
|
||||||
|
super(__getWsdlLocation(), HOMEPAGEDICTIONARY_QNAME);
|
||||||
|
}
|
||||||
|
|
||||||
|
public HomepageDictionary_Service(WebServiceFeature... features) {
|
||||||
|
super(__getWsdlLocation(), HOMEPAGEDICTIONARY_QNAME, features);
|
||||||
|
}
|
||||||
|
|
||||||
|
public HomepageDictionary_Service(URL wsdlLocation) {
|
||||||
|
super(wsdlLocation, HOMEPAGEDICTIONARY_QNAME);
|
||||||
|
}
|
||||||
|
|
||||||
|
public HomepageDictionary_Service(URL wsdlLocation, WebServiceFeature... features) {
|
||||||
|
super(wsdlLocation, HOMEPAGEDICTIONARY_QNAME, features);
|
||||||
|
}
|
||||||
|
|
||||||
|
public HomepageDictionary_Service(URL wsdlLocation, QName serviceName) {
|
||||||
|
super(wsdlLocation, serviceName);
|
||||||
|
}
|
||||||
|
|
||||||
|
public HomepageDictionary_Service(URL wsdlLocation, QName serviceName, WebServiceFeature... features) {
|
||||||
|
super(wsdlLocation, serviceName, features);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* returns HomepageDictionary
|
||||||
|
*/
|
||||||
|
@WebEndpoint(name = "HomepageDictionaryImplPort")
|
||||||
|
public HomepageDictionary getHomepageDictionaryImplPort() {
|
||||||
|
return super.getPort(new QName("http://interfaces.demo.ann.com/", "HomepageDictionaryImplPort"), HomepageDictionary.class);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param features
|
||||||
|
* A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values.
|
||||||
|
* @return
|
||||||
|
* returns HomepageDictionary
|
||||||
|
*/
|
||||||
|
@WebEndpoint(name = "HomepageDictionaryImplPort")
|
||||||
|
public HomepageDictionary getHomepageDictionaryImplPort(WebServiceFeature... features) {
|
||||||
|
return super.getPort(new QName("http://interfaces.demo.ann.com/", "HomepageDictionaryImplPort"), HomepageDictionary.class, features);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static URL __getWsdlLocation() {
|
||||||
|
if (HOMEPAGEDICTIONARY_EXCEPTION!= null) {
|
||||||
|
throw HOMEPAGEDICTIONARY_EXCEPTION;
|
||||||
|
}
|
||||||
|
return HOMEPAGEDICTIONARY_WSDL_LOCATION;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,71 @@
|
|||||||
|
|
||||||
|
package com.emr.webservice.HomepageDictionary;
|
||||||
|
|
||||||
|
import javax.xml.bind.JAXBElement;
|
||||||
|
import javax.xml.bind.annotation.XmlElementDecl;
|
||||||
|
import javax.xml.bind.annotation.XmlRegistry;
|
||||||
|
import javax.xml.namespace.QName;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This object contains factory methods for each
|
||||||
|
* Java content interface and Java element interface
|
||||||
|
* generated in the com.emr.webservice.HomepageDictionary package.
|
||||||
|
* <p>An ObjectFactory allows you to programatically
|
||||||
|
* construct new instances of the Java representation
|
||||||
|
* for XML content. The Java representation of XML
|
||||||
|
* content can consist of schema derived interfaces
|
||||||
|
* and classes representing the binding of schema
|
||||||
|
* type definitions, element declarations and model
|
||||||
|
* groups. Factory methods for each of these are
|
||||||
|
* provided in this class.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlRegistry
|
||||||
|
public class ObjectFactory {
|
||||||
|
|
||||||
|
private final static QName _CheckDataResponse_QNAME = new QName("http://interfaces.demo.ann.com/", "CheckDataResponse");
|
||||||
|
private final static QName _CheckData_QNAME = new QName("http://interfaces.demo.ann.com/", "CheckData");
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: com.emr.webservice.HomepageDictionary
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ObjectFactory() {
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link CheckDataResponse }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public CheckDataResponse createCheckDataResponse() {
|
||||||
|
return new CheckDataResponse();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link CheckData }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public CheckData createCheckData() {
|
||||||
|
return new CheckData();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link CheckDataResponse }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "http://interfaces.demo.ann.com/", name = "CheckDataResponse")
|
||||||
|
public JAXBElement<CheckDataResponse> createCheckDataResponse(CheckDataResponse value) {
|
||||||
|
return new JAXBElement<CheckDataResponse>(_CheckDataResponse_QNAME, CheckDataResponse.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link CheckData }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "http://interfaces.demo.ann.com/", name = "CheckData")
|
||||||
|
public JAXBElement<CheckData> createCheckData(CheckData value) {
|
||||||
|
return new JAXBElement<CheckData>(_CheckData_QNAME, CheckData.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,2 @@
|
|||||||
|
@javax.xml.bind.annotation.XmlSchema(namespace = "http://interfaces.demo.ann.com/")
|
||||||
|
package com.emr.webservice.HomepageDictionary;
|
@ -0,0 +1,70 @@
|
|||||||
|
package com.emr.webservice.MedicalRecordShowBackContent;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlRootElement;
|
||||||
|
|
||||||
|
@XmlRootElement
|
||||||
|
public class MR_FILE_CALLBACK_RECORDxml {
|
||||||
|
private String PATIENT_ID;//病人ID号
|
||||||
|
private String VISIT_ID;//病人住院次数
|
||||||
|
private String FILE_UNIQUE_ID;//文书ID
|
||||||
|
private String APPLY_DATE_TIME;//申请日期
|
||||||
|
private String APPLY_TIME_LIMIT;//申请期限
|
||||||
|
private String APPLY_REASON;//申请理由
|
||||||
|
private String EXPIRY_TIME;//有效期截止时间
|
||||||
|
|
||||||
|
public String getPATIENT_ID() {
|
||||||
|
return PATIENT_ID;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPATIENT_ID(String PATIENT_ID) {
|
||||||
|
this.PATIENT_ID = PATIENT_ID;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getVISIT_ID() {
|
||||||
|
return VISIT_ID;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setVISIT_ID(String VISIT_ID) {
|
||||||
|
this.VISIT_ID = VISIT_ID;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getFILE_UNIQUE_ID() {
|
||||||
|
return FILE_UNIQUE_ID;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setFILE_UNIQUE_ID(String FILE_UNIQUE_ID) {
|
||||||
|
this.FILE_UNIQUE_ID = FILE_UNIQUE_ID;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getAPPLY_DATE_TIME() {
|
||||||
|
return APPLY_DATE_TIME;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAPPLY_DATE_TIME(String APPLY_DATE_TIME) {
|
||||||
|
this.APPLY_DATE_TIME = APPLY_DATE_TIME;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getAPPLY_TIME_LIMIT() {
|
||||||
|
return APPLY_TIME_LIMIT;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAPPLY_TIME_LIMIT(String APPLY_TIME_LIMIT) {
|
||||||
|
this.APPLY_TIME_LIMIT = APPLY_TIME_LIMIT;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getAPPLY_REASON() {
|
||||||
|
return APPLY_REASON;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAPPLY_REASON(String APPLY_REASON) {
|
||||||
|
this.APPLY_REASON = APPLY_REASON;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getEXPIRY_TIME() {
|
||||||
|
return EXPIRY_TIME;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setEXPIRY_TIME(String EXPIRY_TIME) {
|
||||||
|
this.EXPIRY_TIME = EXPIRY_TIME;
|
||||||
|
}
|
||||||
|
}
|
Binary file not shown.
@ -0,0 +1,148 @@
|
|||||||
|
|
||||||
|
package com.emr.webservice.MedicalRecordShowBackContent;
|
||||||
|
|
||||||
|
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;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>anonymous complex type的 Java 类。
|
||||||
|
*
|
||||||
|
* <p>以下模式片段指定包含在此类中的预期内容。
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType>
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="PATIENT_ID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="VISIT_ID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="FILE_UNIQUE_ID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="PHOTOCOPY" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "", propOrder = {
|
||||||
|
"patientid",
|
||||||
|
"visitid",
|
||||||
|
"fileuniqueid",
|
||||||
|
"photocopy"
|
||||||
|
})
|
||||||
|
@XmlRootElement(name = "MedicalRecordCopy")
|
||||||
|
public class MedicalRecordCopy {
|
||||||
|
|
||||||
|
@XmlElement(name = "PATIENT_ID")
|
||||||
|
protected String patientid;
|
||||||
|
@XmlElement(name = "VISIT_ID")
|
||||||
|
protected String visitid;
|
||||||
|
@XmlElement(name = "FILE_UNIQUE_ID")
|
||||||
|
protected String fileuniqueid;
|
||||||
|
@XmlElement(name = "PHOTOCOPY")
|
||||||
|
protected String photocopy;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取patientid属性的值。
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getPATIENTID() {
|
||||||
|
return patientid;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设置patientid属性的值。
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPATIENTID(String value) {
|
||||||
|
this.patientid = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取visitid属性的值。
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getVISITID() {
|
||||||
|
return visitid;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设置visitid属性的值。
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVISITID(String value) {
|
||||||
|
this.visitid = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取fileuniqueid属性的值。
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getFILEUNIQUEID() {
|
||||||
|
return fileuniqueid;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设置fileuniqueid属性的值。
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setFILEUNIQUEID(String value) {
|
||||||
|
this.fileuniqueid = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取photocopy属性的值。
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getPHOTOCOPY() {
|
||||||
|
return photocopy;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设置photocopy属性的值。
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPHOTOCOPY(String value) {
|
||||||
|
this.photocopy = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Binary file not shown.
@ -0,0 +1,204 @@
|
|||||||
|
|
||||||
|
package com.emr.webservice.MedicalRecordShowBackContent;
|
||||||
|
|
||||||
|
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;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>anonymous complex type的 Java 类。
|
||||||
|
*
|
||||||
|
* <p>以下模式片段指定包含在此类中的预期内容。
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType>
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="PATIENT_ID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="VISIT_ID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="FILE_UNIQUE_ID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="PHOTOCOPY" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="PHOTOCOPY_ID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="PHOTOCOPY_NAME" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "", propOrder = {
|
||||||
|
"patientid",
|
||||||
|
"visitid",
|
||||||
|
"fileuniqueid",
|
||||||
|
"photocopy",
|
||||||
|
"photocopyid",
|
||||||
|
"photocopyname"
|
||||||
|
})
|
||||||
|
@XmlRootElement(name = "MedicalRecordCopy2")
|
||||||
|
public class MedicalRecordCopy2 {
|
||||||
|
|
||||||
|
@XmlElement(name = "PATIENT_ID")
|
||||||
|
protected String patientid;
|
||||||
|
@XmlElement(name = "VISIT_ID")
|
||||||
|
protected String visitid;
|
||||||
|
@XmlElement(name = "FILE_UNIQUE_ID")
|
||||||
|
protected String fileuniqueid;
|
||||||
|
@XmlElement(name = "PHOTOCOPY")
|
||||||
|
protected String photocopy;
|
||||||
|
@XmlElement(name = "PHOTOCOPY_ID")
|
||||||
|
protected String photocopyid;
|
||||||
|
@XmlElement(name = "PHOTOCOPY_NAME")
|
||||||
|
protected String photocopyname;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取patientid属性的值。
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getPATIENTID() {
|
||||||
|
return patientid;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设置patientid属性的值。
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPATIENTID(String value) {
|
||||||
|
this.patientid = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取visitid属性的值。
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getVISITID() {
|
||||||
|
return visitid;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设置visitid属性的值。
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVISITID(String value) {
|
||||||
|
this.visitid = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取fileuniqueid属性的值。
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getFILEUNIQUEID() {
|
||||||
|
return fileuniqueid;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设置fileuniqueid属性的值。
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setFILEUNIQUEID(String value) {
|
||||||
|
this.fileuniqueid = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取photocopy属性的值。
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getPHOTOCOPY() {
|
||||||
|
return photocopy;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设置photocopy属性的值。
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPHOTOCOPY(String value) {
|
||||||
|
this.photocopy = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取photocopyid属性的值。
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getPHOTOCOPYID() {
|
||||||
|
return photocopyid;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设置photocopyid属性的值。
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPHOTOCOPYID(String value) {
|
||||||
|
this.photocopyid = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取photocopyname属性的值。
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getPHOTOCOPYNAME() {
|
||||||
|
return photocopyname;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设置photocopyname属性的值。
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPHOTOCOPYNAME(String value) {
|
||||||
|
this.photocopyname = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Binary file not shown.
@ -0,0 +1,64 @@
|
|||||||
|
|
||||||
|
package com.emr.webservice.MedicalRecordShowBackContent;
|
||||||
|
|
||||||
|
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;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>anonymous complex type的 Java 类。
|
||||||
|
*
|
||||||
|
* <p>以下模式片段指定包含在此类中的预期内容。
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType>
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="MedicalRecordCopy2Result" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "", propOrder = {
|
||||||
|
"medicalRecordCopy2Result"
|
||||||
|
})
|
||||||
|
@XmlRootElement(name = "MedicalRecordCopy2Response")
|
||||||
|
public class MedicalRecordCopy2Response {
|
||||||
|
|
||||||
|
@XmlElement(name = "MedicalRecordCopy2Result")
|
||||||
|
protected String medicalRecordCopy2Result;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取medicalRecordCopy2Result属性的值。
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getMedicalRecordCopy2Result() {
|
||||||
|
return medicalRecordCopy2Result;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设置medicalRecordCopy2Result属性的值。
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMedicalRecordCopy2Result(String value) {
|
||||||
|
this.medicalRecordCopy2Result = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Binary file not shown.
@ -0,0 +1,64 @@
|
|||||||
|
|
||||||
|
package com.emr.webservice.MedicalRecordShowBackContent;
|
||||||
|
|
||||||
|
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;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>anonymous complex type的 Java 类。
|
||||||
|
*
|
||||||
|
* <p>以下模式片段指定包含在此类中的预期内容。
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType>
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="MedicalRecordCopyResult" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "", propOrder = {
|
||||||
|
"medicalRecordCopyResult"
|
||||||
|
})
|
||||||
|
@XmlRootElement(name = "MedicalRecordCopyResponse")
|
||||||
|
public class MedicalRecordCopyResponse {
|
||||||
|
|
||||||
|
@XmlElement(name = "MedicalRecordCopyResult")
|
||||||
|
protected String medicalRecordCopyResult;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取medicalRecordCopyResult属性的值。
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getMedicalRecordCopyResult() {
|
||||||
|
return medicalRecordCopyResult;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设置medicalRecordCopyResult属性的值。
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMedicalRecordCopyResult(String value) {
|
||||||
|
this.medicalRecordCopyResult = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Binary file not shown.
@ -0,0 +1,204 @@
|
|||||||
|
|
||||||
|
package com.emr.webservice.MedicalRecordShowBackContent;
|
||||||
|
|
||||||
|
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;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>anonymous complex type的 Java 类。
|
||||||
|
*
|
||||||
|
* <p>以下模式片段指定包含在此类中的预期内容。
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType>
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Operation" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="PATIENT_ID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="VISIT_ID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="FILE_UNIQUE_ID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="SEQUESTRATION_FLAG" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="RESION" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "", propOrder = {
|
||||||
|
"operation",
|
||||||
|
"patientid",
|
||||||
|
"visitid",
|
||||||
|
"fileuniqueid",
|
||||||
|
"sequestrationflag",
|
||||||
|
"resion"
|
||||||
|
})
|
||||||
|
@XmlRootElement(name = "MedicalRecordIsSequestration")
|
||||||
|
public class MedicalRecordIsSequestration {
|
||||||
|
|
||||||
|
@XmlElement(name = "Operation")
|
||||||
|
protected String operation;
|
||||||
|
@XmlElement(name = "PATIENT_ID")
|
||||||
|
protected String patientid;
|
||||||
|
@XmlElement(name = "VISIT_ID")
|
||||||
|
protected String visitid;
|
||||||
|
@XmlElement(name = "FILE_UNIQUE_ID")
|
||||||
|
protected String fileuniqueid;
|
||||||
|
@XmlElement(name = "SEQUESTRATION_FLAG")
|
||||||
|
protected String sequestrationflag;
|
||||||
|
@XmlElement(name = "RESION")
|
||||||
|
protected String resion;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取operation属性的值。
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getOperation() {
|
||||||
|
return operation;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设置operation属性的值。
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setOperation(String value) {
|
||||||
|
this.operation = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取patientid属性的值。
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getPATIENTID() {
|
||||||
|
return patientid;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设置patientid属性的值。
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPATIENTID(String value) {
|
||||||
|
this.patientid = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取visitid属性的值。
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getVISITID() {
|
||||||
|
return visitid;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设置visitid属性的值。
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVISITID(String value) {
|
||||||
|
this.visitid = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取fileuniqueid属性的值。
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getFILEUNIQUEID() {
|
||||||
|
return fileuniqueid;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设置fileuniqueid属性的值。
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setFILEUNIQUEID(String value) {
|
||||||
|
this.fileuniqueid = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取sequestrationflag属性的值。
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getSEQUESTRATIONFLAG() {
|
||||||
|
return sequestrationflag;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设置sequestrationflag属性的值。
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setSEQUESTRATIONFLAG(String value) {
|
||||||
|
this.sequestrationflag = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取resion属性的值。
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getRESION() {
|
||||||
|
return resion;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设置resion属性的值。
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setRESION(String value) {
|
||||||
|
this.resion = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Binary file not shown.
@ -0,0 +1,64 @@
|
|||||||
|
|
||||||
|
package com.emr.webservice.MedicalRecordShowBackContent;
|
||||||
|
|
||||||
|
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;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>anonymous complex type的 Java 类。
|
||||||
|
*
|
||||||
|
* <p>以下模式片段指定包含在此类中的预期内容。
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType>
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="MedicalRecordIsSequestrationResult" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "", propOrder = {
|
||||||
|
"medicalRecordIsSequestrationResult"
|
||||||
|
})
|
||||||
|
@XmlRootElement(name = "MedicalRecordIsSequestrationResponse")
|
||||||
|
public class MedicalRecordIsSequestrationResponse {
|
||||||
|
|
||||||
|
@XmlElement(name = "MedicalRecordIsSequestrationResult")
|
||||||
|
protected String medicalRecordIsSequestrationResult;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取medicalRecordIsSequestrationResult属性的值。
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getMedicalRecordIsSequestrationResult() {
|
||||||
|
return medicalRecordIsSequestrationResult;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设置medicalRecordIsSequestrationResult属性的值。
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMedicalRecordIsSequestrationResult(String value) {
|
||||||
|
this.medicalRecordIsSequestrationResult = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Binary file not shown.
@ -0,0 +1,92 @@
|
|||||||
|
|
||||||
|
package com.emr.webservice.MedicalRecordShowBackContent;
|
||||||
|
|
||||||
|
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;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>anonymous complex type的 Java 类。
|
||||||
|
*
|
||||||
|
* <p>以下模式片段指定包含在此类中的预期内容。
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType>
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="MR_FILE_CALLBACK_RECORDxml" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="MR_FILE_INDEX_CALLBACKxml" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "", propOrder = {
|
||||||
|
"mrfilecallbackrecorDxml",
|
||||||
|
"mrfileindexcallbacKxml"
|
||||||
|
})
|
||||||
|
@XmlRootElement(name = "MedicalRecordRepair")
|
||||||
|
public class MedicalRecordRepair {
|
||||||
|
|
||||||
|
@XmlElement(name = "MR_FILE_CALLBACK_RECORDxml")
|
||||||
|
protected String mrfilecallbackrecorDxml;
|
||||||
|
@XmlElement(name = "MR_FILE_INDEX_CALLBACKxml")
|
||||||
|
protected String mrfileindexcallbacKxml;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取mrfilecallbackrecorDxml属性的值。
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getMRFILECALLBACKRECORDxml() {
|
||||||
|
return mrfilecallbackrecorDxml;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设置mrfilecallbackrecorDxml属性的值。
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMRFILECALLBACKRECORDxml(String value) {
|
||||||
|
this.mrfilecallbackrecorDxml = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取mrfileindexcallbacKxml属性的值。
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getMRFILEINDEXCALLBACKxml() {
|
||||||
|
return mrfileindexcallbacKxml;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设置mrfileindexcallbacKxml属性的值。
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMRFILEINDEXCALLBACKxml(String value) {
|
||||||
|
this.mrfileindexcallbacKxml = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Binary file not shown.
@ -0,0 +1,64 @@
|
|||||||
|
|
||||||
|
package com.emr.webservice.MedicalRecordShowBackContent;
|
||||||
|
|
||||||
|
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;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>anonymous complex type的 Java 类。
|
||||||
|
*
|
||||||
|
* <p>以下模式片段指定包含在此类中的预期内容。
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType>
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="MedicalRecordRepairResult" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "", propOrder = {
|
||||||
|
"medicalRecordRepairResult"
|
||||||
|
})
|
||||||
|
@XmlRootElement(name = "MedicalRecordRepairResponse")
|
||||||
|
public class MedicalRecordRepairResponse {
|
||||||
|
|
||||||
|
@XmlElement(name = "MedicalRecordRepairResult")
|
||||||
|
protected String medicalRecordRepairResult;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取medicalRecordRepairResult属性的值。
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getMedicalRecordRepairResult() {
|
||||||
|
return medicalRecordRepairResult;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设置medicalRecordRepairResult属性的值。
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMedicalRecordRepairResult(String value) {
|
||||||
|
this.medicalRecordRepairResult = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Binary file not shown.
@ -0,0 +1,141 @@
|
|||||||
|
|
||||||
|
package com.emr.webservice.MedicalRecordShowBackContent;
|
||||||
|
|
||||||
|
import javax.xml.bind.JAXBElement;
|
||||||
|
import javax.xml.bind.annotation.XmlElementDecl;
|
||||||
|
import javax.xml.bind.annotation.XmlRegistry;
|
||||||
|
import javax.xml.namespace.QName;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This object contains factory methods for each
|
||||||
|
* Java content interface and Java element interface
|
||||||
|
* generated in the com.emr.webservice.MedicalRecordShowBackContent package.
|
||||||
|
* <p>An ObjectFactory allows you to programatically
|
||||||
|
* construct new instances of the Java representation
|
||||||
|
* for XML content. The Java representation of XML
|
||||||
|
* content can consist of schema derived interfaces
|
||||||
|
* and classes representing the binding of schema
|
||||||
|
* type definitions, element declarations and model
|
||||||
|
* groups. Factory methods for each of these are
|
||||||
|
* provided in this class.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlRegistry
|
||||||
|
public class ObjectFactory {
|
||||||
|
|
||||||
|
private final static QName _String_QNAME = new QName("http://tempuri.org/", "string");
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: com.emr.webservice.MedicalRecordShowBackContent
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ObjectFactory() {
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link MedicalRecordIsSequestrationResponse }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public MedicalRecordIsSequestrationResponse createMedicalRecordIsSequestrationResponse() {
|
||||||
|
return new MedicalRecordIsSequestrationResponse();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link SignOrNoSign }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public SignOrNoSign createSignOrNoSign() {
|
||||||
|
return new SignOrNoSign();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link MedicalRecordRepairResponse }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public MedicalRecordRepairResponse createMedicalRecordRepairResponse() {
|
||||||
|
return new MedicalRecordRepairResponse();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link MedicalRecordCopy2 }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public MedicalRecordCopy2 createMedicalRecordCopy2() {
|
||||||
|
return new MedicalRecordCopy2();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link MedicalRecordCopy }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public MedicalRecordCopy createMedicalRecordCopy() {
|
||||||
|
return new MedicalRecordCopy();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link SignOrNoSignResponse }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public SignOrNoSignResponse createSignOrNoSignResponse() {
|
||||||
|
return new SignOrNoSignResponse();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link MedicalRecordRepair }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public MedicalRecordRepair createMedicalRecordRepair() {
|
||||||
|
return new MedicalRecordRepair();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link MedicalRecordCopyResponse }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public MedicalRecordCopyResponse createMedicalRecordCopyResponse() {
|
||||||
|
return new MedicalRecordCopyResponse();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link XZArchive }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XZArchive createXZArchive() {
|
||||||
|
return new XZArchive();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link XZArchiveResponse }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XZArchiveResponse createXZArchiveResponse() {
|
||||||
|
return new XZArchiveResponse();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link MedicalRecordIsSequestration }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public MedicalRecordIsSequestration createMedicalRecordIsSequestration() {
|
||||||
|
return new MedicalRecordIsSequestration();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link MedicalRecordCopy2Response }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public MedicalRecordCopy2Response createMedicalRecordCopy2Response() {
|
||||||
|
return new MedicalRecordCopy2Response();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "http://tempuri.org/", name = "string")
|
||||||
|
public JAXBElement<String> createString(String value) {
|
||||||
|
return new JAXBElement<String>(_String_QNAME, String.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Binary file not shown.
@ -0,0 +1,62 @@
|
|||||||
|
|
||||||
|
package com.emr.webservice.MedicalRecordShowBackContent;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlRootElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>anonymous complex type的 Java 类。
|
||||||
|
*
|
||||||
|
* <p>以下模式片段指定包含在此类中的预期内容。
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType>
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="xml" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "", propOrder = {
|
||||||
|
"xml"
|
||||||
|
})
|
||||||
|
@XmlRootElement(name = "SignOrNoSign")
|
||||||
|
public class SignOrNoSign {
|
||||||
|
|
||||||
|
protected String xml;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取xml属性的值。
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getXml() {
|
||||||
|
return xml;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设置xml属性的值。
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setXml(String value) {
|
||||||
|
this.xml = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Binary file not shown.
@ -0,0 +1,64 @@
|
|||||||
|
|
||||||
|
package com.emr.webservice.MedicalRecordShowBackContent;
|
||||||
|
|
||||||
|
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;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>anonymous complex type的 Java 类。
|
||||||
|
*
|
||||||
|
* <p>以下模式片段指定包含在此类中的预期内容。
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType>
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="SignOrNoSignResult" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "", propOrder = {
|
||||||
|
"signOrNoSignResult"
|
||||||
|
})
|
||||||
|
@XmlRootElement(name = "SignOrNoSignResponse")
|
||||||
|
public class SignOrNoSignResponse {
|
||||||
|
|
||||||
|
@XmlElement(name = "SignOrNoSignResult")
|
||||||
|
protected String signOrNoSignResult;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取signOrNoSignResult属性的值。
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getSignOrNoSignResult() {
|
||||||
|
return signOrNoSignResult;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设置signOrNoSignResult属性的值。
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setSignOrNoSignResult(String value) {
|
||||||
|
this.signOrNoSignResult = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Binary file not shown.
@ -0,0 +1,160 @@
|
|||||||
|
|
||||||
|
package com.emr.webservice.MedicalRecordShowBackContent;
|
||||||
|
|
||||||
|
import java.net.MalformedURLException;
|
||||||
|
import java.net.URL;
|
||||||
|
import javax.xml.namespace.QName;
|
||||||
|
import javax.xml.ws.Service;
|
||||||
|
import javax.xml.ws.WebEndpoint;
|
||||||
|
import javax.xml.ws.WebServiceClient;
|
||||||
|
import javax.xml.ws.WebServiceException;
|
||||||
|
import javax.xml.ws.WebServiceFeature;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This class was generated by the JAX-WS RI.
|
||||||
|
* JAX-WS RI 2.2.9-b130926.1035
|
||||||
|
* Generated source version: 2.2
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@WebServiceClient(name = "SignWebService", targetNamespace = "http://tempuri.org/", wsdlLocation = "http://10.6.1.152:8037/SignWebService.asmx?WSDL")
|
||||||
|
public class SignWebService
|
||||||
|
extends Service
|
||||||
|
{
|
||||||
|
|
||||||
|
private final static URL SIGNWEBSERVICE_WSDL_LOCATION;
|
||||||
|
private final static WebServiceException SIGNWEBSERVICE_EXCEPTION;
|
||||||
|
private final static QName SIGNWEBSERVICE_QNAME = new QName("http://tempuri.org/", "SignWebService");
|
||||||
|
|
||||||
|
static {
|
||||||
|
URL url = null;
|
||||||
|
WebServiceException e = null;
|
||||||
|
try {
|
||||||
|
url = new URL("http://10.6.1.152:8037/SignWebService.asmx?WSDL");
|
||||||
|
} catch (MalformedURLException ex) {
|
||||||
|
e = new WebServiceException(ex);
|
||||||
|
}
|
||||||
|
SIGNWEBSERVICE_WSDL_LOCATION = url;
|
||||||
|
SIGNWEBSERVICE_EXCEPTION = e;
|
||||||
|
}
|
||||||
|
|
||||||
|
public SignWebService() {
|
||||||
|
super(__getWsdlLocation(), SIGNWEBSERVICE_QNAME);
|
||||||
|
}
|
||||||
|
|
||||||
|
public SignWebService(WebServiceFeature... features) {
|
||||||
|
super(__getWsdlLocation(), SIGNWEBSERVICE_QNAME, features);
|
||||||
|
}
|
||||||
|
|
||||||
|
public SignWebService(URL wsdlLocation) {
|
||||||
|
super(wsdlLocation, SIGNWEBSERVICE_QNAME);
|
||||||
|
}
|
||||||
|
|
||||||
|
public SignWebService(URL wsdlLocation, WebServiceFeature... features) {
|
||||||
|
super(wsdlLocation, SIGNWEBSERVICE_QNAME, features);
|
||||||
|
}
|
||||||
|
|
||||||
|
public SignWebService(URL wsdlLocation, QName serviceName) {
|
||||||
|
super(wsdlLocation, serviceName);
|
||||||
|
}
|
||||||
|
|
||||||
|
public SignWebService(URL wsdlLocation, QName serviceName, WebServiceFeature... features) {
|
||||||
|
super(wsdlLocation, serviceName, features);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* returns SignWebServiceSoap
|
||||||
|
*/
|
||||||
|
@WebEndpoint(name = "SignWebServiceSoap")
|
||||||
|
public SignWebServiceSoap getSignWebServiceSoap() {
|
||||||
|
return super.getPort(new QName("http://tempuri.org/", "SignWebServiceSoap"), SignWebServiceSoap.class);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param features
|
||||||
|
* A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values.
|
||||||
|
* @return
|
||||||
|
* returns SignWebServiceSoap
|
||||||
|
*/
|
||||||
|
@WebEndpoint(name = "SignWebServiceSoap")
|
||||||
|
public SignWebServiceSoap getSignWebServiceSoap(WebServiceFeature... features) {
|
||||||
|
return super.getPort(new QName("http://tempuri.org/", "SignWebServiceSoap"), SignWebServiceSoap.class, features);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* returns SignWebServiceSoap
|
||||||
|
*/
|
||||||
|
@WebEndpoint(name = "SignWebServiceSoap12")
|
||||||
|
public SignWebServiceSoap getSignWebServiceSoap12() {
|
||||||
|
return super.getPort(new QName("http://tempuri.org/", "SignWebServiceSoap12"), SignWebServiceSoap.class);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param features
|
||||||
|
* A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values.
|
||||||
|
* @return
|
||||||
|
* returns SignWebServiceSoap
|
||||||
|
*/
|
||||||
|
@WebEndpoint(name = "SignWebServiceSoap12")
|
||||||
|
public SignWebServiceSoap getSignWebServiceSoap12(WebServiceFeature... features) {
|
||||||
|
return super.getPort(new QName("http://tempuri.org/", "SignWebServiceSoap12"), SignWebServiceSoap.class, features);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* returns SignWebServiceHttpGet
|
||||||
|
*/
|
||||||
|
@WebEndpoint(name = "SignWebServiceHttpGet")
|
||||||
|
public SignWebServiceHttpGet getSignWebServiceHttpGet() {
|
||||||
|
return super.getPort(new QName("http://tempuri.org/", "SignWebServiceHttpGet"), SignWebServiceHttpGet.class);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param features
|
||||||
|
* A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values.
|
||||||
|
* @return
|
||||||
|
* returns SignWebServiceHttpGet
|
||||||
|
*/
|
||||||
|
@WebEndpoint(name = "SignWebServiceHttpGet")
|
||||||
|
public SignWebServiceHttpGet getSignWebServiceHttpGet(WebServiceFeature... features) {
|
||||||
|
return super.getPort(new QName("http://tempuri.org/", "SignWebServiceHttpGet"), SignWebServiceHttpGet.class, features);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* returns SignWebServiceHttpPost
|
||||||
|
*/
|
||||||
|
@WebEndpoint(name = "SignWebServiceHttpPost")
|
||||||
|
public SignWebServiceHttpPost getSignWebServiceHttpPost() {
|
||||||
|
return super.getPort(new QName("http://tempuri.org/", "SignWebServiceHttpPost"), SignWebServiceHttpPost.class);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param features
|
||||||
|
* A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values.
|
||||||
|
* @return
|
||||||
|
* returns SignWebServiceHttpPost
|
||||||
|
*/
|
||||||
|
@WebEndpoint(name = "SignWebServiceHttpPost")
|
||||||
|
public SignWebServiceHttpPost getSignWebServiceHttpPost(WebServiceFeature... features) {
|
||||||
|
return super.getPort(new QName("http://tempuri.org/", "SignWebServiceHttpPost"), SignWebServiceHttpPost.class, features);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static URL __getWsdlLocation() {
|
||||||
|
if (SIGNWEBSERVICE_EXCEPTION!= null) {
|
||||||
|
throw SIGNWEBSERVICE_EXCEPTION;
|
||||||
|
}
|
||||||
|
return SIGNWEBSERVICE_WSDL_LOCATION;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,148 @@
|
|||||||
|
|
||||||
|
package com.emr.webservice.MedicalRecordShowBackContent;
|
||||||
|
|
||||||
|
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;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>anonymous complex type的 Java 类。
|
||||||
|
*
|
||||||
|
* <p>以下模式片段指定包含在此类中的预期内容。
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType>
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="ARCHIVE_MAN" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="ARCHIVE_TIME" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="PATIENT_ID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="VISIT_ID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "", propOrder = {
|
||||||
|
"archiveman",
|
||||||
|
"archivetime",
|
||||||
|
"patientid",
|
||||||
|
"visitid"
|
||||||
|
})
|
||||||
|
@XmlRootElement(name = "XZArchive")
|
||||||
|
public class XZArchive {
|
||||||
|
|
||||||
|
@XmlElement(name = "ARCHIVE_MAN")
|
||||||
|
protected String archiveman;
|
||||||
|
@XmlElement(name = "ARCHIVE_TIME")
|
||||||
|
protected String archivetime;
|
||||||
|
@XmlElement(name = "PATIENT_ID")
|
||||||
|
protected String patientid;
|
||||||
|
@XmlElement(name = "VISIT_ID")
|
||||||
|
protected String visitid;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取archiveman属性的值。
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getARCHIVEMAN() {
|
||||||
|
return archiveman;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设置archiveman属性的值。
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setARCHIVEMAN(String value) {
|
||||||
|
this.archiveman = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取archivetime属性的值。
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getARCHIVETIME() {
|
||||||
|
return archivetime;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设置archivetime属性的值。
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setARCHIVETIME(String value) {
|
||||||
|
this.archivetime = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取patientid属性的值。
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getPATIENTID() {
|
||||||
|
return patientid;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设置patientid属性的值。
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPATIENTID(String value) {
|
||||||
|
this.patientid = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取visitid属性的值。
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getVISITID() {
|
||||||
|
return visitid;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设置visitid属性的值。
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVISITID(String value) {
|
||||||
|
this.visitid = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Binary file not shown.
@ -0,0 +1,64 @@
|
|||||||
|
|
||||||
|
package com.emr.webservice.MedicalRecordShowBackContent;
|
||||||
|
|
||||||
|
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;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>anonymous complex type的 Java 类。
|
||||||
|
*
|
||||||
|
* <p>以下模式片段指定包含在此类中的预期内容。
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType>
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="XZArchiveResult" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "", propOrder = {
|
||||||
|
"xzArchiveResult"
|
||||||
|
})
|
||||||
|
@XmlRootElement(name = "XZArchiveResponse")
|
||||||
|
public class XZArchiveResponse {
|
||||||
|
|
||||||
|
@XmlElement(name = "XZArchiveResult")
|
||||||
|
protected String xzArchiveResult;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取xzArchiveResult属性的值。
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getXZArchiveResult() {
|
||||||
|
return xzArchiveResult;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设置xzArchiveResult属性的值。
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setXZArchiveResult(String value) {
|
||||||
|
this.xzArchiveResult = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Binary file not shown.
@ -0,0 +1,2 @@
|
|||||||
|
@javax.xml.bind.annotation.XmlSchema(namespace = "http://tempuri.org/", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
|
||||||
|
package com.emr.webservice.MedicalRecordShowBackContent;
|
Loading…
Reference in New Issue