修复信息泄漏的重大bug

debug
李进才 2 years ago
parent 15d5832036
commit 1f990ca143
  1. 1
      src/main/java/com/ynxbd/common/action/PatientAction.java

@ -37,6 +37,7 @@ public class PatientAction extends BaseAction {
return Result.error(ResultEnum.PARAM_IS_BLANK); return Result.error(ResultEnum.PARAM_IS_BLANK);
} }
try { try {
patientId = getDecodeString(patientId);
JsonResult jsonResult = new HisPatientDao().selectPatientInfo(patientId, "999"); JsonResult jsonResult = new HisPatientDao().selectPatientInfo(patientId, "999");
if (!jsonResult.success()) { if (!jsonResult.success()) {
return Result.error(jsonResult.getMessage()); return Result.error(jsonResult.getMessage());

Loading…
Cancel
Save