From aace7f76564fd6962d315e1a25b5a7701733371b Mon Sep 17 00:00:00 2001 From: wtt Date: Tue, 29 Oct 2019 14:13:12 +0800 Subject: [PATCH] =?UTF-8?q?=E8=8D=A3=E6=88=90=E5=85=AC=E5=8D=AB=EF=BC=88?= =?UTF-8?q?=E9=9A=8F=E8=AE=BF12345=E3=80=81=E8=AE=BF=E8=A7=86=E3=80=81?= =?UTF-8?q?=E5=A4=8D=E6=9F=A542=E5=B0=8F=E6=97=B6=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../lyms/hospitalapi/rcfy/ws/RcGwInterface.java | 981 +++++++++++++++++++++ .../jiekou/webservice/DataCenterWebservice.java | 116 +++ .../webservice/DataCenterWebserviceResponse.java | 60 ++ .../ws/com/jiekou/webservice/ObjectFactory.java | 448 ++++++++++ .../ws/com/jiekou/webservice/ReturnCardNum.java | 60 ++ .../jiekou/webservice/ReturnCardNumResponse.java | 60 ++ .../ws/com/jiekou/webservice/ReturnJtysYygl.java | 60 ++ .../jiekou/webservice/ReturnJtysYyglResponse.java | 60 ++ .../ws/com/jiekou/webservice/ReturnOrgList.java | 32 + .../jiekou/webservice/ReturnOrgListResponse.java | 60 ++ .../ws/com/jiekou/webservice/SaveJtysYygl.java | 60 ++ .../jiekou/webservice/SaveJtysYyglResponse.java | 60 ++ .../rcfy/ws/com/jiekou/webservice/SaveMzzl.java | 60 ++ .../rcfy/ws/com/jiekou/webservice/SaveMzzlFy.java | 60 ++ .../com/jiekou/webservice/SaveMzzlFyResponse.java | 60 ++ .../ws/com/jiekou/webservice/SaveMzzlHyxm.java | 60 ++ .../jiekou/webservice/SaveMzzlHyxmResponse.java | 60 ++ .../ws/com/jiekou/webservice/SaveMzzlJyxq.java | 60 ++ .../jiekou/webservice/SaveMzzlJyxqResponse.java | 60 ++ .../ws/com/jiekou/webservice/SaveMzzlResponse.java | 60 ++ .../rcfy/ws/com/jiekou/webservice/SaveTpwRgin.java | 60 ++ .../com/jiekou/webservice/SaveTpwRginResponse.java | 60 ++ .../rcfy/ws/com/jiekou/webservice/SaveTpwUser.java | 60 ++ .../com/jiekou/webservice/SaveTpwUserResponse.java | 60 ++ .../rcfy/ws/com/jiekou/webservice/SaveYszz.java | 60 ++ .../ws/com/jiekou/webservice/SaveYszzResponse.java | 60 ++ .../rcfy/ws/com/jiekou/webservice/SaveZyzl.java | 60 ++ .../ws/com/jiekou/webservice/SaveZyzlCyzd.java | 60 ++ .../jiekou/webservice/SaveZyzlCyzdResponse.java | 60 ++ .../rcfy/ws/com/jiekou/webservice/SaveZyzlFy.java | 60 ++ .../com/jiekou/webservice/SaveZyzlFyResponse.java | 60 ++ .../ws/com/jiekou/webservice/SaveZyzlHyxm.java | 60 ++ .../jiekou/webservice/SaveZyzlHyxmResponse.java | 60 ++ .../ws/com/jiekou/webservice/SaveZyzlJyxq.java | 60 ++ .../jiekou/webservice/SaveZyzlJyxqResponse.java | 60 ++ .../ws/com/jiekou/webservice/SaveZyzlResponse.java | 60 ++ .../ws/com/jiekou/webservice/SaveZyzlSszd.java | 60 ++ .../jiekou/webservice/SaveZyzlSszdResponse.java | 60 ++ .../rcfy/ws/com/jiekou/webservice/SelectGztx.java | 60 ++ .../com/jiekou/webservice/SelectGztxResponse.java | 60 ++ .../rcfy/ws/com/jiekou/webservice/SelectYw.java | 172 ++++ .../ws/com/jiekou/webservice/SelectYwBySfzh.java | 88 ++ .../jiekou/webservice/SelectYwBySfzhResponse.java | 60 ++ .../ws/com/jiekou/webservice/SelectYwResponse.java | 60 ++ .../rcfy/ws/com/jiekou/webservice/SelectZd.java | 60 ++ .../ws/com/jiekou/webservice/SelectZdResponse.java | 60 ++ .../com/jiekou/webservice/SelecttdaJkdaRkxzl.java | 60 ++ .../webservice/SelecttdaJkdaRkxzlResponse.java | 60 ++ .../ws/com/jiekou/webservice/TestWebService.java | 60 ++ .../jiekou/webservice/TestWebServiceResponse.java | 60 ++ .../ws/com/jiekou/webservice/TongBuManBing.java | 60 ++ .../jiekou/webservice/TongBuManBingResponse.java | 60 ++ .../webservice/UpdateJtysYyglAppointStatus.java | 60 ++ .../UpdateJtysYyglAppointStatusResponse.java | 60 ++ .../rcfy/ws/com/jiekou/webservice/WebService.java | 90 ++ .../com/jiekou/webservice/WebServicePortType.java | 265 ++++++ .../ws/com/jiekou/webservice/package-info.java | 2 + .../operate/web/controller/RcGWController.java | 55 ++ .../resources/spring/applicationContext-quartz.xml | 18 + 59 files changed, 5147 insertions(+) create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/RcGwInterface.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/DataCenterWebservice.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/DataCenterWebserviceResponse.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/ObjectFactory.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/ReturnCardNum.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/ReturnCardNumResponse.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/ReturnJtysYygl.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/ReturnJtysYyglResponse.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/ReturnOrgList.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/ReturnOrgListResponse.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveJtysYygl.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveJtysYyglResponse.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveMzzl.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveMzzlFy.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveMzzlFyResponse.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveMzzlHyxm.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveMzzlHyxmResponse.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveMzzlJyxq.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveMzzlJyxqResponse.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveMzzlResponse.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveTpwRgin.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveTpwRginResponse.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveTpwUser.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveTpwUserResponse.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveYszz.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveYszzResponse.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzl.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzlCyzd.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzlCyzdResponse.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzlFy.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzlFyResponse.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzlHyxm.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzlHyxmResponse.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzlJyxq.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzlJyxqResponse.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzlResponse.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzlSszd.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzlSszdResponse.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SelectGztx.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SelectGztxResponse.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SelectYw.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SelectYwBySfzh.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SelectYwBySfzhResponse.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SelectYwResponse.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SelectZd.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SelectZdResponse.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SelecttdaJkdaRkxzl.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SelecttdaJkdaRkxzlResponse.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/TestWebService.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/TestWebServiceResponse.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/TongBuManBing.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/TongBuManBingResponse.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/UpdateJtysYyglAppointStatus.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/UpdateJtysYyglAppointStatusResponse.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/WebService.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/WebServicePortType.java create mode 100644 platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/package-info.java create mode 100644 platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/RcGWController.java diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/RcGwInterface.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/RcGwInterface.java new file mode 100644 index 0000000..c2815a2 --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/RcGwInterface.java @@ -0,0 +1,981 @@ +package com.lyms.hospitalapi.rcfy.ws; + +import com.alibaba.fastjson.JSON; +import com.alibaba.fastjson.JSONArray; +import com.alibaba.fastjson.JSONObject; +import com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice.WebService; +import com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice.WebServicePortType; +import com.lyms.platform.biz.service.AntenatalExaminationService; +import com.lyms.platform.biz.service.MatDeliverFollowService; +import com.lyms.platform.biz.service.PatientsService; +import com.lyms.platform.biz.service.PostReviewService; +import com.lyms.platform.common.constants.ErrorCodeConstants; +import com.lyms.platform.common.enums.YnEnums; +import com.lyms.platform.common.result.BaseObjectResponse; +import com.lyms.platform.common.result.BaseResponse; +import com.lyms.platform.common.utils.DateUtil; +import com.lyms.platform.common.utils.ExceptionUtils; +import com.lyms.platform.common.utils.StringUtils; +import com.lyms.platform.pojo.*; +import com.lyms.platform.query.*; +import org.apache.commons.collections.CollectionUtils; +import org.dom4j.Document; +import org.dom4j.DocumentException; +import org.dom4j.DocumentHelper; +import org.dom4j.Element; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.data.domain.Sort; +import org.springframework.stereotype.Service; + +import java.text.SimpleDateFormat; +import java.util.HashMap; +import java.util.Iterator; +import java.util.List; +import java.util.Map; + +@Service("rcGwInterface") +public class RcGwInterface { + private static String key = "b7cb81740daa477cb90949736f5ce563";//一个医院一个key + + @Autowired + private AntenatalExaminationService antExService; + @Autowired + private PatientsService patientsService; + @Autowired + private MatDeliverFollowService matDeliverFollowService; + @Autowired + private PostReviewService postReviewService; + + /** + * 查询个人基本信息表 + * + * @param card 身份证号码 + * @return + */ + public Map getQueryBasicInformation(String card) { + + Map stringStringMap = new HashMap<>(); + try { + //prgid,username这块是写死的,其它是调用接口获取的 + String xmlString = " " + + "" + + "" + + "" + + "" + + " "; + + String operate = "e4a9cb09418f4e18ab2d6791412194b5";//调用业务接口 + String webServiceStr = getWebServiceStr(key, operate, xmlString); + if (webServiceStr.contains("无数据") || webServiceStr.contains("失败")) { + return stringStringMap; + } + stringStringMap = xmlSwitchMap(webServiceStr); + } catch (Exception e) { + e.printStackTrace(); + } + return stringStringMap; + } + + /** + * 孕产妇产前第一次(初诊)随访表上传 + * + * @param startDate 开始时间 + * @param endDate 结束时间 + * @param parentId 孕妇建档id + * @return + */ + public BaseObjectResponse saveChuZhen(String startDate, String endDate, String parentId) { + BaseObjectResponse br = new BaseObjectResponse(); + //1 获取某个时间的初诊数据 + AntExChuQuery antExChuQuery = new AntExChuQuery(); + if (StringUtils.isNotEmpty(parentId)) { + antExChuQuery.setParentId(parentId); + } else { + antExChuQuery.setModifiedStart(DateUtil.parseYMDHMS(startDate)); + antExChuQuery.setModifiedEnd(DateUtil.parseYMDHMS(endDate)); + } + antExChuQuery.setYn(YnEnums.YES.getId()); + List list = antExService.queryAntExChu(antExChuQuery); + if (list != null && list.size() > 0) { + for (AntExChuModel antExChuModel : list) { + try { + //2 获取公卫身份证信息(也包括公卫基本信息) + PatientsQuery patientsQuery = new PatientsQuery(); + patientsQuery.setType(1);//1:孕妇,2:儿童,3产妇 + patientsQuery.setId(antExChuModel.getParentId());//建档id + patientsQuery.setYn(YnEnums.YES.getId()); + List listPatients = patientsService.queryPatient(patientsQuery); + if (CollectionUtils.isEmpty(listPatients)) { + ExceptionUtils.catchException("1 档案信息为空 " + patientsQuery.getId()); + continue; + } + Patients patients = listPatients.get(0); + if (patients.equals(null) || patients.getCardNo().equals(null)) { + ExceptionUtils.catchException("2 档案信息为空 " + patientsQuery.getId()); + continue; + } + Map basicInfoMap = getQueryBasicInformation(patients.getCardNo()); + if (basicInfoMap.isEmpty()) { + ExceptionUtils.catchException("3 查询个人基本信息表,失败 " + patients.getCardNo()); + continue; + } + //3 拼接webservice 返回服务端的xml + basicInfoMap.put("sjyy", "荣成市妇幼");//上传医院,填写医院中文名称(必填) + String xmlString = getchuZhenXMLStr(antExChuModel, basicInfoMap, patients); + if (StringUtils.isEmpty(xmlString)) { + ExceptionUtils.catchException("4 拼接webservice 返回服务端的xml,失败 " + patients.getCardNo()); + continue; + } + //4 调用webservice客户端。 + String operate = "ca65a3ac7b9fe63e31a841f6aeac5011";//第一次随访接口 + String webServiceStr = getWebServiceStr(key, operate, xmlString); + ExceptionUtils.catchException("5 调用webservice客户端: "+webServiceStr); + + } catch (Exception e) { + e.printStackTrace(); + ExceptionUtils.catchException("6 异常: "+antExChuModel.getId()); + continue; + } + } + } else { + br.setErrorcode(ErrorCodeConstants.NO_DATA); + br.setErrormsg("没有初诊数据"); + return br; + } + br.setErrorcode(ErrorCodeConstants.SUCCESS); + br.setErrormsg("第一次随访,执行完"); + return br; + + } + + + /** + * 孕产妇产前第二次(复诊)随访表上传//新 + * + * @param startDate 开始时间 + * @param endDate 结束时间 + * @param parentId 孕妇建档id + * @return + */ + public BaseObjectResponse saveFuZhen(String startDate, String endDate, String parentId) { + BaseObjectResponse br = new BaseObjectResponse(); + //1 获取某个时间的复诊数据 + AntExQuery antExQuery = new AntExQuery(); + if (StringUtils.isNotEmpty(parentId)) { + antExQuery.setParentId(parentId); + } else { + antExQuery.setModifiedStart(DateUtil.parseYMDHMS(startDate)); + antExQuery.setModifiedEnd(DateUtil.parseYMDHMS(endDate)); + } + antExQuery.setYn(YnEnums.YES.getId()); + List list = antExService.queryAntenatalExamination(antExQuery.convertToQuery().addOrder(Sort.Direction.DESC, "created")); + if (list != null && list.size() > 0) { + for (int i = 0; i < list.size(); i++) { + try { + AntenatalExaminationModel antenatalExaminationModel = list.get(i); + + // 2 获取公卫身份证信息 + PatientsQuery patientsQuery = new PatientsQuery(); + patientsQuery.setType(1);//1:孕妇,2:儿童,3产妇 + patientsQuery.setId(antenatalExaminationModel.getParentId());//建档id + patientsQuery.setYn(YnEnums.YES.getId()); + List listPatients = patientsService.queryPatient(patientsQuery); + if (CollectionUtils.isEmpty(listPatients)) { + ExceptionUtils.catchException("1 档案信息为空 " + patientsQuery.getId()); + continue; + } + Patients patients = listPatients.get(0); + if (patients.equals(null) || patients.getCardNo().equals(null)) { + ExceptionUtils.catchException("2 档案信息为空 " + patientsQuery.getId()); + continue; + } + Map basicInfoMap = getQueryBasicInformation(patients.getCardNo()); + if (basicInfoMap.isEmpty()) { + ExceptionUtils.catchException("3 查询个人基本信息表,失败 " + patients.getCardNo()); + continue; + } + + // 3 判该复诊数据是第几次复诊数据 + //3.1 根据当前孕妇1条复诊信息,获取孕妇所有复诊信息 + AntExQuery antExQueryC = new AntExQuery(); + antExQueryC.setParentId(antenatalExaminationModel.getParentId()); + antExQueryC.setYn(YnEnums.YES.getId()); + List listc = antExService.queryAntenatalExamination(antExQueryC.convertToQuery().addOrder(Sort.Direction.ASC, "created")); + + //3.2 遍历当前孕所有复诊数据上传公卫接口 + for (int j = 0; j < listc.size(); j++) { + AntenatalExaminationModel fu = null; + String xmlString = ""; + String operate = ""; + String webServiceStr = ""; + switch (j) { + case 0://第二随访 + basicInfoMap.put("suiFangB", "T_FB_CQJCJLERC"); + basicInfoMap.put("operate", "6b024d15485f49738981f6e5c4f9de45"); + fu = listc.get(j); + xmlString = getFuZhenXMLStr(fu, basicInfoMap, patients); + operate = basicInfoMap.get("operate"); + webServiceStr = getWebServiceStr(key, operate, xmlString); + ExceptionUtils.catchException("5 调用webservice客户端: "+webServiceStr); + break; + + case 1://第三随访 + basicInfoMap.put("suiFangB", "T_FB_CQJCJLSANC"); + basicInfoMap.put("operate", "e4432e43854b4f889ed4481a1c2b3236"); + fu = listc.get(j); + xmlString = getFuZhen3XMLStr(fu, basicInfoMap, patients); + operate = basicInfoMap.get("operate"); + webServiceStr = getWebServiceStr(key, operate, xmlString); + ExceptionUtils.catchException("5 调用webservice客户端: "+webServiceStr); + break; + case 2://第四随访 + basicInfoMap.put("suiFangB", "T_FB_CQJCJLSIC"); + basicInfoMap.put("operate", "b1206f07c4204c55a09d9c4e2d7a1976"); + fu = listc.get(j); + xmlString = getFuZhen3XMLStr(fu, basicInfoMap, patients); + operate = basicInfoMap.get("operate"); + webServiceStr = getWebServiceStr(key, operate, xmlString); + ExceptionUtils.catchException("5 调用webservice客户端: "+webServiceStr); + break; + case 3://第五随访 + basicInfoMap.put("suiFangB", "T_FB_CQJCJLWUC"); + basicInfoMap.put("operate", "54a22af69e324d2d8cbee5830e3f5cc8"); + fu = listc.get(j); + xmlString = getFuZhen3XMLStr(fu, basicInfoMap, patients); + operate = basicInfoMap.get("operate"); + webServiceStr = getWebServiceStr(key, operate, xmlString); + ExceptionUtils.catchException("5 调用webservice客户端: "+webServiceStr); + break; + } + + } + + + } catch (Exception e) { + ExceptionUtils.catchException("6 异常: "+list.get(i).getParentId()); + continue; + } + + } + } else { + br.setErrorcode(ErrorCodeConstants.NO_DATA); + br.setErrormsg("没有复诊数据"); + return br; + } + br.setErrorcode(ErrorCodeConstants.SUCCESS); + br.setErrormsg("第2 3 4 5次随访,执行完"); + return br; + } + + /** + * 产后访视调用方法 + * + * @param startDate + * @param endDate + * @return + */ + public BaseResponse saveChFs(String startDate, String endDate, String pid) { + BaseObjectResponse br = new BaseObjectResponse(); + //1 获取某个时间的访视数据 + MatDeliverFollowQuery deliverQuery = new MatDeliverFollowQuery(); + if (StringUtils.isNotEmpty(pid)) { + deliverQuery.setPid(pid); + } else { + deliverQuery.setCreatedTimeStart(DateUtil.parseYMDHMS(startDate)); + deliverQuery.setCreatedTimeEnd(DateUtil.parseYMDHMS(endDate)); + } + List list = matDeliverFollowService.query(deliverQuery); + if (null != list && list.size() > 0) { + for (MatdeliverFollowModel matdeliverFollowModel : list) { + try { + //2 获取公卫身份证信息(也包括公卫基本信息) + PatientsQuery patientsQuery = new PatientsQuery(); + patientsQuery.setType(3);//1:孕妇,2:儿童,3产妇 + patientsQuery.setPid(matdeliverFollowModel.getPid());//建档id + patientsQuery.setYn(YnEnums.YES.getId()); + List listPatients = patientsService.queryPatient(patientsQuery); + if (CollectionUtils.isEmpty(listPatients)) { + ExceptionUtils.catchException("1 档案信息为空 " + patientsQuery.getId()); + continue; + } + Patients patients = listPatients.get(0); + if (patients.equals(null) || patients.getCardNo().equals(null)) { + ExceptionUtils.catchException("2 档案信息为空 " + patientsQuery.getId()); + continue; + } + Map basicInfoMap = getQueryBasicInformation(patients.getCardNo()); + if (basicInfoMap.isEmpty()) { + ExceptionUtils.catchException("3 查询个人基本信息表,失败 " + patients.getCardNo()); + continue; + } + //3 拼接webservice 返回服务端的xml + basicInfoMap.put("sjyy", "荣成市妇幼");//上传医院,填写医院中文名称(必填) + String xmlString = getFangShiXMLStr(matdeliverFollowModel, basicInfoMap, patients); + if (StringUtils.isEmpty(xmlString)) { + ExceptionUtils.catchException("4 拼接webservice 返回服务端的xml,失败 " + patients.getCardNo()); + continue; + } + //4 调用webservice客户端。 + String operate = "62f6653bf6eb40b4b38a01efd11aa27a";//产后访视接口 + String webServiceStr = getWebServiceStr(key, operate, xmlString); + ExceptionUtils.catchException("5 调用webservice客户端: "+webServiceStr); + } catch (Exception e) { + ExceptionUtils.catchException("6 异常: "+matdeliverFollowModel.getId()); + continue; + } + + } + } else { + br.setErrorcode(ErrorCodeConstants.NO_DATA); + br.setErrormsg("没有访视数据"); + return br; + } + br.setErrorcode(ErrorCodeConstants.SUCCESS); + br.setErrormsg("访视,执行完"); + return br; + } + + /** + * 产后复查调用方法 + * + * @param startDate + * @param endDate + * @return + */ + public BaseResponse saveChFc(String startDate, String endDate, String parentId) { + BaseObjectResponse br = new BaseObjectResponse(); + //1 获取某个时间的访视数据 + PostReviewQuery mongoQuery = new PostReviewQuery(); + if (StringUtils.isNotEmpty(parentId)) { + mongoQuery.setParentId(parentId); + } else { + mongoQuery.setCreatedTimeStart(DateUtil.parseYMDHMS(startDate)); + mongoQuery.setCreatedTimeEnd(DateUtil.parseYMDHMS(endDate)); + } + List list = postReviewService.findWithList(mongoQuery); + if (list != null && list.size() > 0) { + for (PostReviewModel postReviewModel : list) { + try { + //2 获取公卫身份证信息(也包括公卫基本信息) + PatientsQuery patientsQuery = new PatientsQuery(); + patientsQuery.setType(3);//1:孕妇,2:儿童,3产妇 + patientsQuery.setId(postReviewModel.getParentId());//建档id + patientsQuery.setYn(YnEnums.YES.getId()); + List listPatients = patientsService.queryPatient(patientsQuery); + if (CollectionUtils.isEmpty(listPatients)) { + ExceptionUtils.catchException("1 档案信息为空 " + patientsQuery.getId()); + continue; + } + Patients patients = listPatients.get(0); + if (patients.equals(null) || patients.getCardNo().equals(null)) { + ExceptionUtils.catchException("2 档案信息为空 " + patientsQuery.getId()); + continue; + } + Map basicInfoMap = getQueryBasicInformation(patients.getCardNo()); + if (basicInfoMap.isEmpty()) { + ExceptionUtils.catchException("3 查询个人基本信息表,失败 " + patients.getCardNo()); + continue; + } + //3 拼接webservice 返回服务端的xml + basicInfoMap.put("sjyy", "荣成市妇幼");//上传医院,填写医院中文名称(必填) + String xmlString = getFuChaXMLStr(postReviewModel, basicInfoMap, patients); + if (StringUtils.isEmpty(xmlString)) { + ExceptionUtils.catchException("4 拼接webservice 返回服务端的xml,失败 " + patients.getCardNo()); + continue; + } + //4 调用webservice客户端。 + String operate = "9b360fa937d34960ba5c214fa55fad1b";//产后42天接口 + String webServiceStr = getWebServiceStr(key, operate, xmlString); + ExceptionUtils.catchException("5 调用webservice客户端: "+webServiceStr); + + } catch (Exception e) { + ExceptionUtils.catchException("6 异常: "+postReviewModel.getId()); + continue; + } + + } + } else { + br.setErrorcode(ErrorCodeConstants.NO_DATA); + br.setErrormsg("没有产后42天数据"); + return br; + } + br.setErrorcode(ErrorCodeConstants.SUCCESS); + br.setErrormsg("产后42天,执行完"); + return br; + } + + public void rcHandleWork() { + java.util.Date date = new java.util.Date(); + String startDate = DateUtil.getYyyyMmDd(date) + " 00:00:00"; + String endDate = DateUtil.getYyyyMmDd(date) + " 23:59:59"; + System.out.println("start=" + startDate + "end=" + endDate); + saveChuZhen(startDate, endDate, null); + saveFuZhen(startDate, endDate, null); + saveChFs(startDate, endDate, null); + saveChFc(startDate, endDate, null); + } + + + /** + * 拼接webservice 第一次随访 返回服务端xml + * + * @param chu + * @param basicInfoMap + * @param patients + * @return + */ + public String getchuZhenXMLStr(AntExChuModel chu, Map basicInfoMap, Patients patients) { + String xmlString = null; + try { + String pRgid = basicInfoMap.get("PRgid"); + String dSfzh = basicInfoMap.get("DSfzh"); + String sjyy = basicInfoMap.get("sjyy"); + if (StringUtils.isEmpty(pRgid) || StringUtils.isEmpty(dSfzh)) { + return xmlString; + } + String username = pRgid + "0001"; + SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); + String getCreated = chu.getCreated() != null ? sdf.format(chu.getCreated()) : ""; + String getModified = chu.getModified() != null ? sdf.format(chu.getModified()) : ""; + String dueDate = chu.getDueDate() != null ? sdf.format(chu.getDueDate()) : ""; + String FMcyj = chu.getLastMenses() != null ? sdf.format(patients.getLastMenses()) : ""; + //血压 + Map maps = (Map) JSON.parse(chu.getBp()); + String ssy = maps.get("ssy").toString(); + String szy = maps.get("szy").toString(); + xmlString = + "" + + "" + + "" + dSfzh + "" //身份证号(必填) + + "1"//默认为1(必填) + + ""// 产前第一次随访表 + + ""//档案号 + + "" //创建机构 + + "" //录入时间 + + ""//录入人 + + ""//最近更新时间 + + ""//最近更新人 + + ""//随访日期(必填) + + ""//当前机构 + + ""//填表孕周 + + ""//家族史0无2遗传性疾病史5精神病史 99其他 + + ""//既往病史0 无1心脏病2 肝脏疾病3 肾脏疾病 4高血压 5贫血6糖尿病99其他 + + ""//孕产史自然流产 + + ""//孕产史死胎 + + ""//孕产史死产 + + ""//孕产史新生儿死亡 + + ""//孕产史出生缺陷儿 + + ""//身高 + + ""//体重 + + ""///血压收缩压 + + ""//血压舒张压 + + ""//听诊心脏1 未见异常 99 异常 + + ""//心脏异常 + + ""//肺部1 未见异常 99 异常 + + ""//肺部异常 + + ""//妇科检查外阴正常1未见异常99异常 + + ""//妇科检查:外阴 + + ""//妇科检查:阴道正常1未见异常99异常 + + ""//妇科检查:阴道 + + ""//妇科检查:宫颈正常1未见异常99异常 + + ""//妇科检查:宫颈 + + ""//妇科检查:子宫正常1未见异常99异常 + + ""//妇科检查:子宫 + + ""//妇科检查:附件正常1未见异常99异常 + + ""//妇科检查:附件 + + ""//辅助检查:B/彩超 + + ""//辅助检查:抗HIV1阴性2阳性 + + ""//随访医师签名 + + ""//末次月经 + + ""//卡号 + + ""//家族史其他 + + ""//妇产科手术史1 有 2 无 + + ""//妇产科手术史有 + + ""//血红蛋白值 + + ""//血小板计数值 + + ""//白细胞计数值 + + ""//血常规其他 + + ""//尿蛋白 + + ""//尿糖 + + ""//尿酮体 + + ""//尿潜血 + + ""//血清谷丙转氨酶 + + ""//血清谷草转氨酶 + + ""//白蛋白 + + ""//总胆红素 + + ""//结合胆红素 + + ""//血清肌酐 + + ""//血尿素氮 + + ""//阴道分泌物1 未见异常2滴虫3假丝酵母菌4其他 + + ""//阴道分泌物其他 + + ""//梅毒血清学试验1阴性2阳性 + + ""//总体评估1未见异常99异常 + + ""//总体评估异常 + + ""//转诊1 有 2 无 + + ""//转诊原因 + + ""//转诊机构 + + ""//尿常规其他fYc + + ""//孕次 + + ""//产次 + + ""//下次随访日期 + + ""//预产期 + + ""//既往病史其他 + + ""//缺项值 + + ""//丈夫姓名 + + ""//丈夫年龄 + + ""//丈夫电话 + + ""//剖宫产 + + ""//个人史0 无特殊1 吸烟 2饮酒3 服用药物4 接触有毒有害物质 5接触放射线 6其他 + + ""//血型1A 2B 3O 4AB + + ""//RH血型1否2是 3不详 + + ""//血糖 + + ""//阴道清洁度1Ⅰ度 2Ⅱ度 3Ⅲ度 4Ⅳ度 + + ""//乙型肝炎表面抗原 + + ""//乙型肝炎表面抗体 + + ""//乙型肝炎e抗原 + + ""//乙型肝炎e抗体 + + ""//乙型肝炎核心抗体 + + ""//保健指导1 生活方式 2心理3 营养4 避免致畸因素和疾病对胚胎的不良影响5产前筛查宣传告知6 其他 + + ""//保健指导其他 + + ""//孕妇年龄 + + ""//个人史其他 + + ""//完整度 + + ""//孕周天数 + + ""//建册情况1 本次随访同时建册 2已在其他机构建册 + + ""//已在其他机构建册时的文本 + + ""//转诊——联系人 + + ""//转诊——联系电话 + + ""//结果//1到位 2不到位 + + ""//居民/家属签字 + + ""//上传标识,默认为1(必填) + + ""//上传医院,填写医院中文名称(医院官方名称,那几家用着,荣成下面)(必填) + + "" + + "" + + ""; + + } catch (Exception e) { + e.printStackTrace(); + } + return xmlString; + } + + /** + * 拼接webservice 第二次随访 返回服务端xml + * + * @param fu + * @param basicInfoMap + * @param patients + * @return + */ + public String getFuZhenXMLStr(AntenatalExaminationModel fu, Map basicInfoMap, Patients patients) { + String xmlString = null; + try { + String pRgid = basicInfoMap.get("PRgid"); + String dSfzh = basicInfoMap.get("DSfzh"); + String sjyy = basicInfoMap.put("sjyy", "荣成市妇幼"); + if (StringUtils.isEmpty(pRgid) || StringUtils.isEmpty(dSfzh)) { + return xmlString; + } + String username = pRgid + "0001"; + SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); + String getCheckDate = fu.getCheckDate() != null ? sdf.format(fu.getCheckDate()) : ""; + //血压 + Map maps = (Map) JSON.parse(fu.getBp()); + String ssy = maps.get("ssy").toString(); + String szy = maps.get("szy").toString(); + //胎心率 + String heartRate = getTxlStr(fu); + + String suiFang2B = basicInfoMap.get("suiFangB"); + xmlString = + "" + + "" + + "" + dSfzh + ""//身份证号 + + "1" //默认为1 + + "" // 产前第二次随访表 + + ""//档案号 + + "" //创建机构 + + "" //录入时间 + + ""//录入人(是id需转换) + + ""//最近更新时间 + + ""//最近更新人 + + ""//随访日期 + + ""//当前机构 + + ""//填表孕周 + + ""//体重 + + ""//血压左侧 + + ""//血压右侧 + + ""//宫底高度 + + ""//腹 围 + + ""//尿蛋白 + + ""//随访医生签名 + + ""//卡号 + + ""//孕次 + + ""//胎位 + + ""//下次随访日期 + + ""//主诉 + + ""//血红蛋白值 + + ""//其他检查 + + ""//分类1未见异常99异常 + + ""//分类异常 + + ""//指导1生活方式2 营养 3心理4运动5其他 + + ""//指导其他 + + ""//胎心率 + + ""//随访(督促)方式1门诊2 家庭3电话 + + ""//完整度 + + ""//孕周天数 + + ""//产前检查机构民称 + + + ""//是否有血清学产前检查1是2否 + + ""//产前血清学筛查记录 + + + ""//转诊1 有 2 无 + + ""//转诊原因 + + ""//转诊机构 + + ""//转诊——联系人 + + ""//转诊-联系方式 + + ""//结果//1到位 2不到位 + + ""//居民/家属签字 + + ""//上传标识,默认为1 + + ""//上传医院,填写医院中文名称 + + "" + + "" + + ""; + + + } catch (Exception e) { + e.printStackTrace(); + + } + return xmlString; + } + + public String getFuZhen3XMLStr(AntenatalExaminationModel fu, Map basicInfoMap, Patients patients) { + String xmlString = null; + try { + String pRgid = basicInfoMap.get("PRgid"); + String dSfzh = basicInfoMap.get("DSfzh"); + String sjyy = basicInfoMap.put("sjyy", "荣成市妇幼"); + if (StringUtils.isEmpty(pRgid) || StringUtils.isEmpty(dSfzh)) { + return xmlString; + } + String username = pRgid + "0001"; + SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); + String getCheckDate = fu.getCheckDate() != null ? sdf.format(fu.getCheckDate()) : ""; + //血压 + Map maps = (Map) JSON.parse(fu.getBp()); + String ssy = maps.get("ssy").toString(); + String szy = maps.get("szy").toString(); + //胎心率 + String heartRate = getTxlStr(fu); + + String suiFang2B = basicInfoMap.get("suiFangB"); + xmlString = + "" + + "" + + "" + dSfzh + ""//身份证号 + + "1" //默认为1 + + "" // 产前第二次随访表 + + ""//档案号 + + "" //创建机构 + + "" //录入时间 + + ""//录入人(是id需转换) + + ""//最近更新时间 + + ""//最近更新人 + + ""//随访日期 + + ""//当前机构 + + ""//填表孕周 + + ""//体重 + + ""//血压左侧 + + ""//血压右侧 + + ""//宫底高度 + + ""//腹 围 + + ""//尿蛋白 + + ""//随访医生签名 + + ""//卡号 + + ""//孕次 + + ""//胎位 + + ""//下次随访日期 + + ""//主诉 + + ""//血红蛋白值 + + ""//其他检查 + + ""//分类1未见异常99异常 + + ""//分类异常 + + ""//指导1生活方式2 营养 3心理4运动5其他 + + ""//指导其他 + + ""//胎心率 + + ""//随访(督促)方式1门诊2 家庭3电话 + + ""//完整度 + + ""//孕周天数 + + ""//产前检查机构民称 + + ""//转诊1 有 2 无 + + ""//转诊原因 + + ""//转诊机构 + + ""//转诊——联系人 + + ""//转诊-联系方式 + + ""//结果//1到位 2不到位 + + ""//居民/家属签字 + + ""//上传标识,默认为1 + + ""//上传医院,填写医院中文名称 + + "" + + "" + + ""; + + + } catch (Exception e) { + e.printStackTrace(); + + } + return xmlString; + } + + public String getFangShiXMLStr(MatdeliverFollowModel fs, Map basicInfoMap, Patients patients) { + String xmlString = null; + try { + String pRgid = basicInfoMap.get("PRgid"); + String dSfzh = basicInfoMap.get("DSfzh"); + String sjyy = basicInfoMap.get("sjyy"); + if (StringUtils.isEmpty(pRgid) || StringUtils.isEmpty(dSfzh)) { + return xmlString; + } + String username = pRgid + "0001"; + SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); + String getCreateDate = fs.getCreateDate() != null ? sdf.format(fs.getCreateDate()) : ""; + String getUpdateDate = fs.getUpdateDate() != null ? sdf.format(fs.getUpdateDate()) : ""; + String getNextVisitDate = fs.getNextVisitDate() != null ? sdf.format(fs.getNextVisitDate()) : ""; + //血压 + Map maps = (Map) JSON.parse(fs.getBp()); + String ssy = maps.get("ssy").toString(); + String szy = maps.get("szy").toString(); + String getBreast = fs.getBreast() == 1 ? "1" : ""; + String getLochia = fs.getLochia() == 1 ? "1" : ""; + String getWound = fs.getWound() == 1 ? "1" : ""; + String getHealthType = fs.getHealthType() == 1 ? "1" : ""; + xmlString = + "" + + "" + + "" + dSfzh + "" //身份证号(必填) + + "1"//默认为1(必填) + + ""// 产后访视表 + + ""//档案号 + + "" //创建机构 + + "" //录入时间 + + ""//录入人 + + ""//最近更新时间 + + ""//最近更新人 + + ""//访视日期 + + " "//当前机构 + + ""//体温 + + ""//其他 + + ""//血压SSY + + ""//血压SZY + + ""//处理 + + ""//卡号 + + ""//一般健康状况 + + ""//一般心里状况 + + ""//乳房 1 未见异常 99 异常 + + ""// 乳房异常 + + ""//恶露 1 未见异常 99 异常 + + ""//恶露异常 + + ""//子宫 1 未见异常 99 异常 + + ""//子宫异常 + + ""//伤口1 未见异常 99 异常 + + ""//伤口异常 + + ""//分类1未见异常99异常 + + ""//分类异常 + + ""//下次随访日期 + + ""//医师签名 + + ""//指导1个人卫生 2心理3 营养4 母乳喂养 5新生儿护理与喂养6其他 + + ""//指导其他 + + ""//缺项值 + + ""//产次 + + ""//完整度 + + ""//分娩日期 + + ""//分娩孕周 + + ""//分娩孕周天 + + ""//分娩方式 + + ""//出院日期 + + ""//转诊1 有 2 无 + + ""//转诊原因 + + ""//转诊机构 + + ""//转诊——联系人 + + ""//转诊-联系方式 + + ""//结果//1到位 2不到位 + + ""//居民签名 + + ""//上传标识,默认为1 + + ""//上传医院,填写医院中文名称 + + "" + + "" + + ""; + + } catch (Exception e) { + e.printStackTrace(); + } + return xmlString; + } + + private String getFuChaXMLStr(PostReviewModel fc, Map basicInfoMap, Patients patients) { + String xmlString = null; + try { + String pRgid = basicInfoMap.get("PRgid"); + String dSfzh = basicInfoMap.get("DSfzh"); + String sjyy = basicInfoMap.get("sjyy"); + if (StringUtils.isEmpty(pRgid) || StringUtils.isEmpty(dSfzh)) { + return xmlString; + } + String username = pRgid + "0001"; + SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); + String getCreated = fc.getCreated() != null ? sdf.format(fc.getCreated()) : ""; + String getCheckTime = fc.getCheckTime() != null ? sdf.format(fc.getCheckTime()) : ""; + //血压 + Map maps = (Map) JSON.parse(fc.getBp()); + String ssy = maps.get("ssy").toString(); + String szy = maps.get("szy").toString(); + String getBreast = fc.getBreast() == "未见异常" ? "1" : "99"; + String getBreastStr = getBreast == "99" ? fc.getBreast() : ""; + String getMatrix = fc.getMatrix() == "未见异常" ? "1" : "99"; + String getMatrixStr = getMatrix == "99" ? fc.getMatrix() : ""; + String getLochia = fc.getLochia() == "未见异常" ? "1" : "99"; + String getLochiaStr = getLochia == "99" ? fc.getLochia() : ""; + String getWound = fc.getWound() == "未见异常" ? "1" : "99"; + String getWoundStr = getWound == "99" ? fc.getWound() : ""; + + xmlString = + "" + + "" + + "" + dSfzh + "" //身份证号(必填) + + "1"//默认为1(必填) + + "" // 产后42天随访表 + + ""//档案号 + + "" //创建机构 + + "" //录入时间 + + ""//录入人 + + ""//最近更新时间 + + ""//最近更新人 + + ""//访视日期 + + ""//当前机构 + + ""//血压SSY + + ""//血压SZY + + ""//乳房 1 未见异常 99 异常 + + ""// 乳房异常 + + ""//子宫 1 未见异常 99 异常 + + ""//子宫异常 + + ""//处理 + + ""//卡号 + + ""//一般健康状况 + + ""//一般心里状况 + + ""//恶露 1 未见异常 99 异常 + + ""//恶露异常 + + ""//伤口1 未见异常 99 异常 + + ""//伤口异常 + + ""//分类1未见异常99异常 + + ""//分类异常 + + ""//产后检查机构名称 + + ""//医师签名 + + ""//指导1 心理保健 2 性保健与避孕 3 婴儿喂养 4 产妇营养 99 其他 + + ""//指导其他 + + ""//缺项值 + + ""//其他 + + ""//产次 + + ""//完整度 + + ""//分娩日期 + + ""//出院日期 + + ""//转诊1 有 2 无 + + ""//转诊原因 + + ""//转诊机构 + + ""//转诊——联系人 + + ""//转诊-联系方式 + + ""//结果//1到位 2不到位 + + ""//上传标识,默认为1 + + ""//上传医院,填写医院中文名称 + + "" + + "" + + ""; + + } catch (Exception e) { + e.printStackTrace(); + } + return xmlString; + } + + /** + * 获取胎心率 + * + * @param fu + * @return + */ + private String getTxlStr(AntenatalExaminationModel fu) { + String heartRate = ""; + try { + JSONArray jsonArray = new JSONArray(fu.getTireData()); + List list = JSONObject.parseArray(jsonArray.toJSONString(), Map.class); + for (Map m : list) { + for (String key : m.keySet()) { + if ("heartRate".equals(key)) { + heartRate = (String) m.get("heartRate"); + } + } + break;//公卫说就选择第一胎心率 + } + } catch (Exception e) { + e.printStackTrace(); + } + return heartRate; + } + + + public static void main(String[] args) { + RcGwInterface rcGWService = new RcGwInterface(); + Map queryBasicInformation = rcGWService.getQueryBasicInformation("412728198610092846"); + System.out.println(queryBasicInformation.get("DSfzh")); + } + + + /** + * 获取调用webservice返回结果字符串 + * + * @param key + * @param operate + * @param xmlString + * @return + */ + public static String getWebServiceStr(String key, String operate, String xmlString) { + WebService webService = new WebService(); + WebServicePortType webServiceHttpPort = webService.getWebServiceHttpPort(); + //参数1=key,参数2=Operate值,参数3=XML字符串 + String s = webServiceHttpPort.dataCenterWebservice(key, operate, xmlString); + return s; + } + + /** + * 解析xml转换为map + * 转换xml格式为() + * + * @param xml + * @return + */ + public static Map xmlSwitchMap(String xml) { + Map eMap = new HashMap(); + + try { + if (StringUtils.isEmpty(xml)) { + return eMap; + } + Document document = DocumentHelper.parseText(xml); + Element root = document.getRootElement(); + Iterator iterator = root.element("row").elementIterator(); + while (iterator.hasNext()) { + Element recordEle = (Element) iterator.next();//获取一个Element + String value = recordEle.getStringValue(); //获取标签值 + eMap.put(recordEle.attributeValue("name"), value);//获取属性为name值 + } + } catch (DocumentException e) { + e.printStackTrace(); + System.out.println("解析xml转换为map失败。。。。"); + } + return eMap; + + } + + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/DataCenterWebservice.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/DataCenterWebservice.java new file mode 100644 index 0000000..d5486b0 --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/DataCenterWebservice.java @@ -0,0 +1,116 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="in1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="in2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "in0", + "in1", + "in2" +}) +@XmlRootElement(name = "DataCenterWebservice") +public class DataCenterWebservice { + + @XmlElement(required = true, nillable = true) + protected String in0; + @XmlElement(required = true, nillable = true) + protected String in1; + @XmlElement(required = true, nillable = true) + protected String in2; + + /** + * ��ȡin0���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getIn0() { + return in0; + } + + /** + * ����in0���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIn0(String value) { + this.in0 = value; + } + + /** + * ��ȡin1���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getIn1() { + return in1; + } + + /** + * ����in1���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIn1(String value) { + this.in1 = value; + } + + /** + * ��ȡin2���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getIn2() { + return in2; + } + + /** + * ����in2���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIn2(String value) { + this.in2 = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/DataCenterWebserviceResponse.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/DataCenterWebserviceResponse.java new file mode 100644 index 0000000..0768fe2 --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/DataCenterWebserviceResponse.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "DataCenterWebserviceResponse") +public class DataCenterWebserviceResponse { + + @XmlElement(required = true, nillable = true) + protected String out; + + /** + * ��ȡout���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getOut() { + return out; + } + + /** + * ����out���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOut(String value) { + this.out = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/ObjectFactory.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/ObjectFactory.java new file mode 100644 index 0000000..ebb0c8a --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/ObjectFactory.java @@ -0,0 +1,448 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.XmlRegistry; + + +/** + * This object contains factory methods for each + * Java content interface and Java element interface + * generated in the com.jiekou.webservice package. + *

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 { + + + /** + * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: com.jiekou.webservice + * + */ + public ObjectFactory() { + } + + /** + * Create an instance of {@link TestWebService } + * + */ + public TestWebService createTestWebService() { + return new TestWebService(); + } + + /** + * Create an instance of {@link TestWebServiceResponse } + * + */ + public TestWebServiceResponse createTestWebServiceResponse() { + return new TestWebServiceResponse(); + } + + /** + * Create an instance of {@link SelecttdaJkdaRkxzl } + * + */ + public SelecttdaJkdaRkxzl createSelecttdaJkdaRkxzl() { + return new SelecttdaJkdaRkxzl(); + } + + /** + * Create an instance of {@link SelecttdaJkdaRkxzlResponse } + * + */ + public SelecttdaJkdaRkxzlResponse createSelecttdaJkdaRkxzlResponse() { + return new SelecttdaJkdaRkxzlResponse(); + } + + /** + * Create an instance of {@link SaveMzzl } + * + */ + public SaveMzzl createSaveMzzl() { + return new SaveMzzl(); + } + + /** + * Create an instance of {@link SaveMzzlResponse } + * + */ + public SaveMzzlResponse createSaveMzzlResponse() { + return new SaveMzzlResponse(); + } + + /** + * Create an instance of {@link SaveZyzlJyxq } + * + */ + public SaveZyzlJyxq createSaveZyzlJyxq() { + return new SaveZyzlJyxq(); + } + + /** + * Create an instance of {@link SaveZyzlJyxqResponse } + * + */ + public SaveZyzlJyxqResponse createSaveZyzlJyxqResponse() { + return new SaveZyzlJyxqResponse(); + } + + /** + * Create an instance of {@link SaveMzzlHyxm } + * + */ + public SaveMzzlHyxm createSaveMzzlHyxm() { + return new SaveMzzlHyxm(); + } + + /** + * Create an instance of {@link SaveMzzlHyxmResponse } + * + */ + public SaveMzzlHyxmResponse createSaveMzzlHyxmResponse() { + return new SaveMzzlHyxmResponse(); + } + + /** + * Create an instance of {@link SaveZyzlCyzd } + * + */ + public SaveZyzlCyzd createSaveZyzlCyzd() { + return new SaveZyzlCyzd(); + } + + /** + * Create an instance of {@link SaveZyzlCyzdResponse } + * + */ + public SaveZyzlCyzdResponse createSaveZyzlCyzdResponse() { + return new SaveZyzlCyzdResponse(); + } + + /** + * Create an instance of {@link SelectYw } + * + */ + public SelectYw createSelectYw() { + return new SelectYw(); + } + + /** + * Create an instance of {@link SelectYwResponse } + * + */ + public SelectYwResponse createSelectYwResponse() { + return new SelectYwResponse(); + } + + /** + * Create an instance of {@link SaveTpwRgin } + * + */ + public SaveTpwRgin createSaveTpwRgin() { + return new SaveTpwRgin(); + } + + /** + * Create an instance of {@link SaveTpwRginResponse } + * + */ + public SaveTpwRginResponse createSaveTpwRginResponse() { + return new SaveTpwRginResponse(); + } + + /** + * Create an instance of {@link SaveZyzl } + * + */ + public SaveZyzl createSaveZyzl() { + return new SaveZyzl(); + } + + /** + * Create an instance of {@link SaveZyzlResponse } + * + */ + public SaveZyzlResponse createSaveZyzlResponse() { + return new SaveZyzlResponse(); + } + + /** + * Create an instance of {@link SaveZyzlHyxm } + * + */ + public SaveZyzlHyxm createSaveZyzlHyxm() { + return new SaveZyzlHyxm(); + } + + /** + * Create an instance of {@link SaveZyzlHyxmResponse } + * + */ + public SaveZyzlHyxmResponse createSaveZyzlHyxmResponse() { + return new SaveZyzlHyxmResponse(); + } + + /** + * Create an instance of {@link ReturnCardNum } + * + */ + public ReturnCardNum createReturnCardNum() { + return new ReturnCardNum(); + } + + /** + * Create an instance of {@link ReturnCardNumResponse } + * + */ + public ReturnCardNumResponse createReturnCardNumResponse() { + return new ReturnCardNumResponse(); + } + + /** + * Create an instance of {@link SaveZyzlFy } + * + */ + public SaveZyzlFy createSaveZyzlFy() { + return new SaveZyzlFy(); + } + + /** + * Create an instance of {@link SaveZyzlFyResponse } + * + */ + public SaveZyzlFyResponse createSaveZyzlFyResponse() { + return new SaveZyzlFyResponse(); + } + + /** + * Create an instance of {@link TongBuManBing } + * + */ + public TongBuManBing createTongBuManBing() { + return new TongBuManBing(); + } + + /** + * Create an instance of {@link TongBuManBingResponse } + * + */ + public TongBuManBingResponse createTongBuManBingResponse() { + return new TongBuManBingResponse(); + } + + /** + * Create an instance of {@link SaveMzzlFy } + * + */ + public SaveMzzlFy createSaveMzzlFy() { + return new SaveMzzlFy(); + } + + /** + * Create an instance of {@link SaveMzzlFyResponse } + * + */ + public SaveMzzlFyResponse createSaveMzzlFyResponse() { + return new SaveMzzlFyResponse(); + } + + /** + * Create an instance of {@link SaveZyzlSszd } + * + */ + public SaveZyzlSszd createSaveZyzlSszd() { + return new SaveZyzlSszd(); + } + + /** + * Create an instance of {@link SaveZyzlSszdResponse } + * + */ + public SaveZyzlSszdResponse createSaveZyzlSszdResponse() { + return new SaveZyzlSszdResponse(); + } + + /** + * Create an instance of {@link SelectYwBySfzh } + * + */ + public SelectYwBySfzh createSelectYwBySfzh() { + return new SelectYwBySfzh(); + } + + /** + * Create an instance of {@link SelectYwBySfzhResponse } + * + */ + public SelectYwBySfzhResponse createSelectYwBySfzhResponse() { + return new SelectYwBySfzhResponse(); + } + + /** + * Create an instance of {@link DataCenterWebservice } + * + */ + public DataCenterWebservice createDataCenterWebservice() { + return new DataCenterWebservice(); + } + + /** + * Create an instance of {@link DataCenterWebserviceResponse } + * + */ + public DataCenterWebserviceResponse createDataCenterWebserviceResponse() { + return new DataCenterWebserviceResponse(); + } + + /** + * Create an instance of {@link SaveTpwUser } + * + */ + public SaveTpwUser createSaveTpwUser() { + return new SaveTpwUser(); + } + + /** + * Create an instance of {@link SaveTpwUserResponse } + * + */ + public SaveTpwUserResponse createSaveTpwUserResponse() { + return new SaveTpwUserResponse(); + } + + /** + * Create an instance of {@link ReturnOrgList } + * + */ + public ReturnOrgList createReturnOrgList() { + return new ReturnOrgList(); + } + + /** + * Create an instance of {@link ReturnOrgListResponse } + * + */ + public ReturnOrgListResponse createReturnOrgListResponse() { + return new ReturnOrgListResponse(); + } + + /** + * Create an instance of {@link ReturnJtysYygl } + * + */ + public ReturnJtysYygl createReturnJtysYygl() { + return new ReturnJtysYygl(); + } + + /** + * Create an instance of {@link ReturnJtysYyglResponse } + * + */ + public ReturnJtysYyglResponse createReturnJtysYyglResponse() { + return new ReturnJtysYyglResponse(); + } + + /** + * Create an instance of {@link SaveYszz } + * + */ + public SaveYszz createSaveYszz() { + return new SaveYszz(); + } + + /** + * Create an instance of {@link SaveYszzResponse } + * + */ + public SaveYszzResponse createSaveYszzResponse() { + return new SaveYszzResponse(); + } + + /** + * Create an instance of {@link SaveMzzlJyxq } + * + */ + public SaveMzzlJyxq createSaveMzzlJyxq() { + return new SaveMzzlJyxq(); + } + + /** + * Create an instance of {@link SaveMzzlJyxqResponse } + * + */ + public SaveMzzlJyxqResponse createSaveMzzlJyxqResponse() { + return new SaveMzzlJyxqResponse(); + } + + /** + * Create an instance of {@link SelectZd } + * + */ + public SelectZd createSelectZd() { + return new SelectZd(); + } + + /** + * Create an instance of {@link SelectZdResponse } + * + */ + public SelectZdResponse createSelectZdResponse() { + return new SelectZdResponse(); + } + + /** + * Create an instance of {@link SelectGztx } + * + */ + public SelectGztx createSelectGztx() { + return new SelectGztx(); + } + + /** + * Create an instance of {@link SelectGztxResponse } + * + */ + public SelectGztxResponse createSelectGztxResponse() { + return new SelectGztxResponse(); + } + + /** + * Create an instance of {@link UpdateJtysYyglAppointStatus } + * + */ + public UpdateJtysYyglAppointStatus createUpdateJtysYyglAppointStatus() { + return new UpdateJtysYyglAppointStatus(); + } + + /** + * Create an instance of {@link UpdateJtysYyglAppointStatusResponse } + * + */ + public UpdateJtysYyglAppointStatusResponse createUpdateJtysYyglAppointStatusResponse() { + return new UpdateJtysYyglAppointStatusResponse(); + } + + /** + * Create an instance of {@link SaveJtysYygl } + * + */ + public SaveJtysYygl createSaveJtysYygl() { + return new SaveJtysYygl(); + } + + /** + * Create an instance of {@link SaveJtysYyglResponse } + * + */ + public SaveJtysYyglResponse createSaveJtysYyglResponse() { + return new SaveJtysYyglResponse(); + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/ReturnCardNum.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/ReturnCardNum.java new file mode 100644 index 0000000..949fd14 --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/ReturnCardNum.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "in0" +}) +@XmlRootElement(name = "returnCardNum") +public class ReturnCardNum { + + @XmlElement(required = true, nillable = true) + protected String in0; + + /** + * ��ȡin0���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getIn0() { + return in0; + } + + /** + * ����in0���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIn0(String value) { + this.in0 = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/ReturnCardNumResponse.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/ReturnCardNumResponse.java new file mode 100644 index 0000000..1d953c9 --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/ReturnCardNumResponse.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "returnCardNumResponse") +public class ReturnCardNumResponse { + + @XmlElement(required = true, nillable = true) + protected String out; + + /** + * ��ȡout���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getOut() { + return out; + } + + /** + * ����out���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOut(String value) { + this.out = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/ReturnJtysYygl.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/ReturnJtysYygl.java new file mode 100644 index 0000000..6e907c9 --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/ReturnJtysYygl.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "in0" +}) +@XmlRootElement(name = "returnJtysYygl") +public class ReturnJtysYygl { + + @XmlElement(required = true, nillable = true) + protected String in0; + + /** + * ��ȡin0���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getIn0() { + return in0; + } + + /** + * ����in0���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIn0(String value) { + this.in0 = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/ReturnJtysYyglResponse.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/ReturnJtysYyglResponse.java new file mode 100644 index 0000000..03203a4 --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/ReturnJtysYyglResponse.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "returnJtysYyglResponse") +public class ReturnJtysYyglResponse { + + @XmlElement(required = true, nillable = true) + protected String out; + + /** + * ��ȡout���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getOut() { + return out; + } + + /** + * ����out���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOut(String value) { + this.out = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/ReturnOrgList.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/ReturnOrgList.java new file mode 100644 index 0000000..f4f20e1 --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/ReturnOrgList.java @@ -0,0 +1,32 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "returnOrgList") +public class ReturnOrgList { + + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/ReturnOrgListResponse.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/ReturnOrgListResponse.java new file mode 100644 index 0000000..b85830e --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/ReturnOrgListResponse.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "returnOrgListResponse") +public class ReturnOrgListResponse { + + @XmlElement(required = true, nillable = true) + protected String out; + + /** + * ��ȡout���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getOut() { + return out; + } + + /** + * ����out���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOut(String value) { + this.out = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveJtysYygl.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveJtysYygl.java new file mode 100644 index 0000000..579c022 --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveJtysYygl.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "in0" +}) +@XmlRootElement(name = "saveJtysYygl") +public class SaveJtysYygl { + + @XmlElement(required = true, nillable = true) + protected String in0; + + /** + * ��ȡin0���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getIn0() { + return in0; + } + + /** + * ����in0���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIn0(String value) { + this.in0 = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveJtysYyglResponse.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveJtysYyglResponse.java new file mode 100644 index 0000000..414d9d6 --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveJtysYyglResponse.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "saveJtysYyglResponse") +public class SaveJtysYyglResponse { + + @XmlElement(required = true, nillable = true) + protected String out; + + /** + * ��ȡout���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getOut() { + return out; + } + + /** + * ����out���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOut(String value) { + this.out = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveMzzl.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveMzzl.java new file mode 100644 index 0000000..6115bd1 --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveMzzl.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "in0" +}) +@XmlRootElement(name = "saveMzzl") +public class SaveMzzl { + + @XmlElement(required = true, nillable = true) + protected String in0; + + /** + * ��ȡin0���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getIn0() { + return in0; + } + + /** + * ����in0���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIn0(String value) { + this.in0 = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveMzzlFy.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveMzzlFy.java new file mode 100644 index 0000000..c168d13 --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveMzzlFy.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "in0" +}) +@XmlRootElement(name = "saveMzzlFy") +public class SaveMzzlFy { + + @XmlElement(required = true, nillable = true) + protected String in0; + + /** + * ��ȡin0���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getIn0() { + return in0; + } + + /** + * ����in0���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIn0(String value) { + this.in0 = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveMzzlFyResponse.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveMzzlFyResponse.java new file mode 100644 index 0000000..c5cf6e7 --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveMzzlFyResponse.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "saveMzzlFyResponse") +public class SaveMzzlFyResponse { + + @XmlElement(required = true, nillable = true) + protected String out; + + /** + * ��ȡout���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getOut() { + return out; + } + + /** + * ����out���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOut(String value) { + this.out = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveMzzlHyxm.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveMzzlHyxm.java new file mode 100644 index 0000000..f022529 --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveMzzlHyxm.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "in0" +}) +@XmlRootElement(name = "saveMzzlHyxm") +public class SaveMzzlHyxm { + + @XmlElement(required = true, nillable = true) + protected String in0; + + /** + * ��ȡin0���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getIn0() { + return in0; + } + + /** + * ����in0���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIn0(String value) { + this.in0 = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveMzzlHyxmResponse.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveMzzlHyxmResponse.java new file mode 100644 index 0000000..7f108f3 --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveMzzlHyxmResponse.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "saveMzzlHyxmResponse") +public class SaveMzzlHyxmResponse { + + @XmlElement(required = true, nillable = true) + protected String out; + + /** + * ��ȡout���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getOut() { + return out; + } + + /** + * ����out���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOut(String value) { + this.out = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveMzzlJyxq.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveMzzlJyxq.java new file mode 100644 index 0000000..18b7feb --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveMzzlJyxq.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "in0" +}) +@XmlRootElement(name = "saveMzzlJyxq") +public class SaveMzzlJyxq { + + @XmlElement(required = true, nillable = true) + protected String in0; + + /** + * ��ȡin0���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getIn0() { + return in0; + } + + /** + * ����in0���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIn0(String value) { + this.in0 = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveMzzlJyxqResponse.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveMzzlJyxqResponse.java new file mode 100644 index 0000000..540878a --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveMzzlJyxqResponse.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "saveMzzlJyxqResponse") +public class SaveMzzlJyxqResponse { + + @XmlElement(required = true, nillable = true) + protected String out; + + /** + * ��ȡout���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getOut() { + return out; + } + + /** + * ����out���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOut(String value) { + this.out = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveMzzlResponse.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveMzzlResponse.java new file mode 100644 index 0000000..c7ab04c --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveMzzlResponse.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "saveMzzlResponse") +public class SaveMzzlResponse { + + @XmlElement(required = true, nillable = true) + protected String out; + + /** + * ��ȡout���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getOut() { + return out; + } + + /** + * ����out���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOut(String value) { + this.out = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveTpwRgin.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveTpwRgin.java new file mode 100644 index 0000000..2e28ecc --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveTpwRgin.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "in0" +}) +@XmlRootElement(name = "saveTpwRgin") +public class SaveTpwRgin { + + @XmlElement(required = true, nillable = true) + protected String in0; + + /** + * ��ȡin0���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getIn0() { + return in0; + } + + /** + * ����in0���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIn0(String value) { + this.in0 = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveTpwRginResponse.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveTpwRginResponse.java new file mode 100644 index 0000000..119d37e --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveTpwRginResponse.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "saveTpwRginResponse") +public class SaveTpwRginResponse { + + @XmlElement(required = true, nillable = true) + protected String out; + + /** + * ��ȡout���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getOut() { + return out; + } + + /** + * ����out���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOut(String value) { + this.out = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveTpwUser.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveTpwUser.java new file mode 100644 index 0000000..51cfc1a --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveTpwUser.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "in0" +}) +@XmlRootElement(name = "saveTpwUser") +public class SaveTpwUser { + + @XmlElement(required = true, nillable = true) + protected String in0; + + /** + * ��ȡin0���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getIn0() { + return in0; + } + + /** + * ����in0���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIn0(String value) { + this.in0 = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveTpwUserResponse.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveTpwUserResponse.java new file mode 100644 index 0000000..cb8a965 --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveTpwUserResponse.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "saveTpwUserResponse") +public class SaveTpwUserResponse { + + @XmlElement(required = true, nillable = true) + protected String out; + + /** + * ��ȡout���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getOut() { + return out; + } + + /** + * ����out���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOut(String value) { + this.out = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveYszz.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveYszz.java new file mode 100644 index 0000000..bdb4695 --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveYszz.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "in0" +}) +@XmlRootElement(name = "saveYszz") +public class SaveYszz { + + @XmlElement(required = true, nillable = true) + protected String in0; + + /** + * ��ȡin0���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getIn0() { + return in0; + } + + /** + * ����in0���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIn0(String value) { + this.in0 = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveYszzResponse.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveYszzResponse.java new file mode 100644 index 0000000..6cd794e --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveYszzResponse.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "saveYszzResponse") +public class SaveYszzResponse { + + @XmlElement(required = true, nillable = true) + protected String out; + + /** + * ��ȡout���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getOut() { + return out; + } + + /** + * ����out���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOut(String value) { + this.out = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzl.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzl.java new file mode 100644 index 0000000..e6c614d --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzl.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "in0" +}) +@XmlRootElement(name = "saveZyzl") +public class SaveZyzl { + + @XmlElement(required = true, nillable = true) + protected String in0; + + /** + * ��ȡin0���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getIn0() { + return in0; + } + + /** + * ����in0���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIn0(String value) { + this.in0 = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzlCyzd.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzlCyzd.java new file mode 100644 index 0000000..da99a29 --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzlCyzd.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "in0" +}) +@XmlRootElement(name = "saveZyzlCyzd") +public class SaveZyzlCyzd { + + @XmlElement(required = true, nillable = true) + protected String in0; + + /** + * ��ȡin0���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getIn0() { + return in0; + } + + /** + * ����in0���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIn0(String value) { + this.in0 = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzlCyzdResponse.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzlCyzdResponse.java new file mode 100644 index 0000000..65f71b5 --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzlCyzdResponse.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "saveZyzlCyzdResponse") +public class SaveZyzlCyzdResponse { + + @XmlElement(required = true, nillable = true) + protected String out; + + /** + * ��ȡout���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getOut() { + return out; + } + + /** + * ����out���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOut(String value) { + this.out = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzlFy.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzlFy.java new file mode 100644 index 0000000..b199e70 --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzlFy.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "in0" +}) +@XmlRootElement(name = "saveZyzlFy") +public class SaveZyzlFy { + + @XmlElement(required = true, nillable = true) + protected String in0; + + /** + * ��ȡin0���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getIn0() { + return in0; + } + + /** + * ����in0���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIn0(String value) { + this.in0 = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzlFyResponse.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzlFyResponse.java new file mode 100644 index 0000000..f376609 --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzlFyResponse.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "saveZyzlFyResponse") +public class SaveZyzlFyResponse { + + @XmlElement(required = true, nillable = true) + protected String out; + + /** + * ��ȡout���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getOut() { + return out; + } + + /** + * ����out���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOut(String value) { + this.out = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzlHyxm.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzlHyxm.java new file mode 100644 index 0000000..8ebfc43 --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzlHyxm.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "in0" +}) +@XmlRootElement(name = "saveZyzlHyxm") +public class SaveZyzlHyxm { + + @XmlElement(required = true, nillable = true) + protected String in0; + + /** + * ��ȡin0���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getIn0() { + return in0; + } + + /** + * ����in0���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIn0(String value) { + this.in0 = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzlHyxmResponse.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzlHyxmResponse.java new file mode 100644 index 0000000..a7c548b --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzlHyxmResponse.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "saveZyzlHyxmResponse") +public class SaveZyzlHyxmResponse { + + @XmlElement(required = true, nillable = true) + protected String out; + + /** + * ��ȡout���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getOut() { + return out; + } + + /** + * ����out���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOut(String value) { + this.out = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzlJyxq.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzlJyxq.java new file mode 100644 index 0000000..78e8ed8 --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzlJyxq.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "in0" +}) +@XmlRootElement(name = "saveZyzlJyxq") +public class SaveZyzlJyxq { + + @XmlElement(required = true, nillable = true) + protected String in0; + + /** + * ��ȡin0���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getIn0() { + return in0; + } + + /** + * ����in0���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIn0(String value) { + this.in0 = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzlJyxqResponse.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzlJyxqResponse.java new file mode 100644 index 0000000..cec0a0f --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzlJyxqResponse.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "saveZyzlJyxqResponse") +public class SaveZyzlJyxqResponse { + + @XmlElement(required = true, nillable = true) + protected String out; + + /** + * ��ȡout���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getOut() { + return out; + } + + /** + * ����out���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOut(String value) { + this.out = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzlResponse.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzlResponse.java new file mode 100644 index 0000000..370c3dc --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzlResponse.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "saveZyzlResponse") +public class SaveZyzlResponse { + + @XmlElement(required = true, nillable = true) + protected String out; + + /** + * ��ȡout���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getOut() { + return out; + } + + /** + * ����out���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOut(String value) { + this.out = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzlSszd.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzlSszd.java new file mode 100644 index 0000000..bb1e3ce --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzlSszd.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "in0" +}) +@XmlRootElement(name = "saveZyzlSszd") +public class SaveZyzlSszd { + + @XmlElement(required = true, nillable = true) + protected String in0; + + /** + * ��ȡin0���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getIn0() { + return in0; + } + + /** + * ����in0���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIn0(String value) { + this.in0 = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzlSszdResponse.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzlSszdResponse.java new file mode 100644 index 0000000..21655b2 --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SaveZyzlSszdResponse.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "saveZyzlSszdResponse") +public class SaveZyzlSszdResponse { + + @XmlElement(required = true, nillable = true) + protected String out; + + /** + * ��ȡout���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getOut() { + return out; + } + + /** + * ����out���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOut(String value) { + this.out = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SelectGztx.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SelectGztx.java new file mode 100644 index 0000000..415a234 --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SelectGztx.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "in0" +}) +@XmlRootElement(name = "selectGztx") +public class SelectGztx { + + @XmlElement(required = true, nillable = true) + protected String in0; + + /** + * ��ȡin0���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getIn0() { + return in0; + } + + /** + * ����in0���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIn0(String value) { + this.in0 = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SelectGztxResponse.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SelectGztxResponse.java new file mode 100644 index 0000000..e472f53 --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SelectGztxResponse.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "selectGztxResponse") +public class SelectGztxResponse { + + @XmlElement(required = true, nillable = true) + protected String out; + + /** + * ��ȡout���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getOut() { + return out; + } + + /** + * ����out���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOut(String value) { + this.out = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SelectYw.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SelectYw.java new file mode 100644 index 0000000..11a85d4 --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SelectYw.java @@ -0,0 +1,172 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="in1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="in2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="in3" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="in4" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "in0", + "in1", + "in2", + "in3", + "in4" +}) +@XmlRootElement(name = "selectYw") +public class SelectYw { + + @XmlElement(required = true, nillable = true) + protected String in0; + @XmlElement(required = true, nillable = true) + protected String in1; + @XmlElement(required = true, nillable = true) + protected String in2; + @XmlElement(required = true, nillable = true) + protected String in3; + @XmlElement(required = true, nillable = true) + protected String in4; + + /** + * ��ȡin0���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getIn0() { + return in0; + } + + /** + * ����in0���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIn0(String value) { + this.in0 = value; + } + + /** + * ��ȡin1���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getIn1() { + return in1; + } + + /** + * ����in1���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIn1(String value) { + this.in1 = value; + } + + /** + * ��ȡin2���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getIn2() { + return in2; + } + + /** + * ����in2���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIn2(String value) { + this.in2 = value; + } + + /** + * ��ȡin3���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getIn3() { + return in3; + } + + /** + * ����in3���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIn3(String value) { + this.in3 = value; + } + + /** + * ��ȡin4���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getIn4() { + return in4; + } + + /** + * ����in4���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIn4(String value) { + this.in4 = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SelectYwBySfzh.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SelectYwBySfzh.java new file mode 100644 index 0000000..f2f36c6 --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SelectYwBySfzh.java @@ -0,0 +1,88 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="in1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "in0", + "in1" +}) +@XmlRootElement(name = "selectYwBySfzh") +public class SelectYwBySfzh { + + @XmlElement(required = true, nillable = true) + protected String in0; + @XmlElement(required = true, nillable = true) + protected String in1; + + /** + * ��ȡin0���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getIn0() { + return in0; + } + + /** + * ����in0���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIn0(String value) { + this.in0 = value; + } + + /** + * ��ȡin1���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getIn1() { + return in1; + } + + /** + * ����in1���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIn1(String value) { + this.in1 = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SelectYwBySfzhResponse.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SelectYwBySfzhResponse.java new file mode 100644 index 0000000..40ce8e2 --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SelectYwBySfzhResponse.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "selectYwBySfzhResponse") +public class SelectYwBySfzhResponse { + + @XmlElement(required = true, nillable = true) + protected String out; + + /** + * ��ȡout���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getOut() { + return out; + } + + /** + * ����out���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOut(String value) { + this.out = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SelectYwResponse.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SelectYwResponse.java new file mode 100644 index 0000000..bc70501 --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SelectYwResponse.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "selectYwResponse") +public class SelectYwResponse { + + @XmlElement(required = true, nillable = true) + protected String out; + + /** + * ��ȡout���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getOut() { + return out; + } + + /** + * ����out���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOut(String value) { + this.out = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SelectZd.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SelectZd.java new file mode 100644 index 0000000..fefed15 --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SelectZd.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "in0" +}) +@XmlRootElement(name = "selectZd") +public class SelectZd { + + @XmlElement(required = true, nillable = true) + protected String in0; + + /** + * ��ȡin0���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getIn0() { + return in0; + } + + /** + * ����in0���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIn0(String value) { + this.in0 = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SelectZdResponse.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SelectZdResponse.java new file mode 100644 index 0000000..1cbc111 --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SelectZdResponse.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "selectZdResponse") +public class SelectZdResponse { + + @XmlElement(required = true, nillable = true) + protected String out; + + /** + * ��ȡout���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getOut() { + return out; + } + + /** + * ����out���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOut(String value) { + this.out = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SelecttdaJkdaRkxzl.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SelecttdaJkdaRkxzl.java new file mode 100644 index 0000000..5f9bc97 --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SelecttdaJkdaRkxzl.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "in0" +}) +@XmlRootElement(name = "selecttdaJkdaRkxzl") +public class SelecttdaJkdaRkxzl { + + @XmlElement(required = true, nillable = true) + protected String in0; + + /** + * ��ȡin0���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getIn0() { + return in0; + } + + /** + * ����in0���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIn0(String value) { + this.in0 = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SelecttdaJkdaRkxzlResponse.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SelecttdaJkdaRkxzlResponse.java new file mode 100644 index 0000000..941c851 --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/SelecttdaJkdaRkxzlResponse.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "selecttdaJkdaRkxzlResponse") +public class SelecttdaJkdaRkxzlResponse { + + @XmlElement(required = true, nillable = true) + protected String out; + + /** + * ��ȡout���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getOut() { + return out; + } + + /** + * ����out���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOut(String value) { + this.out = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/TestWebService.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/TestWebService.java new file mode 100644 index 0000000..833cb29 --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/TestWebService.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "in0" +}) +@XmlRootElement(name = "testWebService") +public class TestWebService { + + @XmlElement(required = true, nillable = true) + protected String in0; + + /** + * ��ȡin0���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getIn0() { + return in0; + } + + /** + * ����in0���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIn0(String value) { + this.in0 = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/TestWebServiceResponse.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/TestWebServiceResponse.java new file mode 100644 index 0000000..66c0b44 --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/TestWebServiceResponse.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "testWebServiceResponse") +public class TestWebServiceResponse { + + @XmlElement(required = true, nillable = true) + protected String out; + + /** + * ��ȡout���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getOut() { + return out; + } + + /** + * ����out���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOut(String value) { + this.out = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/TongBuManBing.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/TongBuManBing.java new file mode 100644 index 0000000..cf6bfb9 --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/TongBuManBing.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "in0" +}) +@XmlRootElement(name = "tongBuManBing") +public class TongBuManBing { + + @XmlElement(required = true, nillable = true) + protected String in0; + + /** + * ��ȡin0���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getIn0() { + return in0; + } + + /** + * ����in0���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIn0(String value) { + this.in0 = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/TongBuManBingResponse.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/TongBuManBingResponse.java new file mode 100644 index 0000000..a41682d --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/TongBuManBingResponse.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "tongBuManBingResponse") +public class TongBuManBingResponse { + + @XmlElement(required = true, nillable = true) + protected String out; + + /** + * ��ȡout���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getOut() { + return out; + } + + /** + * ����out���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOut(String value) { + this.out = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/UpdateJtysYyglAppointStatus.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/UpdateJtysYyglAppointStatus.java new file mode 100644 index 0000000..64b07c7 --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/UpdateJtysYyglAppointStatus.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "in0" +}) +@XmlRootElement(name = "updateJtysYyglAppointStatus") +public class UpdateJtysYyglAppointStatus { + + @XmlElement(required = true, nillable = true) + protected String in0; + + /** + * ��ȡin0���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getIn0() { + return in0; + } + + /** + * ����in0���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIn0(String value) { + this.in0 = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/UpdateJtysYyglAppointStatusResponse.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/UpdateJtysYyglAppointStatusResponse.java new file mode 100644 index 0000000..351bd8e --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/UpdateJtysYyglAppointStatusResponse.java @@ -0,0 +1,60 @@ + +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.bind.annotation.*; + + +/** + *

anonymous complex type�� Java �ࡣ + * + *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "out" +}) +@XmlRootElement(name = "updateJtysYyglAppointStatusResponse") +public class UpdateJtysYyglAppointStatusResponse { + + @XmlElement(required = true, nillable = true) + protected String out; + + /** + * ��ȡout���Ե�ֵ�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getOut() { + return out; + } + + /** + * ����out���Ե�ֵ�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOut(String value) { + this.out = value; + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/WebService.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/WebService.java new file mode 100644 index 0000000..af8a0bb --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/WebService.java @@ -0,0 +1,90 @@ +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +import javax.xml.namespace.QName; +import javax.xml.ws.Service; +import javax.xml.ws.WebEndpoint; +import javax.xml.ws.WebServiceClient; +import javax.xml.ws.WebServiceFeature; +import java.net.MalformedURLException; +import java.net.URL; + +/** + * This class was generated by Apache CXF 3.1.5 + * 2019-10-23T15:32:53.603+08:00 + * Generated source version: 3.1.5 + * + */ +@WebServiceClient(name = "WebService", +// wsdlLocation = "http://lijiekou.grip8.com/XfireWebService/services/Login?wsdl",//rc测试 + wsdlLocation = "http://10.0.43.80:9087/XfireWebService/services/Login?wsdl", + targetNamespace = "http://webservice.jiekou.com") +public class WebService extends Service { + + public final static URL WSDL_LOCATION; + + public final static QName SERVICE = new QName("http://webservice.jiekou.com", "WebService"); + public final static QName WebServiceHttpPort = new QName("http://webservice.jiekou.com", "WebServiceHttpPort"); + static { + URL url = null; + try { +// url = new URL("http://lijiekou.grip8.com/XfireWebService/services/Login?wsdl");//rc测试 + url = new URL("http://10.0.43.80:9087/XfireWebService/services/Login?wsdl"); + } catch (MalformedURLException e) { + java.util.logging.Logger.getLogger(WebService.class.getName()) + .log(java.util.logging.Level.INFO, +// "Can not initialize the default wsdl from {0}", "http://lijiekou.grip8.com/XfireWebService/services/Login?wsdl");//rc测试 + "Can not initialize the default wsdl from {0}", "http://10.0.43.80:9087/XfireWebService/services/Login?wsdl"); + } + WSDL_LOCATION = url; + } + + public WebService(URL wsdlLocation) { + super(wsdlLocation, SERVICE); + } + + public WebService(URL wsdlLocation, QName serviceName) { + super(wsdlLocation, serviceName); + } + + public WebService() { + super(WSDL_LOCATION, SERVICE); + } + + public WebService(WebServiceFeature ... features) { + super(WSDL_LOCATION, SERVICE, features); + } + + public WebService(URL wsdlLocation, WebServiceFeature ... features) { + super(wsdlLocation, SERVICE, features); + } + + public WebService(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) { + super(wsdlLocation, serviceName, features); + } + + + + + /** + * + * @return + * returns WebServicePortType + */ + @WebEndpoint(name = "WebServiceHttpPort") + public WebServicePortType getWebServiceHttpPort() { + return super.getPort(WebServiceHttpPort, WebServicePortType.class); + } + + /** + * + * @param features + * A list of {@link WebServiceFeature} to configure on the proxy. Supported features not in the features parameter will have their default values. + * @return + * returns WebServicePortType + */ + @WebEndpoint(name = "WebServiceHttpPort") + public WebServicePortType getWebServiceHttpPort(WebServiceFeature... features) { + return super.getPort(WebServiceHttpPort, WebServicePortType.class, features); + } + +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/WebServicePortType.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/WebServicePortType.java new file mode 100644 index 0000000..46d7d51 --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/WebServicePortType.java @@ -0,0 +1,265 @@ +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; + +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 Apache CXF 3.1.5 + * 2019-10-23T15:32:53.559+08:00 + * Generated source version: 3.1.5 + * + */ +@WebService(targetNamespace = "http://webservice.jiekou.com", name = "WebServicePortType") +@XmlSeeAlso({ObjectFactory.class}) +public interface WebServicePortType { + + @WebMethod + @RequestWrapper(localName = "returnCardNum", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.ReturnCardNum") + @ResponseWrapper(localName = "returnCardNumResponse", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.ReturnCardNumResponse") + @WebResult(name = "out", targetNamespace = "http://webservice.jiekou.com") + public String returnCardNum( + @WebParam(name = "in0", targetNamespace = "http://webservice.jiekou.com") + String in0 + ); + + @WebMethod + @RequestWrapper(localName = "saveJtysYygl", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.SaveJtysYygl") + @ResponseWrapper(localName = "saveJtysYyglResponse", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.SaveJtysYyglResponse") + @WebResult(name = "out", targetNamespace = "http://webservice.jiekou.com") + public String saveJtysYygl( + @WebParam(name = "in0", targetNamespace = "http://webservice.jiekou.com") + String in0 + ); + + @WebMethod + @RequestWrapper(localName = "selectGztx", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.SelectGztx") + @ResponseWrapper(localName = "selectGztxResponse", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.SelectGztxResponse") + @WebResult(name = "out", targetNamespace = "http://webservice.jiekou.com") + public String selectGztx( + @WebParam(name = "in0", targetNamespace = "http://webservice.jiekou.com") + String in0 + ); + + @WebMethod + @RequestWrapper(localName = "saveMzzlFy", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.SaveMzzlFy") + @ResponseWrapper(localName = "saveMzzlFyResponse", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.SaveMzzlFyResponse") + @WebResult(name = "out", targetNamespace = "http://webservice.jiekou.com") + public String saveMzzlFy( + @WebParam(name = "in0", targetNamespace = "http://webservice.jiekou.com") + String in0 + ); + + @WebMethod + @RequestWrapper(localName = "saveMzzl", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.SaveMzzl") + @ResponseWrapper(localName = "saveMzzlResponse", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.SaveMzzlResponse") + @WebResult(name = "out", targetNamespace = "http://webservice.jiekou.com") + public String saveMzzl( + @WebParam(name = "in0", targetNamespace = "http://webservice.jiekou.com") + String in0 + ); + + @WebMethod + @RequestWrapper(localName = "saveYszz", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.SaveYszz") + @ResponseWrapper(localName = "saveYszzResponse", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.SaveYszzResponse") + @WebResult(name = "out", targetNamespace = "http://webservice.jiekou.com") + public String saveYszz( + @WebParam(name = "in0", targetNamespace = "http://webservice.jiekou.com") + String in0 + ); + + @WebMethod(operationName = "DataCenterWebservice") + @RequestWrapper(localName = "DataCenterWebservice", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.DataCenterWebservice") + @ResponseWrapper(localName = "DataCenterWebserviceResponse", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.DataCenterWebserviceResponse") + @WebResult(name = "out", targetNamespace = "http://webservice.jiekou.com") + public String dataCenterWebservice( + @WebParam(name = "in0", targetNamespace = "http://webservice.jiekou.com") + String in0, + @WebParam(name = "in1", targetNamespace = "http://webservice.jiekou.com") + String in1, + @WebParam(name = "in2", targetNamespace = "http://webservice.jiekou.com") + String in2 + ); + + @WebMethod + @RequestWrapper(localName = "saveZyzlCyzd", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.SaveZyzlCyzd") + @ResponseWrapper(localName = "saveZyzlCyzdResponse", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.SaveZyzlCyzdResponse") + @WebResult(name = "out", targetNamespace = "http://webservice.jiekou.com") + public String saveZyzlCyzd( + @WebParam(name = "in0", targetNamespace = "http://webservice.jiekou.com") + String in0 + ); + + @WebMethod + @RequestWrapper(localName = "updateJtysYyglAppointStatus", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.UpdateJtysYyglAppointStatus") + @ResponseWrapper(localName = "updateJtysYyglAppointStatusResponse", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.UpdateJtysYyglAppointStatusResponse") + @WebResult(name = "out", targetNamespace = "http://webservice.jiekou.com") + public String updateJtysYyglAppointStatus( + @WebParam(name = "in0", targetNamespace = "http://webservice.jiekou.com") + String in0 + ); + + @WebMethod + @RequestWrapper(localName = "saveZyzlFy", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.SaveZyzlFy") + @ResponseWrapper(localName = "saveZyzlFyResponse", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.SaveZyzlFyResponse") + @WebResult(name = "out", targetNamespace = "http://webservice.jiekou.com") + public String saveZyzlFy( + @WebParam(name = "in0", targetNamespace = "http://webservice.jiekou.com") + String in0 + ); + + @WebMethod + @RequestWrapper(localName = "selectZd", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.SelectZd") + @ResponseWrapper(localName = "selectZdResponse", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.SelectZdResponse") + @WebResult(name = "out", targetNamespace = "http://webservice.jiekou.com") + public String selectZd( + @WebParam(name = "in0", targetNamespace = "http://webservice.jiekou.com") + String in0 + ); + + @WebMethod + @RequestWrapper(localName = "selectYw", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.SelectYw") + @ResponseWrapper(localName = "selectYwResponse", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.SelectYwResponse") + @WebResult(name = "out", targetNamespace = "http://webservice.jiekou.com") + public String selectYw( + @WebParam(name = "in0", targetNamespace = "http://webservice.jiekou.com") + String in0, + @WebParam(name = "in1", targetNamespace = "http://webservice.jiekou.com") + String in1, + @WebParam(name = "in2", targetNamespace = "http://webservice.jiekou.com") + String in2, + @WebParam(name = "in3", targetNamespace = "http://webservice.jiekou.com") + String in3, + @WebParam(name = "in4", targetNamespace = "http://webservice.jiekou.com") + String in4 + ); + + @WebMethod + @RequestWrapper(localName = "saveTpwUser", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.SaveTpwUser") + @ResponseWrapper(localName = "saveTpwUserResponse", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.SaveTpwUserResponse") + @WebResult(name = "out", targetNamespace = "http://webservice.jiekou.com") + public String saveTpwUser( + @WebParam(name = "in0", targetNamespace = "http://webservice.jiekou.com") + String in0 + ); + + @WebMethod + @RequestWrapper(localName = "saveZyzlJyxq", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.SaveZyzlJyxq") + @ResponseWrapper(localName = "saveZyzlJyxqResponse", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.SaveZyzlJyxqResponse") + @WebResult(name = "out", targetNamespace = "http://webservice.jiekou.com") + public String saveZyzlJyxq( + @WebParam(name = "in0", targetNamespace = "http://webservice.jiekou.com") + String in0 + ); + + @WebMethod + @RequestWrapper(localName = "saveZyzlHyxm", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.SaveZyzlHyxm") + @ResponseWrapper(localName = "saveZyzlHyxmResponse", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.SaveZyzlHyxmResponse") + @WebResult(name = "out", targetNamespace = "http://webservice.jiekou.com") + public String saveZyzlHyxm( + @WebParam(name = "in0", targetNamespace = "http://webservice.jiekou.com") + String in0 + ); + + @WebMethod + @RequestWrapper(localName = "selecttdaJkdaRkxzl", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.SelecttdaJkdaRkxzl") + @ResponseWrapper(localName = "selecttdaJkdaRkxzlResponse", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.SelecttdaJkdaRkxzlResponse") + @WebResult(name = "out", targetNamespace = "http://webservice.jiekou.com") + public String selecttdaJkdaRkxzl( + @WebParam(name = "in0", targetNamespace = "http://webservice.jiekou.com") + String in0 + ); + + @WebMethod + @RequestWrapper(localName = "selectYwBySfzh", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.SelectYwBySfzh") + @ResponseWrapper(localName = "selectYwBySfzhResponse", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.SelectYwBySfzhResponse") + @WebResult(name = "out", targetNamespace = "http://webservice.jiekou.com") + public String selectYwBySfzh( + @WebParam(name = "in0", targetNamespace = "http://webservice.jiekou.com") + String in0, + @WebParam(name = "in1", targetNamespace = "http://webservice.jiekou.com") + String in1 + ); + + @WebMethod + @RequestWrapper(localName = "saveZyzl", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.SaveZyzl") + @ResponseWrapper(localName = "saveZyzlResponse", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.SaveZyzlResponse") + @WebResult(name = "out", targetNamespace = "http://webservice.jiekou.com") + public String saveZyzl( + @WebParam(name = "in0", targetNamespace = "http://webservice.jiekou.com") + String in0 + ); + + @WebMethod + @RequestWrapper(localName = "testWebService", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.TestWebService") + @ResponseWrapper(localName = "testWebServiceResponse", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.TestWebServiceResponse") + @WebResult(name = "out", targetNamespace = "http://webservice.jiekou.com") + public String testWebService( + @WebParam(name = "in0", targetNamespace = "http://webservice.jiekou.com") + String in0 + ); + + @WebMethod + @RequestWrapper(localName = "returnOrgList", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.ReturnOrgList") + @ResponseWrapper(localName = "returnOrgListResponse", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.ReturnOrgListResponse") + @WebResult(name = "out", targetNamespace = "http://webservice.jiekou.com") + public String returnOrgList(); + + @WebMethod + @RequestWrapper(localName = "saveTpwRgin", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.SaveTpwRgin") + @ResponseWrapper(localName = "saveTpwRginResponse", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.SaveTpwRginResponse") + @WebResult(name = "out", targetNamespace = "http://webservice.jiekou.com") + public String saveTpwRgin( + @WebParam(name = "in0", targetNamespace = "http://webservice.jiekou.com") + String in0 + ); + + @WebMethod + @RequestWrapper(localName = "tongBuManBing", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.TongBuManBing") + @ResponseWrapper(localName = "tongBuManBingResponse", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.TongBuManBingResponse") + @WebResult(name = "out", targetNamespace = "http://webservice.jiekou.com") + public String tongBuManBing( + @WebParam(name = "in0", targetNamespace = "http://webservice.jiekou.com") + String in0 + ); + + @WebMethod + @RequestWrapper(localName = "saveZyzlSszd", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.SaveZyzlSszd") + @ResponseWrapper(localName = "saveZyzlSszdResponse", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.SaveZyzlSszdResponse") + @WebResult(name = "out", targetNamespace = "http://webservice.jiekou.com") + public String saveZyzlSszd( + @WebParam(name = "in0", targetNamespace = "http://webservice.jiekou.com") + String in0 + ); + + @WebMethod + @RequestWrapper(localName = "saveMzzlHyxm", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.SaveMzzlHyxm") + @ResponseWrapper(localName = "saveMzzlHyxmResponse", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.SaveMzzlHyxmResponse") + @WebResult(name = "out", targetNamespace = "http://webservice.jiekou.com") + public String saveMzzlHyxm( + @WebParam(name = "in0", targetNamespace = "http://webservice.jiekou.com") + String in0 + ); + + @WebMethod + @RequestWrapper(localName = "returnJtysYygl", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.ReturnJtysYygl") + @ResponseWrapper(localName = "returnJtysYyglResponse", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.ReturnJtysYyglResponse") + @WebResult(name = "out", targetNamespace = "http://webservice.jiekou.com") + public String returnJtysYygl( + @WebParam(name = "in0", targetNamespace = "http://webservice.jiekou.com") + String in0 + ); + + @WebMethod + @RequestWrapper(localName = "saveMzzlJyxq", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.SaveMzzlJyxq") + @ResponseWrapper(localName = "saveMzzlJyxqResponse", targetNamespace = "http://webservice.jiekou.com", className = "com.jiekou.webservice.SaveMzzlJyxqResponse") + @WebResult(name = "out", targetNamespace = "http://webservice.jiekou.com") + public String saveMzzlJyxq( + @WebParam(name = "in0", targetNamespace = "http://webservice.jiekou.com") + String in0 + ); +} diff --git a/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/package-info.java b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/package-info.java new file mode 100644 index 0000000..64a8235 --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/hospitalapi/rcfy/ws/com/jiekou/webservice/package-info.java @@ -0,0 +1,2 @@ +@javax.xml.bind.annotation.XmlSchema(namespace = "http://webservice.jiekou.com", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) +package com.lyms.hospitalapi.rcfy.ws.com.jiekou.webservice; diff --git a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/RcGWController.java b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/RcGWController.java new file mode 100644 index 0000000..0fd6950 --- /dev/null +++ b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/RcGWController.java @@ -0,0 +1,55 @@ +package com.lyms.platform.operate.web.controller; + +import com.lyms.hospitalapi.rcfy.ws.RcGwInterface; +import com.lyms.platform.common.base.BaseController; +import com.lyms.platform.common.result.BaseResponse; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Controller; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.bind.annotation.ResponseBody; + + +@Controller +public class RcGWController extends BaseController { + + @Autowired + private RcGwInterface rcGwInterface; + + // 412728198610092846 371082198704165627 232128198810200649 + @ResponseBody + @RequestMapping(value = "/saveChuZhen", method = RequestMethod.GET) + public BaseResponse saveChuZhen(@RequestParam(value = "startDate" , required = false) String startDate, + @RequestParam(value = "endDate" , required = false) String endDate, + @RequestParam(value = "parentId" , required = false) String parentId) { + return rcGwInterface.saveChuZhen(startDate,endDate,parentId); + + } + @ResponseBody + @RequestMapping(value = "/saveFuZhen", method = RequestMethod.GET) + public BaseResponse saveFuZhen(@RequestParam(value = "startDate" , required = false) String startDate, + @RequestParam(value = "endDate" , required = false) String endDate, + @RequestParam(value = "parentId" , required = false) String parentId) { + return rcGwInterface.saveFuZhen(startDate,endDate,parentId); + + } + @ResponseBody + @RequestMapping(value = "/saveChFs", method = RequestMethod.GET) + public BaseResponse saveChFs(@RequestParam(value = "startDate" , required = false) String startDate, + @RequestParam(value = "endDate" , required = false) String endDate, + @RequestParam(value = "pid" , required = false) String pid) { + return rcGwInterface.saveChFs(startDate,endDate,pid); + } + @ResponseBody + @RequestMapping(value = "/saveChFc", method = RequestMethod.GET) + public BaseResponse saveChFc(@RequestParam(value = "startDate" , required = false) String startDate, + @RequestParam(value = "endDate" , required = false) String endDate, + @RequestParam(value = "parentId" , required = false) String parentId) { + return rcGwInterface.saveChFc(startDate,endDate,parentId); + } + + + + +} \ No newline at end of file diff --git a/platform-operate-api/src/main/resources/spring/applicationContext-quartz.xml b/platform-operate-api/src/main/resources/spring/applicationContext-quartz.xml index 27f783b..a820d30 100644 --- a/platform-operate-api/src/main/resources/spring/applicationContext-quartz.xml +++ b/platform-operate-api/src/main/resources/spring/applicationContext-quartz.xml @@ -293,6 +293,21 @@ + + + + + + + + + + + + + + + @@ -431,6 +446,9 @@ + + + -- 1.8.3.1