|
|
@@ -0,0 +1,388 @@
|
|
|
+package com.yizhu.supervise.controllers;
|
|
|
+
|
|
|
+import com.alibaba.fastjson2.JSONObject;
|
|
|
+import com.yizhu.supervise.common.enums.ServiceMethodEnum;
|
|
|
+import com.yizhu.supervise.common.util.PostUtil;
|
|
|
+import io.swagger.v3.oas.annotations.Operation;
|
|
|
+import io.swagger.v3.oas.annotations.tags.Tag;
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
+import openapi.mode.*;
|
|
|
+import openapi.updateInterface.HisResponseTO;
|
|
|
+import org.apache.commons.lang3.StringUtils;
|
|
|
+import org.springframework.beans.factory.annotation.Value;
|
|
|
+import org.springframework.stereotype.Controller;
|
|
|
+import org.springframework.web.bind.annotation.PostMapping;
|
|
|
+import org.springframework.web.bind.annotation.RequestBody;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.ResponseBody;
|
|
|
+
|
|
|
+import javax.servlet.http.HttpServletRequest;
|
|
|
+import javax.validation.Valid;
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+@Tag(name = "监管平台接口", description = "监管平台接口 请求头增加urlType 1专网 2外网 默认外网")
|
|
|
+@Controller
|
|
|
+@Slf4j
|
|
|
+@RequestMapping("/supervise")
|
|
|
+public class SuperviseController {
|
|
|
+ //专网地址
|
|
|
+ @Value("${param.local-url}")
|
|
|
+ private String localUrl;
|
|
|
+ //外网地址
|
|
|
+ @Value("${param.url}")
|
|
|
+ private String url;
|
|
|
+ @Value("${param.appSecret}")
|
|
|
+ private String appSecret;
|
|
|
+ @Value("${param.appKey}")
|
|
|
+ private String appKey;
|
|
|
+
|
|
|
+ @Operation(summary = "2.1.1.2.互联网医院药品目录推送接口", description = "互联网医院药品目录推送接口")
|
|
|
+ @PostMapping("/sendDrugCategory")
|
|
|
+ @ResponseBody
|
|
|
+ public HisResponseTO sendDrugCategory(HttpServletRequest request,@Valid @RequestBody List<DrugCategoryReq> list) {
|
|
|
+ String urlType = request.getHeader("urlType");
|
|
|
+ String apiUrl = url;
|
|
|
+ if(StringUtils.isNotBlank(urlType)&&"1".equals(urlType)){
|
|
|
+ apiUrl = localUrl;
|
|
|
+ }
|
|
|
+ PostUtil.setApiUrl(apiUrl);
|
|
|
+ PostUtil.setAppKey(appKey);
|
|
|
+ PostUtil.setAppSecret(appSecret);
|
|
|
+ try{
|
|
|
+ return PostUtil.post(ServiceMethodEnum.DRUG_PUSH.getServiceMethod(), JSONObject.toJSONString(list));
|
|
|
+ }catch (Exception e){
|
|
|
+ log.error("方法名称:-/supervise/sendDrugCategory 错误信息:"+e.getMessage());
|
|
|
+ HisResponseTO<?> hisResponse = new HisResponseTO();
|
|
|
+ hisResponse.setCode(40012);
|
|
|
+ hisResponse.setMsg("错误信息:"+e.getMessage());
|
|
|
+ return hisResponse;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ @Operation(summary = "测试医院药品目录推送单对象接口", description = "互联网医院药品目录推送接口")
|
|
|
+ @PostMapping("/sendDrugCategoryOne")
|
|
|
+ @ResponseBody
|
|
|
+ public HisResponseTO sendDrugCategoryOne(HttpServletRequest request,@Valid @RequestBody DrugCategoryReq list) {
|
|
|
+ String urlType = request.getHeader("urlType");
|
|
|
+ String apiUrl = url;
|
|
|
+ if(StringUtils.isNotBlank(urlType)&&"1".equals(urlType)){
|
|
|
+ apiUrl = localUrl;
|
|
|
+ }
|
|
|
+ PostUtil.setApiUrl(apiUrl);
|
|
|
+ PostUtil.setAppKey(appKey);
|
|
|
+ PostUtil.setAppSecret(appSecret);
|
|
|
+ try{
|
|
|
+ return PostUtil.post(ServiceMethodEnum.DRUG_PUSH.getServiceMethod(), JSONObject.toJSONString(list));
|
|
|
+ }catch (Exception e){
|
|
|
+ log.error("方法名称:-/supervise/sendDrugCategory 错误信息:"+e.getMessage());
|
|
|
+ HisResponseTO<?> hisResponse = new HisResponseTO();
|
|
|
+ hisResponse.setCode(40012);
|
|
|
+ hisResponse.setMsg("错误信息:"+e.getMessage());
|
|
|
+ return hisResponse;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ @Operation(summary = "2.2.1.2.在线咨询信息推送接口", description = "在线咨询信息推送接口")
|
|
|
+ @PostMapping("/sendNursingMaterial")
|
|
|
+ @ResponseBody
|
|
|
+ public HisResponseTO sendNursingMaterial(HttpServletRequest request,@Valid @RequestBody List<NursingMaterialReq> list) {
|
|
|
+ String urlType = request.getHeader("urlType");
|
|
|
+ String apiUrl = url;
|
|
|
+ if(StringUtils.isNotBlank(urlType)&&"1".equals(urlType)){
|
|
|
+ apiUrl = localUrl;
|
|
|
+ }
|
|
|
+ PostUtil.setApiUrl(apiUrl);
|
|
|
+ PostUtil.setAppKey(appKey);
|
|
|
+ PostUtil.setAppSecret(appSecret);
|
|
|
+ try{
|
|
|
+ return PostUtil.post(ServiceMethodEnum.ONLINE_CONSULTATION.getServiceMethod(), JSONObject.toJSONString(list));
|
|
|
+ }catch (Exception e){
|
|
|
+ log.error("方法名称:-/supervise/sendNursingMaterial 错误信息:"+e.getMessage());
|
|
|
+ HisResponseTO<?> hisResponse = new HisResponseTO();
|
|
|
+ hisResponse.setCode(40012);
|
|
|
+ hisResponse.setMsg("错误信息:"+e.getMessage());
|
|
|
+ return hisResponse;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ @Operation(summary = "2.2.2.2.在线复诊信息", description = "在线复诊信息")
|
|
|
+ @PostMapping("/sendReferralIndicator")
|
|
|
+ @ResponseBody
|
|
|
+ public HisResponseTO sendReferralIndicator(HttpServletRequest request,@Valid @RequestBody List<FuzhenIndicatorsReq> list) {
|
|
|
+ String urlType = request.getHeader("urlType");
|
|
|
+ String apiUrl = url;
|
|
|
+ if(StringUtils.isNotBlank(urlType)&&"1".equals(urlType)){
|
|
|
+ apiUrl = localUrl;
|
|
|
+ }
|
|
|
+ PostUtil.setApiUrl(apiUrl);
|
|
|
+ PostUtil.setAppKey(appKey);
|
|
|
+ PostUtil.setAppSecret(appSecret);
|
|
|
+ try{
|
|
|
+ return PostUtil.post(ServiceMethodEnum.ONLINE_FOLLOW_UP.getServiceMethod(), JSONObject.toJSONString(list));
|
|
|
+ }catch (Exception e){
|
|
|
+ log.error("方法名称:在线复诊信息接口-/supervise/sendReferralIndicator 错误信息:"+e.getMessage());
|
|
|
+ HisResponseTO<?> hisResponse = new HisResponseTO();
|
|
|
+ hisResponse.setCode(40012);
|
|
|
+ hisResponse.setMsg("错误信息:"+e.getMessage());
|
|
|
+ return hisResponse;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ @Operation(summary = "2.2.3.在线处方信息", description = "在线处方信息")
|
|
|
+ @PostMapping("/sendRecipeIndicators")
|
|
|
+ @ResponseBody
|
|
|
+ public HisResponseTO sendRecipeIndicators(HttpServletRequest request,@Valid @RequestBody List<RecipeIndicatorsReq> list) {
|
|
|
+ String urlType = request.getHeader("urlType");
|
|
|
+ String apiUrl = url;
|
|
|
+ if(StringUtils.isNotBlank(urlType)&&"1".equals(urlType)){
|
|
|
+ apiUrl = localUrl;
|
|
|
+ }
|
|
|
+ PostUtil.setApiUrl(apiUrl);
|
|
|
+ PostUtil.setAppKey(appKey);
|
|
|
+ PostUtil.setAppSecret(appSecret);
|
|
|
+ try{
|
|
|
+ return PostUtil.post(ServiceMethodEnum.ONLINE_PRESCRIPTION.getServiceMethod(), JSONObject.toJSONString(list));
|
|
|
+ }catch (Exception e){
|
|
|
+ log.error("方法名称:-/supervise/sendRecipeIndicators 错误信息:"+e.getMessage());
|
|
|
+ HisResponseTO<?> hisResponse = new HisResponseTO();
|
|
|
+ hisResponse.setCode(40012);
|
|
|
+ hisResponse.setMsg("错误信息:"+e.getMessage());
|
|
|
+ return hisResponse;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ @Operation(summary = "2.2.2.4.在线处方核销(配送、发药、购药)信息", description = "在线处方核销(配送、发药、购药)信息")
|
|
|
+ @PostMapping("/sendRecipeVerificationIndicators")
|
|
|
+ @ResponseBody
|
|
|
+ public HisResponseTO sendRecipeVerificationIndicators(HttpServletRequest request,@Valid @RequestBody List<RecipeVerificationIndicatorsReq> list) {
|
|
|
+ String urlType = request.getHeader("urlType");
|
|
|
+ String apiUrl = url;
|
|
|
+ if(StringUtils.isNotBlank(urlType)&&"1".equals(urlType)){
|
|
|
+ apiUrl = localUrl;
|
|
|
+ }
|
|
|
+ PostUtil.setApiUrl(apiUrl);
|
|
|
+ PostUtil.setAppKey(appKey);
|
|
|
+ PostUtil.setAppSecret(appSecret);
|
|
|
+ try{
|
|
|
+ return PostUtil.post(ServiceMethodEnum.ONLINE_PRESCRIPTION_VERIFICATION.getServiceMethod(), JSONObject.toJSONString(list));
|
|
|
+ }catch (Exception e){
|
|
|
+ log.error("方法名称:-/supervise/sendRecipeVerificationIndicators 错误信息:"+e.getMessage());
|
|
|
+ HisResponseTO<?> hisResponse = new HisResponseTO();
|
|
|
+ hisResponse.setCode(40012);
|
|
|
+ hisResponse.setMsg("错误信息:"+e.getMessage());
|
|
|
+ return hisResponse;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ @Operation(summary = "2.2.9.互联网预约挂号记录", description = "互联网预约挂号记录")
|
|
|
+ @PostMapping("/sendAppointRecord")
|
|
|
+ @ResponseBody
|
|
|
+ public HisResponseTO sendAppointRecord(HttpServletRequest request,@Valid @RequestBody List<AppointRecordIndicatorsReq> list) {
|
|
|
+ String urlType = request.getHeader("urlType");
|
|
|
+ String apiUrl = url;
|
|
|
+ if(StringUtils.isNotBlank(urlType)&&"1".equals(urlType)){
|
|
|
+ apiUrl = localUrl;
|
|
|
+ }
|
|
|
+ PostUtil.setApiUrl(apiUrl);
|
|
|
+ PostUtil.setAppKey(appKey);
|
|
|
+ PostUtil.setAppSecret(appSecret);
|
|
|
+ try{
|
|
|
+ return PostUtil.post(ServiceMethodEnum.ONLINE_APPOINTMENT_REGISTRATION.getServiceMethod(), JSONObject.toJSONString(list));
|
|
|
+ }catch (Exception e){
|
|
|
+ log.error("方法名称:-/supervise/sendAppointRecord 错误信息:"+e.getMessage());
|
|
|
+ HisResponseTO<?> hisResponse = new HisResponseTO();
|
|
|
+ hisResponse.setCode(40012);
|
|
|
+ hisResponse.setMsg("错误信息:"+e.getMessage());
|
|
|
+ return hisResponse;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ @Operation(summary = "2.2.10电子病历信息", description = "电子病历信息")
|
|
|
+ @PostMapping("/sendElectMedicalRecord")
|
|
|
+ @ResponseBody
|
|
|
+ public HisResponseTO sendElectMedicalRecord(HttpServletRequest request,@Valid @RequestBody List<uploadElectMedicalRecordReq> list) {
|
|
|
+ String urlType = request.getHeader("urlType");
|
|
|
+ String apiUrl = url;
|
|
|
+ if(StringUtils.isNotBlank(urlType)&&"1".equals(urlType)){
|
|
|
+ apiUrl = localUrl;
|
|
|
+ }
|
|
|
+ PostUtil.setApiUrl(apiUrl);
|
|
|
+ PostUtil.setAppKey(appKey);
|
|
|
+ PostUtil.setAppSecret(appSecret);
|
|
|
+ try{
|
|
|
+ return PostUtil.post(ServiceMethodEnum.ELECTRONIC_MEDICAL_RECORD.getServiceMethod(), JSONObject.toJSONString(list));
|
|
|
+ }catch (Exception e){
|
|
|
+ log.error("方法名称:-/supervise/sendElectMedicalRecord 错误信息:"+e.getMessage());
|
|
|
+ HisResponseTO<?> hisResponse = new HisResponseTO();
|
|
|
+ hisResponse.setCode(40012);
|
|
|
+ hisResponse.setMsg("错误信息:"+e.getMessage());
|
|
|
+ return hisResponse;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ @Operation(summary = "2.3.1.远程门诊记录", description = "远程门诊记录")
|
|
|
+ @PostMapping("/sendCloudAppointRecordIndicators")
|
|
|
+ @ResponseBody
|
|
|
+ public HisResponseTO sendCloudAppointRecordIndicators(HttpServletRequest request,@Valid @RequestBody List<uploadCloudAppointRecordIndicatorsReq> list) {
|
|
|
+ String urlType = request.getHeader("urlType");
|
|
|
+ String apiUrl = url;
|
|
|
+ if(StringUtils.isNotBlank(urlType)&&"1".equals(urlType)){
|
|
|
+ apiUrl = localUrl;
|
|
|
+ }
|
|
|
+ PostUtil.setApiUrl(apiUrl);
|
|
|
+ PostUtil.setAppKey(appKey);
|
|
|
+ PostUtil.setAppSecret(appSecret);
|
|
|
+ try{
|
|
|
+ return PostUtil.post(ServiceMethodEnum.ONLINE_CONSULTATION.getServiceMethod(), JSONObject.toJSONString(list));
|
|
|
+ }catch (Exception e){
|
|
|
+ log.error("方法名称:-/supervise/sendCloudAppointRecordIndicators 错误信息:"+e.getMessage());
|
|
|
+ HisResponseTO<?> hisResponse = new HisResponseTO();
|
|
|
+ hisResponse.setCode(40012);
|
|
|
+ hisResponse.setMsg("错误信息:"+e.getMessage());
|
|
|
+ return hisResponse;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ @Operation(summary = "2.3.2.2.远程会诊记录推送接口", description = "远程会诊记录推送接口")
|
|
|
+ @PostMapping("/sendMeetClinicIndicators")
|
|
|
+ @ResponseBody
|
|
|
+ public HisResponseTO sendMeetClinicIndicators(HttpServletRequest request,@Valid @RequestBody List<MeetClinicIndicatorsReq> list) {
|
|
|
+ String urlType = request.getHeader("urlType");
|
|
|
+ String apiUrl = url;
|
|
|
+ if(StringUtils.isNotBlank(urlType)&&"1".equals(urlType)){
|
|
|
+ apiUrl = localUrl;
|
|
|
+ }
|
|
|
+ PostUtil.setApiUrl(apiUrl);
|
|
|
+ PostUtil.setAppKey(appKey);
|
|
|
+ PostUtil.setAppSecret(appSecret);
|
|
|
+ try{
|
|
|
+ return PostUtil.post(ServiceMethodEnum.REMOTE_CONSULTATION.getServiceMethod(), JSONObject.toJSONString(list));
|
|
|
+ }catch (Exception e){
|
|
|
+ log.error("方法名称:-/supervise/sendMeetClinicIndicators 错误信息:"+e.getMessage());
|
|
|
+ HisResponseTO<?> hisResponse = new HisResponseTO();
|
|
|
+ hisResponse.setCode(40012);
|
|
|
+ hisResponse.setMsg("错误信息:"+e.getMessage());
|
|
|
+ return hisResponse;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ @Operation(summary = "2.3.3.2.远程影像诊断记录推送接口", description = "远程影像诊断记录推送接口")
|
|
|
+ @PostMapping("/pushRemoteRadiology")
|
|
|
+ @ResponseBody
|
|
|
+ public HisResponseTO pushRemoteRadiology(HttpServletRequest request,@Valid @RequestBody List<pushRemoteRadiologyReq> list) {
|
|
|
+ String urlType = request.getHeader("urlType");
|
|
|
+ String apiUrl = url;
|
|
|
+ if(StringUtils.isNotBlank(urlType)&&"1".equals(urlType)){
|
|
|
+ apiUrl = localUrl;
|
|
|
+ }
|
|
|
+ PostUtil.setApiUrl(apiUrl);
|
|
|
+ PostUtil.setAppKey(appKey);
|
|
|
+ PostUtil.setAppSecret(appSecret);
|
|
|
+ try{
|
|
|
+ return PostUtil.post(ServiceMethodEnum.REMOTE_IMAGING.getServiceMethod(), JSONObject.toJSONString(list));
|
|
|
+ }catch (Exception e){
|
|
|
+ log.error("方法名称:-/supervise/pushRemoteRadiology 错误信息:"+e.getMessage());
|
|
|
+ HisResponseTO<?> hisResponse = new HisResponseTO();
|
|
|
+ hisResponse.setCode(40012);
|
|
|
+ hisResponse.setMsg("错误信息:"+e.getMessage());
|
|
|
+ return hisResponse;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ @Operation(summary = "2.3.4.2.远程心电诊断记录推送接口", description = "远程心电诊断记录推送接口")
|
|
|
+ @PostMapping("/pushRemoteECG")
|
|
|
+ @ResponseBody
|
|
|
+ public HisResponseTO pushRemoteECG(HttpServletRequest request,@Valid @RequestBody List<pushRemoteECGReq> list) {
|
|
|
+ String urlType = request.getHeader("urlType");
|
|
|
+ String apiUrl = url;
|
|
|
+ if(StringUtils.isNotBlank(urlType)&&"1".equals(urlType)){
|
|
|
+ apiUrl = localUrl;
|
|
|
+ }
|
|
|
+ PostUtil.setApiUrl(apiUrl);
|
|
|
+ PostUtil.setAppKey(appKey);
|
|
|
+ PostUtil.setAppSecret(appSecret);
|
|
|
+ try{
|
|
|
+ return PostUtil.post(ServiceMethodEnum.REMOTE_ELECTROCARDIOGRAM.getServiceMethod(), JSONObject.toJSONString(list));
|
|
|
+ }catch (Exception e){
|
|
|
+ log.error("方法名称:-/supervise/pushRemoteECG 错误信息:"+e.getMessage());
|
|
|
+ HisResponseTO<?> hisResponse = new HisResponseTO();
|
|
|
+ hisResponse.setCode(40012);
|
|
|
+ hisResponse.setMsg("错误信息:"+e.getMessage());
|
|
|
+ return hisResponse;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ @Operation(summary = "2.3.5.2.远程病理诊断记录推送接口", description = "远程病理诊断记录推送接口")
|
|
|
+ @PostMapping("/pushRemotePathology")
|
|
|
+ @ResponseBody
|
|
|
+ public HisResponseTO pushRemotePathology(HttpServletRequest request,@Valid @RequestBody List<pushRemotePathologyReq> list) {
|
|
|
+ String urlType = request.getHeader("urlType");
|
|
|
+ String apiUrl = url;
|
|
|
+ if(StringUtils.isNotBlank(urlType)&&"1".equals(urlType)){
|
|
|
+ apiUrl = localUrl;
|
|
|
+ }
|
|
|
+ PostUtil.setApiUrl(apiUrl);
|
|
|
+ PostUtil.setAppKey(appKey);
|
|
|
+ PostUtil.setAppSecret(appSecret);
|
|
|
+ try{
|
|
|
+ return PostUtil.post(ServiceMethodEnum.REMOTE_MEDICAL_RECORDS.getServiceMethod(), JSONObject.toJSONString(list));
|
|
|
+ }catch (Exception e){
|
|
|
+ log.error("方法名称:-/supervise/pushRemotePathology 错误信息:"+e.getMessage());
|
|
|
+ HisResponseTO<?> hisResponse = new HisResponseTO();
|
|
|
+ hisResponse.setCode(40012);
|
|
|
+ hisResponse.setMsg("错误信息:"+e.getMessage());
|
|
|
+ return hisResponse;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ @Operation(summary = "2.3.6.2.远程转诊记录推送接口", description = "远程病理诊断记录推送接口")
|
|
|
+ @PostMapping("/pushRemoteTransfer")
|
|
|
+ @ResponseBody
|
|
|
+ public HisResponseTO pushRemoteTransfer(HttpServletRequest request,@Valid @RequestBody List<pushRemoteTransferReq> list) {
|
|
|
+ String urlType = request.getHeader("urlType");
|
|
|
+ String apiUrl = url;
|
|
|
+ if(StringUtils.isNotBlank(urlType)&&"1".equals(urlType)){
|
|
|
+ apiUrl = localUrl;
|
|
|
+ }
|
|
|
+ PostUtil.setApiUrl(apiUrl);
|
|
|
+ PostUtil.setAppKey(appKey);
|
|
|
+ PostUtil.setAppSecret(appSecret);
|
|
|
+ try{
|
|
|
+ return PostUtil.post(ServiceMethodEnum.REMOTE_REFERRAL.getServiceMethod(), JSONObject.toJSONString(list));
|
|
|
+ }catch (Exception e){
|
|
|
+ log.error("方法名称:-/supervise/pushRemotePathology 错误信息:"+e.getMessage());
|
|
|
+ HisResponseTO<?> hisResponse = new HisResponseTO();
|
|
|
+ hisResponse.setCode(40012);
|
|
|
+ hisResponse.setMsg("错误信息:"+e.getMessage());
|
|
|
+ return hisResponse;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ @Operation(summary = "2.4.2.2.医疗争议(不良事件)记录推送接口", description = "医疗争议(不良事件)记录推送接口")
|
|
|
+ @PostMapping("/pushMedicalDispute")
|
|
|
+ @ResponseBody
|
|
|
+ public HisResponseTO pushMedicalDispute(HttpServletRequest request,@Valid @RequestBody List<MedicalDisputeReq> list) {
|
|
|
+ String urlType = request.getHeader("urlType");
|
|
|
+ String apiUrl = url;
|
|
|
+ if(StringUtils.isNotBlank(urlType)&&"1".equals(urlType)){
|
|
|
+ apiUrl = localUrl;
|
|
|
+ }
|
|
|
+ PostUtil.setApiUrl(apiUrl);
|
|
|
+ PostUtil.setAppKey(appKey);
|
|
|
+ PostUtil.setAppSecret(appSecret);
|
|
|
+ try{
|
|
|
+ return PostUtil.post(ServiceMethodEnum.MEDICAL_DISPUTES.getServiceMethod(), JSONObject.toJSONString(list));
|
|
|
+ }catch (Exception e){
|
|
|
+ log.error("方法名称:-/supervise/pushMedicalDispute 错误信息:"+e.getMessage());
|
|
|
+ HisResponseTO<?> hisResponse = new HisResponseTO();
|
|
|
+ hisResponse.setCode(40012);
|
|
|
+ hisResponse.setMsg("错误信息:"+e.getMessage());
|
|
|
+ return hisResponse;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|