diff --git a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/SieveFacade.java b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/SieveFacade.java index 45f3f1e..5adfb16 100644 --- a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/SieveFacade.java +++ b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/SieveFacade.java @@ -1175,7 +1175,9 @@ public class SieveFacade { result.put("patientID", sieveApply.getPatientID()); result.put("applicationNo", sieveApply.getApplicationNo()); result.put("smoking", sieveApply.getSmoking()); - result.put("insulin", sieveApply.getInsulin()); + if(sieveApply.getInsulin()!=null){ + result.put("insulin", sieveApply.getInsulin().toString()); + } result.put("hC", sieveApply.gethC()); result.put("mannualEntry", sieveApply.getMannualEntry()); result.put("nT", sieveApply.getnT()); @@ -1188,7 +1190,9 @@ public class SieveFacade { result.put("transferDate", DateUtil.getyyyy_MM_dd(sieveApply.getTransferDate())); result.put("donorBirthDate", DateUtil.getyyyy_MM_dd(sieveApply.getDonorBirthDate())); result.put("nasalBone", sieveApply.getNasalBone()); - result.put("monozygous", sieveApply.getMonozygous()); + if(sieveApply.getMonozygous()!=null){ + result.put("monozygous", sieveApply.getMonozygous().toString()); + } result.put("patientType", sieveApply.getPatientType()); if( pat!= null && StringUtils.isEmpty(sieveApply.getCaiyangyunzhou())){ yunZhouMth(sieveApply,pat);